/* ═════════════════════════════════════════════════════
   HALO DUBAI — PREMIUM STYLESHEET
   ═════════════════════════════════════════════════════ */

/* --- ROOT & RESET --- */
:root {
    --hd-gold: #c9a84c;
    --hd-gold-light: #e0c67e;
    --hd-dark: #0a0a0a;
    --hd-darker: #050505;
    --hd-white: #ffffff;
    --hd-gray: #a0a0a0;
    --hd-glass: rgba(0, 0, 0, 0.7);
    --hd-border: rgba(201, 168, 76, 0.3);
    --hd-transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    --hd-social-size: 38px;
    --hd-social-img: 17px;
    --hd-navbar-font-size: 16px;
    --gold-grad: linear-gradient(90deg, #C89938 0%, #D3A74F 17%, #FFEC93 36%, #E4BF66 51%, #FED87E 68%, #C89938 85%, #956E0F 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.hd-body {
    background-color: var(--hd-darker);
    color: var(--hd-white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.hd-body a:not(.hd-chef-btn):not(.hd-navbar__item):not(.hd-navbar__logo):not(.hd-act-strip__card):not(.hd-hero__social-link) {
    color: inherit;
}

body.hd-body a[href^="tel:"],
body.hd-body a[href^="mailto:"],
body.hd-body .hd-contact__sub a {
    color: var(--halo-sand, #c4a882);
}

body.hd-body a[href^="tel:"]:hover,
body.hd-body a[href^="mailto:"]:hover,
body.hd-body .hd-contact__sub a:hover {
    color: var(--hd-gold-light);
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--hd-transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- UTILS --- */
.hd-gold-text {
    color: var(--hd-gold);
}

/* --- NAVBAR --- */
.hd-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    column-gap: clamp(40px, 6vw, 88px);
    padding: 0 clamp(20px, 4%, 56px);
    z-index: 3000;
    transition: box-shadow 0.45s ease, height 0.35s ease;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 12px 40px -28px rgba(0, 0, 0, 0.55);
    isolation: isolate;
}

.hd-navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(6, 6, 10, 0.92);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hd-navbar::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 55%, transparent 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.hd-navbar.hd-navbar--scrolled::after,
.hd-navbar.hd-navbar--past-hero::after {
    opacity: 0;
}

.hd-navbar.hd-navbar--scrolled::before {
    opacity: 1;
}

.hd-navbar--scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: 72px;
    border-bottom: none;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}

.hd-body--chef .hd-navbar.hd-navbar--scrolled,
.hd-body--heli .hd-navbar.hd-navbar--scrolled,
.hd-body--ground .hd-navbar.hd-navbar--scrolled,
.hd-body--activities .hd-navbar.hd-navbar--scrolled,
.hd-body--stays .hd-navbar.hd-navbar--scrolled,
.hd-body--membership .hd-navbar.hd-navbar--scrolled,
.hd-body--corp .hd-navbar.hd-navbar--scrolled,
.hd-body--contact .hd-navbar.hd-navbar--scrolled {
    height: 80px;
}

.hd-body--chef .hd-navbar:not(.hd-navbar--scrolled),
.hd-body--heli .hd-navbar:not(.hd-navbar--scrolled),
.hd-body--ground .hd-navbar:not(.hd-navbar--scrolled),
.hd-body--activities .hd-navbar:not(.hd-navbar--scrolled),
.hd-body--stays .hd-navbar:not(.hd-navbar--scrolled),
.hd-body--membership .hd-navbar:not(.hd-navbar--scrolled),
.hd-body--corp .hd-navbar:not(.hd-navbar--scrolled),
.hd-body--contact .hd-navbar:not(.hd-navbar--scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
}

.hd-navbar__left,
.hd-navbar__right {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 42px);
    min-width: 0;
}

.hd-navbar__left {
    justify-self: start;
}

.hd-navbar__right {
    justify-self: end;
    justify-content: flex-end;
}

.hd-navbar__lang {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--hd-navbar-font-size);
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    flex-shrink: 0;
}

.hd-navbar__links,
.hd-navbar__links-right {
    display: flex;
    gap: clamp(14px, 1.8vw, 28px);
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.hd-navbar__links {
    justify-content: flex-end;
    padding-right: clamp(8px, 1.5vw, 20px);
}

.hd-navbar__links-right {
    justify-content: flex-start;
    padding-left: clamp(8px, 1.5vw, 20px);
}

.hd-navbar__logo {
    justify-self: center;
    grid-column: 2;
    grid-row: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    z-index: 2;
    padding: 0 clamp(24px, 4vw, 64px);
    min-width: 120px;
}

.hd-navbar__login {
    white-space: nowrap;
    text-decoration: none;
    font-size: var(--hd-navbar-font-size);
}

.hd-navbar__item,
.hd-navbar__label {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--hd-navbar-font-size);
    text-transform: none;
    letter-spacing: normal;
    color: #fff;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.hd-navbar__label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    text-align: left;
}

.hd-navbar__arrow {
    font-size: 0.65rem;
    line-height: 1;
    opacity: 0.9;
}

.hd-navbar__item:hover,
.hd-navbar__item--dropdown:hover .hd-navbar__label {
    color: var(--hd-gold);
}

.hd-navbar__item--gold {
    color: var(--hd-gold);
}

.hd-navbar__item--gold:hover {
    color: var(--hd-gold-light);
}

.hd-navbar__item--dropdown {
    z-index: 5;
}

.hd-navbar__item--dropdown:hover .hd-navbar__label,
.hd-navbar__item--dropdown.is-open .hd-navbar__label {
    color: var(--hd-white);
}

.hd-navbar__item--dropdown:hover .hd-navbar__dropdown,
.hd-navbar__item--dropdown.is-open .hd-navbar__dropdown {
    display: block;
    animation: fadeIn 0.3s ease;
}

.hd-navbar__item--dropdown.is-dismissed .hd-navbar__dropdown {
    display: none !important;
}

.hd-navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3100;
    background: var(--hd-dark);
    padding: 12px 16px;
    min-width: auto;
    width: max-content;
    display: none;
    border: 1px solid var(--hd-border);
    margin-top: 14px;
    border-radius: 4px;
    pointer-events: auto;
}

.hd-navbar__dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.hd-navbar__dropdown a {
    display: block;
    padding: 8px 0;
    font-size: var(--hd-navbar-font-size);
    line-height: 1.35;
    letter-spacing: normal;
    text-transform: none;
    color: var(--hd-white);
    text-decoration: none;
    transition: color 0.35s ease, opacity 0.35s ease;
    white-space: nowrap;
}

.hd-navbar__dropdown a:hover {
    color: var(--hd-white);
    opacity: 0.78;
}

.hd-navbar__links-right .hd-navbar__item--dropdown .hd-navbar__dropdown {
    left: auto;
    right: 0;
}

.hd-navbar__logo img {
    height: 60px;
    object-fit: contain;
}

.hd-navbar__logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 0.8;
    letter-spacing: 3px;
    margin-top: 5px;
}

.hd-navbar__logo-text small {
    font-size: 0.6rem;
    letter-spacing: 5px;
}

.hd-navbar__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hd-navbar__burger span {
    width: 25px;
    height: 2px;
    background: var(--hd-white);
    transition: var(--hd-transition);
}

/* --- HERO SLIDER --- */
.hd-hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    width: 100%;
    overflow: hidden;
}

.hd-hero__slides {
    height: 100%;
}

.hd-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1), filter 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.hd-hero__slide--active {
    opacity: 1;
    filter: blur(0);
    z-index: 2;
}

.hd-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s linear;
}

.hd-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hd-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    z-index: 1;
}

.hd-hero__media .hd-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: none;
    transition: none;
}

.hd-hero__slide--active .hd-hero__video {
    transform: scale(1);
    transition: transform 12s linear;
}

.hd-hero__slide--has-video.hd-hero__slide--active .hd-hero__bg {
    opacity: 0;
}

.hd-hero__slide--active .hd-hero__bg {
    transform: scale(1);
}

.hd-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 28%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.35) 100%);
}

/* Main brand slide — balanced scrim for readable copy over Dubai skyline */
.hd-hero__slide:first-child .hd-hero__overlay,
.hd-hero__slide--has-video .hd-hero__overlay {
    background:
        radial-gradient(ellipse 80% 70% at 50% 45%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.72) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.88) 100%);
}

.hd-hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vh, 18px);
    width: min(92%, 760px);
    padding: clamp(24px, 4vh, 40px) 0 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

/* Main slide — hide bottom captions; they clash with hero copy */
.hd-hero--main-slide .hd-hero__caption-area {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hd-hero--main-slide .halo-scroll-cue {
    display: none;
}

@media (max-height: 820px) {
    .hd-hero--main-slide .hd-hero__content {
        transform: translate(-50%, -54%);
        gap: 10px;
        padding-top: 16px;
    }

    .hd-hero--main-slide .hd-hero__title {
        font-size: clamp(3rem, 9vw, 6rem);
    }

    .hd-hero--main-slide .hd-hero__trust-item {
        padding: 8px 14px;
        min-width: 100px;
    }
}

@media (max-height: 680px) {
    .hd-hero--main-slide .hd-hero__trust {
        display: none;
    }

    .hd-hero--main-slide .hd-hero__tagline {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.hd-hero__eyebrow {
    margin-bottom: 4px;
}

.hd-hero__tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 480px;
    font-weight: 300;
}

.hd-hero__cta {
    margin-top: 0;
}

.hd-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
    margin-top: 4px;
}

.hd-hero__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    border: 1px solid rgba(201, 168, 76, 0.22);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-width: 120px;
}

.hd-hero__trust-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--hd-gold);
    line-height: 1;
}

.hd-hero__trust-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.hd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

.hd-hero__cta-secondary {
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.hd-hero__title {
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.82;
    display: flex;
    flex-direction: column;
}

.hd-hero__title-line {
    display: block;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-hero__title-line--2 {
    margin-top: -0.05em;
}

.hd-hero__caption-area {
    position: absolute;
    bottom: 72px;
    width: 100%;
    padding: 0 clamp(20px, 5%, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 24px);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.hd-hero__caption-area--animate {
    animation: hdSlideUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes hdSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hd-hero__caption-line {
    width: 165px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.hd-hero__caption {
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--hd-white);
    max-width: 300px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
}

.hd-hero__caption--right {
    text-align: left;
}

.hd-hero__controls {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll cue — bottom-left so it never overlaps center captions */
.hd-hero .halo-scroll-cue {
    left: clamp(20px, 5%, 56px);
    right: auto;
    bottom: 28px;
    transform: none;
    align-items: flex-start;
    z-index: 11;
    animation: hdHeroCueIn 1.2s var(--halo-ease-out, cubic-bezier(0.16, 1, 0.3, 1)) 1.4s forwards;
}

@keyframes hdHeroCueIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hd-hero__btn {
    background: none;
    border: none;
    color: var(--hd-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.hd-hero__dots {
    display: flex;
    gap: 15px;
}

.hd-hero__dot {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--hd-transition);
}

.hd-hero__dot--active {
    background: var(--gold-grad);
    width: 60px;
}

.hd-hero__social {
    position: absolute;
    right: clamp(16px, 3%, 40px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 12;
    pointer-events: none;
}

.hd-hero__social-link {
    width: var(--hd-social-size);
    height: var(--hd-social-size);
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hd-transition);
    background: rgba(0, 0, 0, 0.35);
    pointer-events: auto;
}

.hd-hero__social-link img,
.hd-hero__social-link .hd-social-svg {
    width: var(--hd-social-img);
    height: var(--hd-social-img);
    object-fit: contain;
    flex-shrink: 0;
}

.hd-hero__social-link i {
    font-size: 1.15rem;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-hero__social-link:hover {
    transform: scale(1.1);
}

.hd-hero__social.is-suppressed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* --- PRIVATE CHEF EXPERIENCE PAGE --- */
.hd-chef-page[hidden] {
    display: none;
}

.hd-body--chef {
    background: #000;
}

.hd-body--chef .hd-hero,
.hd-body--chef .hd-home-pillars,
.hd-body--chef .hd-act-strip,
.hd-body--chef .hd-combined-hero,
.hd-body--chef .hd-flawless-combined,
.hd-body--chef .ded-section,
.hd-body--chef .hd-concierge-info,
.hd-body--chef .hd-contact {
    display: none;
}

.hd-body--chef .hd-heli-page {
    display: none;
}

.hd-body--chef .hd-corp-page,
.hd-body--chef .hd-contact-page,
.hd-body--chef .hd-ground-page,
.hd-body--chef .hd-activities-page,
.hd-body--chef .hd-stays-page,
.hd-body--chef .hd-mem-page {
    display: none;
}

.hd-body--chef #hdAssociates,
.hd-body--chef #hdFooter {
    display: none;
}

.hd-body--chef .hd-chef-page {
    display: block;
}

.hd-body--chef .hd-navbar {
    height: 80px;
    background: transparent;
    border-bottom-color: transparent;
}

.hd-body--chef .hd-navbar__logo img {
    height: 60px;
}

.hd-chef-page {
    background: #000;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
}

/* Unified Bespoke Events typography (matches home welcome / membership) */
.hd-chef-type__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.06;
    color: #fff;
    margin: 0 0 16px;
}

.hd-chef-type__heading--hero {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-chef-type__lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.hd-chef-type__body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.hd-chef-page .hd-chef-services__col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #fff;
}

.hd-chef-page .hd-chef-bespoke__card-copy h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
}

/* 1. Intro hero — full viewport, centered glass card */
.hd-chef-intro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 6% 90px;
    overflow: hidden;
    text-align: center;
}

.hd-chef-intro__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-chef-intro__bg img,
.hd-chef-intro__bg .hd-exp-kenburns {
    width: 100%;
    height: 100%;
}

.hd-chef-intro__bg img {
    object-fit: cover;
    object-position: center;
}

.hd-chef-intro__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.82) 100%);
}

.hd-chef-intro__content {
    position: relative;
    z-index: 2;
    width: min(100%, 760px);
    padding: clamp(44px, 6vw, 68px) clamp(36px, 5vw, 56px);
    border-radius: 28px;
    background: rgba(12, 12, 12, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.hd-chef-intro__content .halo-eyebrow {
    margin-bottom: 14px;
}

.hd-chef-intro__content h1 {
    margin: 0 0 16px;
}

.hd-chef-intro__tagline {
    margin: 0 0 28px;
}

.hd-chef-intro__cta {
    margin-top: 0;
}

/* Site-wide buttons — gold fill hover */
.hd-chef-btn,
.hd-concierge-info__btn,
.hd-contact__send-btn,
.hd-membership__btn,
.hd-auth__actions,
.hd-auth__submit {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 9px 32px;
    color: var(--hd-white);
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
    border: none;
    border-bottom: 1px solid var(--hd-white);
    background: transparent;
    cursor: pointer;
    z-index: 1;
    transition: color 0.4s ease, padding 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s ease;
}

.hd-chef-btn::before,
.hd-concierge-info__btn::before,
.hd-contact__send-btn::before,
.hd-membership__btn::before,
.hd-auth__actions::before,
.hd-auth__submit::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gold-grad);
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hd-chef-btn:hover::before,
.hd-concierge-info__btn:hover::before,
.hd-contact__send-btn:hover::before,
.hd-membership__btn:hover::before,
.hd-auth__actions:hover::before,
.hd-auth__submit:hover::before {
    height: 100%;
}

.hd-chef-btn:hover,
.hd-concierge-info__btn:hover,
.hd-contact__send-btn:hover,
.hd-membership__btn:hover,
.hd-auth__actions:hover,
.hd-auth__submit:hover {
    color: #000;
    border-bottom-color: transparent;
}

/* Primary CTA — solid gold for key conversions */
.hd-btn--primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0a0a;
    background: var(--gold-grad);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    box-shadow: 0 8px 28px rgba(201, 153, 56, 0.28);
}

.hd-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201, 153, 56, 0.38);
    filter: brightness(1.05);
    color: #0a0a0a;
}

/* 2. Chef visual — full-width background */
.hd-chef-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 5%;
    overflow: hidden;
}

.hd-chef-visual__bg {
    position: absolute;
    inset: 0;
}

.hd-chef-visual__bg img,
.hd-chef-visual__bg .hd-exp-kenburns {
    width: 100%;
    height: 100%;
}

.hd-chef-visual__bg img {
    object-fit: cover;
}

.hd-chef-visual__shade {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
}

.hd-chef-visual__card {
    position: relative;
    z-index: 2;
    width: min(100%, 1080px);
    padding: 56px 64px 64px;
    border-radius: 34px;
    background: rgba(18,18,18,0.82);
    backdrop-filter: blur(4px);
}

.hd-chef-visual__card-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.hd-chef-visual__eyebrow {
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
}

.hd-chef-visual__card h2 {
    margin-bottom: 20px;
}

.hd-chef-visual__copy {
    max-width: 440px;
    margin-bottom: 28px;
}

.hd-chef-visual__link {
    align-self: flex-start;
}

.hd-chef-visual__addons-title {
    margin-bottom: 14px;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.hd-chef-visual__addons-list {
    list-style: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.hd-chef-visual__addons-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
}

.hd-chef-visual__addons-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.55);
}

.hd-chef-visual__explore.hd-chef-btn,
.hd-heli-visual__explore.hd-chef-btn,
.hd-ground-visual__explore.hd-chef-btn {
    color: var(--hd-gold);
    border-bottom-color: var(--hd-gold);
}

.hd-chef-visual__explore {
    display: block;
    width: fit-content;
    margin: 36px auto 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--hd-gold);
    letter-spacing: 0.5px;
}

.hd-chef-visual__explore span {
    display: block;
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
}

.hd-chef-visual__social-bottom {
    position: absolute;
    right: 5%;
    bottom: 36px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.82);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
}

.hd-chef-visual__social-bottom a,
.hd-heli-intro__social-bottom a,
.hd-heli-visual__social-bottom a,
.hd-ground-intro__social-bottom a,
.hd-ground-visual__social-bottom a,
.hd-activities-intro__social-bottom a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--hd-social-size);
    height: var(--hd-social-size);
}

.hd-chef-visual__social-bottom img,
.hd-heli-intro__social-bottom img,
.hd-heli-visual__social-bottom img,
.hd-ground-intro__social-bottom img,
.hd-ground-visual__social-bottom img,
.hd-activities-intro__social-bottom img,
.hd-chef-visual__social-bottom .hd-social-svg,
.hd-heli-intro__social-bottom .hd-social-svg,
.hd-heli-visual__social-bottom .hd-social-svg,
.hd-ground-intro__social-bottom .hd-social-svg,
.hd-ground-visual__social-bottom .hd-social-svg,
.hd-activities-intro__social-bottom .hd-social-svg {
    width: var(--hd-social-img);
    height: var(--hd-social-img);
    object-fit: contain;
    opacity: 1;
}

/* 3 & 4. Shared Dubai background block */
.hd-chef-dubai-block {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hd-chef-dubai-block__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-chef-dubai-block__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hd-chef-dubai-block__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.72) 28%, rgba(0,0,0,0.38) 100%);
}

/* 3. Executive dining */
.hd-chef-services {
    position: relative;
    z-index: 2;
    padding: 90px 5% 0;
    overflow: hidden;
}

.hd-chef-services__head {
    position: relative;
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.hd-chef-services__head h2 {
    margin-bottom: 16px;
}

.hd-chef-services__lead {
    margin-bottom: 18px;
}

.hd-chef-services__rule {
    width: 42px;
    height: 1px;
    margin: 0 auto;
    background: rgba(255,255,255,0.55);
}

.hd-chef-services__panel {
    position: relative;
    width: min(100%, 1120px);
    margin: 0 auto 80px;
    padding: 48px 0;
    border-radius: 14px;
    background: rgba(12,12,12,0.78);
}

.hd-chef-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hd-chef-services__col {
    position: relative;
    padding: 12px 36px 20px;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.22);
    background:
        radial-gradient(circle at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 62%);
}

.hd-chef-services__col:last-child {
    border-right: none;
}

.hd-chef-services__col-rule {
    display: block;
    width: 36px;
    height: 1px;
    margin-bottom: 18px;
    background: var(--hd-gold);
}

.hd-chef-services__col h3 {
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 500;
    color: var(--hd-gold);
}

.hd-chef-services__duration,
.hd-chef-services__desc {
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.hd-chef-services__price {
    margin-top: 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.82);
}

.hd-chef-services__price strong {
    display: block;
    margin-top: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* 4. Proposal form */
.hd-chef-proposal {
    position: relative;
    z-index: 2;
    padding: 0 5% 90px;
    overflow: hidden;
}

.hd-chef-proposal__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: clamp(48px, 5vw, 64px);
    border-radius: 28px;
    background: rgba(10,10,10,0.78);
    backdrop-filter: blur(3px);
}

.hd-chef-proposal__eyebrow {
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hd-gold);
}

.hd-chef-proposal__left h2 {
    margin-bottom: 14px;
}

.hd-chef-proposal__sub {
    margin-bottom: 16px;
}

.hd-chef-proposal__body {
    max-width: 420px;
    margin-bottom: 28px;
}

.hd-chef-proposal__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hd-chef-proposal__field span {
    display: block;
    margin-bottom: 8px;
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.72);
}

.hd-chef-proposal__field input {
    width: 100%;
    padding: 6px 0 8px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.45);
    background: transparent;
    color: #fff;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    outline: none;
}

.hd-chef-proposal__field input:focus {
    border-bottom-color: var(--hd-gold);
}

.hd-chef-proposal__field--date input {
    color-scheme: dark;
}

.hd-chef-proposal__field--date input::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.7);
    cursor: pointer;
}

.hd-chef-associates,
.hd-chef-footer {
    width: 100%;
}

/* 5. Corporate concierge — matches dubi concierge info */
.hd-chef-concierge {
    position: relative;
    min-height: 560px;
    padding: 120px 5% 130px;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.hd-chef-concierge__rule {
    width: 240px;
    height: 1px;
    margin: 0 auto 18px;
    background: rgba(255,255,255,0.65);
}

.hd-chef-concierge h2 {
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 60px);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-chef-concierge__sub {
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.25vw, 17px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.hd-chef-concierge__copy {
    max-width: 580px;
    margin: 0 auto 28px;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: clamp(14px, 1.35vw, 17px);
    line-height: 1.45;
    color: rgba(255,255,255,0.78);
}

.hd-chef-concierge__social-bar {
    position: absolute;
    left: 24px;
    top: 54%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
}

.hd-chef-concierge__social-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--hd-gray);
    text-transform: lowercase;
}

.hd-chef-concierge__social-icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hd-chef-concierge__social-icons a,
.hd-heli-concierge__social-icons a,
.hd-ground-concierge__social-icons a,
.hd-activities-concierge__social-icons a,
.hd-concierge-info__social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--hd-social-size);
    height: var(--hd-social-size);
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.55);
    background: rgba(0, 0, 0, 0.35);
}

.hd-chef-concierge__social-icons img,
.hd-heli-concierge__social-icons img,
.hd-ground-concierge__social-icons img,
.hd-activities-concierge__social-icons img,
.hd-chef-concierge__social-icons .hd-social-svg,
.hd-heli-concierge__social-icons .hd-social-svg,
.hd-ground-concierge__social-icons .hd-social-svg,
.hd-activities-concierge__social-icons .hd-social-svg {
    width: var(--hd-social-img);
    height: var(--hd-social-img);
    object-fit: contain;
    opacity: 1;
}

.hd-concierge-info__social-icons svg,
.hd-concierge-info__social-icons .hd-social-svg {
    width: var(--hd-social-img);
    height: var(--hd-social-img);
}

.hd-social-svg {
    display: block;
    width: var(--hd-social-img);
    height: var(--hd-social-img);
    flex-shrink: 0;
    shape-rendering: geometricPrecision;
}

/* --- HELICOPTER EXPERIENCE PAGE --- */
.hd-heli-page[hidden] {
    display: none;
}

.hd-body--heli {
    background: #000;
}

.hd-body--heli .hd-hero,
.hd-body--heli .hd-home-pillars,
.hd-body--heli .hd-act-strip,
.hd-body--heli .hd-combined-hero,
.hd-body--heli .hd-flawless-combined,
.hd-body--heli .ded-section,
.hd-body--heli .hd-concierge-info,
.hd-body--heli .hd-contact,
.hd-body--heli .hd-chef-page {
    display: none;
}

.hd-body--heli .hd-corp-page,
.hd-body--heli .hd-contact-page,
.hd-body--heli .hd-ground-page,
.hd-body--heli .hd-activities-page,
.hd-body--heli .hd-stays-page,
.hd-body--heli .hd-mem-page {
    display: none;
}

.hd-body--heli #hdAssociates,
.hd-body--heli #hdFooter {
    display: none;
}

.hd-body--heli .hd-heli-page {
    display: block;
}

.hd-body--heli .hd-navbar {
    height: 80px;
    background: transparent;
    border-bottom-color: transparent;
}

.hd-body--heli .hd-navbar__logo img {
    height: 60px;
}

.hd-heli-page {
    background: #0f0f0f;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
}

/* 1. Hero image frame */
.hd-heli-intro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 6% 90px;
    background: #141414;
}

.hd-heli-intro__frame {
    width: min(100%, 920px);
    height: min(72vh, 540px);
    overflow: hidden;
    background: #000;
}

.hd-heli-intro__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hd-heli-intro__rail {
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hd-heli-intro__rail-line {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.55);
}

.hd-heli-intro__rail-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}

.hd-heli-intro__social-bottom {
    position: absolute;
    left: 6%;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.82);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
}

/* 2. Charter card */
.hd-heli-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 5%;
    overflow: hidden;
    background: #000;
}

.hd-heli-visual__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-heli-visual__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hd-heli-visual__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.32);
}

.hd-heli-visual__card {
    position: relative;
    z-index: 2;
    width: min(100%, 1080px);
    padding: 56px 64px 64px;
    border-radius: 34px;
    background: rgba(52, 52, 52, 0.96);
    box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}

.hd-heli-visual__card-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.hd-heli-visual__eyebrow {
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
}

.hd-heli-visual__card h2 {
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hd-heli-visual__copy {
    max-width: 400px;
    margin-bottom: 28px;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.84);
}

.hd-heli-visual__card-right {
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
}

.hd-heli-visual__card-right p {
    margin-bottom: 14px;
}

.hd-heli-visual__card-right strong {
    color: rgba(255,255,255,0.92);
    font-weight: 600;
}

.hd-heli-visual__addons-title {
    margin-bottom: 8px;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.hd-heli-visual__addons-list {
    list-style: none;
    margin-bottom: 14px;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
}

.hd-heli-visual__addons-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
}

.hd-heli-visual__addons-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.55);
}

.hd-heli-visual__explore {
    display: block;
    width: fit-content;
    margin: 36px auto 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--hd-gold);
    letter-spacing: 0.5px;
}

.hd-heli-visual__explore span {
    display: block;
    margin-top: 4px;
    text-align: center;
    font-size: 16px;
}

.hd-heli-visual__social-bottom {
    position: absolute;
    right: 5%;
    bottom: 36px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.82);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
}

/* 3. Gallery slider */
.hd-heli-gallery,
.hd-ground-gallery {
    position: relative;
    width: 100%;
    min-height: min(85vh, 720px);
    overflow: hidden;
}

.hd-activities-gallery {
    position: relative;
    width: 100%;
    min-height: min(100vh, 900px);
    overflow: hidden;
    background: #000;
}

.hd-heli-gallery {
    background: #000;
}

.hd-ground-gallery {
    background: #fff;
}

.hd-heli-gallery__main,
.hd-ground-gallery__main {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: min(85vh, 720px);
}

.hd-activities-gallery__main {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: min(100vh, 900px);
}

.hd-ground-gallery__main {
    background: #fff;
}

.hd-heli-gallery__slide,
.hd-ground-gallery__slide {
    display: none;
    width: 100%;
    height: 100%;
    min-height: min(85vh, 720px);
}

.hd-activities-gallery__slide {
    display: none;
    width: 100%;
    height: 100%;
    min-height: min(100vh, 900px);
    background: #000;
}

.hd-ground-gallery__slide {
    background: #fff;
}

.hd-heli-gallery__slide.is-active,
.hd-ground-gallery__slide.is-active,
.hd-activities-gallery__slide.is-active {
    display: block;
}

.hd-heli-gallery__slide img,
.hd-heli-gallery__slide video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: min(85vh, 720px);
    object-fit: cover;
    object-position: center center;
}

.hd-ground-gallery__slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: min(85vh, 720px);
    object-fit: contain;
    object-position: center center;
    background: #fff;
}

.hd-activities-gallery__slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: min(100vh, 900px);
    object-fit: cover;
    object-position: center center;
}

.hd-heli-gallery__nav,
.hd-ground-gallery__nav {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    height: 100%;
    padding: 48px 0 24px;
    background: rgba(12, 12, 12, 0.38);
    backdrop-filter: blur(3px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hd-heli-gallery__num,
.hd-ground-gallery__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2px;
}

.hd-heli-gallery__line,
.hd-ground-gallery__line {
    flex: 0 0 145px;
    width: 1px;
    height: 145px;
    min-height: 0;
    margin: 20px 0;
    background: rgba(255,255,255,0.35);
}

.hd-heli-gallery__next,
.hd-ground-gallery__next {
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hd-heli-gallery__next:hover,
.hd-ground-gallery__next:hover {
    color: var(--hd-gold);
}

.hd-heli-gallery__thumb {
    position: relative;
    width: 96px;
    height: 78px;
    margin-left: -48px;
    padding: 0;
    border: 2px solid rgba(255,255,255,0.35);
    background: #111;
    overflow: hidden;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: border-color 0.3s ease;
}

.hd-heli-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.hd-ground-gallery__thumb {
    position: relative;
    width: 96px;
    height: 78px;
    margin-left: -48px;
    padding: 0;
    border: 2px solid rgba(255,255,255,0.35);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: border-color 0.3s ease;
}

.hd-heli-gallery__thumb:hover,
.hd-heli-gallery__thumb.is-active,
.hd-ground-gallery__thumb:hover,
.hd-ground-gallery__thumb.is-active {
    border-color: var(--hd-gold);
}

.hd-ground-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    opacity: 1;
}

/* 4 & 5. Shared Dubai block */
.hd-heli-dubai-block {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hd-heli-dubai-block__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-heli-dubai-block__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hd-heli-dubai-block__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.72) 28%, rgba(0,0,0,0.38) 100%);
}

.hd-heli-packages {
    position: relative;
    z-index: 2;
    padding: 90px 5% 0;
}

.hd-heli-packages__head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.hd-heli-packages__head h2 {
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    line-height: 1.05;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-heli-packages__lead {
    margin-bottom: 18px;
    font-family: 'EB Garamond', serif;
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
}

.hd-heli-packages__rule {
    width: 42px;
    height: 1px;
    margin: 0 auto;
    background: rgba(255,255,255,0.55);
}

.hd-heli-packages__panel {
    width: min(100%, 1120px);
    margin: 0 auto 80px;
    padding: 48px 0;
    border-radius: 14px;
    background: rgba(12,12,12,0.78);
}

.hd-heli-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hd-heli-packages__col {
    padding: 12px 36px 20px;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.22);
    background: radial-gradient(circle at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 62%);
}

.hd-heli-packages__col:last-child {
    border-right: none;
}

.hd-heli-packages__col-rule {
    display: block;
    width: 36px;
    height: 1px;
    margin-bottom: 18px;
    background: var(--hd-gold);
}

.hd-heli-packages__col h3 {
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 500;
    color: var(--hd-gold);
}

.hd-heli-packages__duration,
.hd-heli-packages__desc {
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255,255,255,0.78);
}

.hd-heli-packages__price {
    margin-top: 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.82);
}

.hd-heli-packages__price strong {
    display: block;
    margin-top: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    color: #fff;
}

.hd-heli-packages__price span {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
}

.hd-heli-proposal {
    position: relative;
    z-index: 2;
    padding: 0 5% 90px;
}

.hd-heli-proposal__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: clamp(48px, 5vw, 64px);
    border-radius: 28px;
    background: rgba(10,10,10,0.78);
    backdrop-filter: blur(3px);
}

.hd-heli-proposal__left h2 {
    margin-bottom: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 500;
    line-height: 1.02;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-heli-proposal__sub {
    margin-bottom: 18px;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.82);
}

.hd-heli-proposal__body {
    max-width: 380px;
    margin-bottom: 28px;
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
}

.hd-heli-proposal__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hd-heli-proposal__field span {
    display: block;
    margin-bottom: 8px;
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.72);
}

.hd-heli-proposal__field input {
    width: 100%;
    padding: 6px 0 8px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.45);
    background: transparent;
    color: #fff;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    outline: none;
}

.hd-heli-proposal__field input:focus {
    border-bottom-color: var(--hd-gold);
}

.hd-heli-proposal__field--date input {
    color-scheme: dark;
}

.hd-heli-proposal__field--date input::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.7);
    cursor: pointer;
}

.hd-heli-proposal__submit {
    margin-top: 8px;
}

/* 6. Concierge */
.hd-heli-concierge {
    position: relative;
    min-height: 560px;
    padding: 120px 5% 130px;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.hd-heli-concierge__rule {
    width: 240px;
    height: 1px;
    margin: 0 auto 18px;
    background: rgba(255,255,255,0.65);
}

.hd-heli-concierge h2 {
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 60px);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-heli-concierge__sub {
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.25vw, 17px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.hd-heli-concierge__copy {
    max-width: 580px;
    margin: 0 auto 28px;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: clamp(14px, 1.35vw, 17px);
    line-height: 1.45;
    color: rgba(255,255,255,0.78);
}

.hd-heli-concierge__social-bar {
    position: absolute;
    left: 24px;
    top: 54%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
}

.hd-heli-concierge__social-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--hd-gray);
    text-transform: lowercase;
}

.hd-heli-concierge__social-icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hd-heli-associates,
.hd-heli-footer {
    width: 100%;
}

/* --- GROUND TRANSPORT PAGE --- */
.hd-ground-page[hidden] {
    display: none;
}

.hd-body--ground {
    background: #000;
}

.hd-body--ground .hd-hero,
.hd-body--ground .hd-home-pillars,
.hd-body--ground .hd-act-strip,
.hd-body--ground .hd-combined-hero,
.hd-body--ground .hd-flawless-combined,
.hd-body--ground .ded-section,
.hd-body--ground .hd-concierge-info,
.hd-body--ground .hd-contact,
.hd-body--ground .hd-chef-page,
.hd-body--ground .hd-heli-page,
.hd-body--ground .hd-corp-page,
.hd-body--ground .hd-contact-page,
.hd-body--ground .hd-activities-page,
.hd-body--ground .hd-stays-page,
.hd-body--ground .hd-mem-page {
    display: none;
}

.hd-body--ground #hdAssociates,
.hd-body--ground #hdFooter {
    display: none;
}

.hd-body--ground .hd-ground-page {
    display: block;
}

.hd-body--ground .hd-navbar {
    height: 80px;
    background: transparent;
    border-bottom-color: transparent;
}

.hd-body--ground .hd-navbar__logo img {
    height: 60px;
}

.hd-body--chef .hd-ground-page,
.hd-body--heli .hd-ground-page,
.hd-body--corp .hd-ground-page,
.hd-body--contact .hd-ground-page,
.hd-body--activities .hd-ground-page,
.hd-body--stays .hd-ground-page {
    display: none;
}

.hd-ground-page {
    background: #0f0f0f;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
}

/* 1. Hero */
.hd-ground-intro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 6% 90px;
    overflow: hidden;
    text-align: center;
}

.hd-ground-intro__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-ground-intro__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hd-ground-intro__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.42);
}

.hd-ground-intro__rail {
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hd-ground-intro__rail-line {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.55);
}

.hd-ground-intro__rail-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}

.hd-ground-intro__content {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: min(100%, 980px);
    padding: clamp(44px, 6vw, 68px) clamp(36px, 5vw, 56px);
    border-radius: 28px;
    background: rgba(20, 20, 20, 0.74);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: visible;
}

.hd-ground-intro__content h1 {
    margin: 0 auto 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    overflow: visible;
}

.hd-ground-intro__title-line {
    display: block;
}

.hd-ground-intro__tagline {
    margin-bottom: 28px;
    font-family: 'EB Garamond', serif;
    font-size: clamp(14px, 1.35vw, 17px);
    font-style: italic;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
}

.hd-ground-intro__social-bottom {
    position: absolute;
    left: 6%;
    bottom: 42px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.82);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
}

/* 2. Ground transport card */
.hd-ground-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 5%;
    overflow: hidden;
    background: #000;
}

.hd-ground-visual__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-ground-visual__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hd-ground-visual__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.32);
}

.hd-ground-visual__card {
    position: relative;
    z-index: 2;
    width: min(100%, 920px);
    margin: 0 auto;
    padding: clamp(40px, 5vw, 56px);
    border-radius: 28px;
    background: rgba(52, 52, 52, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.hd-ground-visual__card-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.95fr);
    gap: clamp(32px, 4vw, 48px);
    align-items: start;
}

.hd-ground-visual__card-left h2 {
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.02;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hd-ground-visual__copy {
    max-width: 400px;
    margin-bottom: 24px;
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
}

.hd-ground-visual__tagline {
    margin-bottom: 20px;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.88);
}

.hd-ground-visual__features-title {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

.hd-ground-visual__features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hd-ground-visual__features-list li {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}

.hd-ground-visual__features-list li::before {
    content: '• ';
    color: var(--hd-gold);
}

.hd-ground-visual__explore {
    display: block;
    width: fit-content;
    margin: 36px auto 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--hd-gold);
    text-decoration: none;
}

.hd-ground-visual__explore span {
    display: block;
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
}

.hd-ground-visual__social-bottom {
    position: absolute;
    right: 5%;
    bottom: 36px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.82);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
}

/* 3. Gallery — styles shared with helicopter above (.hd-heli-gallery) */

/* 4. Fleet grid */
.hd-ground-fleet {
    position: relative;
    padding: 90px 5% 100px;
    overflow: hidden;
}

.hd-ground-fleet__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-ground-fleet__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hd-ground-fleet__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.78);
}

.hd-ground-fleet__head {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.hd-ground-fleet__head h2 {
    margin-bottom: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    line-height: 1.05;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-ground-fleet__lead {
    margin-bottom: 14px;
    font-family: 'EB Garamond', serif;
    font-size: clamp(13px, 1.2vw, 15px);
    font-style: italic;
    color: rgba(255,255,255,0.85);
}

.hd-ground-fleet__desc {
    margin-bottom: 18px;
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.76);
}

.hd-ground-fleet__rule {
    width: 42px;
    height: 1px;
    margin: 0 auto;
    background: rgba(255,255,255,0.55);
}

.hd-ground-fleet__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
}

.hd-ground-fleet__col {
    padding: 28px 24px 32px;
    border-right: 1px solid rgba(255,255,255,0.18);
    text-align: center;
}

.hd-ground-fleet__col:last-child {
    border-right: none;
}

.hd-ground-fleet__img {
    width: 100%;
    height: 140px;
    margin-bottom: 18px;
    overflow: hidden;
    background: #fff;
}

.hd-ground-fleet__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.hd-ground-fleet__col h3 {
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--hd-gold);
}

.hd-ground-fleet__text {
    margin-bottom: 14px;
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255,255,255,0.76);
}

.hd-ground-fleet__duration {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.72);
}

.hd-ground-fleet__price {
    margin-bottom: 18px;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}

.hd-ground-fleet__price strong {
    font-size: 22px;
    font-weight: 600;
    color: var(--hd-gold);
}

.hd-ground-fleet__price span {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}

.hd-ground-fleet__btn {
    font-size: 13px;
}

/* 5. Concierge */
.hd-ground-concierge {
    position: relative;
    min-height: 560px;
    padding: 120px 5% 130px;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.hd-ground-concierge__rule {
    width: 240px;
    height: 1px;
    margin: 0 auto 18px;
    background: rgba(255,255,255,0.65);
}

.hd-ground-concierge h2 {
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 60px);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-ground-concierge__sub {
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.25vw, 17px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.hd-ground-concierge__copy {
    max-width: 580px;
    margin: 0 auto 28px;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: clamp(14px, 1.35vw, 17px);
    line-height: 1.45;
    color: rgba(255,255,255,0.78);
}

.hd-ground-concierge__social-bar {
    position: absolute;
    left: 24px;
    top: 54%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
}

.hd-ground-concierge__social-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--hd-gray);
    text-transform: lowercase;
}

.hd-ground-concierge__social-icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hd-ground-associates,
.hd-ground-footer {
    width: 100%;
}

/* --- ACTIVITIES PAGE --- */
.hd-activities-page[hidden] {
    display: none;
}

.hd-body--activities {
    background: #000;
}

.hd-body--activities .hd-hero,
.hd-body--activities .hd-home-pillars,
.hd-body--activities .hd-act-strip,
.hd-body--activities .hd-combined-hero,
.hd-body--activities .hd-flawless-combined,
.hd-body--activities .ded-section,
.hd-body--activities .hd-concierge-info,
.hd-body--activities .hd-contact,
.hd-body--activities .hd-chef-page,
.hd-body--activities .hd-heli-page,
.hd-body--activities .hd-corp-page,
.hd-body--activities .hd-contact-page,
.hd-body--activities .hd-ground-page,
.hd-body--activities .hd-stays-page,
.hd-body--activities .hd-mem-page {
    display: none;
}

.hd-body--activities #hdAssociates,
.hd-body--activities #hdFooter {
    display: none;
}

.hd-body--activities .hd-activities-page {
    display: block;
}

.hd-body--activities .hd-navbar {
    height: 80px;
    background: transparent;
    border-bottom-color: transparent;
}

.hd-body--activities .hd-navbar__logo img {
    height: 60px;
}

.hd-body--chef .hd-activities-page,
.hd-body--heli .hd-activities-page,
.hd-body--corp .hd-activities-page,
.hd-body--contact .hd-activities-page,
.hd-body--ground .hd-activities-page,
.hd-body--stays .hd-activities-page,
.hd-body--membership .hd-activities-page {
    display: none;
}

.hd-activities-page {
    background: #000;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
}

/* Activities — video hero + cards (reference match) */
.hd-act-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    padding: 170px 250px;
    overflow: hidden;
}

.hd-act-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hd-act-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hd-act-hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hd-act-hero__content {
    width: 100%;
    max-width: 920px;
    padding: 90px;
    text-align: center;
    border-radius: 20px;
    background: rgba(14, 14, 14, 0.71);
    backdrop-filter: blur(5.9px);
    -webkit-backdrop-filter: blur(5.9px);
}

.hd-act-hero__content h4 {
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.hd-act-hero__content h1 {
    font-size: 60px;
    margin: 10px 0 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 55px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-act-hero__content p {
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.5;
}

.hd-act-hero__btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: 12px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    padding: 10px;
    margin-top: 15px;
    position: relative;
    width: 150px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.hd-act-hero__btn::before {
    content: '';
    position: absolute;
    height: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--hd-gold);
    transition: 0.3s ease-in-out;
    z-index: 0;
}

.hd-act-hero__btn:hover::before {
    height: 100%;
}

.hd-act-hero__btn:hover {
    border: 1px solid var(--hd-gold);
    color: #000;
}

.hd-act-hero__btn span {
    position: relative;
    z-index: 1;
}

.hd-act-card {
    position: relative;
    height: 100vh;
    width: 100%;
    padding: 170px 50px 50px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    scroll-margin-top: 90px;
}

.hd-act-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hd-act-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hd-act-card__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hd-act-card--safari .hd-act-card__video {
    animation: hdActSafariPan 18s ease-in-out infinite alternate;
}

.hd-act-card--safari::before {
    background: linear-gradient(135deg, rgba(120, 72, 20, 0.55) 0%, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
}

.hd-act-card--jetski .hd-act-card__video {
    animation: hdActJetSkiZoom 14s ease-in-out infinite alternate;
    filter: saturate(1.15) contrast(1.05);
}

.hd-act-card--jetski::after {
    background: linear-gradient(to top, rgba(0, 40, 80, 0.9) 0%, transparent 55%);
}

.hd-act-card--zoo-private .hd-act-card__overlay {
    background: linear-gradient(120deg, rgba(20, 60, 30, 0.65) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hd-act-card--zoo-public .hd-act-card__overlay {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.45) 0%, rgba(30, 90, 120, 0.55) 100%);
}

@keyframes hdActSafariPan {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-48%, -52%) scale(1.12); }
}

@keyframes hdActJetSkiZoom {
    0% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-52%, -48%) scale(1.22); }
}

.hd-act-yachts {
    padding: 120px 50px 80px;
    background: #050505;
}

.hd-act-yachts__head {
    max-width: 720px;
    margin-bottom: 36px;
}

.hd-act-yachts__head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--hd-gold);
    margin: 0 0 12px;
}

.hd-act-yachts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.hd-act-yacht-card {
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.hd-act-yacht-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.hd-act-yacht-card__body {
    padding: 18px 20px 22px;
}

.hd-act-yacht-card__body h3 {
    margin: 0 0 8px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.hd-act-yacht-card__body p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.5;
}

.hd-stays-retreat {
    position: relative;
    padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
    overflow: hidden;
}

.hd-stays-retreat__head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.hd-stays-retreat h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 16px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-stays-retreat__lead {
    margin: 0;
    font-family: 'EB Garamond', serif;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.hd-stays-retreat__rule {
    width: 48px;
    height: 1px;
    margin: 22px auto 0;
    background: rgba(201, 168, 76, 0.55);
}

.hd-stays-retreat__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
    max-width: 1280px;
    margin: 0 auto;
}

.hd-stays-retreat__card {
    position: relative;
    min-height: 360px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.22);
    background: #0a0a0a;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hd-stays-retreat__card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.hd-stays-retreat__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.hd-stays-retreat__card:hover img {
    transform: scale(1.06);
}

.hd-stays-retreat__card-copy {
    position: relative;
    z-index: 2;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
}

.hd-stays-retreat__num {
    display: block;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--hd-gold);
}

.hd-stays-retreat__card h3 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
}

.hd-stays-retreat__card p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.hd-stays-retreat__cta {
    display: flex;
    width: fit-content;
    margin: 40px auto 0;
}

.hd-chef-bespoke {
    position: relative;
    z-index: 2;
    padding: 80px clamp(24px, 5vw, 64px) 90px;
}

.hd-chef-bespoke__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
    max-width: 1280px;
    margin: 32px auto 0;
}

.hd-chef-bespoke__card {
    position: relative;
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.28);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hd-chef-bespoke__card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hd-chef-bespoke__card video,
.hd-chef-bespoke__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.hd-chef-bespoke__card:hover video,
.hd-chef-bespoke__card:hover img {
    transform: scale(1.05);
}

.hd-chef-bespoke__card-copy {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.2));
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hd-chef-bespoke__card-copy h3 {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: #fff;
}

.hd-chef-bespoke__card-copy p {
    margin: 0;
}

.hd-act-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hd-act-card__inner {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hd-act-card__content {
    color: #fff;
    max-width: 100%;
    width: 100%;
}

.hd-act-card__content h5 {
    font-size: 20px;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-weight: 400;
}

.hd-act-card__content h2 {
    font-size: 64px;
    margin: 10px 0;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 100%;
}

.hd-act-card__content p {
    font-size: 16px;
    color: #fff;
    width: 70%;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
}

.hd-activities-intro,
.hd-activities-visual,
.hd-activities-gallery,
.hd-activities-fleet,
.hd-activities-concierge {
    /* section hooks for reveal observer */
}

.hd-activities-intro { position: relative; display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 90px 6% 90px; background: #141414; }
.hd-activities-intro__frame { width: min(100%, 920px); height: min(72vh, 540px); overflow: hidden; background: #000; }
.hd-activities-intro__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hd-activities-intro__rail { position: absolute; left: 42px; top: 50%; transform: translateY(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hd-activities-intro__rail-line { width: 1px; height: 52px; background: rgba(255,255,255,0.55); }
.hd-activities-intro__rail-text { writing-mode: vertical-rl; transform: rotate(180deg); font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 1.5px; color: rgba(255,255,255,0.72); white-space: nowrap; }
.hd-activities-intro__social-bottom { position: absolute; left: 6%; bottom: 42px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.82); font-size: 11px; font-family: 'Montserrat', sans-serif; }

.hd-activities-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: min(100vh, 920px); padding: 80px 5%; overflow: hidden; }
.hd-activities-visual__bg { position: absolute; inset: 0; z-index: 0; }
.hd-activities-visual__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hd-activities-visual__shade { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.22); }
.hd-activities-visual__card { position: relative; z-index: 2; width: min(100%, 1140px); margin: 0 auto; padding: clamp(48px, 5vw, 64px); border-radius: 30px; background: rgba(30, 30, 30, 0.86); box-shadow: 0 30px 90px rgba(0,0,0,0.45); }
.hd-activities-visual__card-grid { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.05fr); gap: clamp(36px, 5vw, 56px); align-items: start; }
.hd-activities-visual__card-left h2 { margin-bottom: 22px; font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 3.8vw, 48px); font-weight: 500; line-height: 1.08; text-transform: uppercase; letter-spacing: 1px; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hd-activities-visual__copy { max-width: 420px; margin-bottom: 28px; font-family: 'EB Garamond', serif; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.82); }
.hd-activities-visual__link { margin-top: 4px; }
.hd-activities-visual__features-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hd-activities-visual__features-list li { font-family: 'EB Garamond', serif; font-size: 13px; line-height: 1.55; color: #fff; }
.hd-activities-visual__features-list li strong { display: inline; font-weight: 600; color: #fff; }
.hd-activities-visual__features-list li span { color: rgba(201,168,76,0.92); }

.hd-activities-gallery__rail { position: absolute; left: 42px; top: 50%; transform: translateY(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hd-activities-gallery__rail-line { width: 1px; height: 52px; background: rgba(255,255,255,0.55); }
.hd-activities-gallery__rail-text { writing-mode: vertical-rl; transform: rotate(180deg); font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 1.5px; color: rgba(255,255,255,0.72); white-space: nowrap; }
.hd-activities-gallery__nav { position: absolute; top: 0; right: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; width: 120px; height: 100%; padding: 48px 0 28px; background: rgba(12, 12, 12, 0.38); backdrop-filter: blur(3px); border-left: 1px solid rgba(255, 255, 255, 0.1); }
.hd-activities-gallery__num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 500; color: #fff; writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: 2px; }
.hd-activities-gallery__line { flex: 1; width: 1px; min-height: 80px; margin: 20px 0; background: rgba(255,255,255,0.35); }
.hd-activities-gallery__arrows { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hd-activities-gallery__prev,
.hd-activities-gallery__next { width: 28px; height: 28px; border: none; background: transparent; color: #fff; font-size: 24px; line-height: 1; cursor: pointer; transition: color 0.3s ease; }
.hd-activities-gallery__prev:hover,
.hd-activities-gallery__next:hover { color: var(--hd-gold); }
.hd-activities-gallery__thumbs { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.hd-activities-gallery__thumb { position: relative; width: 88px; height: 58px; margin-left: -44px; padding: 0; border: 2px solid rgba(255,255,255,0.35); background: #111; overflow: hidden; cursor: pointer; z-index: 4; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); transition: border-color 0.3s ease; }
.hd-activities-gallery__thumb.is-active { border-color: var(--hd-gold); }
.hd-activities-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }

.hd-activities-fleet { position: relative; padding: 90px 5% 100px; overflow: hidden; }
.hd-activities-fleet__bg { position: absolute; inset: 0; z-index: 0; }
.hd-activities-fleet__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hd-activities-fleet__shade { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.52); }
.hd-activities-fleet__head { position: relative; z-index: 2; max-width: 820px; margin: 0 auto 42px; text-align: center; }
.hd-activities-fleet__lead { margin-bottom: 16px; font-family: 'EB Garamond', serif; font-size: 14px; font-style: italic; color: rgba(255,255,255,0.88); }
.hd-activities-fleet__head h2 { margin-bottom: 18px; font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.05; letter-spacing: 1px; text-transform: uppercase; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hd-activities-fleet__desc { max-width: 640px; margin: 0 auto; font-family: 'EB Garamond', serif; font-size: 14px; font-style: italic; line-height: 1.65; color: rgba(255,255,255,0.78); }
.hd-activities-fleet__panel { position: relative; z-index: 2; width: min(100%, 1240px); margin: 0 auto; padding: 8px 0 0; border-radius: 24px; background: rgba(18, 14, 10, 0.72); border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 24px 80px rgba(0,0,0,0.35); overflow: hidden; }
.hd-activities-fleet__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.hd-activities-fleet__col { padding: 28px 22px 32px; border-right: 1px solid rgba(255,255,255,0.14); text-align: center; }
.hd-activities-fleet__col:last-child { border-right: none; }
.hd-activities-fleet__img { width: 100%; height: 150px; margin-bottom: 18px; overflow: hidden; border-radius: 4px; }
.hd-activities-fleet__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hd-activities-fleet__col h3 { margin-bottom: 10px; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; color: var(--hd-gold); }
.hd-activities-fleet__text { margin-bottom: 14px; font-family: 'EB Garamond', serif; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.72); }
.hd-activities-fleet__specs { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; font-size: 11px; color: rgba(201,168,76,0.9); }
.hd-activities-fleet__specs span { display: inline-flex; align-items: center; gap: 5px; }
.hd-activities-fleet__specs svg { opacity: 0.85; }
.hd-activities-fleet__prices { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.hd-activities-fleet__prices p { font-family: 'EB Garamond', serif; font-size: 12px; line-height: 1.45; color: rgba(255,255,255,0.78); }
.hd-activities-fleet__price-label { display: block; margin-bottom: 2px; font-size: 11px; color: rgba(201,168,76,0.88); }
.hd-activities-fleet__prices strong { font-size: 18px; color: var(--hd-gold); font-weight: 600; }
.hd-activities-fleet__prices em { font-size: 10px; font-style: normal; color: rgba(255,255,255,0.55); }
.hd-activities-fleet__link { margin-top: 6px; }

.hd-activities-concierge { position: relative; padding: 90px 5% 100px; background: #000; text-align: center; }
.hd-activities-concierge__rule { width: 120px; height: 1px; margin: 0 auto 28px; background: rgba(201,168,76,0.45); }
.hd-activities-concierge h2 { margin-bottom: 14px; font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 52px); font-weight: 500; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hd-activities-concierge__sub { margin-bottom: 14px; font-family: 'EB Garamond', serif; font-size: clamp(14px, 1.35vw, 17px); font-style: italic; color: rgba(255,255,255,0.88); }
.hd-activities-concierge__copy { max-width: 580px; margin: 0 auto 28px; font-family: 'EB Garamond', serif; font-style: italic; font-size: clamp(14px, 1.35vw, 17px); line-height: 1.45; color: rgba(255,255,255,0.78); }
.hd-activities-concierge__social-bar { position: absolute; left: 24px; top: 54%; transform: translateY(-50%); display: flex; flex-direction: column-reverse; align-items: center; gap: 14px; }
.hd-activities-concierge__social-label { writing-mode: vertical-rl; transform: rotate(180deg); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; letter-spacing: 1px; color: var(--hd-gray); text-transform: lowercase; }
.hd-activities-concierge__social-icons { display: flex; flex-direction: column; gap: 14px; }
.hd-activities-associates,
.hd-activities-footer { width: 100%; }

/* --- CORPORATE STAYS PAGE --- */
.hd-stays-page[hidden] {
    display: none;
}

.hd-body--stays {
    background: #000;
}

.hd-body--stays .hd-hero,
.hd-body--stays .hd-home-pillars,
.hd-body--stays .hd-act-strip,
.hd-body--stays .hd-combined-hero,
.hd-body--stays .hd-flawless-combined,
.hd-body--stays .ded-section,
.hd-body--stays .hd-concierge-info,
.hd-body--stays .hd-contact,
.hd-body--stays .hd-chef-page,
.hd-body--stays .hd-heli-page,
.hd-body--stays .hd-corp-page,
.hd-body--stays .hd-contact-page,
.hd-body--stays .hd-ground-page,
.hd-body--stays .hd-activities-page,
.hd-body--stays .hd-mem-page {
    display: none;
}

.hd-body--stays #hdAssociates,
.hd-body--stays #hdFooter {
    display: none;
}

.hd-body--stays .hd-stays-page {
    display: block;
}

.hd-body--stays .hd-navbar {
    height: 80px;
    background: transparent;
    border-bottom-color: transparent;
}

.hd-body--stays .hd-navbar__logo img {
    height: 60px;
}

.hd-body--chef .hd-stays-page,
.hd-body--heli .hd-stays-page,
.hd-body--corp .hd-stays-page,
.hd-body--contact .hd-stays-page,
.hd-body--ground .hd-stays-page,
.hd-body--stays .hd-mem-page,
.hd-body--activities .hd-mem-page {
    display: none;
}

.hd-stays-page {
    background: #000;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
}

.hd-stays-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 6% 90px;
    overflow: hidden;
}

.hd-stays-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-stays-hero__bg img,
.hd-stays-hero__bg .hd-exp-kenburns {
    width: 100%;
    height: 100%;
}

.hd-stays-hero__bg img {
    object-fit: cover;
    object-position: center;
}

.hd-stays-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.88) 100%);
}

.hd-stays-hero__rail {
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hd-stays-hero__rail-line {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.55);
}

.hd-stays-hero__rail-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.hd-stays-hero__card {
    position: relative;
    z-index: 2;
    width: min(100%, 780px);
    padding: 48px 52px 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.hd-stays-hero__title {
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-stays-hero__subtitle {
    margin-bottom: 18px;
    font-family: 'EB Garamond', serif;
    font-size: clamp(15px, 1.6vw, 18px);
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
}

.hd-stays-hero__copy {
    max-width: 560px;
    margin: 0 auto 28px;
    font-family: 'EB Garamond', serif;
    font-size: clamp(13px, 1.25vw, 15px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.hd-stays-hero__cta {
    display: inline-flex;
    margin-bottom: 34px;
}

.hd-stays-hero__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 28px;
    padding-bottom: 4px;
}

.hd-stays-hero__tab {
    position: relative;
    padding: 0 0 8px;
    border: none;
    background: none;
    font-family: 'EB Garamond', serif;
    font-size: clamp(14px, 1.35vw, 17px);
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transition: color 0.3s ease;
}

.hd-stays-hero__tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: transparent;
    transition: background 0.3s ease;
}

.hd-stays-hero__tab:hover,
.hd-stays-hero__tab.is-active {
    color: #fff;
}

.hd-stays-hero__tab.is-active::after {
    background: var(--hd-gold);
}

.hd-stays-hero__search {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr auto;
    align-items: stretch;
    gap: 0;
    margin-top: 4px;
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 10px;
    background: rgba(8, 8, 8, 0.45);
    overflow: hidden;
}

.hd-stays-hero__field {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 14px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    min-width: 0;
}

.hd-stays-hero__field span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.85);
}

.hd-stays-hero__field select,
.hd-stays-hero__field input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #fff;
    outline: none;
    cursor: pointer;
    color-scheme: dark;
}

.hd-stays-hero__field select option {
    color: #000;
    background: #fff;
}

.hd-stays-hero__field input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.hd-stays-hero__field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.85);
    opacity: 0.75;
    cursor: pointer;
}

.hd-stays-hero__search-btn {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    margin: 8px;
    padding: 0 24px;
    border: none;
    border-radius: 4px;
    background: var(--gold-grad);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0a0a0a;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 6px 20px rgba(201, 153, 56, 0.25);
}

.hd-stays-hero__search-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 10px 28px rgba(201, 153, 56, 0.35);
    color: #0a0a0a;
}

.hd-stays-concierge,
.hd-stays-associates,
.hd-stays-footer {
    width: 100%;
}

/* 2. Corporate accommodations card */
.hd-stays-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 5%;
    overflow: hidden;
    background: #000;
}

.hd-stays-visual__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-stays-visual__bg img,
.hd-stays-visual__bg .hd-exp-kenburns {
    width: 100%;
    height: 100%;
}

.hd-stays-visual__bg img {
    object-fit: cover;
    object-position: center;
}

.hd-stays-visual__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.32);
}

.hd-stays-visual__card {
    position: relative;
    z-index: 2;
    width: min(100%, 920px);
    margin: 0 auto;
    padding: clamp(40px, 5vw, 56px);
    border-radius: 28px;
    background: rgba(52, 52, 52, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.hd-stays-visual__card-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(240px, 0.85fr);
    gap: clamp(32px, 4vw, 48px);
    align-items: start;
}

.hd-stays-visual__eyebrow {
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.hd-stays-visual__card-left h2 {
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.02;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hd-stays-visual__copy {
    max-width: 400px;
    margin-bottom: 24px;
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.hd-stays-visual__benefits-title {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.hd-stays-visual__benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hd-stays-visual__benefits-list li {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
}

.hd-stays-visual__benefits-list li::before {
    content: '• ';
    color: var(--hd-gold);
}

.hd-stays-visual__explore {
    display: block;
    width: fit-content;
    margin: 36px auto 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--hd-gold);
    text-decoration: none;
}

.hd-stays-visual__explore span {
    display: block;
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
}

/* 3. Gallery slider */
.hd-stays-gallery {
    position: relative;
    width: 100%;
    min-height: min(85vh, 720px);
    overflow: hidden;
    background: #000;
}

.hd-stays-gallery__main {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: min(85vh, 720px);
}

.hd-stays-gallery__slide {
    display: none;
    width: 100%;
    height: 100%;
    min-height: min(85vh, 720px);
}

.hd-stays-gallery__slide.is-active {
    display: block;
}

.hd-stays-gallery__slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: min(85vh, 720px);
    object-fit: cover;
    object-position: center center;
}

.hd-stays-gallery__nav {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    height: 100%;
    padding: 48px 0 24px;
    background: rgba(12, 12, 12, 0.38);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hd-stays-gallery__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2px;
}

.hd-stays-gallery__line {
    flex: 0 0 145px;
    width: 1px;
    height: 145px;
    min-height: 0;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.35);
}

.hd-stays-gallery__next {
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hd-stays-gallery__next:hover {
    color: var(--hd-gold);
}

.hd-stays-gallery__thumb {
    position: relative;
    width: 96px;
    height: 78px;
    margin-left: -48px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: #111;
    overflow: hidden;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: border-color 0.3s ease;
}

.hd-stays-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.hd-stays-gallery__thumb:hover,
.hd-stays-gallery__thumb.is-active {
    border-color: var(--hd-gold);
}

.hd-stays-visual__explore.hd-chef-btn {
    color: var(--hd-gold);
}

/* --- MEMBERSHIP PAGE --- */
.hd-mem-page[hidden] {
    display: none;
}

.hd-body--membership {
    background: #000;
}

.hd-body--membership .hd-hero,
.hd-body--membership .hd-home-pillars,
.hd-body--membership .hd-act-strip,
.hd-body--membership .hd-combined-hero,
.hd-body--membership .hd-flawless-combined,
.hd-body--membership .ded-section,
.hd-body--membership .hd-concierge-info,
.hd-body--membership .hd-contact,
.hd-body--membership .hd-chef-page,
.hd-body--membership .hd-heli-page,
.hd-body--membership .hd-corp-page,
.hd-body--membership .hd-contact-page,
.hd-body--membership .hd-ground-page,
.hd-body--membership .hd-activities-page,
.hd-body--membership .hd-stays-page {
    display: none;
}

.hd-body--membership #hdAssociates,
.hd-body--membership #hdFooter {
    display: none;
}

.hd-body--membership .hd-mem-page {
    display: block;
}

.hd-body--membership .hd-navbar {
    height: 80px;
    background: transparent;
    border-bottom-color: transparent;
}

.hd-body--membership .hd-navbar__logo img {
    height: 60px;
}

.hd-body--chef .hd-mem-page,
.hd-body--heli .hd-mem-page,
.hd-body--corp .hd-mem-page,
.hd-body--contact .hd-mem-page,
.hd-body--ground .hd-mem-page,
.hd-body--stays .hd-mem-page,
.hd-body--activities .hd-mem-page {
    display: none;
}

.hd-mem-page {
    background: #000;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
}

/* Membership hero */
.hd-mem-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 6% 90px;
    overflow: hidden;
    text-align: center;
}

.hd-mem-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-mem-hero__bg img,
.hd-mem-hero__bg .hd-exp-kenburns {
    width: 100%;
    height: 100%;
}

.hd-mem-hero__bg img {
    object-fit: cover;
    object-position: center;
}

.hd-mem-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.9) 100%);
}

.hd-mem-hero__inner {
    position: relative;
    z-index: 2;
    width: min(100%, 720px);
}

.hd-mem-hero__title {
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hd-mem-hero__title-top {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.hd-mem-hero__title-bottom {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-mem-hero__tagline {
    max-width: 560px;
    margin: 0 auto 24px;
}

.hd-mem-hero__cta {
    display: inline-flex;
    margin-top: 8px;
}

.hd-mem-about {
    padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 64px);
    background: #000;
}

.hd-mem-about__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(36px, 5vw, 64px);
    max-width: 1240px;
    margin: 0 auto;
    align-items: start;
}

.hd-mem-hero__inner .halo-eyebrow {
    margin-bottom: 14px;
}

.hd-mem-hero.hd-welcome--active .hd-mem-hero__cta.hd-reveal-bottom {
    animation-delay: 1s;
}

.hd-mem-about__col .halo-eyebrow {
    display: block;
    margin-bottom: 12px;
}

.hd-mem-about__btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-top: 28px;
}

.hd-mem-about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hd-mem-feature {
    padding: 22px 20px;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.hd-mem-feature:hover {
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hd-mem-feature__num {
    display: block;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--hd-gold);
}

.hd-mem-feature h3 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.hd-mem-feature .hd-chef-type__body {
    font-size: 0.88rem;
    margin: 0;
}

.hd-mem-underline-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: 12px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    padding: 10px;
    margin-top: 25px;
    position: relative;
    width: 150px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.hd-mem-underline-btn--full {
    width: 100%;
    margin-top: 5px;
    font-size: 11px;
    padding: 8px;
}

.hd-mem-underline-btn::before {
    content: '';
    position: absolute;
    height: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--hd-gold);
    transition: 0.3s ease-in-out;
    z-index: 0;
}

.hd-mem-underline-btn:hover::before {
    height: 100%;
}

.hd-mem-underline-btn:hover {
    border: 1px solid var(--hd-gold);
    color: #000;
}

.hd-mem-underline-btn span {
    position: relative;
    z-index: 1;
}

.hd-mem-tiers {
    position: relative;
    text-align: center;
    padding: clamp(80px, 10vw, 110px) clamp(20px, 5vw, 48px);
    overflow: hidden;
}

.hd-mem-tiers__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-mem-tiers__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hd-mem-tiers__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.hd-mem-tiers__inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}

.hd-mem-tiers__inner .halo-eyebrow {
    display: block;
    margin-bottom: 12px;
}

.hd-mem-tiers__heading {
    margin-bottom: 12px;
}

.hd-mem-tiers__sub {
    max-width: 560px;
    margin: 0 auto 48px;
}

.hd-mem-tiers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.hd-mem-tier {
    position: relative;
    padding: 32px 26px 28px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 100%;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.hd-mem-tier:hover {
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hd-mem-tier--onyx {
    border-color: rgba(201, 168, 76, 0.28);
}

.hd-mem-tier--featured {
    border-color: rgba(201, 168, 76, 0.55);
    background: linear-gradient(165deg, rgba(30, 24, 12, 0.92) 0%, rgba(10, 10, 10, 0.88) 100%);
    box-shadow: 0 24px 60px rgba(201, 153, 56, 0.12);
}

.hd-mem-tier__badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.hd-mem-tier__badge--elite {
    border-color: rgba(201, 168, 76, 0.55);
    color: var(--hd-gold);
    background: rgba(201, 168, 76, 0.1);
}

.hd-mem-tier h3 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 600;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-mem-tier__price {
    margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
}

.hd-mem-tier ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.hd-mem-tier ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.hd-mem-tier ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hd-gold);
}

.hd-mem-faq {
    padding: clamp(72px, 9vw, 100px) clamp(20px, 5vw, 48px);
    background: #000;
}

.hd-mem-faq__panel {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(14, 14, 14, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px);
}

.hd-mem-faq__panel .halo-eyebrow {
    display: block;
    margin-bottom: 10px;
}

.hd-mem-faq__title {
    margin-bottom: 28px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.hd-mem-faq__label {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 12px;
}

.hd-mem-faq__rule {
    width: min(320px, 70%);
    height: 1px;
    margin: 0 auto 24px;
    background: rgba(201, 168, 76, 0.55);
}

.hd-mem-faq__panel > h2 {
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-mem-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hd-mem-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border: none;
    background: none;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
}

.hd-mem-faq__question:hover {
    color: var(--hd-gold-light);
}

.hd-mem-faq__icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.hd-mem-faq__item.is-open .hd-mem-faq__icon {
    transform: rotate(180deg);
}

.hd-mem-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.hd-mem-faq__item.is-open .hd-mem-faq__answer {
    max-height: 200px;
}

.hd-mem-faq__answer p {
    padding: 0 0 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
    .hd-mem-tiers__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hd-mem-tier--featured {
        grid-column: 1 / -1;
    }
}

.hd-mem-concierge,
.hd-mem-associates,
.hd-mem-footer {
    width: 100%;
}

/* --- CORPORATE CONCIERGE PAGE --- */
.hd-corp-page[hidden] {
    display: none;
}

.hd-body--corp {
    background: #000;
}

.hd-body--corp .hd-hero,
.hd-body--corp .hd-home-pillars,
.hd-body--corp .hd-act-strip,
.hd-body--corp .hd-combined-hero,
.hd-body--corp .hd-flawless-combined,
.hd-body--corp .ded-section,
.hd-body--corp .hd-concierge-info,
.hd-body--corp .hd-contact,
.hd-body--corp .hd-chef-page,
.hd-body--corp .hd-heli-page {
    display: none;
}

.hd-body--corp #hdAssociates,
.hd-body--corp #hdFooter {
    display: none;
}

.hd-body--corp .hd-corp-page {
    display: block;
}

.hd-body--corp .hd-navbar {
    height: 80px;
    background: transparent;
    border-bottom-color: transparent;
}

.hd-body--corp .hd-navbar__logo img {
    height: 60px;
}

.hd-body--chef .hd-corp-page,
.hd-body--heli .hd-corp-page,
.hd-body--corp .hd-contact-page,
.hd-body--corp .hd-ground-page,
.hd-body--corp .hd-activities-page,
.hd-body--corp .hd-stays-page,
.hd-body--corp .hd-mem-page {
    display: none;
}

.hd-corp-page {
    background: #000;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
}

/* Corporate — shared Dubai background block */
.hd-corp-dubai-block {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hd-corp-dubai-block__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-corp-dubai-block__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.hd-corp-dubai-block__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(28,18,6,0.45) 38%, rgba(0,0,0,0.68) 100%);
}

/* Section 1: Title only */
.hd-corp-title {
    position: relative;
    z-index: 2;
    padding: 90px 5% 6px;
}

.hd-corp-title__inner {
    position: relative;
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: 44px 0 6px;
    text-align: center;
}

.hd-corp-title__heading {
    margin: 0 0 80px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 54.77px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
}

.hd-corp-title .hd-corp-hero__tagline-wrap {
    position: absolute;
    top: 0;
    right: clamp(0px, 6%, 72px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.hd-corp-title .hd-corp-hero__tagline {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.2px;
    color: rgba(255,255,255,0.95);
}

.hd-corp-title .hd-corp-hero__head-rule {
    display: block;
    width: 28px;
    height: 1px;
    flex-shrink: 0;
    margin-top: 11px;
    background: rgba(255,255,255,0.78);
}

/* Section 2: Contact form card */
.hd-corp-form {
    position: relative;
    z-index: 2;
    padding: 0 5% 64px;
}

.hd-corp-form__inner {
    width: min(100%, 1240px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.hd-corp-hero__card {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(340px, 1.12fr);
    gap: 56px 72px;
    align-items: start;
    width: min(100%, 1140px);
    padding: 52px 58px 54px;
    border-radius: 26px;
    background: rgba(10,8,6,0.82);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(201,168,76,0.14);
}

.hd-corp-hero__left {
    padding-top: 4px;
}

.hd-corp-hero__eyebrow {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hd-gold);
}

.hd-corp-hero__left h2 {
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-corp-hero__lead {
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    color: var(--hd-gold);
}

.hd-corp-hero__body {
    max-width: 340px;
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
}

.hd-corp-hero__contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hd-corp-hero__contacts li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.hd-corp-hero__contacts img,
.hd-corp-hero__contacts svg {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    color: var(--hd-gold);
    object-fit: contain;
}

.hd-corp-hero__contacts a {
    color: var(--hd-gold);
    text-decoration: none;
    transition: color 0.25s ease;
}

.hd-corp-hero__contacts a:hover {
    color: #fff;
}

.hd-corp-hero__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 2px;
}

.hd-corp-hero__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
}

.hd-corp-hero__field span {
    display: block;
    margin-bottom: 10px;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.78);
}

.hd-corp-hero__field input,
.hd-corp-hero__field select,
.hd-corp-hero__field textarea {
    width: 100%;
    padding: 4px 0 10px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.42);
    background: transparent;
    color: #fff;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    outline: none;
    resize: vertical;
}

.hd-corp-hero__field input:focus,
.hd-corp-hero__field select:focus,
.hd-corp-hero__field textarea:focus {
    border-bottom-color: var(--hd-gold);
}

.hd-corp-hero__field--select {
    position: relative;
}

.hd-corp-hero__field select {
    color-scheme: dark;
}

.hd-corp-hero__field select option {
    background-color: #0a0a0a;
    color: #f5f0e8;
}

.hd-corp-hero__field--select select {
    appearance: none;
    cursor: pointer;
    padding-right: 28px;
}

.hd-corp-hero__field--select::after {
    content: '\9662';
    position: absolute;
    right: 0;
    bottom: 12px;
    color: var(--hd-gold);
    font-size: 11px;
    pointer-events: none;
}

.hd-corp-hero__field--upload {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.42);
}

.hd-corp-hero__field--upload span {
    display: block;
    padding-right: 40px;
    line-height: 1.45;
}

.hd-corp-hero__field--upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    border: none;
    padding: 0;
}

.hd-corp-hero__field--upload::after {
    content: '\2191';
    position: absolute;
    right: 0;
    bottom: 12px;
    color: var(--hd-gold);
    font-size: 15px;
    pointer-events: none;
}

.hd-corp-hero__submit {
    align-self: flex-end;
    margin-top: 12px;
    padding: 9px 22px;
    color: var(--hd-gold);
    border-bottom-color: var(--hd-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: none;
    transition: color 0.4s ease, padding 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hd-corp-hero__submit:hover {
    color: #000;
    padding-left: 32px;
    padding-right: 32px;
}

.hd-corp-hero__submit::before {
    background: var(--gold-grad);
}

/* Section 2: FAQ */
.hd-corp-faq {
    position: relative;
    min-height: calc(110vh - 78px);
    padding: clamp(100px, 12vw, 160px) 5% clamp(110px, 12vw, 170px);
    overflow: hidden;
}

.hd-corp-faq__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hd-corp-faq__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hd-corp-faq__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.52);
}

.hd-corp-faq__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 920px);
    margin: 0 auto;
    padding: clamp(44px, 5vw, 64px) clamp(36px, 5vw, 72px);
    border-radius: 28px;
    background: rgba(8,8,8,0.82);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201,168,76,0.1);
    text-align: center;
}

.hd-corp-faq__eyebrow {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hd-gold);
}

.hd-corp-faq__rule {
    width: min(320px, 70%);
    height: 1px;
    margin: 0 auto 24px;
    background: rgba(201,168,76,0.55);
}

.hd-corp-faq__panel h2 {
    margin-bottom: clamp(32px, 4vw, 48px);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-corp-faq__list {
    text-align: left;
}

.hd-corp-faq__item {
    border-bottom: 1px solid rgba(201,168,76,0.22);
}

.hd-corp-faq__item:first-child {
    border-top: 1px solid rgba(201,168,76,0.22);
}

.hd-corp-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border: none;
    background: transparent;
    color: var(--hd-gold);
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    text-align: left;
    cursor: pointer;
    transition: color 0.35s ease;
}

.hd-corp-faq__question:hover {
    color: #fff;
}

.hd-corp-faq__icon {
    flex-shrink: 0;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.hd-corp-faq__item.is-open .hd-corp-faq__icon {
    transform: rotate(180deg);
}

.hd-corp-faq__answer {
    display: none;
    padding: 0 0 20px;
}

.hd-corp-faq__item.is-open .hd-corp-faq__answer {
    display: block;
}

.hd-corp-faq__answer p {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.76);
}

.hd-corp-associates,
.hd-corp-footer {
    width: 100%;
}

/* --- CONTACT PAGE --- */
.hd-contact-page[hidden] {
    display: none;
}

.hd-body--contact {
    background: #000;
}

.hd-body--contact .hd-hero,
.hd-body--contact .hd-home-pillars,
.hd-body--contact .hd-act-strip,
.hd-body--contact .hd-combined-hero,
.hd-body--contact .hd-flawless-combined,
.hd-body--contact .ded-section,
.hd-body--contact .hd-concierge-info,
.hd-body--contact .hd-contact,
.hd-body--contact .hd-chef-page,
.hd-body--contact .hd-heli-page,
.hd-body--contact .hd-corp-page {
    display: none;
}

.hd-body--contact #hdAssociates,
.hd-body--contact #hdFooter {
    display: none;
}

.hd-body--contact .hd-contact-page {
    display: block;
}

.hd-body--contact .hd-navbar {
    height: 80px;
    background: transparent;
    border-bottom-color: transparent;
}

.hd-body--contact .hd-navbar__logo img {
    height: 60px;
}

.hd-body--chef .hd-contact-page,
.hd-body--heli .hd-contact-page,
.hd-body--corp .hd-contact-page,
.hd-body--contact .hd-ground-page,
.hd-body--contact .hd-activities-page,
.hd-body--contact .hd-stays-page,
.hd-body--contact .hd-mem-page {
    display: none;
}

.hd-contact-page {
    background: #000;
    color: #fff;
    padding-top: 0;
    overflow: hidden;
}

.hd-contact-dubai-block {
    min-height: 100vh;
    padding-top: 90px;
}

.hd-contact-inquiry {
    position: relative;
    z-index: 2;
    padding: 48px 5% 72px;
}

.hd-contact-inquiry__inner {
    width: min(100%, 1240px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.hd-contact-inquiry__card {
    width: min(100%, 1140px);
}

.hd-contact-inquiry__left h2 {
    margin-bottom: 18px;
}

.hd-contact-inquiry__form {
    gap: 22px;
}

.hd-contact-inquiry__urgent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    cursor: pointer;
}

.hd-contact-inquiry__urgent input {
    width: 16px;
    height: 16px;
    accent-color: var(--hd-gold);
    cursor: pointer;
}

.hd-contact-associates,
.hd-contact-footer {
    width: 100%;
}

/* --- WELCOME SECTION --- */
.hd-welcome-block {
    position: relative;
    padding: 0;
    width: 100%;
    max-width: none;
}

.hd-membership-block {
    position: relative;
    padding: 0 0 0 clamp(28px, 4vw, 52px);
    width: 100%;
    max-width: none;
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    border-left: 1px solid rgba(201, 168, 76, 0.28);
}

.hd-membership__side-rail {
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    pointer-events: none;
}

.hd-membership__side-line {
    width: 1px;
    height: 86px;
    background: rgba(255,255,255,0.62);
    display: block;
}

.hd-membership__side-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    color: rgba(255,255,255,0.78);
    text-transform: none;
    white-space: nowrap;
}

.hd-combined-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(100px, 14vh, 140px) clamp(20px, 6%, 72px);
}

.hd-combined-hero__inner {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.hd-combined-hero .hd-membership__side-rail {
    display: none;
}

.hd-combined-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hd-combined-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s linear;
    will-change: transform;
}

.hd-combined-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 59, 76, 0.12) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 5;
}

.hd-welcome__divider1 {
    position: absolute;
    left: 45px;
    width: 1px;
    height: 90px;
    background: var(--hd-white);
    z-index: 10;
}

.hd-welcome__divider1--top {
    top: 50px;
}

.hd-welcome__divider1--bottom {
    bottom: 50px;
}

.hd-combined-hero__side-label {
    position: absolute;
    left: -50px;
    transform: translateY(-50%) rotate(90deg);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--hd-white);
    z-index: 10;
    white-space: nowrap;
}

.hd-welcome__main-reveal {
    display: flex;
    flex-direction: column;
}

.hd-welcome__eyebrow {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    margin-top: 0;
    margin-left: 0;
    letter-spacing: 0.28em;
    color: var(--hd-gold);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.hd-welcome__title {
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    line-height: 0.88;
    display: flex;
    font-weight: 700;
    margin-left: 0;
    flex-direction: column;
    margin-bottom: 28px;
}

.hd-welcome__divider {
    display: block;
    width: 0;
    height: 2px;
    background: var(--hd-gold-light);
    margin: 12px 0;
    transition: width 1s ease 0.6s;
}

.hd-welcome--active .hd-welcome__divider {
    width: clamp(120px, 18vw, 200px);
}

.hd-welcome__title-dubai {
    margin-left: 0.12em;
}

.hd-welcome__desc {
    margin-left: 0;
    max-width: 520px;
}

.hd-welcome__tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.35;
    font-weight: 500;
}

.hd-welcome__body {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
}

/* Animations */
.hd-reveal-left {
    opacity: 0;
    transform: translateX(-100px);
}

.hd-reveal-right {
    opacity: 0;
    transform: translateX(100px);
}

.hd-reveal-bottom {
    opacity: 0;
    transform: translateY(100px);
}

.hd-welcome--active .hd-reveal-left {
    animation: hdSlideIn 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.hd-welcome--active .hd-reveal-right {
    animation: hdSlideIn 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards 1.2s;
}

.hd-welcome--active .hd-reveal-bottom {
    animation: hdSlideUpReveal 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards 0.6s;
}

@keyframes hdSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hdSlideUpReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MEMBERSHIP --- */
.hd-membership {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hd-membership__content {
    position: relative;
    max-width: 500px;
    padding: 0;
    width: 100%;
    margin: 0;
    /* ← remove auto centering */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* ← was flex-end, now left-aligned */
}

.hd-membership__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.85) 40%, transparent 100%);
    /* gradient fades from right (dark) to left (transparent) */
}

.hd-membership__side-label {
    position: absolute;
    left: 20px;
    /* ← tight to the left edge */
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    /* ← vertical, reading bottom-to-top */
    transform-origin: center center;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 0.85rem;
    /* ← smaller, like in the screenshot */
    color: var(--hd-white);
    white-space: nowrap;
}

.hd-membership__side-rail .hd-membership__side-label {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    transform-origin: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    color: rgba(255,255,255,0.78);
    text-transform: none;
    white-space: nowrap;
}

.hd-membership__rule {
    width: 180px;
    height: 1px;
    background: var(--gold-grad);
    margin-bottom: 25px;
}

.hd-membership__heading {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 0.92;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 25px;
}

.hd-membership__heading span {
    display: block;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #fff;
}

.hd-membership__heading-bottom {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-membership__heading-top {
    font-size: 0.55em;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: left;
}

.hd-membership__heading-bottom {
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
}

.hd-membership__subtitle {
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
    max-width: 420px;
}

.hd-membership__body {
    margin-top: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
    max-width: 420px;
    margin-bottom: 36px;
}

.hd-membership__btn-wrapper {
    display: flex;
    justify-content: flex-start;
    /* ← was flex-end */
}

.hd-membership__btn {
    padding: 10px 40px 10px 10px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.hd-flawless-combined {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 72vh;
}

.hd-flawless-combined__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hd-flawless-combined__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hd-flawless-combined__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hd-flawless-block {
    position: relative;
    padding: 15vw 10vw;
    z-index: 10;
}

.hd-flawless__content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.hd-flawless__eyebrow {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.hd-flawless__heading {
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--hd-glass);
}

.hd-flawless__rule-inline {
    display: inline-block;
    width: clamp(80px, 14vw, 200px);
    height: 1px;
    background: var(--hd-gold);
    vertical-align: middle;
    margin-left: 16px;
}

.hd-flawless__heading-gold {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #fff;
    display: inline-block;
}

.hd-flawless__heading-gold:last-of-type {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-flawless__body-wrap {
    margin-left: clamp(0px, 18vw, 42%);
    margin-top: 8px;
    max-width: 480px;
}

.hd-flawless__body {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* ================================================
   SIGNATURE ACTIVITIES — horizontal scroll strip
================================================ */
.hd-act-strip {
    position: relative;
    height: 280vh;
    background: linear-gradient(180deg, #050505 0%, #0a0c10 50%, #030303 100%);
}

.hd-act-strip__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(20px, 5%, 56px) 40px;
    overflow: hidden;
}

.hd-act-strip__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
    gap: 20px 40px;
    align-items: end;
    max-width: 100%;
    margin-bottom: 28px;
    z-index: 2;
}

.hd-act-strip__head .halo-eyebrow,
.hd-act-strip__head .halo-title-section {
    grid-column: 1;
}

.hd-act-strip__lead {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-top: 0;
    max-width: 340px;
    padding-bottom: 6px;
    border-left: 1px solid rgba(201, 168, 76, 0.25);
    padding-left: 24px;
}

.hd-act-strip__viewport {
    width: 100%;
    overflow: visible;
    margin-bottom: 28px;
}

.hd-act-strip__track {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
    width: max-content;
    will-change: transform;
    padding-right: 10vw;
}

.hd-act-strip__card {
    flex: 0 0 clamp(260px, 38vw, 340px);
    height: clamp(320px, 48vh, 420px);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hd-act-strip__card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hd-act-strip__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hd-act-strip__card:hover img {
    transform: scale(1.06);
}

.hd-act-strip__card-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(transparent 35%, rgba(13, 59, 76, 0.25) 55%, rgba(0, 0, 0, 0.88) 100%);
}

.hd-act-strip__card-copy span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--halo-sand, #c4a882);
    margin-bottom: 8px;
}

.hd-act-strip__card-copy h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.hd-act-strip__card-copy p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.hd-act-strip__footer {
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2;
}

.hd-act-strip__progress {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 280px;
}

.hd-act-strip__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--gold-grad);
    transition: width 0.08s linear;
}

.hd-act-strip__cta {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hd-act-strip {
        height: 220vh;
    }

    .hd-act-strip__card {
        flex: 0 0 72vw;
        height: 360px;
    }
}

/* ================================================
   YOUR DEDICATED — arch expand + services showcase
================================================ */
.hd-svc-home {
    position: relative;
    width: 100%;
    height: 180vh;
    margin: 0;
    padding: 0;
    background: #030303;
}

.hd-svc-home.hd-svc-home--active .hd-svc-home__intro {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hd-svc-home__stage {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #030303;
}

.hd-svc-home__intro {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.hd-svc-home__intro [data-svc-fade] {
    pointer-events: none;
}

.hd-svc-home__side-label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    font-family: 'Montserrat', sans-serif;
    z-index: 12;
}

.hd-svc-home__arch {
    position: absolute;
    left: 50%;
    top: 70%;
    width: 350px;
    height: 430px;
    transform: translate(-50%, -50%);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    z-index: 4;
    background: #0e0d0d;
    box-shadow: 0 30px 80px rgba(0,0,0,0.85);
    will-change: width, height, border-radius, opacity, transform, box-shadow;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.hd-svc-home__arch.is-expanding {
    box-shadow: 0 30px 80px rgba(0,0,0,0.85), 0 0 0 1px rgba(201, 168, 76, 0.25), 0 0 60px rgba(201, 168, 76, 0.12);
}

.hd-svc-home__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hd-svc-home__scroll-hint span:first-child {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0.65);
    font-family: 'Montserrat', sans-serif;
}

.hd-svc-home__scroll-hint.is-hidden {
    opacity: 0;
}

.hd-svc-home__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 15;
}

.hd-svc-home__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--gold-grad);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
    transition: width 0.1s linear;
}

.hd-svc-home__arch.is-full {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
}

.hd-svc-home__arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) sepia(0.2) contrast(1.05);
    will-change: transform;
    transition: filter 0.6s ease;
}

.hd-svc-home__arch.is-expanding img {
    filter: brightness(0.85) sepia(0.12) contrast(1.08);
}

.hd-svc-home__badge {
    position: absolute;
    left: clamp(22%, 28vw, 34%);
    bottom: 32%;
    width: 130px;
    height: 130px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.35);
    background: rgba(0,0,0,0.25);
    pointer-events: none;
    transition: opacity 0.4s ease, box-shadow 0.5s ease;
    animation: hdSvcBadgePulse 3s ease-in-out infinite;
}

@keyframes hdSvcBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

.hd-svc-home__badge img {
    width: 52px;
    height: auto;
    object-fit: contain;
    filter: brightness(2);
}

.hd-svc-home__title-left {
    position: absolute;
    top: 16%;
    left: 8%;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.hd-svc-home__title-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 3.6vw, 52px);
    font-weight: 900;
    line-height: 0.93;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    text-align: right;
}

.hd-svc-home__title-right {
    position: absolute;
    top: 32%;
    right: 8%;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.hd-svc-home__rule {
    display: block;
    width: 150px;
    height: 1px;
    background: var(--gold-grad);
    margin-bottom: 12px;
}

.hd-svc-home__corp {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-svc-home__title-right h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 900;
    line-height: 0.88;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.hd-svc-home__para {
    position: absolute;
    bottom: 44px;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: clamp(11px, 1vw, 14px);
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.hd-svc-home__para--left { left: 120px; }
.hd-svc-home__para--right { right: 120px; max-width: 220px; }

.hd-svc-showcase {
    position: absolute;
    inset: 0;
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.65) 100%),
        url("../images/flawless_execution_image.png") center / cover no-repeat,
        #030303;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
}

.hd-svc-showcase.is-visible {
    opacity: 1;
    visibility: visible;
    z-index: 20;
    pointer-events: auto;
    overflow: hidden;
}

.hd-svc-showcase.is-detail-open .hd-svc-showcase__viewport {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hd-svc-showcase__viewport {
    width: 100%;
    max-height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 clamp(72px, 10vw, 120px);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-x pan-y;
}

.hd-svc-showcase__viewport:focus {
    outline: none;
}

.hd-svc-showcase__viewport:focus-visible {
    outline: 1px solid rgba(201, 168, 76, 0.45);
    outline-offset: 4px;
}

.hd-svc-showcase__viewport.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    touch-action: none;
}

.hd-svc-showcase__viewport::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.hd-svc-showcase__close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hd-svc-showcase__close:hover {
    border-color: var(--hd-gold);
    color: var(--hd-gold);
}

.hd-svc-showcase.is-detail-open .hd-svc-showcase__close {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hd-svc-showcase__track {
    display: flex;
    gap: clamp(16px, 2vw, 28px);
    width: max-content;
    padding: 8px 0 16px;
}

.hd-svc-showcase__card {
    flex: 0 0 clamp(280px, 52vw, 560px);
    height: clamp(280px, 58vh, 520px);
    max-height: calc(100vh - 120px);
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.72;
    transform: scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    padding: 0;
    background: #111;
    scroll-snap-align: center;
    font: inherit;
}

.hd-svc-showcase__card.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 28px 70px rgba(0,0,0,0.65);
}

.hd-svc-showcase__card:hover {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.hd-svc-showcase__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) contrast(1.05);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.hd-svc-showcase__card:hover img {
    filter: brightness(1) contrast(1.08);
    transform: scale(1.03);
}

.hd-svc-showcase__card-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.82) 100%);
    pointer-events: none;
    text-align: left;
}

.hd-svc-showcase__detail {
    position: absolute;
    inset: 0;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #000;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hd-svc-showcase__detail.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hd-svc-showcase__detail-copy {
    position: absolute;
    left: clamp(72px, 10vw, 140px);
    bottom: 18%;
    max-width: 560px;
    color: #fff;
    z-index: 3;
    pointer-events: none;
}

.hd-svc-showcase__detail-copy h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 400;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hd-svc-showcase__detail-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6.5vw, 76px);
    line-height: 1;
    margin: 0 0 14px;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-svc-showcase__detail-copy h1::before {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: #fff;
    margin-bottom: 10px;
}

.hd-svc-showcase__detail-copy h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 400;
    margin: 0 0 16px;
}

.hd-svc-showcase__detail-copy p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
    margin: 0;
    max-width: 480px;
}

.hd-svc-showcase__detail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.hd-svc-showcase__detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

.hd-svc-showcase__detail-logo {
    position: absolute;
    bottom: 56px;
    right: clamp(80px, 10vw, 120px);
    height: 72px;
    width: auto;
    z-index: 3;
    opacity: 0.92;
    filter: brightness(1.4);
    pointer-events: none;
}

.hd-svc-showcase__detail-nav {
    position: absolute;
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
}

.hd-svc-showcase__detail-nav button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 6px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hd-svc-showcase__detail-nav button.is-active,
.hd-svc-showcase__detail-nav button:hover {
    color: #fff;
    transform: scale(1.15);
}

.hd-svc-showcase__detail-nav span {
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.45);
}

.hd-svc-showcase__detail-back {
    position: absolute;
    top: 24px;
    left: clamp(72px, 10vw, 120px);
    z-index: 5;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 16px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hd-svc-home { height: 160vh; }

    .hd-svc-home__arch {
        width: 260px;
        height: 320px;
        top: 66%;
    }

    .hd-svc-home__badge {
        width: 90px;
        height: 90px;
        left: 18%;
        bottom: 30%;
    }

    .hd-svc-home__badge img { width: 36px; }

    .hd-svc-home__para,
    .hd-svc-home__side-label { display: none; }

    .hd-svc-showcase__viewport {
        padding: 0 56px 0 16px;
    }

    .hd-svc-showcase__card {
        flex-basis: 78vw;
        height: 48vh;
    }

    .hd-svc-showcase__detail-copy {
        left: 24px;
        bottom: 22%;
        max-width: 90%;
    }

    .hd-svc-showcase__detail-logo {
        right: 24px;
        bottom: 90px;
        height: 48px;
    }

    .hd-svc-showcase__detail-nav {
        bottom: 28px;
        gap: 8px;
    }

    .hd-svc-showcase__detail-back {
        left: 16px;
        top: 16px;
    }
}


/* --- CONCIERGE INFO --- */
.hd-concierge-info {
    position: relative;
    min-height: 560px;
    padding: 80px 5% 100px;
    margin-top: 0;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.hd-concierge-info__rule {
    width: 240px;
    height: 1px;
    background: rgba(255,255,255,0.65);
    margin: 0 auto 18px;
}

.hd-concierge-info__heading {
    font-size: clamp(48px, 6vw, 60px);
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-concierge-info__subheading {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.25vw, 17px);
    color: rgba(255,255,255,0.78);
    margin-bottom: 24px;
}

.hd-concierge-info__body {
    max-width: 580px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.78);
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: clamp(14px, 1.35vw, 17px);
    line-height: 1.45;
}

.hd-concierge-info__btn {
    margin-top: 4px;
}

.hd-concierge-info__social-bar {
    display: none;
}

.hd-concierge-info__social-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--hd-gray);
    text-transform: lowercase;
}

.hd-concierge-info__social-icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--hd-white);
}

/* --- CONTACT --- */
.hd-contact {
    position: relative;
    padding: 86px 5%;
    background: #000;
    overflow: hidden;
}

.hd-contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.hd-contact__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hd-contact__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     
}

.hd-contact__inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(230px, 1fr);
    gap: clamp(44px, 6vw, 70px);
    align-items: center;
    width: min(100%, 980px);
    min-height: 340px;
    margin: 0 auto;
    padding: clamp(42px, 5vw, 58px);
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(9,9,8,0.88), rgba(14,14,12,0.78)),
        rgba(0,0,0,0.64);
    box-shadow: 0 30px 90px rgba(0,0,0,0.62);
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.hd-contact__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("../images/corporate_concierge.png") left center / cover no-repeat;
    opacity: 0.22;
    filter: blur(1px);
    z-index: -1;
}

.hd-contact__heading {
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 0.88;
    margin-bottom: 22px;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-contact__sub {
    max-width: 300px;
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
}

.hd-contact__send-btn {
    margin-top: 0;
}

.hd-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    margin-top: 8px;
}

.hd-contact__actions .hd-contact__send-btn {
    flex: 1 1 140px;
    min-width: 140px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.hd-contact__form {
    background: transparent;
    padding: 0;
    border: 0;
    backdrop-filter: none;
}

.hd-contact__field {
    margin-bottom: 18px;
}

.hd-contact__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.42);
    padding: 8px 0 10px;
    color: var(--hd-white);
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    outline: none;
}

.hd-contact__select option {
    background-color: #0a0a0a;
    color: #f5f0e8;
}

.hd-contact__select {
    color-scheme: dark;
}

.hd-contact__textarea {
    resize: none;
    min-height: 48px;
}

/* --- ASSOCIATES --- */
.hd-associates {
    padding: clamp(56px, 8vh, 80px) clamp(20px, 6%, 72px);
    text-align: left;
    background: linear-gradient(180deg, #000 0%, #060608 100%);
    overflow: hidden;
}

.hd-associates__intro {
    max-width: 640px;
    margin-bottom: 28px;
}

.hd-associates__heading {
    display: block;
    letter-spacing: 0.02em;
    margin: 8px 0 10px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    text-transform: none;
}

.hd-associates__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    max-width: 520px;
}

.hd-associates__rule {
    width: 100%;
    height: 1px;
    background: var(--hd-gold);
    margin-bottom: 54px;
}

.hd-associates__logos {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hd-associates__logos-track {
    display: flex;
    align-items: center;
    gap: clamp(70px, 9vw, 120px);
    min-width: max-content;
    animation: hdAssociatesMarquee 28s linear infinite;
}

.hd-associates__logo-item {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    opacity: 0.72;
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
}

.hd-associates__logo-item:hover {
    opacity: 1;
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, 0.35);
}

.hd-associates__logo-item--has-img {
    background: transparent;
    border-color: transparent;
    min-width: auto;
    min-height: auto;
    padding: 16px 28px;
}

.hd-associates__logo-item--has-img:hover {
    border-color: transparent;
    background: transparent;
}

.hd-associates__logo-img {
    height: 96px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.hd-associates__logo-item:hover .hd-associates__logo-img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.hd-associates__logo-item--text {
    min-width: 148px;
    min-height: 88px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 168, 76, 0.22);
}

.hd-partner-wordmark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.hd-partner-wordmark__primary {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #fff;
}

.hd-partner-wordmark__secondary {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.6;
    color: var(--hd-gold);
    max-width: 130px;
}

.hd-associates__logo-text {
    display: block;
    text-align: center;
    line-height: 0.95;
}

.hd-associates__logo-text--meon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    letter-spacing: 7px;
}

.hd-associates__logo-text--house {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
}

.hd-associates__logo-text--house small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    opacity: 0.8;
}

.hd-associates__logo-text--luxury {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    letter-spacing: 2px;
}

.hd-associates__logo-text--banquet {
    font-family: 'EB Garamond', serif;
    font-size: 30px;
    font-style: italic;
}

.hd-associates__logo-text--ata {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

.hd-associates__logo-text--trans {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
}

@keyframes hdAssociatesMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- FOOTER --- */
.hd-footer {
    position: relative;
    z-index: 6000;
    isolation: isolate;
    background: #000;
    padding: 76px 8% 32px;
    border-top: 0;
    color: #fff;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    pointer-events: auto !important;
    cursor: text;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.hd-footer * {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

.hd-footer p,
.hd-footer span,
.hd-footer a,
.hd-footer h4,
.hd-footer div {
    position: relative;
    z-index: 2;
    color: #fff !important;
    cursor: text;
}

.hd-footer svg {
    opacity: 1 !important;
    filter: none !important;
}

.hd-footer ::selection {
    background: rgba(201, 168, 76, 0.55);
    color: #fff;
}

.hd-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(80px, 18vw, 260px);
    margin-bottom: 74px;
}

.hd-footer__logo {
    display: block;
    width: 86px;
    margin-bottom: 18px;
}

.hd-footer__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    user-select: auto;
    -webkit-user-drag: auto;
}

.hd-footer__brand,
.hd-footer__contact,
.hd-footer__bottom,
.hd-footer__brand-desc,
.hd-footer__contact-item,
.hd-footer__bottom-links,
.hd-footer__bottom-copy {
    position: relative;
    z-index: 3;
    pointer-events: auto !important;
}

.hd-footer__brand-desc {
    max-width: 360px;
    color: #fff !important;
    margin-bottom: 22px;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.hd-footer__brand-social {
    display: flex;
    gap: 10px;
}

.hd-footer__social-icon {
    width: var(--hd-social-size);
    height: var(--hd-social-size);
    border: 1px solid rgba(201, 168, 76, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    user-select: none !important;
    -webkit-user-select: none !important;
    background: rgba(0, 0, 0, 0.25);
}

.hd-footer__social-icon img,
.hd-footer__social-icon .hd-social-svg {
    width: var(--hd-social-img);
    height: var(--hd-social-img);
    object-fit: contain;
}



.hd-footer__contact-title {
    font-size: 22px;
    margin-bottom: 28px;
    color: #fff !important;
}

.hd-footer__contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff !important;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    cursor: text;
}

.hd-footer__contact-item svg {
    flex: 0 0 auto;
    stroke: #f5d36f !important;
    pointer-events: none !important;
}

.hd-footer__contact-item span {
    display: inline-block;
    color: #fff !important;
    cursor: text;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

.hd-footer__bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.5);
    padding-top: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hd-footer__bottom-links {
    display: flex;
    gap: 30px;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: #fff !important;
    font-weight: 500;
}

.hd-footer__bottom-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.35s ease;
}

.hd-footer__bottom-links a:hover {
    color: var(--hd-gold) !important;
}

.hd-footer__bottom-copy {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: #fff !important;
    font-weight: 500;
}

/* --- MOBILE STYLES --- */
@media (max-width: 1024px) {

    .hd-navbar__links,
    .hd-navbar__links-right,
    .hd-navbar__login {
        display: none;
    }

    .hd-navbar__burger {
        display: flex;
    }

    .hd-hero__title {
        font-size: 15vw;
    }

    .hd-welcome__heading,
    .hd-membership__heading {
        font-size: 5rem;
    }

    .hd-flawless__heading {
        font-size: 4rem;
    }

    .hd-contact__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hd-footer__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hd-dedicated {
        flex-direction: column;
        height: auto;
    }

    .hd-dedicated__left,
    .hd-dedicated__right {
        height: 60vh;
    }

    .hd-hero__caption-area {
        flex-direction: column;
        align-items: center;
        text-align: center;
        bottom: 88px;
        gap: 10px;
        justify-content: center;
    }

    .hd-hero .halo-scroll-cue {
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
    }

    .hd-hero__caption-line {
        width: 100px;
    }

    .hd-hero__caption {
        font-size: 0.9rem;
    }

    .hd-chef-visual__card-grid,
    .hd-stays-visual__card-grid,
    .hd-heli-visual__card-grid,
    .hd-ground-visual__card-grid,
    .hd-activities-visual__card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hd-chef-visual__card,
    .hd-stays-visual__card,
    .hd-heli-visual__card,
    .hd-ground-visual__card,
    .hd-activities-visual__card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 40px 28px;
    }

    .hd-chef-visual__card h2,
    .hd-stays-visual__card-left h2,
    .hd-heli-visual__card h2,
    .hd-ground-visual__card-left h2,
    .hd-activities-visual__card-left h2 {
        font-size: clamp(28px, 7.2vw, 40px);
        line-height: 1.08;
        letter-spacing: 0.04em;
        overflow-wrap: anywhere;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }

    .hd-chef-visual,
    .hd-stays-visual,
    .hd-heli-visual,
    .hd-ground-visual,
    .hd-activities-visual {
        padding: 70px 16px;
    }
}

@media (max-width: 768px) {

    .hd-welcome,
    .hd-membership,
    .hd-flawless {
        height: auto;
        padding: 100px 0;
    }

    .hd-welcome__heading,
    .hd-membership__heading {
        font-size: 4rem;
    }

    .hd-flawless__heading {
        font-size: 3rem;
    }

    .hd-flawless__body-col {
        grid-template-columns: 1fr;
    }

    .hd-contact__heading {
        font-size: 3.2rem;
    }

    .hd-concierge-info {
        min-height: 460px;
        padding: 90px 24px;
    }

    .hd-concierge-info__social-bar {
        position: static;
        transform: none;
        flex-direction: column;
        margin-top: 46px;
    }

    .hd-concierge-info__social-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .hd-concierge-info__social-icons {
        flex-direction: row;
    }

    .hd-contact {
        padding: 56px 18px;
    }

    .hd-contact__inner {
        gap: 34px;
        padding: 34px 26px;
    }

    .hd-associates {
        padding: 52px 24px;
    }

    .hd-associates__logo-img {
        height: 80px;
        max-width: 180px;
    }

    .hd-associates__logo-item--has-img {
        padding: 14px 20px;
    }

    .hd-footer {
        padding: 56px 24px 30px;
    }

    .hd-footer__bottom {
        gap: 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hd-footer__bottom-links {
        flex-wrap: wrap;
        gap: 18px;
    }
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hd-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: var(--hd-dark);
    z-index: 2000;
    padding: 88px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transition: var(--hd-transition);
}

.hd-mobile-menu--active {
    right: 0;
}

.hd-body--menu-open {
    overflow: hidden;
}

.hd-mobile-menu a {
    font-size: var(--hd-navbar-font-size);
    line-height: 1.35;
    letter-spacing: normal;
    text-transform: none;
    text-decoration: none;
    color: var(--hd-white);
    transition: color 0.35s ease;
}

.hd-mobile-menu__group {
    margin-top: 12px;
    margin-bottom: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--hd-navbar-font-size);
    letter-spacing: normal;
    text-transform: none;
    color: var(--hd-gold);
}

.hd-mobile-menu__group:first-child {
    margin-top: 0;
}

.hd-mobile-menu a:hover {
    color: var(--hd-gold);
}

.hd-inquiry-feedback {
    margin-top: 12px;
    color: var(--hd-gold-light);
    font-size: 14px;
    line-height: 1.5;
}

.hd-inquiry-feedback[hidden] {
    display: none !important;
}

.hd-contact__sub a {
    color: var(--hd-gold-light);
    text-decoration: none;
}

.hd-contact__sub a:hover {
    text-decoration: underline;
}

/* --- AUTH PAGE --- */
.hd-auth[hidden] {
    display: none;
}

html.hd-html--auth {
    overflow: hidden;
    height: 100%;
}

.hd-body--auth {
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
    inset: 0;
}

.hd-body--auth .hd-navbar,
.hd-body--auth .hd-mobile-menu,
.hd-body--auth .hd-hero,
.hd-body--auth .hd-home-pillars,
.hd-body--auth .hd-act-strip,
.hd-body--auth .hd-combined-hero,
.hd-body--auth .hd-flawless-combined,
.hd-body--auth .hd-concierge-info,
.hd-body--auth .hd-contact,
.hd-body--auth .hd-associates,
.hd-body--auth .hd-footer {
    display: none;
}

.hd-auth {
    position: fixed;
    inset: 0;
    z-index: 5000;
    padding: clamp(12px, 2vh, 28px) clamp(16px, 5vw, 48px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    isolation: isolate;
}

.hd-auth-server-warning {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5001;
    width: min(92vw, 720px);
    padding: 14px 18px;
    border: 1px solid rgba(220, 80, 80, 0.55);
    border-radius: 10px;
    background: rgba(40, 10, 10, 0.92);
    color: #ffd5d5;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.hd-auth-server-warning a {
    color: #ffec93;
    font-weight: 600;
}

.hd-auth-server-warning[hidden] {
    display: none !important;
}

.hd-auth__bg {
    position: fixed;
    inset: 0;
    background:
          url("../images/singup_img.png") center center / cover no-repeat;
    z-index: -2;
}

.hd-auth__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: -1;
}

.hd-auth__panel {
    position: relative;
    width: min(100%, 1390px);
    margin: 0 auto;
    border-radius: 16px;
    background: rgba(0,0,0,0.8);
    box-shadow: 0 35px 95px rgba(0,0,0,0.68);
    overflow: visible;
}

.hd-auth__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    background: rgba(0,0,0,0.32);
    color: rgba(255,255,255,0.8);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    transition: var(--hd-transition);
}

.hd-auth__close:hover {
    color: var(--hd-gold);
    border-color: var(--hd-gold);
}

.hd-auth__screen {
    position: relative;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 48px) clamp(24px, 10vw, 160px);
}

.hd-auth__screen--intro {
    min-height: min(72vh, 780px);
}

.hd-auth__screen.is-active {
    display: flex;
}

.hd-auth__intro-copy {
    max-width: 620px;
    text-align: center;
    margin: 0 auto;
}

.hd-auth__eyebrow,
.hd-auth__small,
.hd-auth__title {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-auth__eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 0.86;
    font-variant: small-caps;
}

.hd-auth__small {
    margin-top: 10px;
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--hd-white);
    -webkit-text-fill-color: var(--hd-white);
}

.hd-auth__title {
    display: block;
    font-size: clamp(48px, 6vw, 74px);
    font-weight: 700;
    line-height: 0.92;
    margin-bottom: 20px;
    white-space: nowrap;
}

.hd-auth__subtitle,
.hd-auth__body,
.hd-auth__actions,
.hd-auth__field span,
.hd-auth__forgot,
.hd-auth__switch,
.hd-auth__terms,
.hd-auth__copyright {
    font-family: 'EB Garamond', serif;
}

.hd-auth__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 42px;
}

.hd-auth__body {
    max-width: 440px;
    margin: 0 auto 48px;
    font-size: 16px;
    line-height: 1.35;
    color: rgba(255,255,255,0.86);
}

.hd-auth__actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 26px 11px;
    font-size: 17px;
}

.hd-auth__switch button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.hd-auth__switch button:hover {
    color: var(--hd-gold);
}

.hd-auth__screen--login,
.hd-auth__screen--signup {
    flex-direction: column;
    padding-top: clamp(16px, 2vw, 28px);
    padding-bottom: clamp(48px, 6vw, 72px);
}

.hd-auth__logo {
    width: 88px;
    margin: 0 auto 24px;
}

.hd-auth__form {
    width: min(100%, 450px);
}

.hd-auth__field {
    position: relative;
    display: block;
    margin-bottom: 34px;
}

.hd-auth__field span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.88);
    font-size: 18px;
}

.hd-auth__field input {
    width: 100%;
    height: 34px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.66);
    background: transparent;
    color: var(--hd-white);
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    outline: none;
}

.hd-auth__field input:focus {
    border-color: var(--hd-gold-light);
}

.hd-auth__field--password input {
    padding-right: 42px;
}

.hd-auth__field--password button {
    position: absolute;
    right: 0;
    bottom: 8px;
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: var(--hd-white);
    cursor: pointer;
}

.hd-auth__field--password svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.hd-auth__forgot {
    display: inline-block;
    margin: -18px 0 50px;
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    text-decoration: none;
    transition: color 0.35s ease;
}

.hd-auth__forgot:hover {
    color: var(--hd-gold);
}

.hd-auth__error {
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid rgba(220, 80, 80, 0.45);
    border-radius: 8px;
    background: rgba(120, 20, 20, 0.35);
    color: #ffb4b4;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.45;
}

.hd-auth__divider {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 86%;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.72);
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    white-space: nowrap;
}

.hd-auth__divider::before,
.hd-auth__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.38);
}

.hd-auth__provider {
    width: 83%;
    min-height: 46px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    background: rgba(0,0,0,0.14);
    color: var(--hd-white);
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    cursor: pointer;
    transition: var(--hd-transition);
}

.hd-auth__provider:hover {
    border-color: var(--hd-gold);
    color: var(--hd-gold-light);
}

.hd-auth__google {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #4285f4;
}

.hd-auth__apple {
    color: #fff;
    font-size: 18px;
}

.hd-auth__submit {
    display: block;
    margin: 28px auto 56px;
    min-width: 142px;
    padding: 10px 26px 14px;
    text-align: center;
    text-transform: none;
    font-size: 22px;
}

.hd-auth__switch {
    margin-top: 80px;
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 19px;
}

.hd-auth__switch button {
    color: var(--hd-gold-light);
}

.hd-auth__terms {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: -18px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
}

.hd-auth__terms input {
    width: 18px;
    height: 18px;
    accent-color: var(--hd-gold);
}

.hd-auth__copyright {
    margin-top: 74px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hd-navbar {
        height: 80px;
        padding: 0 20px;
    }

    .hd-navbar__logo img {
        height: 50px;
    }

    .hd-navbar__links,
    .hd-navbar__links-right,
    .hd-navbar__login {
        display: none;
    }

    .hd-navbar__burger {
        display: flex;
    }

    .hd-chef-page,
    .hd-heli-page,
    .hd-ground-page,
    .hd-stays-page,
    .hd-activities-page,
    .hd-mem-page,
    .hd-corp-page,
    .hd-contact-page {
        overflow-x: hidden;
    }

    .hd-hero__title {
        font-size: 15vw;
    }

    .hd-hero__social {
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        gap: 10px;
    }

    .hd-hero--main-slide .hd-hero__social {
        top: 50%;
        bottom: auto;
        right: 12px;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 12px;
    }

    .hd-hero__social-link {
        width: var(--hd-social-size);
        height: var(--hd-social-size);
    }

    .hd-chef-page {
        padding-top: 0;
    }

    .hd-chef-intro {
        min-height: 100vh;
        padding: 70px 18px 80px;
    }

    .hd-chef-intro__content {
        padding: 40px 28px;
        border-radius: 22px;
    }

    .hd-chef-intro__content h1 {
        font-size: 32px;
    }

    .hd-chef-intro__tagline {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .hd-chef-visual {
        min-height: auto;
        padding: 70px 16px;
    }

    .hd-chef-visual__card {
        padding: 34px 20px 40px;
        border-radius: 22px;
        width: 100%;
        max-width: 100%;
    }

    .hd-chef-visual__card h2 {
        font-size: clamp(28px, 7.2vw, 36px);
    }

    .hd-chef-visual__card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hd-chef-visual__social-bottom,
    .hd-heli-visual__social-bottom,
    .hd-ground-visual__social-bottom {
        display: none;
    }

    .hd-chef-services {
        padding: 70px 16px 0;
    }

    .hd-chef-services__panel {
        margin-bottom: 50px;
        padding: 28px 0;
    }

    .hd-chef-services__grid {
        grid-template-columns: 1fr;
    }

    .hd-chef-services__col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        padding: 20px 24px;
    }

    .hd-chef-services__col:last-child {
        border-bottom: none;
    }

    .hd-chef-proposal {
        padding: 0 16px 60px;
    }

    .hd-chef-proposal__inner {
        grid-template-columns: 1fr;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .hd-chef-concierge {
        min-height: 520px;
        padding: 100px 22px 90px;
    }

    .hd-chef-concierge__social-bar {
        display: none;
    }

    .hd-heli-page {
        padding-top: 0;
    }

    .hd-heli-intro {
        min-height: 100vh;
        padding: 70px 18px 80px;
    }

    .hd-heli-intro__rail {
        display: none;
    }

    .hd-heli-intro__frame {
        height: min(58vh, 380px);
    }

    .hd-heli-intro__social-bottom {
        left: 18px;
        bottom: 24px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hd-heli-visual {
        min-height: auto;
        padding: 70px 16px;
    }

    .hd-heli-visual__card {
        padding: 34px 20px 40px;
        border-radius: 22px;
        width: 100%;
        max-width: 100%;
    }

    .hd-heli-visual__card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hd-ground-visual__card {
        padding: 34px 20px 40px;
        border-radius: 22px;
        width: 100%;
        max-width: 100%;
    }

    .hd-heli-packages {
        padding: 70px 16px 0;
    }

    .hd-heli-packages__panel {
        margin-bottom: 50px;
        padding: 28px 0;
    }

    .hd-heli-packages__grid {
        grid-template-columns: 1fr;
    }

    .hd-heli-packages__col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        padding: 20px 24px;
    }

    .hd-heli-packages__col:last-child {
        border-bottom: none;
    }

    .hd-heli-proposal {
        padding: 0 16px 60px;
    }

    .hd-heli-proposal__inner {
        grid-template-columns: 1fr;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .hd-heli-concierge {
        min-height: 520px;
        padding: 100px 22px 90px;
    }

    .hd-heli-concierge__social-bar {
        display: none;
    }

    .hd-ground-page {
        padding-top: 0;
    }

    .hd-ground-intro {
        min-height: 100vh;
        padding: 70px 18px 80px;
    }

    .hd-ground-intro__content {
        width: min(100%, 100%);
        padding: 40px 20px;
        border-radius: 22px;
    }

    .hd-ground-intro__content h1 {
        font-size: clamp(32px, 7.5vw, 58px);
        letter-spacing: 0.03em;
    }

    .hd-ground-intro__rail {
        display: none;
    }

    .hd-ground-intro__social-bottom {
        left: 18px;
        bottom: 24px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hd-ground-visual {
        padding: 70px 16px;
    }

    .hd-ground-visual__card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hd-heli-gallery,
    .hd-ground-gallery,
    .hd-activities-gallery {
        min-height: auto;
    }

    .hd-heli-gallery__main,
    .hd-heli-gallery__slide,
    .hd-heli-gallery__slide img,
    .hd-ground-gallery__main,
    .hd-ground-gallery__slide,
    .hd-ground-gallery__slide img,
    .hd-activities-gallery__main,
    .hd-activities-gallery__slide,
    .hd-activities-gallery__slide img {
        min-height: 320px;
    }

    .hd-heli-gallery__nav,
    .hd-ground-gallery__nav,
    .hd-activities-gallery__nav {
        width: 88px;
        padding: 28px 0 16px;
    }

    .hd-heli-gallery__num,
    .hd-ground-gallery__num,
    .hd-activities-gallery__num {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 28px;
    }

    .hd-heli-gallery__line,
    .hd-ground-gallery__line,
    .hd-stays-gallery__line,
    .hd-activities-gallery__line {
        width: 60px;
        height: 1px;
        min-height: 0;
        margin: 12px 0;
        flex: 0;
    }

    .hd-heli-gallery__next,
    .hd-ground-gallery__next,
    .hd-stays-gallery__next,
    .hd-activities-gallery__next {
        margin-bottom: 16px;
    }

    .hd-heli-gallery__thumb,
    .hd-ground-gallery__thumb,
    .hd-stays-gallery__thumb,
    .hd-activities-gallery__thumb {
        width: 72px;
        height: 58px;
        margin-left: -36px;
    }

    .hd-ground-fleet {
        padding: 70px 16px 80px;
    }

    .hd-ground-fleet__grid {
        grid-template-columns: 1fr;
    }

    .hd-ground-fleet__col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        padding: 24px 16px;
    }

    .hd-ground-fleet__col:last-child {
        border-bottom: none;
    }

    .hd-ground-concierge {
        min-height: 520px;
        padding: 100px 22px 90px;
    }

    .hd-ground-concierge__social-bar {
        display: none;
    }

    .hd-activities-page {
        padding-top: 0;
    }

    .hd-activities-intro {
        min-height: 100vh;
        padding: 70px 18px 80px;
    }

    .hd-activities-intro__rail,
    .hd-activities-gallery__rail {
        display: none;
    }

    .hd-activities-intro__frame {
        height: min(58vh, 380px);
    }

    .hd-activities-intro__social-bottom {
        left: 18px;
        bottom: 24px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hd-activities-visual {
        padding: 70px 16px;
        min-height: auto;
    }

    .hd-activities-visual__card {
        padding: 34px 24px 40px;
        border-radius: 22px;
    }

    .hd-activities-visual__card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hd-activities-gallery {
        min-height: auto;
    }

    .hd-activities-gallery__main,
    .hd-activities-gallery__slide,
    .hd-activities-gallery__slide img {
        min-height: 320px;
    }

    .hd-activities-gallery__nav {
        width: 88px;
        padding: 28px 0 16px;
    }

    .hd-activities-gallery__num {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 28px;
    }

    .hd-activities-gallery__line {
        width: 60px;
        height: 1px;
        min-height: 0;
        margin: 12px 0;
        flex: 0;
    }

    .hd-activities-gallery__thumb {
        width: 72px;
        height: 52px;
        margin-left: -36px;
    }

    .hd-activities-fleet {
        padding: 70px 16px 80px;
    }

    .hd-activities-fleet__panel {
        border-radius: 18px;
    }

    .hd-activities-fleet__grid {
        grid-template-columns: 1fr;
    }

    .hd-activities-fleet__col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.14);
        padding: 24px 16px;
    }

    .hd-activities-fleet__col:last-child {
        border-bottom: none;
    }

    .hd-activities-concierge {
        min-height: 520px;
        padding: 100px 22px 90px;
    }

    .hd-activities-concierge__social-bar {
        display: none;
    }

    .hd-act-hero {
        padding: 170px 20px;
    }

    .hd-act-hero__content {
        padding: 34px 22px;
    }

    .hd-act-hero__content h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .hd-act-card {
        padding: 100px 20px 40px;
        align-items: center;
        justify-content: center;
    }

    .hd-act-card__content {
        text-align: center;
    }

    .hd-act-card__content h2 {
        font-size: 28px;
        display: block;
    }

    .hd-act-card__content p {
        width: 100%;
    }

    .hd-mem-page {
        padding-top: 0;
    }

    .hd-mem-hero {
        min-height: 100svh;
        padding: 88px 20px 72px;
    }

    .hd-mem-about {
        padding: 64px 20px 48px;
    }

    .hd-mem-about__grid {
        grid-template-columns: 1fr;
    }

    .hd-mem-about__features {
        grid-template-columns: 1fr;
    }

    .hd-mem-tiers__grid {
        grid-template-columns: 1fr;
    }

    .hd-mem-faq__panel {
        padding: 34px 22px;
    }

    .hd-stays-page {
        padding-top: 0;
    }

    .hd-stays-hero {
        min-height: 100vh;
        padding: 70px 18px 80px;
    }

    .hd-stays-hero__rail {
        display: none;
    }

    .hd-stays-hero__card {
        padding: 34px 22px 28px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hd-stays-hero__title {
        font-size: clamp(30px, 8vw, 42px);
        letter-spacing: 0.04em;
        overflow-wrap: anywhere;
    }

    .hd-stays-hero__tabs {
        flex-wrap: wrap;
        gap: 18px 22px;
    }

    .hd-stays-hero__search {
        grid-template-columns: 1fr;
    }

    .hd-stays-hero__field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hd-stays-hero__search-btn {
        width: calc(100% - 16px);
        min-height: 48px;
        margin: 8px;
    }

    .hd-stays-visual {
        padding: 70px 16px;
    }

    .hd-stays-visual__card {
        padding: 34px 20px 40px;
        border-radius: 22px;
        width: 100%;
        max-width: 100%;
    }

    .hd-stays-visual__card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hd-stays-visual__card-left h2 {
        font-size: clamp(28px, 7.2vw, 36px);
    }

    .hd-stays-gallery,
    .hd-stays-gallery__main,
    .hd-stays-gallery__slide,
    .hd-stays-gallery__slide img {
        min-height: 320px;
    }

    .hd-stays-gallery__nav {
        width: 88px;
        padding: 28px 0 16px;
    }

    .hd-corp-page {
        padding-top: 0;
    }

    .hd-corp-title {
        padding: 70px 16px 4px;
    }

    .hd-corp-title__inner {
        padding: 36px 0 4px;
    }

    .hd-corp-title .hd-corp-hero__tagline-wrap {
        position: static;
        justify-content: center;
        margin-bottom: 14px;
    }

    .hd-corp-title .hd-corp-hero__tagline {
        font-size: 15px;
        text-align: center;
    }

    .hd-corp-title .hd-corp-hero__head-rule {
        width: 24px;
        margin-top: 10px;
    }

    .hd-corp-title__heading {
        font-size: 42px;
        letter-spacing: 4px;
        margin-bottom: 48px;
    }

    .hd-corp-form {
        padding: 8px 16px 56px;
    }

    .hd-corp-hero__card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 22px 36px;
        border-radius: 22px;
    }

    .hd-corp-hero__left h2 {
        font-size: 32px;
    }

    .hd-corp-hero__lead {
        font-size: 16px;
    }

    .hd-corp-hero__body {
        max-width: 100%;
    }

    .hd-corp-hero__form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hd-corp-hero__submit {
        align-self: stretch;
        text-align: center;
    }

    .hd-contact-page {
        padding-top: 0;
    }

    .hd-contact-dubai-block {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hd-contact-inquiry {
        padding: 32px 16px 56px;
    }

    .hd-contact-inquiry__card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 22px 36px;
        border-radius: 22px;
    }

    .hd-corp-faq {
        min-height: auto;
        padding: 80px 16px 90px;
    }

    .hd-corp-faq__panel {
        padding: 32px 22px 36px;
        border-radius: 22px;
    }

    .hd-corp-faq__question {
        padding: 16px 0;
        font-size: 17px;
    }

    .hd-auth {
        padding: 10px 12px 20px;
    }

    .hd-auth__panel {
        border-radius: 12px;
    }

    .hd-auth__screen {
        padding: 28px 18px 40px;
    }

    .hd-auth__screen--login,
    .hd-auth__screen--signup {
        padding-top: 20px;
        padding-bottom: 56px;
    }

    .hd-auth__close {
        top: 12px;
        right: 12px;
    }

    .hd-auth__logo {
        width: 70px;
        margin-bottom: 34px;
    }

    .hd-auth__body {
        margin-bottom: 34px;
    }

    .hd-auth__actions {
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 16px;
    }

    .hd-auth__field {
        margin-bottom: 25px;
    }

    .hd-auth__field span {
        font-size: 16px;
    }

    .hd-auth__divider,
    .hd-auth__provider {
        width: 100%;
    }

    .hd-auth__divider {
        gap: 10px;
        font-size: 13px;
    }

    .hd-auth__submit {
        margin: 28px auto 48px;
        font-size: 20px;
    }

    .hd-auth__switch {
        margin-top: 46px;
        font-size: 17px;
    }

    .hd-auth__terms {
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        line-height: 1.25;
    }

    .hd-auth__copyright {
        margin-top: 46px;
        font-size: 17px;
    }

    .hd-combined-hero {
        height: auto;
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .hd-combined-hero__side-label,
    .hd-welcome__divider1,
    .hd-welcome__divider {
        display: none !important;
    }

    .hd-welcome-block,
    .hd-membership-block {
        padding: 40px 20px;
        margin: 0;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 20px !important;
        /* Reset user's 37% padding */
    }

    .hd-membership__side-rail {
        display: none;
    }

    .hd-welcome__eyebrow {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
    }

    .hd-welcome__title {
        font-size: 60px;
        margin-left: 0;
        text-align: center;
        align-items: center;
    }

    .hd-welcome__title-dubai {
        margin-left: 0;
    }

    .hd-welcome__desc {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .hd-membership__content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .hd-membership__heading {
        font-size: 60px;
        text-align: center;
        align-items: center;
    }

    .hd-membership__heading-top {
        font-size: 32px;
        text-align: center;
    }

    .hd-membership__heading-bottom {
        font-size: 55px;
        text-align: center;
    }

    .hd-membership__subtitle,
    .hd-membership__body {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
    }

    .hd-membership__rule {
        margin: 0 auto 20px;
    }

    .hd-membership__btn-wrapper {
        justify-content: center;
    }

    .hd-membership__btn {
        padding: 10px 20px;
        text-align: center;
        width: auto;
        min-width: 250px;
    }

    /* Flawless Combined */
    .hd-flawless-combined {
        height: auto;
    }

    .hd-flawless-block {
        padding: 60px 20px;
        text-align: center;
    }

    .hd-flawless__heading {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hd-flawless__rule-inline {
        display: none;
    }

    .hd-flawless__body-wrap {
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
        text-align: center;
    }

    .hd-dedicated-block {
        height: auto;
        padding: 60px 0;
    }

    .hd-dedicated__inner {
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0 20px;
    }

    /* Arch image: full-width, centered block */
    .hd-dedicated__arch-wrap {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 260px;
        height: 360px;
        margin: 0 auto 30px;
    }

    /* Circle logo: static, centered under heading */
    .hd-dedicated__circle-logo {
        position: relative;
        top: 0;
        left: 0;
        width: 130px;
        height: 130px;
        margin: 0 auto 24px;
    }

    /* All text blocks: static, centered */
    .hd-dedicated__top-left,
    .hd-dedicated__mid-right,
    .hd-dedicated__bottom-left,
    .hd-dedicated__bottom-right {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px;
    }

    .hd-dedicated__heading--gold {
        font-size: 2rem;
        text-align: center;
    }

    .hd-dedicated__right-corporate {
        font-size: 1.1rem;
    }

    .hd-dedicated__right-concierge {
        font-size: 3rem;
    }

    .hd-dedicated__heading {
        font-size: 2rem;
        text-align: center;
    }

    .hd-dedicated__rule {
        width: 120px;
        margin: 0 auto 12px;
    }

    .hd-dedicated__caption {
        font-size: 0.95rem;
        text-align: center;
    }
}

/* Package inquiry cart */
.hd-package-cart {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9000;
}

.hd-package-cart__toggle {
    background: linear-gradient(135deg, #c89938, #ffec93);
    color: #111;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hd-package-cart__panel {
    display: none;
    width: min(320px, calc(100vw - 32px));
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.96);
    color: #fff;
}

.hd-package-cart.is-open .hd-package-cart__panel {
    display: block;
}

.hd-package-cart__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
    max-height: 220px;
    overflow-y: auto;
}

.hd-package-cart__item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
}

.hd-package-cart__item span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.hd-package-cart__remove {
    background: none;
    border: none;
    color: #e57373;
    font-size: 20px;
    cursor: pointer;
}

.hd-package-cart__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hd-package-cart__clear {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    text-decoration: underline;
}

.hd-package-cart__empty {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.hd-ground-fleet__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hd-ground-fleet__btn--ghost {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.55);
}

/* Dubai home page — pillars, polish & responsive fixes */

.hd-home-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.18);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.hd-home-pillar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(24px, 3.5vw, 36px) clamp(18px, 2.5vw, 28px);
    background: #050505;
    text-decoration: none;
    color: #fff;
    transition: background 0.4s ease, transform 0.4s ease;
    min-height: 180px;
}

.hd-home-pillar:hover {
    background: #0c0c0e;
    transform: translateY(-4px);
}

.hd-home-pillar--accent {
    background: linear-gradient(145deg, #0a0906 0%, #12100a 100%);
}

.hd-home-pillar--accent:hover {
    background: linear-gradient(145deg, #12100a 0%, #1a160c 100%);
}

.hd-home-pillar__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--hd-gold);
}

.hd-home-pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 600;
    line-height: 1.15;
}

.hd-home-pillar p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.55;
    flex: 1;
}

.hd-home-pillar__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hd-gold);
    margin-top: 4px;
}

.hd-welcome__title-halo {
    color: #fff;
}

.hd-welcome__title-dubai {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
    .hd-navbar {
        column-gap: clamp(20px, 3vw, 40px);
        padding: 0 clamp(16px, 3%, 32px);
    }

    .hd-navbar__lang {
        display: none;
    }

    .hd-navbar__item,
    .hd-navbar__label {
        font-size: 14px;
    }

    .hd-navbar__logo img {
        height: 56px;
    }

    .hd-combined-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hd-membership-block {
        border-left: none;
        border-top: 1px solid rgba(201, 168, 76, 0.28);
        padding: 48px 0 0;
    }

    .hd-membership__side-rail {
        display: none;
    }

    .hd-flawless__body-wrap {
        margin-left: 0;
        max-width: 560px;
    }

    .hd-home-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hd-act-strip {
        height: 220vh;
    }

    .hd-svc-home {
        height: 150vh;
    }

    .hd-act-strip__head {
        grid-template-columns: 1fr;
    }

    .hd-act-strip__lead {
        grid-column: 1;
        grid-row: auto;
        border-left: none;
        padding-left: 0;
        max-width: 100%;
    }

    .hd-hero__caption-area {
        display: none;
    }
}

@media (max-width: 768px) {
    .hd-home-pillars {
        grid-template-columns: 1fr;
    }

    .hd-home-pillar {
        min-height: auto;
    }

    .hd-act-strip {
        height: 180vh;
    }

    .hd-svc-home {
        height: 130vh;
    }

    .hd-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hd-hero__actions .hd-btn--primary,
    .hd-hero__actions .hd-chef-btn {
        width: 100%;
        text-align: center;
    }

    .hd-hero__trust {
        gap: 10px;
    }

    .hd-hero__trust-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding: 8px 12px;
    }

    .hd-hero__trust-item:last-child {
        flex: 1 1 100%;
    }

    .hd-hero__controls {
        bottom: 18px;
    }

    .hd-combined-hero {
        min-height: auto;
        padding: 80px 20px;
    }

    .hd-combined-hero__inner {
        gap: 40px;
    }

    .hd-flawless-block {
        padding: 80px 24px;
    }

    .hd-flawless__rule-inline {
        display: block;
        width: 120px;
        margin: 12px 0;
    }
}

/* ═══ Experience pages — shared motion & polish ═══ */
.hd-exp-kenburns {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hd-exp-kenburns img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: hdExpKenBurns 24s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes hdExpKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hd-exp-stats {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    margin: 28px 0 32px;
    flex-wrap: wrap;
}

.hd-exp-stats--compact {
    margin: 20px 0 28px;
}

.hd-exp-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 88px;
}

.hd-exp-stats__item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-exp-stats__item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.hd-exp-scroll-cue {
    position: absolute;
    left: clamp(24px, 4vw, 48px);
    bottom: 36px;
    z-index: 3;
}

.hd-chef-services__head .halo-eyebrow,
.hd-stays-retreat__head .halo-eyebrow {
    display: block;
    margin-bottom: 12px;
}

.hd-chef-services__col {
    transition: background 0.4s ease, transform 0.4s ease;
}

.hd-chef-services__col:hover {
    background:
        radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 62%);
}

.hd-stays-hero__card .halo-eyebrow {
    margin-bottom: 10px;
}

.hd-stays-hero__card {
    border: 1px solid rgba(201, 168, 76, 0.16);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.hd-stays-hero {
    position: relative;
}

@media (max-width: 1100px) {
    .hd-chef-bespoke__grid,
    .hd-stays-retreat__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hd-chef-bespoke__grid,
    .hd-stays-retreat__grid {
        grid-template-columns: 1fr;
    }

    .hd-chef-type__heading {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .hd-exp-stats {
        gap: 16px;
    }

    .hd-exp-scroll-cue {
        display: none;
    }
}
