/* =========================================================
   GRAND SOFITEL CLUB
   Premium UI layer + animations
   ========================================================= */

:root {
    --gold: #c9a24d;
    --gold-light: #ddb85e;
    --gold-dark: #9f7a2b;
    --ink: #0b0b0b;
    --ink-soft: #15130f;
    --cream: #f7f3eb;
    --cream-deep: #efe7d7;
    --paper: #ffffff;
    --line: #e7dfd0;
    --copy: #17130d;
    --copy-muted: #6f675b;
    --premium-shadow: 0 30px 90px rgba(13, 10, 5, 0.18);
}

/* -------------------------
   Global refinements
   ------------------------- */

body {
    overflow-x: hidden;
}

.site-header {
    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 10px 40px rgba(18, 14, 8, 0.08);
}

.btn {
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 8px 26px rgba(201, 162, 77, 0.20);
}

.btn--primary:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 30px rgba(201, 162, 77, 0.30);
}

.text-link {
    transition: transform 0.2s ease;
}

.text-link:hover {
    transform: translateX(4px);
}

/* -------------------------
   Page loader
   ------------------------- */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: grid;
    place-items: center;

    background: var(--ink);

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__mark {
    width: 88px;
    height: 88px;

    display: grid;
    place-items: center;

    color: var(--gold);

    border: 1px solid rgba(201, 162, 77, 0.45);
    border-radius: 50%;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem;
    letter-spacing: 0.12em;

    animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.18);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 20px rgba(201, 162, 77, 0);
    }
}

/* -------------------------
   Top bar
   ------------------------- */

.topbar {
    color: rgba(255, 255, 255, 0.74);
    background: var(--ink);

    font-size: 0.78rem;
}

.topbar__inner {
    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;
}

.topbar__left,
.topbar__right {
    display: flex;
    align-items: center;

    gap: 14px;
}

.topbar__left a,
.topbar__right a {
    transition: color 0.2s ease;
}

.topbar__left a:hover,
.topbar__right a:hover {
    color: var(--gold);
}

.topbar__dot {
    width: 3px;
    height: 3px;

    background: var(--gold);
    border-radius: 50%;
}

/* -------------------------
   Premium navigation
   ------------------------- */

.site-logo {
    transition: transform 0.25s ease;
}

.brand:hover .site-logo {
    transform: scale(1.03);
}

.nav-menu {
    gap: 20px;
    font-size: 0.91rem;
}

.nav-menu > a:not(.btn),
.nav-dropdown__toggle {
    position: relative;

    padding: 31px 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.nav-menu > a:not(.btn)::after,
.nav-dropdown__toggle::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 22px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.2s ease;
}

.nav-menu > a:not(.btn):hover::after,
.nav-menu > a:not(.btn).active::after,
.nav-dropdown:hover .nav-dropdown__toggle::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    font-weight: 600;
}

.nav-dropdown__toggle span {
    font-size: 0.75rem;
}

.nav-dropdown__menu {
    position: absolute;
    left: -18px;
    top: calc(100% - 12px);

    min-width: 210px;

    padding: 10px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: 14px;

    box-shadow: var(--premium-shadow);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.nav-dropdown__menu a {
    display: block;

    padding: 10px 12px;

    border-radius: 9px;
}

.nav-dropdown__menu a:hover {
    color: var(--gold-dark);
    background: var(--cream);
}

.nav-toggle span {
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------
   Hero slider
   ------------------------- */

.hero-slider {
    position: relative;

    min-height: 720px;

    display: grid;
    align-items: center;

    overflow: hidden;

    color: var(--white);
    background: var(--ink);
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.06);

    transition:
        opacity 1.1s ease,
        transform 5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 7, 0.86),
            rgba(7, 7, 7, 0.46) 48%,
            rgba(7, 7, 7, 0.20)
        );
}

.hero-slider .hero__content {
    position: relative;
    z-index: 2;

    max-width: 860px;

    padding-block: 115px 145px;
}

.hero-slider h1 {
    max-width: 860px;

    font-size:
        clamp(
            3.2rem,
            7vw,
            6.4rem
        );
}

.eyebrow--gold {
    color: var(--gold);
}

.hero-pagination {
    position: absolute;
    right: max(30px, calc((100vw - var(--container)) / 2));
    bottom: 48px;
    z-index: 3;

    display: flex;

    gap: 8px;
}

.hero-pagination button {
    width: 38px;
    height: 3px;

    padding: 0;

    border: 0;

    background: rgba(255, 255, 255, 0.35);

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.hero-pagination button.is-active {
    width: 58px;

    background: var(--gold);
}

.scroll-cue {
    position: absolute;
    left: max(30px, calc((100vw - var(--container)) / 2));
    bottom: 42px;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.64);

    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-cue span {
    width: 1px;
    height: 35px;

    background:
        linear-gradient(
            var(--gold),
            transparent
        );

    animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
    0%,
    100% {
        transform: scaleY(0.55);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
    }
}

/* -------------------------
   Availability card
   ------------------------- */

.availability-wrap {
    position: relative;
    z-index: 6;

    margin-top: -64px;
}

.availability-card {
    display: grid;

    grid-template-columns:
        1.35fr
        repeat(3, 1fr)
        auto;

    align-items: end;

    gap: 14px;

    padding: 24px;

    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    box-shadow: var(--premium-shadow);
}

.availability-intro h2 {
    margin: 0;

    font-size: 2.2rem;
}

.availability-submit {
    min-height: 50px;
}

/* -------------------------
   Intro composition
   ------------------------- */

.intro-layout,
.hospitality-layout,
.intro-membership,
.travel-intro,
.hotel-detail-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 76px;

    align-items: center;
}

.intro-media {
    position: relative;

    min-height: 520px;
}

.intro-photo {
    position: absolute;

    background-size: cover;
    background-position: center;

    border-radius: var(--radius-lg);

    box-shadow: var(--premium-shadow);
}

.intro-photo--main {
    inset: 0 22% 8% 0;

    background-image:
        url(
            "https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1200&q=85"
        );
}

.intro-photo--small {
    right: 0;
    bottom: 0;

    width: 48%;
    height: 50%;

    border: 8px solid var(--paper);

    background-image:
        url(
            "https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=900&q=85"
        );
}

.experience-badge {
    position: absolute;
    left: 28px;
    bottom: 2px;

    max-width: 190px;

    padding: 18px 20px;

    color: var(--ink);
    background: var(--gold);

    border-radius: 18px;

    box-shadow: var(--shadow);
}

.experience-badge strong {
    display: block;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.5rem;
}

.experience-badge span {
    font-size: 0.78rem;
    font-weight: 700;
}

/* -------------------------
   Services
   ------------------------- */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.service-card--dark {
    color: var(--paper);

    border-color: rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            160deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow: none;
}

.service-card--dark p {
    color: rgba(255, 255, 255, 0.64);
}

.service-card--dark a {
    color: var(--gold);

    font-weight: 700;
}

/* -------------------------
   Trip cards
   ------------------------- */

.trip-scroller {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(220px, 1fr));

    gap: 18px;
}

.trip-card,
.hotel-card,
.package-card,
.activity-card,
.room-card,
.season-card,
.travel-service-card {
    overflow: hidden;

    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    transform-style: preserve-3d;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.trip-card:hover,
.hotel-card:hover,
.package-card:hover,
.activity-card:hover,
.room-card:hover,
.season-card:hover,
.travel-service-card:hover {
    box-shadow: var(--premium-shadow);
}

.trip-card__image,
.package-card__image {
    position: relative;

    min-height: 260px;

    background-size: cover;
    background-position: center;
}

.trip-card__image::after,
.package-card__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.35)
        );
}

.trip-card__image span,
.package-card__image span {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;

    padding: 7px 10px;

    color: var(--ink);

    background: rgba(255, 255, 255, 0.90);

    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 800;
}

.trip-card__body,
.package-card__body {
    padding: 20px;
}

.trip-card__body h3,
.package-card__body h2 {
    margin: 6px 0 5px;

    font-size: 1.8rem;
}

.trip-card__body p,
.package-card__body p {
    margin: 0;

    color: var(--copy-muted);
}

.micro-label {
    color: var(--gold-dark);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* -------------------------
   Hotel cards
   ------------------------- */

.hotel-grid,
.package-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.hotel-card__image {
    position: relative;

    min-height: 280px;

    display: block;

    overflow: hidden;

    background-size: cover;
    background-position: center;
}

.hotel-card__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.35)
        );

    transition: background 0.25s ease;
}

.hotel-card:hover .hotel-card__image::after {
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0, 0, 0, 0.48)
        );
}

.hotel-rating {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;

    padding: 7px 10px;

    color: var(--gold);

    background: rgba(11, 11, 11, 0.80);

    border-radius: 999px;

    letter-spacing: 0.04em;
}

.hotel-card__body {
    padding: 24px;
}

.hotel-card__body h3 {
    margin: 5px 0 8px;

    font-size: 2rem;
}

.hotel-card__body p {
    margin: 0 0 10px;

    color: var(--copy-muted);
}

/* -------------------------
   Explore world
   ------------------------- */

.explore-world {
    position: relative;

    min-height: 560px;

    display: grid;
    align-items: center;

    color: var(--paper);

    background-image:
        url(
            "https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=88"
        );

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.explore-world__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 7, 0.82),
            rgba(7, 7, 7, 0.35)
        );
}

.explore-world__content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.explore-world h2 {
    margin: 0;

    font-size:
        clamp(
            3.2rem,
            6vw,
            5.8rem
        );
}

.explore-world p {
    color: rgba(255, 255, 255, 0.74);

    font-size: 1.08rem;
}

/* -------------------------
   Partner marquee
   ------------------------- */

.associates-section {
    padding: 84px 0;

    overflow: hidden;

    background: var(--paper);
}

.associates-heading {
    margin-bottom: 34px;

    text-align: center;
}

.associates-heading h2 {
    margin: 0;

    font-size:
        clamp(
            2.5rem,
            4vw,
            4rem
        );
}

.associates-heading p {
    color: var(--copy-muted);
}

.logo-marquee {
    overflow: hidden;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.logo-marquee__track {
    width: max-content;

    display: flex;
    align-items: center;

    animation: marquee 28s linear infinite;
}

.logo-marquee__track span {
    min-width: 220px;

    padding: 28px 36px;

    color: #8a8174;

    border-right: 1px solid var(--line);

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.4rem;

    text-align: center;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* -------------------------
   Stats
   ------------------------- */

.stats-section {
    padding: 82px 0;

    color: var(--paper);
    background: var(--ink);
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.stat-card {
    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
}

.stat-card strong,
.stat-card > div > span {
    color: var(--gold);

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 3.2rem;
    line-height: 1;
}

.stat-card h3 {
    margin: 14px 0 5px;

    font-size: 1.6rem;
}

.stat-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.9rem;
}

/* -------------------------
   Hospitality
   ------------------------- */

.hospitality-visual {
    position: relative;

    min-height: 520px;

    border-radius: var(--radius-lg);

    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.45)
        ),
        url(
            "https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1200&q=85"
        );

    background-size: cover;
    background-position: center;

    box-shadow: var(--premium-shadow);
}

.hospitality-visual__card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;

    padding: 24px;

    color: var(--paper);

    background: rgba(11, 11, 11, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;

    backdrop-filter: blur(10px);
}

.hospitality-visual__card span {
    display: block;

    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hospitality-visual__card strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
}

.check-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 26px;
}

.check-grid span {
    position: relative;

    padding: 12px 14px 12px 38px;

    background: var(--cream);

    border-radius: 12px;

    font-size: 0.88rem;
    font-weight: 700;
}

.check-grid span::before {
    content: "✓";

    position: absolute;
    left: 14px;

    color: var(--gold);
}

/* -------------------------
   Membership showcase
   ------------------------- */

.membership-showcase {
    padding: 100px 0;

    color: var(--paper);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 162, 77, 0.16),
            transparent 34%
        ),
        var(--ink-soft);
}

.membership-showcase__grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 70px;

    align-items: center;
}

.membership-showcase__copy h2 {
    margin: 0;

    font-size:
        clamp(
            3rem,
            5vw,
            5rem
        );
}

.membership-showcase__copy p {
    color: rgba(255, 255, 255, 0.68);
}

.membership-showcase__cards {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}

.mini-benefit {
    min-height: 170px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);

    background: rgba(255, 255, 255, 0.035);
}

.mini-benefit span {
    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 800;
}

.mini-benefit h3 {
    margin: 0;

    font-size: 1.9rem;
}

/* -------------------------
   Categories
   ------------------------- */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.category-card {
    position: relative;

    min-height: 300px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: end;

    overflow: hidden;

    color: var(--paper);

    border-radius: var(--radius-lg);

    background-size: cover;
    background-position: center;
}

.category-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 38%,
            rgba(0, 0, 0, 0.76)
        );

    transition: background 0.25s ease;
}

.category-card:hover::before {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08) 20%,
            rgba(0, 0, 0, 0.82)
        );
}

.category-card span,
.category-card strong {
    position: relative;
    z-index: 2;
}

.category-card span {
    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-card strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
}

.category-card--history {
    background-image:
        url(
            "https://images.unsplash.com/photo-1477587458883-47145ed94245?auto=format&fit=crop&w=900&q=85"
        );
}

.category-card--weekend {
    background-image:
        url(
            "https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=85"
        );
}

.category-card--holiday {
    background-image:
        url(
            "https://images.unsplash.com/photo-1514282401047-d79a71a590e8?auto=format&fit=crop&w=900&q=85"
        );
}

.category-card--special {
    background-image:
        url(
            "https://images.unsplash.com/photo-1528181304800-259b08848526?auto=format&fit=crop&w=900&q=85"
        );
}

/* -------------------------
   Testimonial slider
   ------------------------- */

.testimonial-slider {
    position: relative;

    min-height: 330px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    background: var(--paper);

    box-shadow: var(--shadow);
}

.testimonial-slide {
    position: absolute;
    inset: 0;

    padding: 54px 110px 54px 54px;

    opacity: 0;

    transform: translateX(30px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.testimonial-slide.is-active {
    opacity: 1;

    transform: translateX(0);
}

.testimonial-stars {
    color: var(--gold);

    letter-spacing: 0.2em;
}

.testimonial-slide blockquote {
    max-width: 850px;

    margin: 20px 0;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size:
        clamp(
            2rem,
            4vw,
            3.4rem
        );

    line-height: 1.18;
}

.testimonial-slide cite {
    color: var(--copy-muted);

    font-style: normal;
    font-weight: 700;
}

.testimonial-controls {
    position: absolute;
    right: 26px;
    bottom: 26px;
    z-index: 5;

    display: flex;

    gap: 8px;
}

.testimonial-controls button {
    width: 44px;
    height: 44px;

    border: 1px solid var(--line);
    border-radius: 50%;

    background: var(--paper);

    cursor: pointer;
}

/* -------------------------
   Newsletter
   ------------------------- */

.newsletter-section {
    padding: 0 0 90px;

    background: var(--cream);
}

.newsletter-card {
    padding: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    color: var(--paper);
    background: var(--ink);

    border-radius: var(--radius-lg);

    box-shadow: var(--premium-shadow);
}

.newsletter-card h2 {
    margin: 0;

    font-size:
        clamp(
            2.4rem,
            4vw,
            3.8rem
        );
}

.newsletter-form {
    min-width: min(100%, 440px);

    display: flex;

    gap: 8px;
}

.newsletter-form input {
    min-width: 0;

    flex: 1;

    padding: 13px 16px;

    color: var(--paper);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    outline: none;
}

/* -------------------------
   Page hero variations
   ------------------------- */

.page-hero--membership {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.84),
            rgba(8, 8, 8, 0.36)
        ),
        url(
            "https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=2000&q=88"
        );
}

.page-hero--travel {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.84),
            rgba(8, 8, 8, 0.36)
        ),
        url(
            "https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=2000&q=88"
        );
}

.page-hero--activities {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.84),
            rgba(8, 8, 8, 0.36)
        ),
        url(
            "https://images.unsplash.com/photo-1502680390469-be75c86b636f?auto=format&fit=crop&w=2000&q=88"
        );
}

.page-hero--hotels,
.page-hero--packages {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.84),
            rgba(8, 8, 8, 0.36)
        ),
        url(
            "https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=88"
        );
}

/* -------------------------
   Membership cards
   ------------------------- */

.intro-membership {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 76px;

    align-items: center;
}

.room-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}

.room-card__visual {
    min-height: 330px;

    background-size: cover;
    background-position: center;
}

.room-card__visual--t1 {
    background-image:
        url(
            "https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=1200&q=85"
        );
}

.room-card__visual--t2 {
    background-image:
        url(
            "https://images.unsplash.com/photo-1611892440504-42a792e24d32?auto=format&fit=crop&w=1200&q=85"
        );
}

.room-card__body {
    padding: 28px;
}

.room-card__body > span {
    color: var(--gold);

    font-weight: 800;
}

.room-card__body h3 {
    margin: 8px 0;

    font-size: 2rem;
}

.room-card__body p,
.room-card__body ul {
    color: var(--copy-muted);
}

.season-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.season-card {
    padding: 28px;
}

.season-card--featured {
    color: var(--paper);

    border-color: rgba(201, 162, 77, 0.50);

    background: var(--ink);

    transform: translateY(-10px);
}

.season-card--featured p {
    color: rgba(255, 255, 255, 0.65);
}

.season-badge {
    display: inline-flex;

    padding: 6px 10px;

    color: var(--gold-dark);
    background: #f4ead0;

    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 800;
}

.season-price {
    margin: 22px 0;

    color: var(--gold-dark);

    font-weight: 800;
}

.season-card--featured .season-price {
    color: var(--gold);
}

/* -------------------------
   Travel desk cards
   ------------------------- */

.travel-service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.travel-service-card__image {
    min-height: 260px;

    background-size: cover;
    background-position: center;
}

.travel-service-card__image--flight {
    background-image:
        url(
            "https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=85"
        );
}

.travel-service-card__image--bus {
    background-image:
        url(
            "https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1200&q=85"
        );
}

.travel-service-card__image--hotel {
    background-image:
        url(
            "https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1200&q=85"
        );
}

.travel-service-card > span,
.travel-service-card > h3,
.travel-service-card > p,
.travel-service-card > a {
    margin-left: 24px;
    margin-right: 24px;
}

.travel-service-card > span {
    display: block;

    margin-top: 22px;

    color: var(--gold-dark);

    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.travel-service-card > h3 {
    margin-top: 6px;
    margin-bottom: 8px;

    font-size: 2rem;
}

.travel-service-card > p {
    color: var(--copy-muted);
}

.travel-service-card > a {
    margin-bottom: 24px;
}

/* -------------------------
   Activities
   ------------------------- */

.activity-grid-full {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.activity-card {
    padding: 28px;
}

.activity-card__icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    color: var(--ink);
    background: var(--gold);

    border-radius: 50%;

    font-size: 1.3rem;
}

.activity-card h3 {
    margin: 8px 0;

    font-size: 2rem;
}

.activity-card p {
    color: var(--copy-muted);
}

/* -------------------------
   Hotel search + detail
   ------------------------- */

.search-summary {
    margin-bottom: 24px;

    padding: 18px 20px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 16px;

    background: var(--cream);

    border: 1px solid var(--line);
    border-radius: 14px;
}

.search-summary em {
    margin-left: auto;

    color: var(--copy-muted);

    font-size: 0.82rem;
}

.hotel-detail-rating {
    margin-top: 18px;

    color: var(--gold);

    letter-spacing: 0.08em;
}

.booking-panel {
    padding: 34px;

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    background: var(--cream);

    box-shadow: var(--shadow);
}

.booking-panel h3 {
    margin: 10px 0;

    font-size: 2.2rem;
}

/* -------------------------
   Footer additions
   ------------------------- */

.footer-grid {
    grid-template-columns:
        1.6fr
        repeat(4, 1fr);
}

.footer-socials {
    display: flex;

    gap: 8px;

    margin-top: 18px;
}

.footer-socials a {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    font-size: 0.7rem;
}

.footer-contact-row {
    margin-top: 48px;

    padding: 24px 0;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.4fr;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-contact-row > div {
    display: grid;

    gap: 4px;
}

.footer-contact-row span {
    color: var(--gold);

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact-row strong {
    color: rgba(255, 255, 255, 0.70);

    font-weight: 500;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 82px;
    z-index: 900;

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    opacity: 0;
    visibility: hidden;

    color: var(--paper);
    background: var(--ink);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    box-shadow: var(--premium-shadow);

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* -------------------------
   Scroll reveal animations
   ------------------------- */

.reveal {
    opacity: 0;

    transform: translateY(34px);

    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal--left {
    transform: translateX(-46px);
}

.reveal--right {
    transform: translateX(46px);
}

.reveal--up {
    transform: translateY(40px);
}

.reveal.is-visible {
    opacity: 1;

    transform: translate(0, 0);
}

.stagger-group .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.stagger-group .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.stagger-group .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.stagger-group .reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.stagger-group .reveal:nth-child(6) {
    transition-delay: 0.40s;
}

.stagger-group .reveal:nth-child(7) {
    transition-delay: 0.48s;
}

.stagger-group .reveal:nth-child(8) {
    transition-delay: 0.56s;
}

/* -------------------------
   Reduced motion
   ------------------------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .explore-world {
        background-attachment: scroll;
    }
}

/* -------------------------
   Responsive
   ------------------------- */

@media (max-width: 1100px) {
    .nav-menu {
        gap: 14px;

        font-size: 0.86rem;
    }

    .availability-card {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .availability-intro {
        grid-column:
            1
            / -1;
    }

    .availability-submit {
        grid-column:
            1
            / -1;
    }

    .service-grid,
    .activity-grid-full {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trip-scroller {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            1.5fr
            repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .topbar__left {
        display: none;
    }

    .topbar__inner {
        justify-content: flex-end;
    }

    .nav-menu > a:not(.btn)::after,
    .nav-dropdown__toggle::after {
        display: none;
    }

    .nav-dropdown__toggle {
        width: 100%;

        padding: 12px;

        text-align: left;
    }

    .nav-dropdown__menu {
        position: static;

        display: none;

        min-width: 0;

        margin: 0 8px 8px;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
        display: block;
    }

    .intro-layout,
    .hospitality-layout,
    .intro-membership,
    .travel-intro,
    .hotel-detail-grid,
    .membership-showcase__grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hotel-grid,
    .package-grid,
    .season-grid,
    .travel-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stats-grid,
    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-contact-row {
        grid-template-columns:
            1fr
            1fr;
    }

    .footer-contact-row > div:last-child {
        grid-column:
            1
            / -1;
    }

    .search-summary em {
        width: 100%;

        margin-left: 0;
    }
}

@media (max-width: 720px) {
    .topbar__right {
        width: 100%;

        justify-content: space-between;

        gap: 8px;
    }

    .hero-slider {
        min-height: 650px;
    }

    .hero-slider .hero__content {
        padding-block: 86px 140px;
    }

    .hero-pagination {
        right: 16px;
    }

    .scroll-cue {
        left: 16px;
    }

    .availability-wrap {
        margin-top: -40px;
    }

    .availability-card {
        grid-template-columns: 1fr;
    }

    .availability-intro,
    .availability-submit {
        grid-column: auto;
    }

    .intro-media {
        min-height: 400px;
    }

    .trip-scroller,
    .hotel-grid,
    .package-grid,
    .activity-grid-full,
    .season-grid,
    .travel-service-grid,
    .service-grid,
    .stats-grid,
    .category-grid,
    .room-grid,
    .membership-showcase__cards {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .final-cta,
    .newsletter-card,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
        min-width: 0;

        flex-direction: column;
    }

    .testimonial-slider {
        min-height: 390px;
    }

    .testimonial-slide {
        padding: 34px 34px 90px;
    }

    .explore-world {
        background-attachment: scroll;
    }

    .footer-contact-row {
        grid-template-columns: 1fr;
    }

    .footer-contact-row > div:last-child {
        grid-column: auto;
    }
}

/* Member dashboard */
.member-heading {
    margin-bottom: 36px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 24px;
}

.member-heading h1 {
    margin: 0;

    font-size:
        clamp(
            3rem,
            6vw,
            5rem
        );
}

.member-cards {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 20px;
}

.member-cards .value-card {
    min-height: 220px;
}

.admin-source {
    margin:
        8px
        0
        0;

    color: var(--muted);

    font-size: 0.86rem;
}

@media (max-width: 900px) {
    .member-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .member-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   FINAL PERFORMANCE + RESPONSIVE POLISH
   ========================================================= */

html {
    text-rendering: optimizeLegibility;
}

body {
    -webkit-font-smoothing: antialiased;
}

.topbar {
    position: relative;
    z-index: 1010;

    border-bottom: 1px solid rgba(201, 162, 77, 0.16);

    background:
        linear-gradient(
            90deg,
            #090909,
            #11100d,
            #090909
        );
}

.site-header {
    position: sticky;
    top: 0;

    color: rgba(255, 255, 255, 0.92);

    background:
        linear-gradient(
            90deg,
            rgba(9, 9, 9, 0.98),
            rgba(18, 16, 12, 0.97)
        );

    border-bottom: 1px solid rgba(201, 162, 77, 0.18);
}

.site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.98);

    box-shadow:
        0 16px 48px
        rgba(0, 0, 0, 0.24);
}

.nav {
    min-height: 82px;
}

.brand--premium {
    min-width: 205px;

    display: inline-flex;
    align-items: center;

    gap: 10px;
}

.site-logo--emblem {
    width: 72px;
    height: 58px;

    flex: 0 0 auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 8px 22px
            rgba(201, 162, 77, 0.14)
        );
}

.brand__wordmark {
    display: grid;

    line-height: 1;
}

.brand__wordmark strong {
    color: #e7c46e;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.42rem;
    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.brand__wordmark small {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.36em;

    text-align: center;
    text-transform: uppercase;
}

.nav-menu > a:not(.btn),
.nav-dropdown__toggle {
    color: rgba(255, 255, 255, 0.84);
}

.nav-menu > a:not(.btn):hover,
.nav-menu > a:not(.btn).active,
.nav-dropdown__toggle:hover {
    color: var(--gold-light);
}

.nav-dropdown__menu {
    color: rgba(255, 255, 255, 0.90);

    background: rgba(14, 14, 13, 0.98);

    border-color: rgba(201, 162, 77, 0.18);
}

.nav-dropdown__menu a:hover {
    color: var(--gold-light);

    background: rgba(201, 162, 77, 0.10);
}

.nav-toggle span {
    background: var(--gold-light);
}

.hero-slider {
    min-height: clamp(610px, 78vh, 720px);

    contain: paint;

    background: #11100d;
}

.hero-slide {
    opacity: 0;

    transform:
        translateZ(0)
        scale(1.025);

    backface-visibility: hidden;

    will-change:
        opacity,
        transform;

    transition:
        opacity 0.85s ease,
        transform 8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.hero-slide.is-active {
    opacity: 1;

    transform:
        translateZ(0)
        scale(1);
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.88),
            rgba(7, 7, 7, 0.58) 46%,
            rgba(7, 7, 7, 0.18)
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06),
            rgba(0, 0, 0, 0.22)
        );
}

.hero-slider .hero__content {
    max-width: 760px;

    padding-block:
        92px
        132px;
}

.hero-slider h1 {
    max-width: 740px;

    font-size:
        clamp(
            3.1rem,
            5.3vw,
            5.35rem
        );

    line-height: 0.98;

    letter-spacing: -0.035em;
}

.hero-slider .hero__content p {
    max-width: 650px;

    font-size: 1.03rem;
}

.hero-slider .hero__content .eyebrow {
    text-shadow:
        0 2px 12px
        rgba(0, 0, 0, 0.28);
}

.hero-slider .hero__actions {
    margin-top: 6px;
}

.availability-card {
    backdrop-filter: blur(16px);
}

.lazy-bg {
    position: relative;

    overflow: hidden;

    background-color: #ddd4c2;
    background-position: center;
    background-size: cover;

    isolation: isolate;
}

.lazy-bg::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            110deg,
            #e8e0d1 8%,
            #f7f2e9 18%,
            #e8e0d1 33%
        );

    background-size: 200% 100%;

    animation:
        imageSkeleton
        1.4s
        linear
        infinite;

    transition:
        opacity
        0.35s ease;
}

.lazy-bg.is-loaded::before {
    opacity: 0;

    pointer-events: none;
}

.lazy-bg.is-loaded {
    animation:
        imageFadeIn
        0.55s ease
        both;
}

.trip-card__image,
.package-card__image,
.hotel-card__image,
.destination-card__image {
    transform: translateZ(0);

    transition:
        transform
        0.65s
        cubic-bezier(0.2, 0.65, 0.3, 1),
        filter
        0.45s ease;
}

.trip-card:hover .trip-card__image,
.package-card:hover .package-card__image,
.hotel-card:hover .hotel-card__image,
.destination-card:hover .destination-card__image {
    transform:
        translateZ(0)
        scale(1.035);

    filter:
        saturate(1.05)
        contrast(1.02);
}

.trip-card,
.package-card,
.hotel-card,
.destination-card,
.activity-card,
.room-card,
.travel-service-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.trip-card:hover,
.package-card:hover,
.hotel-card:hover,
.destination-card:hover,
.activity-card:hover,
.room-card:hover,
.travel-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201, 162, 77, 0.34);
}

.reveal {
    transition:
        opacity 0.68s ease,
        transform 0.82s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes imageSkeleton {
    to {
        background-position-x: -200%;
    }
}

@keyframes imageFadeIn {
    from {
        opacity: 0.72;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    .container {
        width: min(
            calc(100% - 44px),
            1120px
        );
    }

    .brand--premium {
        min-width: 180px;
    }

    .site-logo--emblem {
        width: 62px;
        height: 52px;
    }

    .brand__wordmark strong {
        font-size: 1.24rem;
    }

    .nav-menu {
        gap: 15px;

        font-size: 0.86rem;
    }

    .hero-slider h1 {
        max-width: 680px;

        font-size:
            clamp(
                3rem,
                5vw,
                4.8rem
            );
    }
}

@media (max-width: 1024px) {
    .topbar__inner {
        min-height: 32px;
    }

    .brand--premium {
        min-width: auto;
    }

    .hero-slider {
        min-height: 620px;
    }

    .hero-slider .hero__content {
        max-width: 680px;

        padding-block:
            78px
            128px;
    }

    .hero-slider h1 {
        font-size:
            clamp(
                2.9rem,
                6vw,
                4.45rem
            );
    }

    .availability-wrap {
        margin-top: -48px;
    }
}

@media (max-width: 980px) {
    .nav {
        min-height: 76px;
    }

    .brand__wordmark strong {
        font-size: 1.18rem;
    }

    .brand__wordmark small {
        font-size: 0.58rem;
    }

    .site-logo--emblem {
        width: 58px;
        height: 48px;
    }

    .nav-menu {
        top: 76px;

        color: rgba(255, 255, 255, 0.92);

        background: rgba(10, 10, 10, 0.985);

        border-color: rgba(201, 162, 77, 0.20);
    }

    .nav-menu a,
    .nav-dropdown__toggle {
        color: rgba(255, 255, 255, 0.90);
    }

    .nav-menu .btn--primary {
        color: var(--ink);
    }

    .nav-dropdown__menu {
        background: rgba(255, 255, 255, 0.04);
    }
}

@media (max-width: 768px) {
    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .topbar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .hero-slider {
        min-height: 590px;
    }

    .hero-slider .hero__content {
        max-width: 590px;

        padding-block:
            72px
            120px;
    }

    .hero-slider h1 {
        max-width: 590px;

        font-size:
            clamp(
                2.55rem,
                9vw,
                4rem
            );

        line-height: 1;
    }

    .hero-slider .hero__content p {
        max-width: 540px;

        font-size: 0.96rem;
    }

    .hero-pagination {
        right: 14px;
        bottom: 32px;
    }

    .scroll-cue {
        left: 14px;
        bottom: 29px;
    }

    .availability-wrap {
        margin-top: -32px;
    }

    .availability-card {
        padding: 20px;
    }

    .trip-card:hover,
    .package-card:hover,
    .hotel-card:hover,
    .destination-card:hover,
    .activity-card:hover,
    .room-card:hover,
    .travel-service-card:hover {
        transform: none;
    }
}

@media (max-width: 520px) {
    .nav {
        min-height: 70px;
    }

    .site-logo--emblem {
        width: 50px;
        height: 42px;
    }

    .brand__wordmark strong {
        font-size: 1.02rem;

        letter-spacing: 0.06em;
    }

    .brand__wordmark small {
        margin-top: 3px;

        font-size: 0.52rem;

        letter-spacing: 0.28em;
    }

    .nav-menu {
        top: 70px;
    }

    .hero-slider {
        min-height: 560px;
    }

    .hero-slider .hero__content {
        padding-block:
            62px
            112px;
    }

    .hero-slider h1 {
        font-size:
            clamp(
                2.35rem,
                11vw,
                3.35rem
            );
    }

    .hero-slider .hero__content p {
        margin:
            20px
            0
            26px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .scroll-cue {
        display: none;
    }

    .hero-pagination {
        left: 14px;
        right: auto;
    }

    .hero-pagination button {
        width: 28px;
    }

    .hero-pagination button.is-active {
        width: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .trip-card__image,
    .package-card__image,
    .hotel-card__image,
    .destination-card__image {
        transition: none !important;
    }

    .lazy-bg::before {
        animation: none !important;
    }
}
.hero__content,
.page-hero__content {
    animation:
        heroContentEnter
        0.9s
        ease-out
        both;
}

.hero__content .eyebrow,
.page-hero__content .eyebrow {
    animation:
        heroItemEnter
        0.7s
        ease-out
        0.10s
        both;
}

.hero__content h1,
.page-hero__content h1 {
    animation:
        heroItemEnter
        0.8s
        ease-out
        0.20s
        both;
}

.hero__content p,
.page-hero__content p {
    animation:
        heroItemEnter
        0.8s
        ease-out
        0.30s
        both;
}

.hero__actions {
    animation:
        heroItemEnter
        0.8s
        ease-out
        0.40s
        both;
}

@keyframes heroContentEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroItemEnter {
    from {
        opacity: 0;

        transform:
            translateY(
                22px
            );
    }

    to {
        opacity: 1;

        transform:
            translateY(
                0
            );
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__content,
    .page-hero__content,
    .hero__content .eyebrow,
    .page-hero__content .eyebrow,
    .hero__content h1,
    .page-hero__content h1,
    .hero__content p,
    .page-hero__content p,
    .hero__actions {
        animation: none;
    }
}


/* Final navigation polish: keep menu clean without underline indicators. */
.nav-menu > a:not(.btn)::after,
.nav-dropdown__toggle::after {
    display: none;
}

/* =========================================
   INDIA DESTINATION CATALOGUE
   ========================================= */

.destination-browser-section {
    background: var(--cream);
}

.destination-filter--expanded {
    margin-bottom: 44px;
}

.domestic-catalog,
.international-catalog {
    margin-top: 28px;
}

.international-catalog {
    margin-top: 84px;
}

.domestic-catalog__head {
    margin-bottom: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 36px;
}

.domestic-catalog__head h2 {
    margin: 8px 0 14px;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
}

.domestic-catalog__head p {
    max-width: 760px;
    margin: 0;
    color: var(--copy-muted);
}

.catalog-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.catalog-stats > div {
    padding: 18px 14px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
}

.catalog-stats strong {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.2rem;
    line-height: 1;
}

.catalog-stats span {
    display: block;
    margin-top: 5px;
    color: var(--copy-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.state-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(249, 246, 238, 0.94)
        );
    box-shadow: var(--shadow);
}

.state-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 88px;
    height: 3px;
    content: "";
    background: var(--gold);
}

.state-card__top {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.state-card__kind,
.state-card__count {
    color: var(--copy-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.state-card__kind {
    color: var(--gold-dark);
}

.state-card h3 {
    margin: 0 0 6px;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.state-card__meta {
    margin: 0 0 22px;
    color: var(--copy-muted);
    font-size: 0.9rem;
}

.destination-chip-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.destination-chip {
    min-width: 0;
    padding: 12px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.destination-chip:hover {
    border-color: rgba(181, 143, 54, 0.48);
    background: var(--paper);
    transform: translateY(-2px);
}

.destination-chip span {
    min-width: 0;
    overflow: hidden;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destination-chip small {
    flex: 0 0 auto;
    color: var(--copy-muted);
    font-size: 0.68rem;
    white-space: nowrap;
}

.catalog-disclaimer {
    max-width: 950px;
    margin: 34px auto 0;
    padding: 15px 18px;
    color: var(--copy-muted);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    line-height: 1.65;
    text-align: center;
}

.destination-properties-section {
    background: var(--cream);
}

.premium-property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.premium-property-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.premium-property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--premium-shadow);
}

.premium-property-card__image {
    position: relative;
    min-height: 220px;
    background: var(--ink);
    background-size: cover;
    background-position: center;
}

.premium-property-card__rating {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.78);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
}

.premium-property-card__body {
    padding: 22px;
}

.premium-property-card__body h3 {
    margin: 8px 0 10px;
    font-size: 1.9rem;
}

.premium-property-card__body p {
    margin: 0 0 16px;
    color: var(--copy-muted);
}

.premium-empty {
    max-width: 880px;
    margin: 0 auto;
    padding: 42px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.premium-empty > span {
    color: var(--gold-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.premium-empty h3 {
    margin: 12px auto;
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.premium-empty p {
    max-width: 650px;
    margin: 0 auto 22px;
    color: var(--copy-muted);
}

/* Final local inner-page hero imagery */
.page-hero--about {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.82),
            rgba(8, 8, 8, 0.34)
        ),
        url("../images/hero-home-1.webp");
}

.page-hero--membership {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.82),
            rgba(8, 8, 8, 0.34)
        ),
        url("../images/hero-home-2.webp");
}

.page-hero--travel,
.page-hero--destinations,
.page-hero--packages {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.82),
            rgba(8, 8, 8, 0.34)
        ),
        url("../images/hero-home-3.webp");
}

.page-hero--activities,
.page-hero--contact {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.82),
            rgba(8, 8, 8, 0.34)
        ),
        url("../images/hero-home-2.webp");
}

.page-hero--hotels,
.page-hero--payment {
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.82),
            rgba(8, 8, 8, 0.34)
        ),
        url("../images/hero-home-1.webp");
}

.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1080px) {
    .domestic-catalog__head {
        grid-template-columns: 1fr;
    }

    .catalog-stats {
        max-width: 620px;
    }

    .premium-property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .state-grid,
    .premium-property-grid {
        grid-template-columns: 1fr;
    }

    .catalog-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .state-card {
        padding: 22px;
    }

    .destination-chip-list {
        grid-template-columns: 1fr;
    }

    .premium-empty {
        padding: 30px 22px;
    }
}

@media (max-width: 520px) {
    .catalog-stats {
        grid-template-columns: 1fr;
    }

    .state-card__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

.catalog-pagination {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.catalog-pagination a {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-weight: 800;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.catalog-pagination a:hover,
.catalog-pagination a.active {
    color: var(--ink);
    border-color: var(--gold);
    background: var(--gold);
}

/* -------------------------
   Property-specific image fallbacks
   ------------------------- */

.hotel-card__image--pending,
.premium-property-card__image--pending,
.destination-hero--property-pending {
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(209, 164, 67, 0.20),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #18130b 0%,
            #090909 52%,
            #1a140a 100%
        );
}

.hotel-card__image--pending,
.premium-property-card__image--pending {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 54px 24px 28px;
}

.hotel-photo-placeholder,
.property-photo-placeholder {
    position: relative;
    z-index: 2;
    width: min(100%, 300px);
    text-align: center;
    color: #f8f1df;
}

.hotel-photo-placeholder::before,
.property-photo-placeholder::before {
    content: "GS";
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    place-items: center;
    border: 1px solid rgba(209, 164, 67, 0.70);
    border-radius: 50%;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.hotel-photo-placeholder strong,
.property-photo-placeholder strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
}

.hotel-photo-placeholder small,
.property-photo-placeholder small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.destination-hero--property-pending::after {
    content: "Original property photography will be added after image-use approval.";
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 24px;
    max-width: 340px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.72rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: right;
}

@media (max-width: 767px) {
    .destination-hero--property-pending::after {
        display: none;
    }
}

/* =========================================================
   ADMIN USER MANAGEMENT
   ========================================================= */

.admin-heading-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.admin-session-note {
    margin-bottom: 24px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-session-note strong {
    color: var(--text);
}

.admin-panel-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.7fr);
    gap: 28px;
    align-items: start;
}

.admin-form-panel,
.admin-list-panel {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
}

.admin-form-panel {
    position: sticky;
    top: 120px;
}

.admin-form-panel h2,
.admin-list-panel h2 {
    margin-top: 8px;
    margin-bottom: 22px;
}

.admin-create-form {
    display: grid;
    gap: 16px;
}

.admin-create-form small,
.form-field small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.admin-list-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.admin-list-heading strong {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    font-size: 0.9rem;
}

.admin-system-account {
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(201, 162, 77, 0.35);
    border-radius: 12px;
    background: rgba(201, 162, 77, 0.06);
}

.admin-system-account strong,
.admin-system-account span {
    display: block;
}

.admin-system-account span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-record-list {
    display: grid;
    gap: 14px;
}

.admin-record-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.admin-record-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.8fr);
    gap: 20px;
}

.admin-record-main h3 {
    margin: 8px 0 4px;
    font-size: 1.28rem;
}

.admin-record-main p {
    margin: 0;
    color: var(--muted);
}

.admin-record-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-status,
.admin-role-badge {
    display: inline-flex;
    align-items: center;
    margin-right: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-status.is-active {
    background: rgba(33, 145, 79, 0.12);
    color: #176d3c;
}

.admin-status.is-inactive {
    background: rgba(170, 45, 45, 0.1);
    color: #9b2d2d;
}

.admin-role-badge {
    background: rgba(201, 162, 77, 0.15);
    color: #8a6826;
}

.admin-record-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.admin-record-actions form {
    margin: 0;
}

.admin-password-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-password-form input {
    width: 160px;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.btn--small {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 0.76rem;
}

.admin-danger {
    border-color: rgba(170, 45, 45, 0.35);
    color: #9b2d2d;
}

.admin-record-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.admin-empty-state {
    padding: 44px 18px;
}

.alert--success {
    border-color: rgba(33, 145, 79, 0.28);
    background: rgba(33, 145, 79, 0.08);
    color: #176d3c;
}

@media (max-width: 1024px) {
    .admin-panel-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .admin-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-heading-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-record-main {
        grid-template-columns: 1fr;
    }

    .admin-form-panel,
    .admin-list-panel {
        padding: 20px;
    }

    .admin-password-form {
        width: 100%;
    }

    .admin-password-form input {
        width: 100%;
    }
}
