:root {
    --er-ink: #111318;
    --er-ink-soft: #24272f;
    --er-muted: #667085;
    --er-line: #e5e7eb;
    --er-surface: #f6f7f8;
    --er-white: #ffffff;
    --er-gold: #f5b800;
    --er-gold-dark: #d99b00;
    --er-radius-sm: 10px;
    --er-radius-md: 18px;
    --er-radius-lg: 28px;
    --er-shadow-sm: 0 8px 24px rgba(17, 19, 24, 0.08);
    --er-shadow-lg: 0 24px 70px rgba(17, 19, 24, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--er-ink);
    font-family: Inter, Poppins, Arial, sans-serif;
}

a,
button,
input,
select {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(245, 184, 0, 0.72);
    outline-offset: 3px;
}

header {
    position: sticky;
    z-index: 40;
    top: 0;
    background: #0b0f14;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.24);
}

.er-site-header {
    border-bottom: 2px solid var(--er-gold);
    background: linear-gradient(135deg, #0b0f14 0%, #101216 62%, #12161c 100%);
    color: #fffaf0;
}

.er-header-desktop {
    min-height: 78px;
    border-inline: 0;
    border-top: 0;
}

.er-header-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
}

.er-header-logo--desktop {
    width: 156px;
}

.er-header-logo--desktop::before,
.er-header-logo--mobile::before {
    content: '';
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(211, 185, 121, 0.94) 0%,
        rgba(177, 138, 70, 0.78) 31%,
        rgba(138, 106, 50, 0.43) 52%,
        rgba(107, 81, 39, 0.16) 68%,
        rgba(11, 15, 20, 0) 82%
    );
    pointer-events: none;
}

.er-header-logo--desktop::before {
    inset: -9px -62px;
}

.er-header-logo__image {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.er-header-nav__link {
    position: relative;
    color: #fffaf0;
    transition: color 160ms ease;
}

.er-header-nav__link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--er-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.er-header-nav__link:hover,
.er-header-nav__link:focus-visible,
.er-header-category:hover > .er-header-nav__link {
    color: var(--er-gold);
}

.er-header-nav__link:hover::after,
.er-header-nav__link:focus-visible::after,
.er-header-category:hover > .er-header-nav__link::after {
    transform: scaleX(1);
}

.er-header-category {
    border-bottom-color: transparent !important;
    color: #fffaf0;
    transition: border-color 160ms ease, color 160ms ease;
}

.er-header-category:hover,
.er-header-category:focus-within {
    border-bottom-color: var(--er-gold) !important;
}

.er-header-category--all .icon-hamburger,
.er-header-account-icon,
.er-header-mobile__menu-button {
    color: #fffaf0;
    transition: color 160ms ease, background-color 160ms ease;
}

.er-header-category--all:hover .icon-hamburger,
.er-header-account-icon:hover,
.er-header-account-icon:focus-visible,
.er-header-mobile__menu-button:hover,
.er-header-mobile__menu-button:focus-visible {
    color: var(--er-gold);
}

.er-header-booking,
.er-header-booking:hover,
.er-header-booking:focus-visible {
    background: var(--er-gold);
    color: #111318;
}

.er-header-booking:hover {
    background: #ffc72c;
    box-shadow: 0 8px 22px rgba(245, 184, 0, 0.2);
}

.er-header-mobile {
    min-height: 68px;
    gap: 0;
    padding: 8px 16px;
    box-shadow: none;
}

.er-header-mobile__bar {
    min-height: 50px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
}

.er-header-mobile__menu {
    grid-column: 1;
    justify-self: start;
}

.er-header-logo--mobile {
    width: 128px;
    grid-column: 2;
    justify-self: center;
}

.er-header-logo--mobile::before {
    inset: -8px -58px;
}

.er-header-mobile__actions {
    min-width: 44px;
    display: flex;
    grid-column: 3;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
}

.er-header-mobile__actions a,
.er-header-mobile__actions button,
.er-header-mobile__actions span {
    color: #fffaf0;
}

.er-header-mobile__menu-button {
    background: transparent;
}

.er-header-mobile > form {
    margin-top: 12px;
}

.er-header-drawer-logo {
    width: 150px;
    display: inline-flex;
}

.er-header-drawer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

[data-er-mobile-drawer="true"] > .fixed:not(.inset-0),
[data-er-mobile-drawer="true"] > .fixed:not(.inset-0) > .pointer-events-auto {
    background: linear-gradient(180deg, #0b0f14 0%, #141518 45%, #101216 72%, #0b0f14 100%) !important;
    color: #fffaf0;
}

[data-er-mobile-drawer="true"] > .fixed:not(.inset-0) > .pointer-events-auto {
    overflow-x: hidden;
}

[data-er-mobile-drawer="true"] .er-mobile-drawer__header {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 94px;
    border-bottom: 1px solid rgba(245, 184, 0, 0.16) !important;
    background: #0b0f14;
}

[data-er-mobile-drawer="true"] .er-header-drawer-logo {
    position: relative;
    isolation: isolate;
}

[data-er-mobile-drawer="true"] .er-header-drawer-logo::before {
    position: absolute;
    z-index: 0;
    inset: -10px -38px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(211, 185, 121, 0.72) 0%,
        rgba(177, 138, 70, 0.5) 31%,
        rgba(138, 106, 50, 0.28) 52%,
        rgba(107, 81, 39, 0.11) 68%,
        rgba(11, 15, 20, 0) 84%
    );
    content: '';
    pointer-events: none;
}

[data-er-mobile-drawer="true"] .er-header-drawer-logo img {
    display: block;
    position: relative;
    z-index: 1;
}

[data-er-mobile-drawer="true"] .icon-cancel {
    color: var(--er-gold);
}

[data-er-mobile-drawer="true"] .icon-cancel:hover,
[data-er-mobile-drawer="true"] .icon-cancel:focus-visible {
    color: #fffaf0;
}

[data-er-mobile-drawer="true"] .er-mobile-drawer__content {
    overflow-x: hidden;
    background: transparent;
    color: #fffaf0;
}

.er-mobile-drawer__account,
.er-mobile-drawer__menu {
    border-bottom: 1px solid rgba(177, 138, 70, 0.18);
}

.er-mobile-drawer__account-card {
    border: 1px solid rgba(245, 184, 0, 0.24);
    background: linear-gradient(145deg, #1d1d1f 0%, #17181b 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.er-mobile-drawer__avatar {
    border: 1px solid rgba(245, 184, 0, 0.36);
    background: #101216;
}

.er-mobile-drawer__login,
.er-mobile-drawer__identity {
    color: #fffaf0 !important;
}

.er-mobile-drawer__login {
    min-height: 44px;
    align-items: center;
}

.er-mobile-drawer__login .icon-double-arrow,
.er-mobile-drawer__identity + .icon-double-arrow {
    color: var(--er-gold);
}

.er-mobile-drawer__identity .text-zinc-500 {
    color: #bdb9b1 !important;
}

.er-mobile-drawer__link {
    display: flex !important;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid rgba(245, 184, 0, 0.12);
    color: #fffaf0 !important;
}

.er-mobile-drawer__link:last-of-type {
    border-bottom: 0;
}

.er-mobile-drawer__link:hover,
.er-mobile-drawer__link:focus-visible,
.er-mobile-drawer__category-link:hover,
.er-mobile-drawer__category-link:focus-visible {
    color: var(--er-gold) !important;
}

.er-mobile-drawer__booking,
.er-mobile-drawer__booking:hover,
.er-mobile-drawer__booking:focus-visible {
    min-height: 48px;
    background: var(--er-gold);
    color: #111318 !important;
    font-weight: 850;
    box-shadow: 0 10px 24px rgba(245, 184, 0, 0.18);
}

.er-mobile-drawer__booking:hover,
.er-mobile-drawer__booking:focus-visible {
    background: #ffc72c;
}

.er-mobile-drawer__categories {
    color: #fffaf0;
}

.er-mobile-drawer__category-list {
    scrollbar-color: rgba(245, 184, 0, 0.35) transparent;
}

.er-mobile-drawer__category-row,
.er-mobile-drawer__category-back {
    border-bottom: 1px solid rgba(245, 184, 0, 0.12);
}

.er-mobile-drawer__category-link,
.er-mobile-drawer__category-back button,
.er-mobile-drawer__category-row .icon-arrow-right,
.er-mobile-drawer__category-row .icon-arrow-left {
    color: #fffaf0 !important;
}

.er-mobile-drawer__category-row .icon-arrow-right,
.er-mobile-drawer__category-row .icon-arrow-left,
.er-mobile-drawer__category-back > button > span {
    color: var(--er-gold) !important;
}

.er-mobile-drawer__locale-bar {
    border-top: 1px solid rgba(177, 138, 70, 0.18);
    background: #101216;
    color: #fffaf0;
}

.primary-button,
button.primary-button {
    min-height: 46px;
    border: 0;
    border-radius: var(--er-radius-sm);
    background: var(--er-gold);
    color: var(--er-ink);
    font-weight: 800;
    transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.primary-button:hover,
button.primary-button:hover {
    background: #ffc72c;
    box-shadow: var(--er-shadow-sm);
    transform: translateY(-1px);
}

.secondary-button {
    min-height: 46px;
    border-color: var(--er-gold) !important;
    border-radius: var(--er-radius-sm);
    color: var(--er-ink);
    font-weight: 800;
}

footer {
    background: #0b0c0f !important;
    color: var(--er-white);
}

footer a:hover {
    color: var(--er-gold) !important;
}

body > form[toolname][toolautosubmit] {
    display: none;
}

.er-footer {
    border-top: 3px solid var(--er-gold);
    background: #090b0f !important;
    color: #f2f4f7;
}

.er-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
    gap: clamp(36px, 5vw, 72px);
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding-block: clamp(48px, 6vw, 72px);
}

.er-footer__brand {
    max-width: 320px;
}

.er-footer__logo {
    display: inline-flex;
    position: relative;
    isolation: isolate;
    align-items: center;
}

.er-footer__logo::before {
    position: absolute;
    z-index: 0;
    inset: -12px -44px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(211, 185, 121, 0.58) 0%,
        rgba(177, 138, 70, 0.42) 31%,
        rgba(138, 106, 50, 0.24) 52%,
        rgba(107, 81, 39, 0.1) 68%,
        rgba(9, 11, 15, 0) 84%
    );
    content: '';
    pointer-events: none;
}

.er-footer__logo img {
    display: block;
    position: relative;
    z-index: 1;
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.er-footer__brand > p {
    max-width: 290px;
    margin-top: 18px;
    color: #b8bec9;
    font-size: 0.92rem;
    line-height: 1.7;
}

.er-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.er-footer__socials a,
.er-footer__social {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #353943;
    border-radius: 50%;
    background: #17191f;
    color: #f7f8fa;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.er-footer__social--pending {
    cursor: default;
}

.er-footer__socials a:hover {
    border-color: var(--er-gold);
    background: var(--er-gold);
    color: var(--er-ink) !important;
    transform: translateY(-2px);
}

.er-footer__socials a:focus-visible {
    outline-color: var(--er-gold);
}

.er-footer__socials svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.er-footer__section h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: Montserrat, Poppins, Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.er-footer__section h2::after {
    display: block;
    width: 32px;
    height: 2px;
    margin-top: 10px;
    background: var(--er-gold);
    content: "";
}

.er-footer__section ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.er-footer__section a,
.er-footer__section p {
    color: #b8bec9;
    font-size: 0.88rem;
    line-height: 1.55;
}

.er-footer__section a {
    transition: color 160ms ease;
}

.er-footer__section a:hover {
    color: #ffd45c !important;
}

.er-footer__contact {
    font-style: normal;
}

.er-footer__contact li {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.er-footer__contact li > span {
    color: #7f8794;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.er-footer__contact a,
.er-footer__contact p {
    overflow-wrap: anywhere;
}

.er-footer__copyright {
    border-top: 1px solid #282b32;
}

.er-footer__copyright p {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding-block: 20px;
    color: #8f96a3;
    font-size: 0.78rem;
}

.er-home {
    overflow: clip;
    background: var(--er-white);
}

.er-home h1,
.er-home h2,
.er-home h3 {
    margin: 0;
    color: var(--er-ink);
    font-family: Montserrat, Poppins, Arial, sans-serif;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.er-home p {
    margin: 0;
}

.er-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.er-eyebrow {
    color: #a26f00;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.er-home-hero {
    position: relative;
    display: grid;
    min-height: 680px;
    align-items: center;
    overflow: hidden;
    background: #090b0f;
}

.er-home-hero__media,
.er-home-hero__media img,
.er-home-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.er-home-hero__media img {
    object-fit: cover;
    object-position: center;
}

.er-home-hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 7, 11, 0.95) 0%, rgba(5, 7, 11, 0.88) 33%, rgba(5, 7, 11, 0.42) 62%, rgba(5, 7, 11, 0.12) 100%),
        linear-gradient(0deg, rgba(5, 7, 11, 0.34), transparent 45%);
}

.er-home-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 92px 144px;
}

.er-home-hero .er-eyebrow,
.er-service-band .er-eyebrow,
.er-final-cta .er-eyebrow {
    color: #ffd45c;
}

.er-home-hero h1 {
    max-width: 700px;
    margin-top: 18px;
    color: var(--er-white);
    font-size: clamp(3.4rem, 6.2vw, 5.7rem);
    line-height: 0.98;
}

.er-home-hero__lead {
    max-width: 590px;
    margin-top: 24px !important;
    color: #eaecf0;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.65;
}

.er-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.er-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--er-radius-sm);
    font-size: 0.9rem;
    font-weight: 850;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.er-button:hover {
    transform: translateY(-1px);
}

.er-button--primary {
    background: var(--er-gold);
    color: #111318;
}

.er-button--primary:hover {
    background: #ffc72c;
}

.er-button--ghost {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.06);
    color: var(--er-white);
    backdrop-filter: blur(8px);
}

.er-button--ghost:hover {
    border-color: var(--er-white);
    background: rgba(255, 255, 255, 0.14);
}

.er-button--text {
    color: var(--er-white);
}

.er-button--text:hover {
    color: #ffd45c;
}

.er-home-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin: 34px 0 0;
    padding: 0;
    color: #f2f4f7;
    font-size: 0.86rem;
    font-weight: 700;
    list-style: none;
}

.er-home-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.er-home-trust-list li::before {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--er-gold);
    content: "";
}

.er-booking-panel {
    position: relative;
    z-index: 4;
    margin-top: -76px;
    scroll-margin-top: 110px;
}

.er-booking-panel__card {
    padding: 30px;
    border: 1px solid #d9d0bd;
    border-top: 3px solid var(--er-gold);
    border-radius: var(--er-radius-lg);
    background-color: #f7f3e8;
    background-image: radial-gradient(circle at 92% 12%, rgba(245, 184, 0, 0.13), transparent 38%);
    box-shadow: 0 24px 60px rgba(31, 27, 18, 0.14);
}

.er-booking-panel__intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.er-booking-panel h2 {
    max-width: 610px;
    margin-top: 6px;
    color: #17191e;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.er-booking-panel .er-eyebrow {
    color: #946500;
}

.er-booking-form {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1.15fr auto;
    gap: 12px;
    align-items: end;
}

.er-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.er-field > span {
    color: #475467;
    font-size: 0.78rem;
    font-weight: 800;
}

.er-field input,
.er-field select {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 13px;
    border: 1px solid #cfc8ba;
    border-radius: var(--er-radius-sm);
    background: #fffefa;
    color: var(--er-ink);
    font-size: 0.9rem;
    box-shadow: 0 1px 2px rgba(17, 19, 24, 0.03);
}

.er-field input:focus,
.er-field select:focus {
    border-color: var(--er-gold-dark);
    box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.18);
}

.er-booking-form__submit {
    min-width: 150px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(245, 184, 0, 0.22);
}

.er-booking-panel__note {
    margin-top: 14px !important;
    color: var(--er-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.er-home-section {
    padding-block: clamp(70px, 8vw, 112px);
}

.er-home-section--soft {
    background: var(--er-surface);
}

.er-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 38px;
}

.er-section-heading--center {
    justify-content: center;
    text-align: center;
}

.er-section-heading--center > div {
    max-width: 700px;
}

.er-section-heading h2,
.er-service-band h2,
.er-final-cta h2 {
    margin-top: 8px;
    font-size: clamp(2rem, 4.5vw, 3.55rem);
    line-height: 1.08;
}

.er-section-heading p:not(.er-eyebrow) {
    max-width: 650px;
    margin-top: 12px;
    color: var(--er-muted);
    line-height: 1.7;
}

.er-text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: var(--er-ink);
    font-size: 0.88rem;
    font-weight: 850;
}

.er-text-link:hover {
    color: #946500;
}

.er-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.er-category-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: var(--er-radius-lg);
    background: #15171c;
    color: var(--er-white);
    box-shadow: var(--er-shadow-sm);
}

.er-category-card img,
.er-category-card__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.er-category-card img {
    object-fit: cover;
    transition: transform 300ms ease;
}

.er-category-card:hover img {
    transform: scale(1.025);
}

.er-category-card__overlay {
    background: linear-gradient(0deg, rgba(8, 10, 14, 0.94) 0%, rgba(8, 10, 14, 0.48) 46%, rgba(8, 10, 14, 0.04) 78%);
}

.er-category-card__content {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 28px;
}

.er-category-card__content strong {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.er-category-card__content > span:not(.er-category-card__link) {
    max-width: 480px;
    color: #e4e7ec;
    line-height: 1.55;
}

.er-category-card__link {
    margin-top: 6px;
    color: #ffd45c;
    font-size: 0.84rem;
    font-weight: 850;
    text-transform: uppercase;
}

.er-home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.er-home-product-grid > * {
    min-width: 0;
}

.er-home-product-grid > div > div:first-child {
    max-width: none !important;
}

.er-home-product-grid img {
    width: 100%;
    object-fit: cover;
}

.er-home-section--categories {
    border-top: 1px solid rgba(245, 184, 0, 0.18);
    background-color: #101216;
    background-image:
        radial-gradient(circle at 88% 16%, rgba(245, 184, 0, 0.12), transparent 32%),
        linear-gradient(145deg, #111318 0%, #0d0f13 100%);
    color: #fffaf0;
}

.er-home-section--categories .er-eyebrow,
.er-home-section--featured .er-eyebrow {
    color: var(--er-gold);
}

.er-home-section--categories .er-section-heading h2,
.er-home-section--featured .er-section-heading h2 {
    color: #fffaf0;
}

.er-home-section--categories .er-text-link,
.er-home-section--featured .er-text-link {
    color: #fffdf7;
}

.er-home-section--categories .er-text-link span,
.er-home-section--featured .er-text-link span {
    color: var(--er-gold);
}

.er-home-section--categories .er-text-link:hover,
.er-home-section--featured .er-text-link:hover {
    color: var(--er-gold);
}

.er-home-section--categories .er-category-card {
    border: 1px solid rgba(245, 184, 0, 0.24);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.er-home-section--categories .er-category-card:hover {
    border-color: rgba(245, 184, 0, 0.48);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.er-home-section--categories .er-category-card__overlay {
    background: linear-gradient(0deg, rgba(6, 8, 12, 0.96) 0%, rgba(6, 8, 12, 0.58) 48%, rgba(6, 8, 12, 0.06) 80%);
}

.er-home-section--categories .er-category-card__content strong {
    color: #fffdf7;
}

.er-home-section--categories .er-category-card__content > span:not(.er-category-card__link) {
    color: #e2ddd4;
}

.er-home-section--categories .er-category-card__link {
    color: var(--er-gold);
}

.er-home-section--featured {
    border-top: 1px solid rgba(245, 184, 0, 0.16);
    background-color: #141518;
    background-image:
        radial-gradient(circle at 9% 18%, rgba(137, 92, 35, 0.12), transparent 31%),
        linear-gradient(150deg, #17181b 0%, #111216 64%, #0e1013 100%);
    color: #fffaf0;
}

.er-home-section--featured .er-section-heading p:not(.er-eyebrow) {
    color: #bdb9b1;
}

.er-home-section--featured .er-home-product-grid {
    align-items: stretch;
}

.er-home-section--featured [data-er-rental-card="true"] {
    overflow: hidden !important;
    height: 100%;
    padding-bottom: 0;
    border: 1px solid rgba(245, 184, 0, 0.22);
    border-radius: var(--er-radius-md);
    background: #1a1b1e;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.er-home-section--featured [data-er-rental-card="true"] > div:first-child {
    max-height: none !important;
    background: #fffefa;
}

.er-home-section--featured [data-er-rental-card="true"] img {
    filter: none;
}

.er-home-section--featured [data-er-rental-information="true"] {
    box-sizing: border-box;
    width: 100%;
    max-width: none !important;
    min-height: 178px;
    margin-top: 0 !important;
    padding: 18px !important;
    border-top: 1px solid rgba(245, 184, 0, 0.16);
    background: #1a1b1e !important;
    color: #fffdf7;
    transform: none !important;
}

.er-home-section--featured [data-er-rental-information="true"] > p:first-child {
    color: #fffdf7;
    font-weight: 800;
}

.er-home-section--featured [data-er-rental-price="true"] {
    color: var(--er-gold) !important;
}

.er-home-section--featured [data-er-rental-card="true"] .action-items > p {
    border: 1px solid rgba(255, 218, 92, 0.34);
    background: var(--er-gold) !important;
    color: var(--er-ink) !important;
    font-weight: 850;
}

.er-home-section--featured [data-er-rental-actions="true"] {
    opacity: 1 !important;
}

.er-home-section--featured [data-er-rental-action="true"] {
    width: 100%;
    border-color: var(--er-gold) !important;
    background: var(--er-gold) !important;
    color: var(--er-ink) !important;
    box-shadow: 0 8px 20px rgba(245, 184, 0, 0.2);
}

.er-home-section--featured [data-er-rental-action="true"]:hover,
.er-home-section--featured [data-er-rental-action="true"]:focus-visible {
    border-color: var(--er-gold-dark) !important;
    background: var(--er-gold-dark) !important;
}

.er-empty-state {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px;
    border: 1px solid var(--er-line);
    border-radius: var(--er-radius-md);
    background: var(--er-white);
}

.er-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.er-benefit-card {
    padding: 26px;
    border: 1px solid var(--er-line);
    border-radius: var(--er-radius-md);
    background: var(--er-white);
}

.er-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 14px;
    background: #fff5cc;
    color: #7a5200;
}

.er-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.er-benefit-card h3,
.er-step-grid h3 {
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.er-benefit-card p,
.er-step-grid p {
    margin-top: 10px;
    color: var(--er-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.er-home-section--benefits {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-top: 3px solid var(--er-gold);
    background-color: #101216;
    background-image:
        radial-gradient(circle at 88% 14%, rgba(245, 184, 0, 0.14), transparent 31%),
        radial-gradient(circle at 7% 92%, rgba(137, 92, 35, 0.13), transparent 32%),
        linear-gradient(135deg, #101216 0%, #18191d 50%, #0c0e12 100%);
    color: #fffaf0;
}

.er-home-section--benefits::after {
    position: absolute;
    z-index: -1;
    top: -245px;
    right: -165px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(245, 184, 0, 0.14);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.er-home-section--benefits .er-eyebrow {
    color: var(--er-gold);
}

.er-home-section--benefits .er-section-heading h2 {
    color: #fffaf0;
}

.er-home-section--benefits .er-section-heading p:not(.er-eyebrow) {
    color: #bdb9b1;
}

.er-home-section--benefits .er-benefit-grid {
    align-items: stretch;
}

.er-home-section--benefits .er-benefit-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(245, 184, 0, 0.24);
    border-radius: var(--er-radius-md);
    background: #1c1b19;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.er-home-section--benefits .er-icon {
    border: 1px solid rgba(245, 184, 0, 0.32);
    background: rgba(245, 184, 0, 0.1);
    color: var(--er-gold);
}

.er-home-section--benefits .er-benefit-card h3 {
    color: #fffdf7;
}

.er-home-section--benefits .er-benefit-card h3::after {
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 13px;
    border-radius: 999px;
    background: var(--er-gold);
    content: '';
}

.er-home-section--benefits .er-benefit-card p {
    margin-top: 14px;
    color: #c7c2b9;
}

.er-home-section--steps {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-top: 3px solid var(--er-gold);
    border-bottom: 1px solid rgba(245, 184, 0, 0.18);
    background-color: #141518;
    background-image:
        radial-gradient(circle at 12% 78%, rgba(137, 92, 35, 0.13), transparent 34%),
        linear-gradient(155deg, #17181b 0%, #111216 58%, #0c0e11 100%);
    color: #fffaf0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    padding-block: clamp(58px, 6vw, 84px);
}

.er-home-section--steps .er-section-heading {
    margin-bottom: 30px;
}

.er-home-section--steps .er-eyebrow {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--er-gold);
}

.er-home-section--steps .er-eyebrow::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: var(--er-gold);
    content: '';
}

.er-home-section--steps .er-section-heading h2 {
    color: #fffaf0;
}

.er-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.er-home-section--steps .er-step-grid li {
    position: relative;
    min-width: 0;
    height: 100%;
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--er-radius-md);
    background: #1a1b1e;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
    padding: 28px;
}

.er-home-section--steps .er-step-grid li > span {
    display: inline-grid;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid rgba(255, 218, 92, 0.32);
    border-radius: 50%;
    background: var(--er-gold);
    color: var(--er-ink);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 20px rgba(245, 184, 0, 0.22);
}

.er-home-section--steps .er-step-grid h3 {
    color: #fffdf7;
    font-size: 1.14rem;
}

.er-home-section--steps .er-step-grid p {
    color: #c4beb4;
}

.er-service-band {
    padding-block: clamp(72px, 8vw, 110px);
    background: #111318;
    color: #f2f4f7;
}

.er-service-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(44px, 9vw, 110px);
    align-items: center;
}

.er-service-band h2,
.er-final-cta h2 {
    color: var(--er-white);
}

.er-service-band p:not(.er-eyebrow) {
    max-width: 650px;
    margin-top: 18px;
    color: #cfd4dc;
    line-height: 1.75;
}

.er-service-band ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid #343842;
    list-style: none;
}

.er-service-band li {
    position: relative;
    padding: 18px 0 18px 28px;
    border-bottom: 1px solid #343842;
    font-weight: 750;
}

.er-service-band li::before {
    position: absolute;
    top: 25px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--er-gold);
    content: "";
}

.er-final-cta {
    padding-block: clamp(72px, 8vw, 104px);
    background:
        radial-gradient(circle at 85% 10%, rgba(245, 184, 0, 0.24), transparent 32%),
        linear-gradient(135deg, #1a1d24 0%, #090a0d 100%);
    color: var(--er-white);
}

.er-final-cta__content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.er-final-cta__content > div:first-child {
    max-width: 660px;
}

.er-final-cta p:not(.er-eyebrow) {
    margin-top: 16px;
    color: #d0d5dd;
}

.er-final-cta .er-home-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.er-home .er-rentals {
    border-top: 1px solid rgba(245, 184, 0, 0.16);
    background-color: #0e1013;
    background-image:
        radial-gradient(circle at 84% 11%, rgba(245, 184, 0, 0.1), transparent 30%),
        linear-gradient(145deg, #111318 0%, #0c0e11 100%);
    color: #fffaf0;
    padding-block: clamp(70px, 8vw, 108px);
}

.er-home .er-rentals__inner {
    width: min(1180px, calc(100% - 40px));
}

.er-home .er-rentals__heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.er-home .er-rentals__heading h2 {
    margin-top: 8px;
    color: #fffaf0;
    font-size: clamp(2rem, 4.5vw, 3.55rem);
}

.er-home .er-rentals__eyebrow {
    color: var(--er-gold);
}

.er-home .er-rentals__heading > p:last-child {
    color: #bdb9b1;
}

.er-home .er-rental-card {
    border-color: rgba(245, 184, 0, 0.22);
    border-radius: var(--er-radius-md);
    background: #1a1b1e;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.er-home .er-rental-card__image {
    background: #fffefa;
}

.er-home .er-rental-card__image img {
    filter: none;
}

.er-home .er-rental-card__body {
    border-top: 1px solid rgba(245, 184, 0, 0.16);
    background: #1a1b1e;
    color: #fffdf7;
}

.er-home .er-rental-card h3,
.er-home .er-rental-card h3 a {
    color: #fffdf7;
}

.er-home .er-rental-card__price {
    color: #c4beb4;
}

.er-home .er-rental-card__price strong {
    color: var(--er-gold);
}

.er-home .er-rental-card__specs li {
    border: 1px solid rgba(245, 184, 0, 0.24);
    background: rgba(245, 184, 0, 0.09);
    color: #f0eadf;
}

.er-home .er-rental-card__button {
    border: 1px solid var(--er-gold);
    background: var(--er-gold);
    color: var(--er-ink) !important;
    box-shadow: 0 8px 20px rgba(245, 184, 0, 0.2);
}

.er-home .er-rental-card__button:hover,
.er-home .er-rental-card__button:focus-visible {
    border-color: var(--er-gold-dark);
    background: var(--er-gold-dark);
}

.er-inquiry {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 8%, rgba(245, 184, 0, 0.13), transparent 28%),
        radial-gradient(circle at 92% 58%, rgba(138, 106, 50, 0.1), transparent 32%),
        linear-gradient(145deg, #101216 0%, #141518 52%, #0e1013 100%);
    color: #fffaf0;
}

.er-inquiry::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
    pointer-events: none;
    content: '';
}

.er-inquiry__shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.er-inquiry__hero {
    padding-block: clamp(58px, 7vw, 88px) clamp(42px, 5vw, 62px);
    border-bottom: 1px solid rgba(245, 184, 0, 0.16);
}

.er-inquiry__hero .er-inquiry__shell {
    max-width: 940px;
    margin-inline: auto;
    text-align: center;
}

.er-inquiry__eyebrow {
    color: var(--er-gold);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.er-inquiry__hero h1 {
    margin-top: 12px;
    color: #fffdf7;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.er-inquiry__intro {
    max-width: 760px;
    margin: 22px auto 0;
    color: #c4beb4;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.er-inquiry__content {
    padding-block: clamp(48px, 6vw, 76px) clamp(70px, 8vw, 100px);
}

.er-inquiry__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
    gap: clamp(24px, 3vw, 38px);
    align-items: stretch;
}

.er-inquiry-contact,
.er-inquiry-form-card {
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--er-radius-lg);
    background: linear-gradient(150deg, rgba(29, 29, 31, 0.98), rgba(20, 21, 24, 0.98));
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.er-inquiry-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 3.5vw, 42px);
}

.er-inquiry-contact h2,
.er-inquiry-form-card h2 {
    margin-top: 8px;
    color: #fffdf7;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 780;
    letter-spacing: -0.025em;
}

.er-inquiry-contact__intro,
.er-inquiry-form-card__heading > p:last-child {
    margin-top: 12px;
    color: #bdb9b1;
    line-height: 1.65;
}

.er-inquiry-contact__details {
    display: grid;
    gap: 0;
    margin-top: 30px;
    font-style: normal;
}

.er-inquiry-contact__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-block: 17px;
    border-top: 1px solid rgba(255, 250, 240, 0.1);
}

.er-inquiry-contact__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(245, 184, 0, 0.3);
    border-radius: 50%;
    background: rgba(245, 184, 0, 0.08);
    color: var(--er-gold);
}

.er-inquiry-contact__icon svg {
    width: 19px;
    height: 19px;
}

.er-inquiry-contact__label,
.er-inquiry-contact__value {
    display: block;
}

.er-inquiry-contact__label {
    margin-bottom: 4px;
    color: #8f8a82;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.er-inquiry-contact__value {
    color: #fffaf0;
    font-size: 0.94rem;
    line-height: 1.55;
}

.er-inquiry-contact a.er-inquiry-contact__value:hover,
.er-inquiry-contact a.er-inquiry-contact__value:focus-visible {
    color: var(--er-gold);
}

.er-inquiry-contact__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.er-inquiry-contact__actions a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 184, 0, 0.42);
    border-radius: 999px;
    color: #fffaf0;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.er-inquiry-contact__actions a:hover,
.er-inquiry-contact__actions a:focus-visible {
    border-color: var(--er-gold);
    background: rgba(245, 184, 0, 0.1);
    color: var(--er-gold);
}

.er-inquiry-contact__actions .er-inquiry-contact__action--primary {
    border-color: var(--er-gold);
    background: var(--er-gold);
    color: var(--er-ink);
}

.er-inquiry-contact__actions .er-inquiry-contact__action--primary:hover,
.er-inquiry-contact__actions .er-inquiry-contact__action--primary:focus-visible {
    border-color: var(--er-gold-dark);
    background: var(--er-gold-dark);
    color: var(--er-ink);
}

.er-inquiry-form-card {
    padding: clamp(28px, 4vw, 48px);
}

.er-inquiry-form-card__heading {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 250, 240, 0.1);
}

.er-inquiry-form-wrap {
    margin-top: 28px;
}

.er-inquiry-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.er-inquiry-form .er-inquiry-form__field {
    margin-bottom: 18px;
}

.er-inquiry-form .er-inquiry-form__label {
    margin-bottom: 8px;
    color: #fffaf0;
    font-size: 0.84rem;
    font-weight: 720;
}

.er-inquiry-form .er-inquiry-form__control {
    min-height: 50px;
    margin-bottom: 0;
    border-color: rgba(255, 250, 240, 0.15) !important;
    border-radius: 12px;
    background: #111318 !important;
    color: #fffdf7 !important;
    font-size: 0.94rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.er-inquiry-form .er-inquiry-form__control::placeholder {
    color: #8f8a82;
    opacity: 1;
}

.er-inquiry-form .er-inquiry-form__control:hover {
    border-color: rgba(245, 184, 0, 0.5) !important;
}

.er-inquiry-form .er-inquiry-form__control:focus {
    border-color: var(--er-gold) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.12);
}

.er-inquiry-form .er-inquiry-form__control--message {
    min-height: 142px;
    resize: vertical;
    line-height: 1.6;
}

.er-inquiry-form__captcha {
    margin-block: 4px 18px;
}

.er-inquiry-form__submit {
    display: inline-flex;
    min-width: 220px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    border: 1px solid var(--er-gold);
    border-radius: 999px;
    background: var(--er-gold);
    color: var(--er-ink);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(245, 184, 0, 0.18);
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.er-inquiry-form__submit:hover,
.er-inquiry-form__submit:focus-visible {
    border-color: var(--er-gold-dark);
    background: var(--er-gold-dark);
    transform: translateY(-1px);
}

.er-inquiry__reassurance {
    display: flex;
    max-width: 900px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 34px auto 0;
    color: #bdb9b1;
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
}

.er-inquiry__reassurance > span {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--er-gold);
    box-shadow: 0 0 0 5px rgba(245, 184, 0, 0.08);
}

@media (max-width: 900px) {
    .er-inquiry__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .er-inquiry-form-card {
        order: 1;
    }

    .er-inquiry-contact {
        order: 2;
    }
}

@media (max-width: 560px) {
    .er-inquiry__shell {
        width: min(100% - 32px, 1180px);
    }

    .er-inquiry__hero {
        padding-block: 44px 36px;
    }

    .er-inquiry__hero h1 {
        font-size: clamp(2.35rem, 13vw, 3.35rem);
    }

    .er-inquiry__intro {
        margin-top: 18px;
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .er-inquiry__content {
        padding-block: 32px 92px;
    }

    .er-inquiry-contact,
    .er-inquiry-form-card {
        border-radius: 20px;
        padding: 24px;
    }

    .er-inquiry-form__row,
    .er-inquiry-contact__actions {
        grid-template-columns: minmax(0, 1fr);
    }

    .er-inquiry-contact__actions a {
        min-height: 48px;
    }

    .er-inquiry-form .er-inquiry-form__control {
        min-height: 48px;
        padding-inline: 16px;
    }

    .er-inquiry-form .er-inquiry-form__control--message {
        min-height: 132px;
    }

    .er-inquiry-form__submit {
        width: 100%;
        min-width: 0;
    }

    .er-inquiry__reassurance {
        align-items: flex-start;
        margin-top: 28px;
        font-size: 0.8rem;
        text-align: left;
    }

    .er-inquiry__reassurance > span {
        margin-top: 7px;
    }
}

.er-contact-dock {
    position: fixed;
    z-index: 60;
    right: 18px;
    bottom: 18px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: #111318;
    box-shadow: var(--er-shadow-sm);
}

.er-contact-dock a {
    padding: 11px 16px;
    color: var(--er-white);
    font-size: 0.78rem;
    font-weight: 850;
}

.er-contact-dock__primary {
    background: var(--er-gold);
    color: var(--er-ink) !important;
}

main#main:has(.er-rental-category-surface-marker) {
    display: flow-root;
    min-height: calc(100vh - 79px);
    background:
        radial-gradient(circle at 16% 0%, rgba(177, 138, 70, 0.1), rgba(177, 138, 70, 0) 30rem),
        linear-gradient(180deg, #101216 0%, #141518 48%, #0b0f14 100%);
}

.er-rental-category-surface-marker ~ .flex-1 > .max-md\:hidden > div > .flex.justify-between {
    justify-content: flex-end;
}

.er-rental-category-surface-marker ~ .flex-1 > .max-md\:hidden > div > .flex.justify-between > .relative,
.er-rental-category-surface-marker ~ .flex-1 > .max-md\:hidden > div > .flex.justify-between > .flex.items-center.gap-10 > .relative {
    display: none;
}

.er-rental-search {
    position: relative;
    min-height: calc(100vh - 79px);
    padding-bottom: 88px;
    overflow-x: clip;
    background:
        radial-gradient(circle at 16% 0%, rgba(177, 138, 70, 0.14), rgba(177, 138, 70, 0) 30rem),
        linear-gradient(180deg, #101216 0%, #141518 48%, #0b0f14 100%);
    color: #fffaf0;
}

.er-rental-search__intro {
    padding-top: 18px;
}

.er-rental-search__title {
    display: grid;
    gap: 12px;
    color: #fffdf7;
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    font-weight: 850;
    letter-spacing: -0.025em;
}

.er-rental-search__title::after {
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: var(--er-gold);
    content: '';
}

.er-rental-search__suggestion,
.er-rental-search__suggestion p {
    color: #bdb9b1 !important;
}

.er-rental-search__suggestion button {
    color: var(--er-gold) !important;
}

.er-rental-search__catalogue {
    position: relative;
}

.er-rental-search__mobile-sort {
    display: contents;
}

.er-rental-search__grid > div {
    align-items: stretch;
    justify-items: center;
}

.er-rental-search__toolbar {
    padding: 12px 14px;
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: 16px;
    background: rgba(23, 24, 27, 0.92);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.er-rental-search__toolbar button {
    min-height: 48px;
    border-color: rgba(245, 184, 0, 0.3) !important;
    background: #17181b !important;
    color: #fffaf0 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.er-rental-search__toolbar button:hover,
.er-rental-search__toolbar button:focus-visible {
    border-color: var(--er-gold) !important;
    outline: 2px solid rgba(245, 184, 0, 0.18);
    outline-offset: 2px;
}

.er-rental-search__toolbar .icon-arrow-down,
.er-rental-search__toolbar span[role='button'] {
    color: #c4beb4;
}

.er-rental-search__toolbar span[role='button']:hover,
.er-rental-search__toolbar span[role='button']:focus-visible,
.er-rental-search__toolbar span[role='button'][class*='-fill'] {
    color: var(--er-gold);
}

.er-rental-search__toolbar .absolute.z-20 {
    overflow: hidden;
    border: 1px solid rgba(245, 184, 0, 0.24);
    background: #17181b !important;
    color: #fffaf0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.er-rental-search__toolbar .absolute.z-20 li {
    color: #fffaf0;
}

.er-rental-search__toolbar .absolute.z-20 li:hover,
.er-rental-search__toolbar .absolute.z-20 li[class*='bg-gray-100'] {
    background: rgba(245, 184, 0, 0.12) !important;
    color: var(--er-gold);
}

.er-rental-search [data-er-rental-card='true'] {
    overflow: hidden !important;
    width: 100%;
    max-width: 291px;
    height: 100%;
    padding-bottom: 0;
    border: 1px solid rgba(245, 184, 0, 0.22);
    border-radius: 18px;
    background: #1a1b1e;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.er-rental-search [data-er-rental-card='true']:hover,
.er-rental-search [data-er-rental-card='true']:focus-within {
    border-color: rgba(245, 184, 0, 0.48);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.er-rental-search [data-er-rental-card='true'] > div:first-child {
    width: 100%;
    border-radius: 0 !important;
    background: #fffefa;
}

.er-rental-search [data-er-rental-card='true'] img {
    filter: none !important;
    transform: none !important;
}

.er-rental-search [data-er-rental-information='true'] {
    box-sizing: border-box;
    width: 100%;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 148px;
    margin-top: 0 !important;
    padding: 17px 18px 19px !important;
    border-top: 1px solid rgba(245, 184, 0, 0.16);
    border-radius: 0 !important;
    background: #1a1b1e !important;
    color: #fffdf7;
    transform: translateY(0) !important;
}

.er-rental-search [data-er-rental-information='true'] > p:first-of-type {
    color: #fffdf7;
    font-weight: 750;
    line-height: 1.35;
}

.er-rental-search [data-er-rental-price='true'] {
    color: var(--er-gold) !important;
    font-weight: 850;
    line-height: 1.4;
}

.er-rental-search [data-er-rental-card='true'] .action-items > p {
    border: 1px solid rgba(245, 184, 0, 0.48);
    background: #101216 !important;
    color: var(--er-gold) !important;
    font-weight: 800;
}

.er-rental-search [data-er-rental-action='true'] {
    min-height: 46px;
    border: 1px solid var(--er-gold) !important;
    border-radius: 11px;
    background: #101216 !important;
    color: #fffaf0 !important;
    font-weight: 800;
}

.er-rental-search [data-er-rental-action='true']:hover,
.er-rental-search [data-er-rental-action='true']:focus-visible {
    border-color: var(--er-gold) !important;
    background: var(--er-gold) !important;
    color: #111318 !important;
}

.er-rental-search__list [data-er-rental-card='true'] {
    max-width: none;
    border-radius: 18px;
}

.er-rental-search__list [data-er-rental-information='true'] {
    align-content: center;
}

.er-rental-search__empty,
.er-rental-search__empty p {
    color: #c4beb4;
}

.er-rental-search__load-more {
    border-color: var(--er-gold) !important;
    background: #101216 !important;
    color: #fffaf0 !important;
}

.er-rental-search__load-more:hover,
.er-rental-search__load-more:focus-visible {
    background: var(--er-gold) !important;
    color: #111318 !important;
}

@media (max-width: 767px) {
    .er-rental-search {
        min-height: calc(100vh - 72px);
        padding-bottom: 176px;
    }

    .er-rental-search__intro {
        padding-top: 12px;
    }

    .er-rental-search__layout {
        display: block;
    }

    .er-rental-search__mobile-sort > div.fixed {
        bottom: 62px !important;
        border-color: rgba(245, 184, 0, 0.28) !important;
        background: #101216 !important;
        color: #fffaf0;
        box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.34);
    }

    .er-rental-search__mobile-sort > div.fixed .icon-sort-1,
    .er-rental-search__mobile-sort > div.fixed [class*='font-medium'] {
        color: var(--er-gold);
    }

    .er-rental-search__mobile-sort li {
        border-bottom: 1px solid rgba(245, 184, 0, 0.12);
        background: #17181b;
        color: #fffaf0;
    }

    .er-rental-search__mobile-sort li:hover,
    .er-rental-search__mobile-sort li[class*='bg-gray-100'] {
        background: rgba(245, 184, 0, 0.12) !important;
        color: var(--er-gold);
    }

    .er-rental-search [data-er-rental-information='true'] {
        min-height: 154px;
        padding: 13px 12px 14px !important;
    }

    .er-rental-search [data-er-rental-action='true'] {
        width: 100%;
        min-height: 48px;
    }
}

@media (max-width: 390px) {
    .er-rental-search__title {
        font-size: 1.55rem;
    }

    .er-rental-search__grid > div {
        column-gap: 12px;
    }
}

@media (max-width: 1180px) {
    .er-header-logo--desktop {
        width: 142px;
    }

    .er-header-nav {
        gap: 18px;
    }

    .er-header-category .er-header-nav__link {
        padding-inline: 14px;
    }

    .er-booking-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .er-booking-form__submit {
        width: 100%;
    }

    .er-home-product-grid,
    .er-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .er-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .er-footer__brand {
        max-width: 380px;
    }

    .er-home-hero {
        min-height: 620px;
    }

    .er-home-hero__content {
        padding-block: 82px 126px;
    }

    .er-category-card {
        min-height: 340px;
    }

    .er-service-band__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .er-final-cta__content {
        display: grid;
        align-items: start;
    }

    .er-final-cta .er-home-actions {
        justify-content: flex-start;
    }

    .er-step-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 700px) {
    .er-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        width: min(100% - 32px, 1180px);
        padding-block: 44px;
    }

    .er-footer__logo::before {
        inset: -10px -16px;
    }

    .er-footer__section {
        padding-top: 30px;
        border-top: 1px solid #282b32;
    }

    .er-footer__copyright p {
        width: min(100% - 32px, 1180px);
        padding-block: 18px 78px;
    }

    .er-shell,
    .er-home .er-rentals__inner {
        width: min(100% - 32px, 1180px);
    }

    .er-home-hero {
        min-height: 690px;
        align-items: start;
    }

    .er-home-hero__media img {
        object-position: center;
    }

    .er-home-hero__overlay {
        background: linear-gradient(180deg, rgba(5, 7, 11, 0.94) 0%, rgba(5, 7, 11, 0.82) 36%, rgba(5, 7, 11, 0.34) 68%, rgba(5, 7, 11, 0.62) 100%);
    }

    .er-home-hero__content {
        padding-block: 58px 120px;
    }

    .er-home-hero h1 {
        max-width: 360px;
        font-size: clamp(2.55rem, 12vw, 3.65rem);
    }

    .er-home-hero__lead {
        max-width: 350px;
        font-size: 1rem;
    }

    .er-home-actions {
        align-items: stretch;
    }

    .er-home-hero .er-home-actions {
        display: grid;
        max-width: 270px;
    }

    .er-home-trust-list {
        display: grid;
        gap: 10px;
        margin-top: 26px;
    }

    .er-booking-panel {
        margin-top: -46px;
        scroll-margin-top: 84px;
    }

    .er-booking-panel__card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .er-booking-form,
    .er-category-grid,
    .er-home-product-grid,
    .er-benefit-grid,
    .er-step-grid {
        grid-template-columns: 1fr;
    }

    .er-section-heading,
    .er-booking-panel__intro {
        display: grid;
        align-items: start;
        gap: 18px;
    }

    .er-section-heading {
        margin-bottom: 28px;
    }

    .er-category-card {
        min-height: 330px;
    }

    .er-category-card__content {
        padding: 22px;
    }

    .er-home-product-grid {
        gap: 30px;
    }

    .er-home-section--featured [data-er-rental-information="true"] {
        min-height: 0;
    }

    .er-home .er-rental-card__button {
        width: 100%;
    }

    .er-home-section--steps .er-step-grid li,
    .er-home-section--steps .er-step-grid li + li {
        border: 1px solid rgba(245, 184, 0, 0.2);
        padding: 22px;
    }

    .er-step-grid li > span {
        margin-bottom: 18px;
    }

    .er-final-cta .er-home-actions {
        display: grid;
        width: 100%;
    }

    .er-final-cta .er-button {
        width: 100%;
    }

    .er-empty-state {
        display: grid;
    }

    .er-contact-dock {
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 390px) {
    .er-footer__inner,
    .er-footer__copyright p {
        width: min(100% - 24px, 1180px);
    }

    .er-shell,
    .er-home .er-rentals__inner {
        width: min(100% - 24px, 1180px);
    }

    .er-home-hero h1 {
        font-size: 2.55rem;
    }

    .er-home-hero__content {
        padding-top: 46px;
    }

    .er-booking-panel__card {
        padding-inline: 15px;
    }

    .er-benefit-card {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
