/* =========================================================
   PALM GROVE HIDEAWAY RESORT
   PUBLIC WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --color-forest: #173a26;
    --color-forest-dark: #0e2619;
    --color-forest-soft: #244d35;
    --color-leaf: #55745d;
    --color-sage: #91a58f;

    --color-sand: #d8c9ac;
    --color-sand-light: #eee7d9;
    --color-cream: #f7f4ed;
    --color-paper: #fcfaf5;
    --color-white: #ffffff;

    --color-gold: #b5965b;
    --color-gold-dark: #8e7444;

    --color-ink: #1f2722;
    --color-text: #465048;
    --color-muted: #707a72;
    --color-border: rgba(23, 58, 38, 0.14);
    --color-border-light: rgba(255, 255, 255, 0.2);

    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;

    --container-width: 1220px;
    --container-narrow: 940px;

    --header-height: 92px;

    --shadow-small: 0 10px 30px rgba(20, 40, 28, 0.08);
    --shadow-medium: 0 24px 70px rgba(20, 40, 28, 0.14);
    --shadow-large: 0 30px 90px rgba(10, 28, 18, 0.22);

    --transition-fast: 180ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 600ms ease;
}


/* =========================================================
   2. RESET AND BASE
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    color: var(--color-text);
    background: var(--color-paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

address {
    font-style: normal;
}

figure,
blockquote,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.7rem, 7.2vw, 7.4rem);
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5.25rem);
}

h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

::selection {
    color: var(--color-white);
    background: var(--color-forest);
}


/* =========================================================
   3. ACCESSIBILITY
========================================================= */

.skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--color-white);
    background: var(--color-forest-dark);
    border-radius: 3px;
    transform: translateY(-150%);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(181, 150, 91, 0.8);
    outline-offset: 4px;
}


/* =========================================================
   4. LAYOUT UTILITIES
========================================================= */

.container {
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

.container-narrow {
    width: min(calc(100% - 48px), var(--container-narrow));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.text-center {
    text-align: center;
}

.muted {
    color: var(--color-muted);
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}


/* =========================================================
   5. BUTTONS AND LINKS
========================================================= */

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    transition:
        color var(--transition-normal),
        background-color var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--color-white);
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    color: var(--color-white);
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    box-shadow: 0 16px 35px rgba(128, 98, 48, 0.25);
}

.btn-outline-dark {
    color: var(--color-forest);
    background: transparent;
    border-color: rgba(23, 58, 38, 0.45);
}

.btn-outline-dark:hover {
    color: var(--color-white);
    background: var(--color-forest);
    border-color: var(--color-forest);
}

.btn-video-outline,
.btn-light-outline {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
}

.btn-video-outline:hover,
.btn-light-outline:hover {
    color: var(--color-forest-dark);
    background: var(--color-white);
    border-color: var(--color-white);
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--color-forest);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition:
        color var(--transition-normal),
        gap var(--transition-normal);
}

.editorial-link:hover {
    gap: 18px;
    color: var(--color-gold-dark);
}

.editorial-link-light {
    color: var(--color-white);
}

.editorial-link-light:hover {
    color: var(--color-sand);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-gold-dark);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-kicker-light {
    color: var(--color-sand);
}


/* =========================================================
   HEADER
   - Fully transparent initially
   - Subtle white translucent background after scrolling
========================================================= */

.site-header {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    left: 0;

    height: 78px;

    color: #ffffff;
    background: transparent;

    border: 0;
    box-shadow: none;

    transition:
        height 280ms ease,
        background-color 280ms ease,
        backdrop-filter 280ms ease,
        -webkit-backdrop-filter 280ms ease;
}

.site-header.site-header-scrolled {
    height: 74px;

    /*
     * Roughly 10% white opacity after scrolling.
     */
    background: rgba(20, 62, 38, 0.10);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}


/* =========================================================
   HEADER INNER LAYOUT
========================================================= */

.site-header-inner {
    position: relative;

    width: calc(100% - 56px);
    height: 100%;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* =========================================================
   CENTER LOGO
========================================================= */

.header-center-brand {
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.header-center-brand:hover {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.025);
}

.header-center-logo img {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;

    /*
     * Use only when the logo file is white.
     * Remove this filter if the image already has the intended colour.
     */
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.16));
}


/* =========================================================
   RIGHT BUTTON GROUP
========================================================= */

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}


/* =========================================================
   BOOK YOUR STAY BUTTON
========================================================= */

.header-book-button {
    display: inline-flex;
    min-height: 38px;

    align-items: center;
    justify-content: center;

    padding: 0 18px;

    color: #ffffff;
    background: #dc9223;
    border: 1px solid #dc9223;
    border-radius: 4px;

    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;

    white-space: nowrap;

    transition:
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease;
}

.header-book-button:hover {
    color: #ffffff;
    background: #c67f16;
    border-color: #c67f16;
}


/* =========================================================
   OUR STORY / MENU BUTTON
========================================================= */

.story-menu-trigger {
    display: inline-flex;
    min-height: 38px;

    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 17px;

    color: #bd7819;
    background: #f3ecd9;
    border: 1px solid #f3ecd9;
    border-radius: 4px;

    cursor: pointer;

    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;

    white-space: nowrap;

    transition:
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease;
}

.story-menu-trigger:hover,
.story-menu-trigger[aria-expanded="true"] {
    color: #9f6212;
    background: #eadfbe;
    border-color: #eadfbe;
}


/* =========================================================
   MENU ICON
========================================================= */

.story-menu-icon {
    position: relative;

    display: block;

    width: 18px;
    height: 12px;
}

.story-menu-icon i {
    position: absolute;
    left: 0;

    height: 1px;

    background: currentColor;

    transition:
        top 250ms ease,
        bottom 250ms ease,
        width 250ms ease,
        transform 250ms ease;
}

.story-menu-icon i:first-child {
    top: 3px;
    width: 18px;
}

.story-menu-icon i:last-child {
    bottom: 3px;
    width: 12px;
}

.story-menu-trigger:hover .story-menu-icon i:last-child {
    width: 18px;
}

/*
 * Turn the two menu lines into a close icon.
 */
.story-menu-trigger[aria-expanded="true"] .story-menu-icon i:first-child {
    top: 50%;
    width: 18px;
    transform: translateY(-50%) rotate(45deg);
}

.story-menu-trigger[aria-expanded="true"] .story-menu-icon i:last-child {
    bottom: 50%;
    width: 18px;
    transform: translateY(50%) rotate(-45deg);
}


/* =========================================================
   VERTICALLY EXPANDING EXPLORE MENU
========================================================= */

.explore-menu {
    position: fixed;
    z-index: 1150;
    inset: 0;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    overflow-y: auto;
    overscroll-behavior: contain;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 84% 8%,
            rgba(192, 144, 69, 0.20),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #173a26 0%,
            #0c2417 65%,
            #08190f 100%
        );

    visibility: hidden;
    opacity: 0;

    transform: translateY(-100%);

    pointer-events: none;

    transition:
        transform 520ms cubic-bezier(0.77, 0, 0.18, 1),
        opacity 300ms ease,
        visibility 520ms ease;
}

.explore-menu.is-open {
    visibility: visible;
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
}


/* =========================================================
   MENU INNER
========================================================= */

.explore-menu-inner {
    width: min(calc(100% - 56px), 1320px);
    min-height: 100vh;
    min-height: 100dvh;
    margin-inline: auto;

    display: flex;
    flex-direction: column;

    padding:
        118px
        0
        32px;
}


/* =========================================================
   MENU NAVIGATION
========================================================= */

.explore-menu-navigation {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;

    max-width: 720px;

    padding: 15px 0 30px;
}

.explore-menu-navigation a {
    display: flex;
    width: fit-content;

    align-items: baseline;
    gap: 18px;

    color: rgba(255, 255, 255, 0.96);

    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.8vw, 3.1rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;

    transition:
        color 220ms ease,
        transform 220ms ease;
}

.explore-menu-navigation a span {
    width: 24px;

    color: rgba(255, 255, 255, 0.38);

    font-family: var(--font-body);
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.explore-menu-navigation a:hover {
    color: #d8c29a;
    transform: translateX(8px);
}


/* =========================================================
   EXPLORE MENU FOOTER
========================================================= */

.explore-menu-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-top: auto;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.explore-menu-socials {
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 11px;
}

.explore-social-link {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    font-size: 0.95rem;

    transition:
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        transform 220ms ease;
}

.explore-social-link:hover {
    color: #173a26;
    background: #ffffff;
    border-color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   MENU BADGE
========================================================= */

.explore-menu-badge {
    flex: 0 0 auto;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;

    line-height: 0;
}

.explore-menu-badge img {
    display: block;
    width: auto;
    height: 108px;
    margin: 0;

    object-fit: contain;

    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.30));
}

@media (max-width: 767px) {
    .site-header {
        height: 68px;
    }

    .site-header.site-header-scrolled {
        height: 64px;
    }

    .site-header-inner {
        width: calc(100% - 22px);
    }

    .header-center-logo img {
        height: 34px;
    }

    .header-book-button {
        display: none;
    }

    .site-header-actions {
        margin-left: auto;
        gap: 0;
    }

    .story-menu-label {
        display: none;
    }

    .story-menu-trigger {
        width: 40px;
        min-width: 40px;
        min-height: 38px;

        padding: 0;
        gap: 0;
    }

    .story-menu-icon {
        width: 18px;
        height: 12px;
    }

    .story-menu-icon i:first-child {
        width: 18px;
    }

    .story-menu-icon i:last-child {
        width: 12px;
    }

    .story-menu-trigger[aria-expanded="true"]
    .story-menu-icon i:last-child {
        width: 18px;
    }

    .explore-menu-inner {
        width: calc(100% - 32px);

        padding:
            88px
            0
            24px;
    }

    .explore-menu-navigation {
        flex: 0 0 auto;
        justify-content: flex-start;

        max-width: none;

        padding: 15px 0 26px;
    }

    .explore-menu-navigation a {
        gap: 13px;
        font-size: clamp(1.2rem, 5.8vw, 1.95rem);
        line-height: 1.14;
    }

    .explore-menu-navigation a span {
        width: 20px;
        font-size: 0.48rem;
    }

    .explore-menu-footer {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;

        gap: 16px;

        margin-top: auto;
        padding-top: 20px;
    }

    .explore-menu-socials {
        gap: 7px;
    }

    .explore-social-link {
        width: 36px;
        height: 36px;

        font-size: 0.82rem;
    }

    .explore-menu-badge img {
        height: 72px;
    }
}

@media (max-width: 430px) {
    .explore-menu-footer {
        align-items: center;
        flex-direction: column;
    }

    .explore-menu-socials {
        justify-content: center;
    }

    .explore-menu-badge {
        width: 100%;
        justify-content: center;
    }

    .explore-menu-badge img {
        height: 78px;
    }

    .explore-menu-navigation a {
        font-size: 1.15rem;
    }
}

/* Keep the full header above the opened menu */
.site-header {
    z-index: 2000;
}

.explore-menu {
    z-index: 1900;
}

.site-header.menu-is-open {
    color: #ffffff;
    background: transparent;
    box-shadow: none;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Explicitly keep the center logo above the menu panel */
.header-center-brand {
    z-index: 3;
}

.site-header.menu-is-open .header-center-brand {
    z-index: 5;
    visibility: visible;
    opacity: 1;
}

/* Keep the right-side close control above the panel */
.site-header-actions {
    position: relative;
    z-index: 4;
}

.site-header.menu-is-open .story-menu-trigger {
    position: relative;
    z-index: 6;
}
/* =========================================================
   HERO — FULL-SCREEN VIDEO AND CENTERED CONTENT
========================================================= */

.home-video-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    color: #ffffff;
    background: var(--color-forest-dark);
}


/* Video fills the complete hero */

.home-video-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* Overlay also covers the complete hero */

.home-video-overlay,
.home-video-texture {
    position: absolute;
    inset: 0;
}

.home-video-overlay {
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(12, 45, 28, 0.66) 0%,
            rgba(12, 45, 28, 0.40) 20%,
            rgba(12, 45, 28, 0.14) 40%,
            rgba(12, 45, 28, 0.07) 52%,
            rgba(12, 45, 28, 0.14) 64%,
            rgba(12, 45, 28, 0.32) 74%,
            rgba(12, 45, 28, 0.52) 84%,
            rgba(10, 39, 24, 0.70) 92%,
            rgba(7, 30, 18, 0.88) 100%
        );
}

.home-video-texture {
    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   EXACT CENTER CONTENT
========================================================= */

.home-video-content {
    position: absolute;
    z-index: 2;
    inset: 0;

    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 24px 130px;

    text-align: center;
}

.home-video-copy {
    width: min(1100px, 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home-video-copy h1 {
    max-width: 100%;
    margin: 0 0 28px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 5.2vw, 5.4rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    text-align: center;
    text-wrap: balance;
    overflow-wrap: normal;
    text-shadow:
        0 5px 22px rgba(0, 0, 0, 0.30),
        0 12px 45px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   HERO BOOKING BUTTON
========================================================= */

.hero-book-button {
    display: inline-flex;
    min-height: 38px;

    align-items: center;
    justify-content: center;

    padding: 0 18px;

    color: #ffffff;
    background: #dc9223;
    border: 1px solid #dc9223;
    border-radius: 4px;

    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;

    white-space: nowrap;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);

    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        transform 220ms ease;
}

.hero-book-button:hover {
    color: #ffffff;
    background: #c67f16;
    border-color: #c67f16;
    transform: translateY(-2px);
}


/* =========================================================
   BOTTOM-CENTER BADGE
========================================================= */

.hero-bottom-badge {
    position: absolute;
    z-index: 3;

    left: 50%;
    bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateX(-50%);
}

.hero-bottom-badge img {
    display: block;
    width: auto;
    height: 102px;
    object-fit: contain;

    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.30));
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .home-video-hero {
        min-height: 100svh;
    }

    .home-video-content {
        padding:
            70px
            20px
            110px;
    }

    .home-video-copy {
        width: 100%;
        max-width: 100%;
    }

    .home-video-copy h1 {
        max-width: 94vw;
        font-size: clamp(2.35rem, 10.5vw, 3.5rem);
        line-height: 1.04;
    }

    .hero-book-button {
        min-height: 36px;
        padding: 0 15px;
        font-size: 0.61rem;
    }

    .hero-bottom-badge {
        bottom: 16px;
    }

    .hero-bottom-badge img {
        height: 72px;
    }
}

/* =========================================================
   10. STORY SECTION
========================================================= */

.home-story-section {
    padding: 145px 0;
    background: var(--color-paper);
}

.home-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.home-story-heading h2 {
    max-width: 520px;
    margin-bottom: 0;
}

.home-story-content {
    max-width: 650px;
    padding-top: 15px;
}

.home-story-content p {
    margin-bottom: 24px;
}

.story-lead {
    color: var(--color-forest);
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.4vw, 2.4rem);
    line-height: 1.35;
}

.home-story-image-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 32px;
    margin-top: 90px;
    align-items: end;
}

.story-image {
    margin: 0;
}

.story-image img {
    width: 100%;
    object-fit: cover;
}

.story-image-large img {
    height: 620px;
}

.story-image-small {
    padding-bottom: 50px;
}

.story-image-small img {
    height: 390px;
}

.story-image-small figcaption {
    max-width: 330px;
    margin-top: 20px;
    color: var(--color-muted);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
    text-transform: uppercase;
}


/* =========================================================
   11. GENERIC HOME SECTION HEADINGS
========================================================= */

.home-section-heading {
    margin-bottom: 64px;
}

.centered-heading {
    max-width: 790px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-heading h2 {
    margin-bottom: 20px;
}

.centered-heading p {
    max-width: 680px;
    margin-inline: auto;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: end;
}

.split-heading h2 {
    max-width: 620px;
    margin-bottom: 0;
}

.split-heading > div:last-child {
    max-width: 500px;
}

.split-heading p {
    margin-bottom: 20px;
}

.home-section-action {
    margin-top: 58px;
    text-align: center;
}


/* =========================================================
   12. STAY SECTION
========================================================= */

.home-stay-section {
    padding: 135px 0;
    background: var(--color-cream);
}

.home-stay-list {
    display: flex;
    flex-direction: column;
    gap: 95px;
}

.home-stay-feature {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 570px;
    align-items: stretch;
    background: var(--color-white);
    box-shadow: var(--shadow-small);
}

.home-stay-feature.stay-image-right {
    grid-template-columns: 0.85fr 1.15fr;
}

.home-stay-feature.stay-image-right .home-stay-image {
    order: 2;
}

.home-stay-feature.stay-image-right .home-stay-details {
    order: 1;
}

.home-stay-image {
    position: relative;
    min-height: 570px;
    overflow: hidden;
}

.home-stay-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(7, 25, 14, 0.12) 100%
        );
    pointer-events: none;
}

.home-stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.home-stay-feature:hover .home-stay-image img {
    transform: scale(1.035);
}

.home-stay-details {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 70px;
}

.stay-category {
    margin-bottom: 18px;
    color: var(--color-gold-dark);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.home-stay-details h3 {
    margin-bottom: 24px;
}

.home-stay-details p {
    max-width: 450px;
    margin-bottom: 28px;
}

.stay-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-bottom: 34px;
    color: var(--color-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stay-facts span {
    position: relative;
}

.stay-facts span + span::before {
    position: absolute;
    top: 50%;
    left: -13px;
    width: 3px;
    height: 3px;
    content: "";
    background: var(--color-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}


/* =========================================================
   HOME — NATURE
   ========================================================= */

.home-nature-section {
  position: relative;
  min-height: 900px;
  padding-block: clamp(5.5rem, 10vw, 10rem);
  color: #ffffff;
  background: #173b2a;
  overflow: hidden;
  isolation: isolate;
}

.home-nature-background,
.home-nature-overlay {
  position: absolute;
  inset: 0;
}

.home-nature-background {
  z-index: -3;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-nature-overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 30, 19, 0.94) 0%,
      rgba(10, 34, 22, 0.82) 48%,
      rgba(10, 32, 21, 0.58) 100%
    ),
    linear-gradient(
      to top,
      rgba(8, 28, 18, 0.8),
      transparent 55%
    );
}

.home-nature-content {
  position: relative;
  z-index: 1;
}

.home-nature-heading {
  max-width: 780px;
}

.home-nature-heading h2 {
  margin: 0.8rem 0 0;
  color: #ffffff;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(2.75rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-nature-heading > p {
  max-width: 700px;
  margin: 1.65rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

/* Nature topic cards */

.home-nature-topic-nav {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.home-nature-topic-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-nature-topic-item {
  min-width: 0;
}

.home-nature-topic-item > a {
  position: relative;
  display: flex;
  min-height: 230px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 40px rgba(5, 22, 13, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 350ms ease,
    box-shadow 350ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-nature-topic-item > a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(219, 183, 128, 0.25),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(49, 94, 66, 0.96),
      rgba(14, 48, 30, 0.98)
    );
  content: "";
  opacity: 0;
  transition: opacity 350ms ease;
}

.home-nature-topic-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-nature-topic-copy strong {
  max-width: 320px;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.home-nature-topic-copy small {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
  transition: color 350ms ease;
}

.home-nature-topic-arrow {
  display: grid;
  align-self: flex-end;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 1.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.9rem;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    background-color 350ms ease,
    transform 350ms ease;
}

.home-nature-topic-item > a:hover,
.home-nature-topic-item > a:focus-visible {
  border-color: rgba(216, 181, 131, 0.75);
  box-shadow: 0 26px 55px rgba(4, 23, 13, 0.3);
  transform: translateY(-6px);
}

.home-nature-topic-item > a:hover::before,
.home-nature-topic-item > a:focus-visible::before {
  opacity: 1;
}

.home-nature-topic-item > a:hover
  .home-nature-topic-copy small,
.home-nature-topic-item > a:focus-visible
  .home-nature-topic-copy small {
  color: rgba(255, 255, 255, 0.82);
}

.home-nature-topic-item > a:hover
  .home-nature-topic-arrow,
.home-nature-topic-item > a:focus-visible
  .home-nature-topic-arrow {
  color: #173c2a;
  border-color: #d8b583;
  background: #d8b583;
  transform: rotate(45deg);
}

.home-nature-topic-item > a:focus-visible {
  outline: 3px solid #d8b583;
  outline-offset: 4px;
}

.home-nature-action {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Nature-page anchor offsets */

#lotus-pond,
#water-channels-and-streams,
#paddy-field,
#birds,
#fishes,
#turtle {
  scroll-margin-top: 7rem;
}

@media (max-width: 1000px) {
  .home-nature-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .home-nature-section {
    min-height: auto;
    padding-block: 4.5rem;
  }

  .home-nature-overlay {
    background: rgba(8, 30, 19, 0.86);
  }

  .home-nature-topic-list {
    grid-template-columns: 1fr;
  }

  .home-nature-topic-item > a {
    min-height: 205px;
    padding: 1.5rem;
  }

  .home-nature-topic-copy strong {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-nature-topic-item > a,
  .home-nature-topic-item > a::before,
  .home-nature-topic-copy small,
  .home-nature-topic-arrow {
    transition: none;
  }
}


/* =========================================================
   14. EXPERIENCES SECTION
========================================================= */

.home-experiences-section {
    padding: 140px 0;
    background: var(--color-paper);
}

.experience-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experience-editorial-card {
    min-width: 0;
}

.experience-editorial-image {
    position: relative;
    display: block;
    height: 430px;
    overflow: hidden;
    background: var(--color-sand-light);
}

.experience-editorial-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(10, 30, 18, 0.18) 100%
        );
}

.experience-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms ease;
}

.experience-editorial-card:hover img {
    transform: scale(1.045);
}

.experience-editorial-content {
    padding: 28px 8px 0;
}

.experience-editorial-content > span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-gold-dark);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.experience-editorial-content h3 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 2.7vw, 2.7rem);
}

.experience-editorial-content p {
    margin-bottom: 22px;
    font-size: 0.94rem;
}

/* =========================================================
   HOME — EXPERIENCE CATEGORY GRID
   ========================================================= */

.home-experience-category-nav {
  margin-top: clamp(2.75rem, 5vw, 5rem);
}

.home-experience-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-experience-category-item {
  min-width: 0;
}

.home-experience-category-item-wide {
  grid-column: 1 / -1;
}

.home-experience-category-item > a {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: start;
  min-height: 240px;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(31, 63, 45, 0.14);
  color: #183c2b;
  background: #fffdf8;
  box-shadow: 0 15px 38px rgba(30, 54, 39, 0.06);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-experience-category-item > a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(205, 164, 107, 0.3),
      transparent 45%
    ),
    linear-gradient(145deg, #214c36, #102f21);
  content: "";
  opacity: 0;
  transition: opacity 350ms ease;
}

.home-experience-category-number {
  color: #a17b4d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.home-experience-category-item h3 {
  margin: 0;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-experience-category-item p {
  max-width: 520px;
  margin: 1rem 0 0;
  color: #687269;
  font-size: 0.92rem;
  line-height: 1.7;
  transition: color 350ms ease;
}

.home-experience-category-arrow {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(31, 63, 45, 0.28);
  border-radius: 50%;
  color: #214c36;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    background-color 350ms ease,
    transform 350ms ease;
}

.home-experience-category-item > a:hover,
.home-experience-category-item > a:focus-visible {
  color: #ffffff;
  border-color: rgba(216, 181, 131, 0.7);
  box-shadow: 0 25px 52px rgba(18, 49, 32, 0.18);
  transform: translateY(-6px);
}

.home-experience-category-item > a:hover::before,
.home-experience-category-item > a:focus-visible::before {
  opacity: 1;
}

.home-experience-category-item > a:hover p,
.home-experience-category-item > a:focus-visible p {
  color: rgba(255, 255, 255, 0.75);
}

.home-experience-category-item > a:hover
  .home-experience-category-arrow,
.home-experience-category-item > a:focus-visible
  .home-experience-category-arrow {
  color: #173c2a;
  border-color: #d8b583;
  background: #d8b583;
  transform: rotate(45deg);
}

.home-experience-category-item > a:focus-visible {
  outline: 3px solid #c99e67;
  outline-offset: 4px;
}

.home-experience-category-item > a:hover h3,
.home-experience-category-item > a:focus-visible h3 {
  color: #ffffff;
}
/* Experience-page anchor offsets */

#agriculture,
#sporting,
#adventures,
#activities,
#fun,
#culture,
#leisure {
  scroll-margin-top: 7rem;
}

@media (max-width: 800px) {
  .home-experience-category-grid {
    grid-template-columns: 1fr;
  }

  .home-experience-category-item-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .home-experience-category-item > a {
    grid-template-columns: 1fr auto;
    min-height: 220px;
    padding: 1.5rem;
  }

  .home-experience-category-number {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-experience-category-item > a,
  .home-experience-category-item > a::before,
  .home-experience-category-item p,
  .home-experience-category-arrow {
    transition: none;
  }
}
.experience-availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
  margin-top: 1.75rem;
}

.experience-availability-actions .btn,
.experience-availability-actions .editorial-link {
  margin: 0;
}

@media (max-width: 520px) {
  .experience-availability-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

.home-experience-category-icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(161, 123, 77, 0.38);
  border-radius: 50%;
  color: #a17b4d;
  background: rgba(201, 158, 103, 0.08);
  transition:
    color 350ms ease,
    border-color 350ms ease,
    background-color 350ms ease,
    transform 350ms ease;
}

.home-experience-category-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-experience-category-item > a:hover
  .home-experience-category-icon,
.home-experience-category-item > a:focus-visible
  .home-experience-category-icon {
  color: #173c2a;
  border-color: #d8b583;
  background: #d8b583;
  transform: translateY(-2px);
}

/* =========================================================
   HOME — CUISINE
   ========================================================= */

.home-cuisine-section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 9rem);
  background: #fffdf8;
  overflow: hidden;
}

.home-cuisine-section::before {
  position: absolute;
  right: -12rem;
  bottom: -14rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: rgba(180, 143, 94, 0.07);
  content: "";
  pointer-events: none;
}

.home-cuisine-grid {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(420px, 1.1fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}

/* Image composition */

.home-cuisine-images {
  position: relative;
  min-height: clamp(600px, 62vw, 820px);
}

.cuisine-image-main,
.cuisine-image-secondary {
  position: absolute;
  margin: 0;
  background: #d8ddcf;
  box-shadow: 0 24px 60px rgba(24, 60, 43, 0.14);
  overflow: hidden;
}

.cuisine-image-main {
  top: 0;
  left: 0;
  width: 79%;
  height: 76%;
}

.cuisine-image-secondary {
  right: 0;
  bottom: 0;
  width: 56%;
  height: 48%;
  border: clamp(0.65rem, 1.4vw, 1.1rem) solid #fffdf8;
}

.cuisine-image-main::after,
.cuisine-image-secondary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 43, 29, 0.16),
    transparent 48%
  );
  content: "";
  pointer-events: none;
}

.cuisine-image-main img,
.cuisine-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */

.home-cuisine-content {
  position: relative;
  z-index: 1;
}

.home-cuisine-content h2 {
  max-width: 660px;
  margin: 0.75rem 0 0;
  color: #183c2b;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-cuisine-content .story-lead {
  max-width: 670px;
  margin: 1.6rem 0 0;
  color: #344f3f;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.home-cuisine-content > p:not(.story-lead) {
  max-width: 680px;
  margin: 1.15rem 0 0;
  color: #687269;
  font-size: 0.96rem;
  line-height: 1.8;
}

/* Cuisine category cards */

.home-cuisine-category-nav {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.home-cuisine-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-cuisine-category-item {
  min-width: 0;
}

.home-cuisine-category-item > a {
  position: relative;
  display: flex;
  min-height: 190px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.35rem, 2.5vw, 1.9rem);
  border: 1px solid rgba(31, 63, 45, 0.15);
  color: #183c2b;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(244, 240, 228, 0.74)
    );
  box-shadow: 0 14px 35px rgba(30, 54, 39, 0.06);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-cuisine-category-item > a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(200, 158, 101, 0.3),
      transparent 46%
    ),
    linear-gradient(145deg, #214c36, #102f21);
  content: "";
  opacity: 0;
  transition: opacity 350ms ease;
}

.home-cuisine-category-copy {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.home-cuisine-category-copy strong {
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.home-cuisine-category-copy small {
  max-width: 310px;
  color: #69736b;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.6;
  transition: color 350ms ease;
}

.home-cuisine-category-arrow {
  display: grid;
  align-self: flex-end;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 1.25rem;
  place-items: center;
  border: 1px solid rgba(31, 63, 45, 0.28);
  border-radius: 50%;
  color: #214c36;
  font-size: 0.85rem;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    background-color 350ms ease,
    transform 350ms ease;
}

.home-cuisine-category-item > a:hover,
.home-cuisine-category-item > a:focus-visible {
  color: #ffffff;
  border-color: rgba(216, 181, 131, 0.6);
  box-shadow: 0 22px 46px rgba(18, 49, 32, 0.18);
  transform: translateY(-5px);
}

.home-cuisine-category-item > a:hover::before,
.home-cuisine-category-item > a:focus-visible::before {
  opacity: 1;
}

.home-cuisine-category-item > a:hover
  .home-cuisine-category-copy small,
.home-cuisine-category-item > a:focus-visible
  .home-cuisine-category-copy small {
  color: rgba(255, 255, 255, 0.74);
}

.home-cuisine-category-item > a:hover
  .home-cuisine-category-arrow,
.home-cuisine-category-item > a:focus-visible
  .home-cuisine-category-arrow {
  color: #173c2a;
  border-color: #d8b583;
  background: #d8b583;
  transform: rotate(45deg);
}

.home-cuisine-category-item > a:focus-visible {
  outline: 3px solid #c99e67;
  outline-offset: 4px;
}

.home-cuisine-content > .btn {
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Responsive */

@media (max-width: 1050px) {
  .home-cuisine-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .home-cuisine-images {
    width: min(100%, 760px);
    min-height: clamp(520px, 78vw, 720px);
  }
}

@media (max-width: 650px) {
  .home-cuisine-section {
    padding-block: 4.5rem;
  }

  .home-cuisine-images {
    min-height: 440px;
  }

  .cuisine-image-main {
    width: 88%;
    height: 76%;
  }

  .cuisine-image-secondary {
    width: 62%;
    height: 43%;
  }

  .home-cuisine-category-list {
    grid-template-columns: 1fr;
  }

  .home-cuisine-category-item > a {
    min-height: 175px;
    padding: 1.5rem;
  }
}

@media (max-width: 420px) {
  .home-cuisine-images {
    min-height: 370px;
  }

  .cuisine-image-main {
    width: 92%;
  }

  .cuisine-image-secondary {
    width: 67%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cuisine-category-item > a,
  .home-cuisine-category-item > a::before,
  .home-cuisine-category-copy small,
  .home-cuisine-category-arrow {
    transition: none;
  }
}


/* =========================================================
   16. SUSTAINABILITY SECTION
========================================================= */

.home-sustainability-section {
    padding: 135px 0;
    color: var(--color-white);
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(145, 165, 143, 0.17),
            transparent 35%
        ),
        var(--color-forest-dark);
}

.sustainability-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 110px;
}

.sustainability-heading h2 {
    max-width: 570px;
    color: var(--color-white);
}

.sustainability-content > p {
    max-width: 640px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

/* =========================================================
   HOME — SUSTAINABILITY TOPIC GRID
========================================================= */

.home-sustainability-topic-nav {
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.home-sustainability-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-sustainability-topic-item {
  min-width: 0;
}

.home-sustainability-topic-item > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 84px;
  height: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition:
    border-color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.home-sustainability-topic-item > a:hover,
.home-sustainability-topic-item > a:focus-visible {
  border-color: rgba(216, 181, 131, 0.75);
  background: rgba(216, 181, 131, 0.13);
  transform: translateY(-3px);
}

.home-sustainability-topic-item > a:focus-visible {
  outline: 3px solid #d8b583;
  outline-offset: 3px;
}

.home-sustainability-topic-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(216, 181, 131, 0.55);
  border-radius: 50%;
  color: #e2c499;
  background: rgba(216, 181, 131, 0.09);
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.home-sustainability-topic-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-sustainability-topic-item > a > span:nth-child(2) {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.home-sustainability-topic-arrow {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.home-sustainability-topic-item > a:hover
  .home-sustainability-topic-icon,
.home-sustainability-topic-item > a:focus-visible
  .home-sustainability-topic-icon,
.home-sustainability-topic-item > a:hover
  .home-sustainability-topic-arrow,
.home-sustainability-topic-item > a:focus-visible
  .home-sustainability-topic-arrow {
  color: #173c2a;
  border-color: #d8b583;
  background: #d8b583;
}

.home-sustainability-topic-item > a:hover
  .home-sustainability-topic-icon,
.home-sustainability-topic-item > a:focus-visible
  .home-sustainability-topic-icon {
  transform: translateY(-2px);
}

.home-sustainability-topic-item > a:hover
  .home-sustainability-topic-arrow,
.home-sustainability-topic-item > a:focus-visible
  .home-sustainability-topic-arrow {
  transform: rotate(45deg);
}

@media (max-width: 700px) {
  .home-sustainability-topic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .home-sustainability-topic-item > a {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.9rem;
  }

  .home-sustainability-topic-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-sustainability-topic-item > a,
  .home-sustainability-topic-icon,
  .home-sustainability-topic-arrow {
    transition: none;
  }
}


/* =========================================================
   SUSTAINABILITY — HERO
========================================================= */

.sustainability-hero-section {
  position: relative;
  display: grid;
  min-height: min(880px, 100svh);
  overflow: hidden;
  align-items: end;
  isolation: isolate;
}

.sustainability-hero-background,
.sustainability-hero-overlay {
  position: absolute;
  inset: 0;
}

.sustainability-hero-background {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.sustainability-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 29, 23, 0.95) 0%,
      rgba(7, 29, 23, 0.78) 46%,
      rgba(7, 29, 23, 0.36) 76%,
      rgba(7, 29, 23, 0.15) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 24, 18, 0.12) 0%,
      rgba(5, 24, 18, 0.72) 100%
    );
}

.sustainability-hero-content {
  max-width: 920px;
  padding-top: 12rem;
  padding-bottom: clamp(5rem, 10vw, 9rem);
  color: #fff;
}

.sustainability-hero-content h1 {
  max-width: 900px;
  margin: 0.85rem 0 1.4rem;
  color: #fff;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.sustainability-hero-content p {
  max-width: 650px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}


/* =========================================================
   SUSTAINABILITY — INTRODUCTION
========================================================= */

.sustainability-introduction-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: #fffdf8;
}

.sustainability-introduction-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.sustainability-introduction-heading h2 {
  max-width: 650px;
}

.sustainability-introduction-content {
  max-width: 760px;
}

.sustainability-introduction-content p {
  color: var(--sustainability-text-soft);
  line-height: 1.85;
}

.sustainability-introduction-content .story-lead {
  margin-top: 0;
  color: var(--sustainability-green);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.65;
}


/* =========================================================
   SUSTAINABILITY — LEVEL 2 TOPIC NAVIGATION
========================================================= */

.sustainability-topic-navigation-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--sustainability-cream);
  scroll-margin-top: 110px;
}

.sustainability-topic-navigation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid var(--sustainability-border);
  border-radius: 20px;
  background: var(--sustainability-border);
}

.sustainability-topic-navigation > a {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 285px;
  padding: 1.5rem;
  overflow: hidden;
  flex-direction: column;
  color: var(--sustainability-green);
  background-color: #fff;
  text-decoration: none;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}



.sustainability-topic-navigation-number {
  display: block;
  color: var(--sustainability-gold);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.17em;
  transition: color 250ms ease;
}

.sustainability-topic-navigation-icon {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  margin-top: auto;
  place-items: center;
  color: var(--sustainability-gold);
  transition: color 250ms ease;
}

.sustainability-topic-navigation-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Also support SVG elements with their own stroke declarations. */
.sustainability-topic-navigation-icon svg * {
  stroke: currentColor;
}

.sustainability-topic-navigation strong {
  display: block;
  max-width: 95%;
  margin-top: 1.1rem;
  color: var(--sustainability-green);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 600;
  line-height: 1.08;
  transition: color 250ms ease;
}

.sustainability-topic-navigation small {
  display: block;
  margin-top: 0.75rem;
  color: var(--sustainability-text-soft);
  font-size: 0.74rem;
  line-height: 1.6;
  transition: color 250ms ease;
}

.sustainability-topic-navigation-arrow {
  position: absolute;
  z-index: 2;
  top: 1.35rem;
  right: 1.35rem;
  color: rgba(21, 59, 46, 0.48);
  transition:
    color 250ms ease,
    transform 250ms ease;
}


/* =========================================================
   SUSTAINABILITY TOPIC NAVIGATION — HOVER AND FOCUS
========================================================= */

/* Sustainability topic-card hover correction */
.sustainability-topic-navigation > a:hover,
.sustainability-topic-navigation > a:focus-visible {
  opacity: 1;
  color: #fff;
  background: #153b2e !important;
  background-color: #153b2e !important;
  background-image: none !important;
}

.sustainability-topic-navigation > a:hover strong,
.sustainability-topic-navigation > a:focus-visible strong {
  opacity: 1;
  color: #fff !important;
}

.sustainability-topic-navigation > a:hover small,
.sustainability-topic-navigation > a:focus-visible small {
  opacity: 1;
  color: rgba(255, 255, 255, 0.78) !important;
}

.sustainability-topic-navigation > a:hover
  .sustainability-topic-navigation-number,
.sustainability-topic-navigation > a:focus-visible
  .sustainability-topic-navigation-number,
.sustainability-topic-navigation > a:hover
  .sustainability-topic-navigation-icon,
.sustainability-topic-navigation > a:focus-visible
  .sustainability-topic-navigation-icon,
.sustainability-topic-navigation > a:hover
  .sustainability-topic-navigation-arrow,
.sustainability-topic-navigation > a:focus-visible
  .sustainability-topic-navigation-arrow {
  opacity: 1;
  color: #dfc397 !important;
}

/* =========================================================
   SUSTAINABILITY TOPIC NAVIGATION — RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .sustainability-topic-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sustainability-topic-navigation > a {
    min-height: 250px;
  }
}

@media (max-width: 700px) {
  .sustainability-topic-navigation {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .sustainability-topic-navigation > a {
    min-height: 225px;
  }
}

@media (hover: none) {
  .sustainability-topic-navigation > a:active {
    color: #fff;
    background-color: var(--sustainability-green);
  }

  .sustainability-topic-navigation > a:active strong {
    color: #fff;
  }

  .sustainability-topic-navigation > a:active small {
    color: rgba(255, 255, 255, 0.74);
  }

  .sustainability-topic-navigation > a:active
    .sustainability-topic-navigation-number,
  .sustainability-topic-navigation > a:active
    .sustainability-topic-navigation-icon,
  .sustainability-topic-navigation > a:active
    .sustainability-topic-navigation-arrow {
    color: var(--sustainability-gold-light);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sustainability-topic-navigation > a,
  .sustainability-topic-navigation > a * {
    transition: none;
  }
}


/* =========================================================
   SUSTAINABILITY — SHARED DETAIL SECTIONS
========================================================= */

.sustainability-detail-section,
.sustainability-dark-section,
.sustainability-water-section {
  scroll-margin-top: 100px;
}

.sustainability-detail-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: #fff;
}

.sustainability-detail-section-soft {
  background: var(--sustainability-cream);
}

.sustainability-detail-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.sustainability-detail-layout-reversed
.sustainability-detail-image {
  grid-column: 2;
  grid-row: 1;
}

.sustainability-detail-layout-reversed
.sustainability-detail-content {
  grid-column: 1;
  grid-row: 1;
}

.sustainability-detail-image {
  position: relative;
  height: clamp(620px, 68vw, 820px);
  overflow: hidden;
  border-radius: 2px 120px 2px 2px;
  background: #d8dfd8;
}

.sustainability-detail-layout-reversed
.sustainability-detail-image {
  border-radius: 120px 2px 2px 2px;
}

.sustainability-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-detail-image-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  place-items: center;
  color: #fff;
  background: rgba(15, 54, 40, 0.9);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sustainability-detail-content h2 {
  max-width: 720px;
}

.sustainability-detail-content > p {
  color: var(--sustainability-text-soft);
  line-height: 1.85;
}

.sustainability-detail-content .story-lead {
  color: var(--sustainability-green);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.65;
}

.sustainability-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--sustainability-border);
  background: var(--sustainability-border);
}

.sustainability-feature-grid article {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.78);
}

.sustainability-detail-section:not(
  .sustainability-detail-section-soft
)
.sustainability-feature-grid article {
  background: #fff;
}

.sustainability-feature-grid h3 {
  margin: 0 0 0.55rem;
  color: var(--sustainability-green);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.sustainability-feature-grid p {
  margin: 0;
  color: var(--sustainability-text-soft);
  font-size: 0.8rem;
  line-height: 1.7;
}


/* =========================================================
   SUSTAINABILITY — BACK LINKS AND ACTIONS
========================================================= */

.sustainability-detail-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.sustainability-detail-content >
.sustainability-back-link {
  margin-top: 2rem;
}

.sustainability-back-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--sustainability-green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.sustainability-back-link:hover,
.sustainability-back-link:focus-visible {
  color: var(--sustainability-gold);
}

.sustainability-back-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.sustainability-back-link-light:hover,
.sustainability-back-link-light:focus-visible {
  color: var(--sustainability-gold-light);
}


/* =========================================================
   SUSTAINABILITY — EDUCATION DARK SECTION
========================================================= */

.sustainability-dark-section {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  isolation: isolate;
}

.sustainability-dark-background,
.sustainability-dark-overlay {
  position: absolute;
  inset: 0;
}

.sustainability-dark-background {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.sustainability-dark-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 31, 23, 0.96) 0%,
      rgba(8, 31, 23, 0.84) 55%,
      rgba(8, 31, 23, 0.45) 100%
    );
}

.sustainability-dark-content {
  max-width: 900px;
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  color: #fff;
}

.sustainability-dark-number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--sustainability-gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.sustainability-dark-content h2 {
  max-width: 760px;
  color: #fff;
}

.sustainability-dark-content > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.sustainability-dark-content
.sustainability-dark-lead {
  color: #fff;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.sustainability-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 2.75rem 0 2rem;
  background: rgba(255, 255, 255, 0.18);
}

.sustainability-dark-grid article {
  padding: 1.5rem;
  background: rgba(10, 44, 32, 0.72);
  backdrop-filter: blur(8px);
}

.sustainability-dark-grid article > span {
  color: var(--sustainability-gold-light);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sustainability-dark-grid h3 {
  margin: 2.5rem 0 0.55rem;
  color: #fff;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.sustainability-dark-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.7;
}


/* =========================================================
   SUSTAINABILITY — WATER MANAGEMENT
========================================================= */

.sustainability-water-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.sustainability-water-background,
.sustainability-water-overlay {
  position: absolute;
  inset: 0;
}

.sustainability-water-background {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.sustainability-water-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 35, 30, 0.94),
      rgba(7, 35, 30, 0.72)
    );
}

.sustainability-water-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  color: #fff;
  align-items: start;
}

.sustainability-water-heading {
  position: sticky;
  top: 140px;
}

.sustainability-water-heading h2 {
  color: #fff;
}

.sustainability-water-heading p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.sustainability-water-points {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.sustainability-water-points article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1.2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.sustainability-water-points article > span {
  color: var(--sustainability-gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sustainability-water-points h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.sustainability-water-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.7;
}

.sustainability-water-points
.sustainability-back-link {
  margin-top: 2rem;
}


/* =========================================================
   SUSTAINABILITY — CONTINUING JOURNEY
========================================================= */

.sustainability-journey-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background-color: #fff;
}

.sustainability-journey-section
.sustainability-journey-panel {
  display: grid;
  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2.5rem, 6vw, 5.5rem);

  color: #fff;
  background-color:
    var(--sustainability-green-dark, #0b2d22);
}

.sustainability-journey-panel
.section-kicker-light {
  color: var(--sustainability-gold-light, #dfc397);
}

.sustainability-journey-panel h2 {
  color: #fff;
}

.sustainability-journey-panel p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.sustainability-journey-tags {
  display: flex;
  gap: 0.65rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.sustainability-journey-tags span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.06);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   SUSTAINABILITY — FINAL CTA
========================================================= */

.sustainability-final-section {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  place-items: center;
  text-align: center;
  isolation: isolate;
}

.sustainability-final-background,
.sustainability-final-overlay {
  position: absolute;
  inset: 0;
}

.sustainability-final-background {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.sustainability-final-overlay {
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 29, 21, 0.48),
      rgba(7, 29, 21, 0.83)
    );
}

.sustainability-final-content {
  max-width: 920px;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #fff;
}

.sustainability-final-content h2 {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
}

.sustainability-final-content p {
  max-width: 700px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.sustainability-final-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.25rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* =========================================================
   SUSTAINABILITY — RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .sustainability-topic-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sustainability-topic-navigation a {
    min-height: 250px;
  }
}


@media (max-width: 950px) {
  .sustainability-introduction-layout,
  .sustainability-detail-layout,
  .sustainability-water-layout,
  .sustainability-journey-panel {
    grid-template-columns: 1fr;
  }

  .sustainability-detail-layout-reversed
  .sustainability-detail-image,
  .sustainability-detail-layout-reversed
  .sustainability-detail-content {
    grid-column: auto;
    grid-row: auto;
  }

  .sustainability-detail-layout-reversed
  .sustainability-detail-image {
    order: 1;
  }

  .sustainability-detail-layout-reversed
  .sustainability-detail-content {
    order: 2;
  }

  .sustainability-detail-image {
    height: min(720px, 105vw);
  }

  .sustainability-water-heading {
    position: static;
  }

  .sustainability-water-heading p {
    max-width: 720px;
  }
}


@media (max-width: 700px) {
  .sustainability-hero-section {
    min-height: 760px;
  }

  .sustainability-hero-content {
    padding-top: 10rem;
  }

  .sustainability-topic-navigation {
    grid-template-columns: 1fr;
  }

  .sustainability-topic-navigation a {
    min-height: 225px;
  }

  .sustainability-detail-image {
    height: min(620px, 130vw);
    border-radius: 2px 70px 2px 2px;
  }

  .sustainability-detail-layout-reversed
  .sustainability-detail-image {
    border-radius: 70px 2px 2px 2px;
  }

  .sustainability-feature-grid,
  .sustainability-dark-grid {
    grid-template-columns: 1fr;
  }

  .sustainability-detail-actions,
  .sustainability-final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sustainability-detail-actions .btn,
  .sustainability-final-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sustainability-detail-actions
  .sustainability-back-link {
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
  }

  .sustainability-dark-overlay {
    background: rgba(8, 31, 23, 0.89);
  }

  .sustainability-water-overlay {
    background: rgba(7, 35, 30, 0.88);
  }

  .sustainability-water-points article {
    grid-template-columns: 40px 1fr;
  }

  .sustainability-journey-panel {
    padding: 2.25rem 1.5rem;
  }

  .sustainability-final-section {
    min-height: 680px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .sustainability-topic-navigation a {
    transition: none;
  }

  .sustainability-hero-background {
    transform: none;
  }
}

/* =========================================================
   HOME — AYURVEDA & SPA
========================================================= */

.home-ayurveda-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(203, 165, 110, 0.16),
      transparent 32%
    ),
    #f6f1e7;
  overflow: hidden;
}

.home-ayurveda-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

/* Image */

.home-ayurveda-visual {
  position: relative;
  min-height: clamp(560px, 62vw, 760px);
}

.home-ayurveda-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 28px 65px rgba(35, 58, 42, 0.15);
}

.home-ayurveda-visual::before {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  z-index: 1;
  width: 42%;
  height: 32%;
  border-top: 1px solid rgba(153, 111, 62, 0.55);
  border-left: 1px solid rgba(153, 111, 62, 0.55);
  content: "";
  pointer-events: none;
}

.home-ayurveda-visual-accent {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 48%;
  height: 42%;
  border: 1px solid rgba(153, 111, 62, 0.3);
  pointer-events: none;
}

/* Content */

.home-ayurveda-content {
  min-width: 0;
}

.home-ayurveda-content h2 {
  max-width: 650px;
  margin: 0.8rem 0 1.5rem;
  color: #183c2b;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-ayurveda-content > p {
  max-width: 680px;
  margin: 0 0 1rem;
  color: #687269;
  line-height: 1.8;
}

.home-ayurveda-lead {
  color: #354d3d !important;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

/* Topic grid */

.home-ayurveda-topic-nav {
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.home-ayurveda-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-ayurveda-topic-item {
  min-width: 0;
}

.home-ayurveda-topic-item > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  min-height: 88px;
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(31, 63, 45, 0.14);
  color: #183c2b;
  background: rgba(255, 253, 248, 0.75);
  text-decoration: none;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

.home-ayurveda-topic-item > a:hover,
.home-ayurveda-topic-item > a:focus-visible {
  color: #ffffff;
  border-color: #214c36;
  background: #214c36;
  box-shadow: 0 14px 32px rgba(31, 63, 45, 0.15);
  transform: translateY(-3px);
}

.home-ayurveda-topic-item > a:focus-visible {
  outline: 3px solid #c99e67;
  outline-offset: 3px;
}

/* Topic icons */

.home-ayurveda-topic-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(161, 123, 77, 0.42);
  border-radius: 50%;
  color: #9c7447;
  background: rgba(201, 158, 103, 0.1);
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.home-ayurveda-topic-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-ayurveda-topic-item > a > span:nth-child(2) {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-ayurveda-topic-arrow {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(31, 63, 45, 0.22);
  border-radius: 50%;
  font-size: 0.85rem;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.home-ayurveda-topic-item > a:hover
  .home-ayurveda-topic-icon,
.home-ayurveda-topic-item > a:focus-visible
  .home-ayurveda-topic-icon,
.home-ayurveda-topic-item > a:hover
  .home-ayurveda-topic-arrow,
.home-ayurveda-topic-item > a:focus-visible
  .home-ayurveda-topic-arrow {
  color: #173c2a;
  border-color: #d8b583;
  background: #d8b583;
}

.home-ayurveda-topic-item > a:hover
  .home-ayurveda-topic-icon,
.home-ayurveda-topic-item > a:focus-visible
  .home-ayurveda-topic-icon {
  transform: translateY(-2px);
}

.home-ayurveda-topic-item > a:hover
  .home-ayurveda-topic-arrow,
.home-ayurveda-topic-item > a:focus-visible
  .home-ayurveda-topic-arrow {
  transform: rotate(45deg);
}

/* Responsive */

@media (max-width: 1050px) {
  .home-ayurveda-layout {
    grid-template-columns: 1fr;
  }

  .home-ayurveda-visual {
    min-height: clamp(420px, 70vw, 650px);
  }

  .home-ayurveda-content {
    max-width: 850px;
  }
}

@media (max-width: 650px) {
  .home-ayurveda-section {
    padding: 4.5rem 0;
  }

  .home-ayurveda-topic-grid {
    grid-template-columns: 1fr;
  }

  .home-ayurveda-visual {
    min-height: 440px;
  }

  .home-ayurveda-visual-accent {
    right: -0.75rem;
    bottom: -0.75rem;
  }
}

@media (max-width: 420px) {
  .home-ayurveda-topic-item > a {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-ayurveda-topic-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-ayurveda-topic-item > a,
  .home-ayurveda-topic-icon,
  .home-ayurveda-topic-arrow {
    transition: none;
  }
}


/* =========================================================
   17. NEARBY ATTRACTIONS
========================================================= */

.home-nearby-section {
    padding: 140px 0;
    background: var(--color-paper);
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nearby-card {
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.nearby-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-medium);
}

.nearby-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.nearby-card > div {
    padding: 30px;
}

.nearby-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-gold-dark);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nearby-card h3 {
    margin-bottom: 14px;
    font-size: 2.2rem;
}

.nearby-card p {
    font-size: 0.91rem;
}


/* =========================================================
   18. FINAL BOOKING CTA
========================================================= */

.home-final-booking {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: var(--color-forest-dark);
}

.home-final-booking-image,
.home-final-booking-overlay {
    position: absolute;
    inset: 0;
}

.home-final-booking-image {
    background-position: center;
    background-size: cover;
}

.home-final-booking-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(7, 25, 14, 0.42),
            rgba(7, 25, 14, 0.76)
        );
}

.home-final-booking-content {
    position: relative;
    z-index: 1;
    max-width: 830px;
    color: var(--color-white);
}

.home-final-booking-content h2 {
    margin-bottom: 22px;
    color: var(--color-white);
}

.home-final-booking-content p {
    max-width: 600px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.home-final-booking-content .final-booking-actions {
    justify-content: center;
}


/* =========================================================
   SITE FOOTER
========================================================= */

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #071d12;
}


/* =========================================================
   FOOTER MAIN GRID
========================================================= */

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.9fr 1fr;
    gap: 70px;

    align-items: start;

    padding-top: 80px;
    padding-bottom: 58px;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo-column {
    display: flex;
    align-items: center;
    min-height: 210px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.footer-logo {
    display: block;
    width: 150px;
    height: auto;
    object-fit: contain;

    filter: drop-shadow(
        0 6px 20px rgba(0, 0, 0, 0.18)
    );
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h2 {
    margin: 0 0 22px;

    color: var(--color-sand);

    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-column a {
    display: inline-flex;
    width: fit-content;

    align-items: center;
    gap: 11px;

    margin-bottom: 13px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;

    transition:
        color 200ms ease,
        transform 200ms ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-connect a i {
    width: 18px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1rem;
    text-align: center;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding-top: 20px;
    padding-bottom: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.74rem;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.68);

    font-size: 0.72rem;
    font-weight: 500;

    transition: color 200ms ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 70px;
    }

    .footer-logo-column {
        min-height: 0;
    }

    .footer-logo {
        width: 170px;
    }
}

@media (max-width: 767px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 26px;

        padding-top: 60px;
        padding-bottom: 45px;

        text-align: center;
    }

    .footer-logo-column {
        grid-column: 1 / -1;

        justify-content: center;
        align-items: center;

        min-height: 0;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-column {
        align-items: center;
        text-align: left;
    }

    .footer-column h2 {
        margin-bottom: 16px;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .footer-column a {
        width: auto;
        justify-content: center;

        margin-bottom: 11px;

        font-size: 0.82rem;
        text-align: left;
    }

    .footer-connect a {
        justify-content: center;
    }

    .footer-bottom {
        min-height: 0;

        align-items: center;
        flex-direction: column;

        gap: 18px;

        padding-top: 24px;
        padding-bottom: 30px;

        text-align: center;
    }

    .footer-bottom p {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 10px 18px;
    }
}

@media (max-width: 430px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;

        text-align: center;
    }

    .footer-logo-column {
        grid-column: auto;
        justify-content: center;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-column {
        align-items: center;
        text-align: left;
    }

    .footer-column a {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}


/* =========================================================
   20. GENERIC INNER-PAGE HERO
========================================================= */

.page-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-forest-dark);
}

.page-hero-image,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-image {
    background-position: center;
    background-size: cover;
}

.page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 15, 0.72),
            rgba(7, 26, 15, 0.18)
        ),
        linear-gradient(
            180deg,
            rgba(7, 26, 15, 0.08),
            rgba(7, 26, 15, 0.62)
        );
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 180px;
    padding-bottom: 80px;
}

.page-hero-content h1 {
    max-width: 850px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.page-hero-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
}


/* =========================================================
   21. GENERIC CONTENT SECTIONS
========================================================= */

.content-section {
    padding: 110px 0;
}

.content-section-light {
    background: var(--color-paper);
}

.content-section-cream {
    background: var(--color-cream);
}

.content-section-dark {
    color: rgba(255, 255, 255, 0.78);
    background: var(--color-forest-dark);
}

.content-section-dark h1,
.content-section-dark h2,
.content-section-dark h3,
.content-section-dark h4 {
    color: var(--color-white);
}

.two-column-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 75px;
    align-items: center;
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.four-column-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   22. GENERIC CARDS
========================================================= */

.card {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-small);
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    margin-bottom: 14px;
    font-size: 2rem;
}

.card-body p {
    font-size: 0.92rem;
}

.premium-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.premium-tile {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-small);
}

.premium-thumb {
    min-height: 310px;
    background-position: center;
    background-size: cover;
}

.premium-meta {
    padding: 30px;
}

.premium-meta h3 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.pill {
    padding: 6px 10px;
    color: var(--color-forest);
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.text-link {
    color: var(--color-forest);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   23. FORMS
========================================================= */

.form-card {
    padding: 42px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-small);
}

.form-group {
    margin-bottom: 24px;
}

.form-label,
.form-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--color-forest);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-control,
.form-select,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    color: var(--color-ink);
    background: var(--color-white);
    border: 1px solid rgba(23, 58, 38, 0.24);
    border-radius: 0;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.form-group textarea,
textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(181, 150, 91, 0.12);
}

.form-help,
.helptext {
    display: block;
    margin-top: 7px;
    color: var(--color-muted);
    font-size: 0.76rem;
}

.errorlist {
    margin: 7px 0 0;
    padding: 0;
    color: #9f302b;
    font-size: 0.8rem;
    list-style: none;
}


/* =========================================================
   24. TABLES
========================================================= */

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--color-forest);
    background: var(--color-cream);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   25. ALERTS AND MESSAGES
========================================================= */

.alert {
    position: relative;
    margin: 20px auto;
    padding: 17px 52px 17px 18px;
    border: 1px solid transparent;
    font-size: 0.9rem;
}

.alert-success {
    color: #235a35;
    background: #edf7ef;
    border-color: #b8dcc1;
}

.alert-danger,
.alert-error {
    color: #842d29;
    background: #fff0ef;
    border-color: #efc0bd;
}

.alert-warning {
    color: #6e571f;
    background: #fff9e8;
    border-color: #ead89d;
}

.alert-info {
    color: #255567;
    background: #edf8fc;
    border-color: #b9dce8;
}

.btn-close {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}


/* =========================================================
   26. LIGHTBOX MODAL
========================================================= */

.modal {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 10, 5, 0.88);
    backdrop-filter: blur(7px);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 94vw);
    max-height: 90vh;
    padding: 18px;
    background: var(--color-paper);
    box-shadow: var(--shadow-large);
}

.modal-image {
    width: 100%;
    max-height: calc(90vh - 90px);
    object-fit: contain;
    background: #07110a;
}

.modal-close {
    position: absolute;
    z-index: 2;
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    color: var(--color-white);
    background: var(--color-forest);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
}

.modal-caption {
    padding: 14px 4px 0;
    color: var(--color-muted);
    font-size: 0.84rem;
}


/* =========================================================
   27. GALLERY
========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms ease;
}

.gallery-item:hover img {
    transform: scale(1.045);
}


/* =========================================================
   28. RESPONSIVE: LARGE TABLET
========================================================= */

@media (max-width: 1180px) {
    :root {
        --header-height: 82px;
    }

    .site-header-inner {
        width: min(calc(100% - 36px), 1380px);
    }

    .site-brand {
        min-width: auto;
    }

    .site-brand-copy strong {
        font-size: 1.15rem;
    }

    .site-brand-copy small {
        display: none;
    }

    .nav-link {
        padding-inline: 10px;
        font-size: 0.69rem;
    }

    .nav-book-button {
        padding-inline: 16px;
    }

    .home-story-grid,
    .home-cuisine-grid,
    .sustainability-layout {
        gap: 65px;
    }

    .home-stay-details {
        padding: 52px;
    }

    .footer-main-grid {
        grid-template-columns: 1.35fr repeat(3, 1fr);
        gap: 40px;
    }
}


/* =========================================================
   29. RESPONSIVE: TABLET AND MOBILE NAV
========================================================= */

@media (max-width: 1024px) {
    .container,
    .container-narrow {
        width: min(calc(100% - 36px), var(--container-width));
    }

    .nav-toggle {
        display: flex;
    }

    .primary-navigation {
        position: fixed;
        z-index: 999;
        top: 0;
        right: 0;
        width: min(440px, 100%);
        height: 100svh;
        display: block;
        padding: 110px 34px 50px;
        overflow-y: auto;
        color: var(--color-ink);
        background: var(--color-paper);
        box-shadow: -25px 0 70px rgba(8, 26, 15, 0.18);
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition:
            visibility var(--transition-normal),
            opacity var(--transition-normal),
            transform var(--transition-normal);
    }

    .primary-navigation.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .site-header .nav-toggle {
        position: relative;
        z-index: 1001;
    }

    .site-header:not(.site-header-scrolled) .nav-toggle[aria-expanded="true"] {
        color: var(--color-ink);
    }

    .nav-link {
        width: 100%;
        min-height: 58px;
        justify-content: space-between;
        padding: 0;
        border-bottom: 1px solid var(--color-border);
        font-family: var(--font-heading);
        font-size: 1.55rem;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-book-button {
        width: 100%;
        min-height: 54px;
        margin: 28px 0 0;
    }

    .nav-dropdown {
        position: relative;
    }

    .nav-mega-menu {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 24px 0 12px;
        color: var(--color-text);
        background: transparent;
        border: 0;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .nav-dropdown.is-open .nav-mega-menu {
        display: grid;
    }

    .nav-mega-intro {
        display: none;
    }

    .nav-mega-column {
        padding: 0;
    }

    .nav-mega-column a {
        margin-bottom: 10px;
    }

    .home-story-grid,
    .split-heading,
    .sustainability-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .home-story-content {
        max-width: 760px;
    }

    .home-story-image-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .story-image-large img {
        height: 520px;
    }

    .story-image-small img {
        height: 340px;
    }

    .home-stay-feature,
    .home-stay-feature.stay-image-right {
        grid-template-columns: 1fr 1fr;
    }

    .home-stay-details {
        padding: 44px;
    }

    .experience-editorial-grid,
    .nearby-grid,
    .premium-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-editorial-card:last-child,
    .nearby-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 15px);
        margin-inline: auto;
    }

    .home-cuisine-grid {
        grid-template-columns: 1fr;
    }

    .home-cuisine-images {
        min-height: 600px;
    }

    .home-cuisine-content {
        max-width: 700px;
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column-layout {
        gap: 45px;
    }

    .three-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .four-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   30. RESPONSIVE: MOBILE
========================================================= */

@media (max-width: 767px) {
    :root {
        --header-height: 74px;
    }

    body {
        font-size: 15px;
    }

    .container,
    .container-narrow {
        width: min(calc(100% - 28px), var(--container-width));
    }

    h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    h2 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    h3 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .section,
    .content-section {
        padding: 82px 0;
    }

    .site-header-inner {
        width: calc(100% - 24px);
    }

    .site-brand-logo,
    .site-header-scrolled .site-brand-logo {
        width: 48px;
        height: 48px;
    }

    .site-brand-copy strong {
        max-width: 175px;
        overflow: hidden;
        font-size: 1rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .primary-navigation {
        width: 100%;
        padding: 95px 24px 40px;
    }

    .home-video-hero {
        min-height: 780px;
    }

    .home-video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(12, 45, 28, 0.72) 0%,
                rgba(12, 45, 28, 0.46) 18%,
                rgba(12, 45, 28, 0.22) 34%,
                rgba(12, 45, 28, 0.10) 48%,
                rgba(12, 45, 28, 0.14) 58%,
                rgba(12, 45, 28, 0.34) 72%,
                rgba(12, 45, 28, 0.64) 86%,
                rgba(8, 35, 21, 0.88) 100%
            );
    }

    .home-video-content {
        padding-top: 145px;
        padding-bottom: 100px;
    }

    .home-video-copy p {
        font-size: 0.98rem;
    }

    .home-hero-actions,
    .final-booking-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-actions .btn,
    .final-booking-actions .btn {
        width: 100%;
    }

    .hero-scroll-cue {
        display: none;
    }

    .home-story-section,
    .home-stay-section,
    .home-experiences-section,
    .home-cuisine-section,
    .home-sustainability-section,
    .home-nearby-section {
        padding: 90px 0;
    }

    .home-story-grid,
    .home-story-image-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-story-image-grid {
        margin-top: 55px;
    }

    .story-image-large img,
    .story-image-small img {
        height: 390px;
    }

    .story-image-small {
        padding: 0;
    }

    .home-section-heading {
        margin-bottom: 45px;
    }

    .split-heading {
        gap: 20px;
    }

    .home-stay-list {
        gap: 52px;
    }

    .home-stay-feature,
    .home-stay-feature.stay-image-right {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .home-stay-feature.stay-image-right .home-stay-image,
    .home-stay-feature.stay-image-right .home-stay-details {
        order: initial;
    }

    .home-stay-image {
        min-height: 370px;
    }

    .home-stay-details {
        padding: 34px 26px 38px;
    }

    .stay-facts {
        flex-direction: column;
        gap: 8px;
    }

    .stay-facts span + span::before {
        display: none;
    }

    .home-nature-section {
        min-height: 680px;
    }

    .home-nature-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 27, 15, 0.28),
                rgba(6, 27, 15, 0.78)
            );
    }

    .experience-editorial-grid,
    .nearby-grid,
    .premium-card-grid,
    .three-column-grid,
    .four-column-grid,
    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .experience-editorial-card:last-child,
    .nearby-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .experience-editorial-image {
        height: 390px;
    }

    .home-cuisine-grid {
        gap: 60px;
    }

    .home-cuisine-images {
        min-height: 520px;
    }

    .cuisine-image-main {
        width: 88%;
        height: 440px;
    }

    .cuisine-image-secondary {
        width: 53%;
        height: 250px;
        border-width: 9px;
    }

    .sustainability-layout {
        gap: 45px;
    }

    .sustainability-points {
        grid-template-columns: 1fr;
    }

    .home-final-booking {
        min-height: 650px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 70px;
        padding-bottom: 55px;
    }

    .footer-about {
        max-width: none;
    }

    .footer-bottom {
        min-height: 110px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 24px 0;
    }

    .page-hero {
        min-height: 560px;
    }

    .page-hero-content {
        padding-top: 150px;
        padding-bottom: 65px;
    }

    .form-card {
        padding: 28px 22px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 390px;
    }

    .modal {
        padding: 15px;
    }

    .modal-dialog {
        padding: 10px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
    }
}


/* =========================================================
   31. VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .site-brand-copy {
        display: none;
    }

    .home-video-hero {
        min-height: 100svh;
    }

    .home-video-copy h1 {
        max-width: 92vw;
        font-size: clamp(2.15rem, 10vw, 2.75rem);
    }

    .story-image-large img,
    .story-image-small img,
    .experience-editorial-image,
    .gallery-item {
        height: 330px;
        min-height: 330px;
    }

    .home-stay-image {
        min-height: 320px;
    }

    .home-cuisine-images {
        min-height: 445px;
    }

    .cuisine-image-main {
        height: 380px;
    }

    .cuisine-image-secondary {
        height: 210px;
    }

    .nearby-card img {
        height: 280px;
    }
}

@media (max-width: 350px) {
    .home-video-copy h1 {
        font-size: 2rem;
    }
}
/* =========================================================
   32. 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;
    }

    .home-hero-video {
        display: none;
    }

    .home-video-media {
        background:
            url("../website/images/palm-grove-hero-poster.webp")
            center / cover no-repeat;
    }
}


/* =========================================================
   33. PRINT
========================================================= */

@media print {
    .site-header,
    .site-footer,
    .nav-toggle,
    .hero-scroll-cue,
    .home-hero-video,
    .modal,
    .btn {
        display: none !important;
    }

    body {
        color: #000000;
        background: #ffffff;
    }

    main {
        padding: 0;
    }

    a {
        text-decoration: underline;
    }
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.floating-whatsapp {
    position: fixed;
    z-index: 1800;

    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #25d366;

    border: 3px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(0, 0, 0, 0.05);

    font-size: 1.9rem;
    line-height: 1;

    transition:
        visibility 220ms ease,
        opacity 220ms ease,
        transform 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease;
}

.floating-whatsapp:hover {
    color: #ffffff;
    background: #1fbd59;

    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.floating-whatsapp:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.95);
    outline-offset: 4px;
}


/* Hidden label for tooltip-style reveal */

.floating-whatsapp-label {
    position: absolute;

    right: calc(100% + 12px);

    padding: 8px 12px;

    color: #ffffff;
    background: #173a26;

    border-radius: 4px;

    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    white-space: nowrap;

    visibility: hidden;
    opacity: 0;

    transform: translateX(6px);

    pointer-events: none;

    transition:
        visibility 200ms ease,
        opacity 200ms ease,
        transform 200ms ease;
}

.floating-whatsapp:hover .floating-whatsapp-label,
.floating-whatsapp:focus-visible .floating-whatsapp-label {
    visibility: visible;
    opacity: 1;

    transform: translateX(0);
}

@media (max-width: 767px) {
    .floating-whatsapp {
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));

        width: 52px;
        height: 52px;

        border-width: 2px;

        font-size: 1.7rem;
    }

    .floating-whatsapp-label {
        display: none;
    }
}

/* =========================================================
   HOMEPAGE NEW AND EXTENDED SECTIONS
========================================================= */

:root {
    --home-green-deep: #173f32;
    --home-green-dark: #0f3026;
    --home-green-soft: #557865;
    --home-cream: #f6f0e6;
    --home-cream-light: #fbf8f2;
    --home-sand: #e8ddcd;
    --home-text: #24352e;
    --home-text-soft: #66736d;
    --home-border: rgba(23, 63, 50, 0.14);
    --home-shadow: 0 24px 60px rgba(18, 44, 35, 0.12);
}


/* =========================================================
   SLEEP CATEGORY STRIP
========================================================= */

.home-stay-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-top: 48px;
}

.home-stay-categories span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 18px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--home-green-deep);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home-stay-categories span:hover {
    color: #fff;
    background: var(--home-green-deep);
    border-color: var(--home-green-deep);
    transform: translateY(-2px);
}


/* =========================================================
   NATURE FEATURE LABELS
========================================================= */

.home-nature-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin: 30px 0 34px;
}

.home-nature-features span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(9, 35, 27, 0.2);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   EXPERIENCE THEME OVERVIEW
========================================================= */

.experience-theme-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 58px;
    margin-bottom: 68px;
}

.experience-theme-item {
    position: relative;
    min-height: 245px;
    padding: 36px 36px 34px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(61, 101, 77, 0.09),
            transparent 34%
        ),
        var(--home-cream-light);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.experience-theme-item::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -42px;
    bottom: -58px;
    border: 1px solid rgba(23, 63, 50, 0.08);
    border-radius: 50%;
}

.experience-theme-item:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.25);
    box-shadow: var(--home-shadow);
}

.experience-theme-item > span {
    display: inline-block;
    margin-bottom: 34px;
    color: #8c6847;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.experience-theme-item h3 {
    margin: 0 0 14px;
    color: var(--home-green-deep);
    font-family: var(
        --heading-font,
        "Cormorant Garamond",
        Georgia,
        serif
    );
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    font-weight: 500;
    line-height: 1.05;
}

.experience-theme-item p {
    max-width: 490px;
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.98rem;
    line-height: 1.75;
}


/* =========================================================
   EXPERIENCE AVAILABILITY NOTE
========================================================= */

.experience-availability-note {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: start;
    margin-top: 72px;
    padding: 48px 52px;
    border-radius: 26px;
    background: var(--home-green-deep);
    color: #fff;
}

.experience-availability-note .section-kicker {
    color: rgba(255, 255, 255, 0.7);
}

.experience-availability-note h3 {
    max-width: 460px;
    margin: 16px 0 0;
    color: #fff;
    font-family: var(
        --heading-font,
        "Cormorant Garamond",
        Georgia,
        serif
    );
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    font-weight: 500;
    line-height: 1.03;
}

.experience-availability-note p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.8;
}

.experience-availability-note .editorial-link {
    color: #fff;
}

.experience-availability-note .editorial-link::after {
    background: #fff;
}


/* =========================================================
   ATTRACTION CATEGORY LINKS
========================================================= */


.nearby-card > a {
    display: block;
    overflow: hidden;
}

.nearby-card > a img {
    transition: transform 0.7s ease;
}

.nearby-card:hover > a img {
    transform: scale(1.045);
}

/* =========================================================
   HOME — ATTRACTION CATEGORY GRID
   ========================================================= */

.home-attraction-category-nav {
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.home-attraction-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-attraction-category-item {
  min-width: 0;
}

.home-attraction-category-item-wide {
  grid-column: 1 / -1;
}

.home-attraction-category-item > a {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: start;
  min-height: 235px;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(31, 63, 45, 0.14);
  color: #183c2b;
  background: #fffdf8;
  box-shadow: 0 15px 38px rgba(30, 54, 39, 0.06);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-attraction-category-item > a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(205, 164, 107, 0.3),
      transparent 45%
    ),
    linear-gradient(145deg, #214c36, #102f21);
  content: "";
  opacity: 0;
  transition: opacity 350ms ease;
}

.home-attraction-category-icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(161, 123, 77, 0.38);
  border-radius: 50%;
  color: #a17b4d;
  background: rgba(201, 158, 103, 0.08);
  transition:
    color 350ms ease,
    border-color 350ms ease,
    background-color 350ms ease,
    transform 350ms ease;
}

.home-attraction-category-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-attraction-category-item h3 {
  margin: 0;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-attraction-category-item p {
  max-width: 570px;
  margin: 1rem 0 0;
  color: #687269;
  font-size: 0.92rem;
  line-height: 1.7;
  transition: color 350ms ease;
}

.home-attraction-category-arrow {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(31, 63, 45, 0.28);
  border-radius: 50%;
  color: #214c36;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    background-color 350ms ease,
    transform 350ms ease;
}
.home-attraction-category-item > a:hover h3,
.home-attraction-category-item > a:focus-visible h3 {
  color: #ffffff;
}


.home-attraction-category-item > a:hover,
.home-attraction-category-item > a:focus-visible {
  color: #ffffff;
  border-color: rgba(216, 181, 131, 0.7);
  box-shadow: 0 25px 52px rgba(18, 49, 32, 0.18);
  transform: translateY(-6px);
}

.home-attraction-category-item > a:hover::before,
.home-attraction-category-item > a:focus-visible::before {
  opacity: 1;
}

.home-attraction-category-item > a:hover p,
.home-attraction-category-item > a:focus-visible p {
  color: rgba(255, 255, 255, 0.76);
}

.home-attraction-category-item > a:hover
  .home-attraction-category-icon,
.home-attraction-category-item > a:focus-visible
  .home-attraction-category-icon,
.home-attraction-category-item > a:hover
  .home-attraction-category-arrow,
.home-attraction-category-item > a:focus-visible
  .home-attraction-category-arrow {
  color: #173c2a;
  border-color: #d8b583;
  background: #d8b583;
}

.home-attraction-category-item > a:hover
  .home-attraction-category-icon,
.home-attraction-category-item > a:focus-visible
  .home-attraction-category-icon {
  transform: translateY(-2px);
}

.home-attraction-category-item > a:hover
  .home-attraction-category-arrow,
.home-attraction-category-item > a:focus-visible
  .home-attraction-category-arrow {
  transform: rotate(45deg);
}

.home-attraction-category-item > a:focus-visible {
  outline: 3px solid #c99e67;
  outline-offset: 4px;
}

/* Dedicated Attractions-page anchor offsets */

#village-tours,
#bird-watching,
#historical-archaeological-pilgrim-sites,
#surfing-tours,
#safari-tours {
  scroll-margin-top: 7rem;
}

@media (max-width: 800px) {
  .home-attraction-category-grid {
    grid-template-columns: 1fr;
  }

  .home-attraction-category-item-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .home-attraction-category-item > a {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.15rem;
    min-height: 220px;
    padding: 1.5rem;
  }

  .home-attraction-category-arrow {
    position: absolute;
    right: 1.35rem;
    bottom: 1.35rem;
  }

  .home-attraction-category-icon {
    width: 2.85rem;
    height: 2.85rem;
  }

  .home-attraction-category-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .home-attraction-category-item p {
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-attraction-category-item > a,
  .home-attraction-category-item > a::before,
  .home-attraction-category-item p,
  .home-attraction-category-icon,
  .home-attraction-category-arrow {
    transition: none;
  }
}
/* =========================================================
   CELEBRATIONS SECTION
========================================================= */

.home-celebrations-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 760px;
    padding: 110px 0;
    overflow: hidden;
    background: #12382c;
}

.home-celebrations-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
}

.home-celebrations-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 29, 23, 0.96) 0%,
            rgba(7, 29, 23, 0.88) 34%,
            rgba(7, 29, 23, 0.62) 58%,
            rgba(7, 29, 23, 0.25) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 25, 19, 0.12) 0%,
            rgba(5, 25, 19, 0.48) 100%
        );
}

.home-celebrations-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            transparent 20%,
            transparent 80%,
            rgba(0, 0, 0, 0.18)
        );
}

.home-celebrations-content {
    position: relative;
    z-index: 2;
    width: 100%;
}


/* Actual content card */

.home-celebrations-panel {
    width: min(720px, 100%);
    padding: 58px 62px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            rgba(8, 39, 29, 0.9),
            rgba(8, 39, 29, 0.66)
        );
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-celebrations-panel .section-kicker {
    display: block;
    width: fit-content;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.72);
}

.home-celebrations-panel h2 {
    max-width: 590px;
    margin: 0 0 27px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.6rem, 5.8vw, 5.7rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.035em;
}

.home-celebrations-panel p {
    max-width: 580px;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.75;
}

.home-celebrations-panel .celebrations-note {
    color: rgba(255, 255, 255, 0.7);
}


/* Celebration type pills */



.home-celebrations-panel .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 50px;
    margin: 0;
    padding: 13px 25px;
}

/* =========================================================
   HOME — CELEBRATION CATEGORY GRID
========================================================= */

.home-celebration-category-nav {
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.home-celebration-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-celebration-category-item {
  min-width: 0;
}

.home-celebration-category-item-wide {
  grid-column: 1 / -1;
}

.home-celebration-category-item > a {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 82px;
  height: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition:
    border-color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.home-celebration-category-item > a:hover,
.home-celebration-category-item > a:focus-visible {
  border-color: rgba(216, 181, 131, 0.8);
  background: rgba(216, 181, 131, 0.16);
  transform: translateY(-3px);
}

.home-celebration-category-item > a:focus-visible {
  outline: 3px solid #d8b583;
  outline-offset: 3px;
}

.home-celebration-category-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(216, 181, 131, 0.55);
  border-radius: 50%;
  color: #e2c499;
  background: rgba(216, 181, 131, 0.1);
  transition:
    color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.home-celebration-category-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-celebration-category-item > a > span:nth-child(2) {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.home-celebration-category-arrow {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.home-celebration-category-item > a:hover
  .home-celebration-category-icon,
.home-celebration-category-item > a:focus-visible
  .home-celebration-category-icon {
  color: #173c2a;
  background: #d8b583;
  transform: translateY(-2px);
}

.home-celebration-category-item > a:hover
  .home-celebration-category-arrow,
.home-celebration-category-item > a:focus-visible
  .home-celebration-category-arrow {
  color: #173c2a;
  border-color: #d8b583;
  background: #d8b583;
  transform: rotate(45deg);
}

@media (max-width: 700px) {
  .home-celebration-category-grid {
    grid-template-columns: 1fr;
  }

  .home-celebration-category-item-wide {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .home-celebration-category-item > a {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.9rem;
  }

  .home-celebration-category-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-celebration-category-item > a,
  .home-celebration-category-icon,
  .home-celebration-category-arrow {
    transition: none;
  }
}

/* =========================================================
   CELEBRATIONS — LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .home-celebrations-section {
        min-height: 800px;
        padding: 120px 0;
    }

    .home-celebrations-panel {
        width: 760px;
        padding: 66px 70px;
    }

    .home-celebrations-panel h2 {
        max-width: 620px;
        font-size: 5.9rem;
    }

    .home-celebrations-panel p {
        max-width: 610px;
        font-size: 1.03rem;
    }
}


/* =========================================================
   CELEBRATIONS — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .home-celebrations-section {
        min-height: 720px;
        padding: 90px 0;
    }

    .home-celebrations-background {
        background-position: 62% center;
    }

    .home-celebrations-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 29, 23, 0.95) 0%,
                rgba(7, 29, 23, 0.82) 60%,
                rgba(7, 29, 23, 0.46) 100%
            ),
            linear-gradient(
                180deg,
                rgba(5, 25, 19, 0.18),
                rgba(5, 25, 19, 0.5)
            );
    }

    .home-celebrations-panel {
        width: min(670px, 100%);
        padding: 50px 54px;
    }

    .home-celebrations-panel h2 {
        max-width: 540px;
        font-size: clamp(3.4rem, 8vw, 5.2rem);
    }

    .home-celebrations-panel p {
        max-width: 540px;
    }
}


/* =========================================================
   CELEBRATIONS — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-celebrations-section {
        align-items: flex-end;
        min-height: 760px;
        padding: 180px 0 64px;
    }

    .home-celebrations-background {
        background-position: 66% center;
    }

    .home-celebrations-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 29, 23, 0.12) 0%,
                rgba(7, 29, 23, 0.46) 38%,
                rgba(7, 29, 23, 0.94) 76%,
                rgba(7, 29, 23, 0.98) 100%
            );
    }

    .home-celebrations-panel {
        width: 100%;
        padding: 38px 28px;
        border-radius: 22px;
    }

    .home-celebrations-panel h2 {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: clamp(3rem, 13vw, 4.6rem);
        line-height: 0.96;
    }

    .home-celebrations-panel p {
        max-width: 100%;
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .celebration-types {
        max-width: 100%;
        margin-top: 26px;
        margin-bottom: 30px;
    }

    .celebration-types span {
        min-height: 34px;
        padding: 7px 11px;
        font-size: 0.63rem;
    }
}


/* =========================================================
   CELEBRATIONS — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .home-celebrations-section {
        min-height: 800px;
        padding-top: 190px;
        padding-bottom: 52px;
    }

    .home-celebrations-panel {
        padding: 32px 22px;
    }

    .home-celebrations-panel h2 {
        font-size: 3.25rem;
    }

    .home-celebrations-panel .btn {
        width: 100%;
    }
}

/* =========================================================
   EXTENDED SUSTAINABILITY GRID
========================================================= */

.sustainability-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 42px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sustainability-points > div {
    min-height: 140px;
    padding: 25px 24px 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.sustainability-points > div:nth-child(odd) {
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.sustainability-points > div:nth-child(even) {
    padding-left: 30px;
}

.sustainability-points strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-family: var(
        --heading-font,
        "Cormorant Garamond",
        Georgia,
        serif
    );
    font-size: 1.45rem;
    font-weight: 500;
}

.sustainability-points span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.93rem;
    line-height: 1.6;
}


/* =========================================================
   GALLERY PREVIEW
========================================================= */

.home-gallery-section {
    padding: 120px 0;
    overflow: hidden;
    background: var(--home-cream-light);
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    grid-template-rows: repeat(2, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 58px;
}

.home-gallery-item {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border-radius: 20px;
    background: #d8d8d0;
    isolation: isolate;
}

.home-gallery-item-large {
    grid-row: 1 / span 2;
    min-height: 560px;
}

.home-gallery-item-wide {
    grid-column: 2 / span 2;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.5s ease;
}

.home-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(6, 28, 21, 0.72) 100%
        );
    transition: background-color 0.3s ease;
}

.home-gallery-item span {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 22px;
    color: #fff;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-gallery-item:hover img {
    transform: scale(1.055);
    filter: saturate(1.04);
}


/* =========================================================
   FAQ SECTION
========================================================= */

.home-faq-section {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(31, 76, 57, 0.07),
            transparent 30%
        ),
        #fff;
}

.home-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
    align-items: start;
}

.home-faq-heading {
    position: sticky;
    top: 130px;
}

.home-faq-heading h2 {
    max-width: 470px;
    margin: 16px 0 22px;
    color: var(--home-green-deep);
    font-family: var(
        --heading-font,
        "Cormorant Garamond",
        Georgia,
        serif
    );
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.home-faq-heading p {
    max-width: 470px;
    margin: 0 0 30px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.home-faq-list {
    border-top: 1px solid var(--home-border);
}

.home-faq-item {
    border-bottom: 1px solid var(--home-border);
}

.home-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 94px;
    padding: 24px 60px 24px 0;
    color: var(--home-green-deep);
    cursor: pointer;
    list-style: none;
    font-family: var(
        --heading-font,
        "Cormorant Garamond",
        Georgia,
        serif
    );
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    font-weight: 500;
    line-height: 1.25;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary::before,
.home-faq-item summary::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 18px;
    height: 1.5px;
    background: var(--home-green-deep);
    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

.home-faq-item summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.home-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
}

.home-faq-item > div {
    padding: 0 70px 28px 0;
}

.home-faq-item p {
    max-width: 710px;
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.98rem;
    line-height: 1.75;
}


/* =========================================================
   LOCATION AND CONTACT SECTION
========================================================= */

.home-location-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(32, 78, 59, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(184, 147, 83, 0.09),
            transparent 28%
        ),
        #f6f1e8;
}

.home-location-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(23, 63, 50, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.home-location-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(480px, 1.18fr);
    gap: clamp(52px, 6vw, 92px);
    align-items: center;
}


/* =========================================================
   LOCATION CONTENT
========================================================= */

.home-location-content {
    max-width: 610px;
}

.home-location-content .section-kicker {
    display: inline-block;
    margin-bottom: 18px;
}

.home-location-content h2 {
    max-width: 590px;
    margin: 0 0 28px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.3rem, 5.4vw, 5.7rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.035em;
}

.home-location-content .story-lead {
    max-width: 580px;
    margin: 0 0 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    font-weight: 400;
    line-height: 1.38;
}

.home-location-content > p:not(.story-lead) {
    max-width: 570px;
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.98rem;
    line-height: 1.78;
}


/* =========================================================
   LOCATION DETAILS
========================================================= */

.home-location-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 38px 0 36px;
    border-top: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
}

.home-location-details > div {
    min-width: 0;
    padding: 23px 22px 23px 0;
}

.home-location-details > div + div {
    padding-right: 0;
    padding-left: 25px;
    border-left: 1px solid var(--home-border);
}

.home-location-details span {
    display: block;
    margin-bottom: 8px;
    color: #846a45;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-location-details strong {
    display: block;
    color: var(--home-green-deep);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   LOCATION ACTIONS
========================================================= */

.home-location-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 26px;
}

.home-location-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid #b28b4f;
    border-radius: 2px;
    background: #b28b4f;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: none;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.home-location-actions .btn-primary:hover,
.home-location-actions .btn-primary:focus {
    border-color: var(--home-green-deep);
    background: var(--home-green-deep);
    color: #fff;
    transform: none;
}


/* =========================================================
   STABLE GOOGLE MAPS LINK
========================================================= */

.location-map-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    min-height: 44px;
    padding: 8px 0 7px;
    border: 0;
    background: transparent;
    color: var(--home-green-deep);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.095em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transform: none;
    transition: color 0.25s ease;
}

.location-map-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.42;
    pointer-events: none;
    transform: scaleX(1);
    transform-origin: left center;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.location-map-link:hover,
.location-map-link:focus,
.location-map-link:active {
    padding: 8px 0 7px;
    color: #92703e;
    letter-spacing: 0.095em;
    text-decoration: none;
    transform: none;
}

.location-map-link:hover::after,
.location-map-link:focus-visible::after {
    opacity: 1;
    transform: scaleX(0.78);
}

.location-map-link-arrow {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    line-height: 1;
    transform: translate(0, 0);
    transition: transform 0.25s ease;
}

.location-map-link:hover .location-map-link-arrow,
.location-map-link:focus-visible .location-map-link-arrow {
    transform: translate(3px, -3px);
}

.location-map-link:focus-visible {
    outline: 2px solid var(--home-green-deep);
    outline-offset: 5px;
}


/* =========================================================
   LOCATION MAP
========================================================= */

.home-location-map {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: #e8e2d8;
    box-shadow:
        0 30px 75px rgba(29, 58, 46, 0.16),
        0 2px 10px rgba(29, 58, 46, 0.06);
}

.home-location-map::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(23, 63, 50, 0.1);
    border-radius: 19px;
    pointer-events: none;
}

.home-location-map iframe {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    border: 0;
}


/* =========================================================
   LOCATION — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .home-location-grid {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(440px, 1.1fr);
        gap: 52px;
    }

    .home-location-map,
    .home-location-map iframe {
        min-height: 560px;
    }
}


/* =========================================================
   LOCATION — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .home-location-section {
        padding: 96px 0;
    }

    .home-location-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .home-location-content {
        max-width: 760px;
    }

    .home-location-content h2,
    .home-location-content .story-lead,
    .home-location-content > p:not(.story-lead) {
        max-width: 720px;
    }

    .home-location-map,
    .home-location-map iframe {
        min-height: 500px;
    }
}


/* =========================================================
   LOCATION — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-location-section {
        padding: 78px 0;
    }

    .home-location-grid {
        gap: 42px;
    }

    .home-location-content h2 {
        margin-bottom: 23px;
        font-size: clamp(3rem, 12vw, 4.4rem);
    }

    .home-location-content .story-lead {
        font-size: 1.4rem;
    }

    .home-location-details {
        grid-template-columns: 1fr;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .home-location-details > div {
        padding: 20px 0;
    }

    .home-location-details > div + div {
        padding: 20px 0;
        border-top: 1px solid var(--home-border);
        border-left: 0;
    }

    .home-location-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-location-map {
        min-height: 430px;
        border-width: 7px;
        border-radius: 22px;
    }

    .home-location-map iframe {
        min-height: 430px;
    }

    .home-location-map::after {
        border-radius: 14px;
    }
}


/* =========================================================
   LOCATION — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .home-location-section {
        padding: 68px 0;
    }

    .home-location-actions {
        width: 100%;
    }

    .home-location-actions .btn-primary {
        width: 100%;
    }

    .location-map-link {
        margin-top: 2px;
    }

    .home-location-map,
    .home-location-map iframe {
        min-height: 370px;
    }
}


/* =========================================================
   HOME — DIRECT CONTACT LINKS
========================================================= */

.home-contact-links {
  display: grid;
  gap: 0.75rem;
  max-width: 580px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.home-contact-link {
  display: grid;
  grid-template-columns: minmax(90px, 0.42fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 74px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(31, 63, 45, 0.16);
  color: #183c2b;
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition:
    color 250ms ease,
    border-color 250ms ease,
    background-color 250ms ease,
    transform 250ms ease;
}

.home-contact-link:hover,
.home-contact-link:focus-visible,
.home-contact-link-featured {
  color: #ffffff;
  border-color: #214c36;
  background: #214c36;
}

.home-contact-link:hover,
.home-contact-link:focus-visible {
  transform: translateY(-2px);
}

.home-contact-link:focus-visible {
  outline: 3px solid #d8b583;
  outline-offset: 3px;
}

.home-contact-link-label {
  color: #9a7448;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-contact-link-featured .home-contact-link-label,
.home-contact-link:hover .home-contact-link-label,
.home-contact-link:focus-visible .home-contact-link-label {
  color: #e2c499;
}

.home-contact-link strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.96rem;
  line-height: 1.4;
}

.home-contact-link-arrow {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
  opacity: 0.8;
}

@media (max-width: 520px) {
  .home-contact-link {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.35rem 0.75rem;
  }

  .home-contact-link-label {
    grid-column: 1;
  }

  .home-contact-link strong {
    grid-column: 1;
  }

  .home-contact-link-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

.home-contact-action {
  margin-top: 1.5rem;
}
/* =========================================================
   SHARED FOCUS ACCESSIBILITY
========================================================= */

.home-gallery-item:focus-visible,
.attraction-category-links a:focus-visible,
.home-location-actions a:focus-visible,
.home-faq-item summary:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}

.home-faq-item summary:focus-visible {
    border-radius: 4px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .experience-theme-grid {
        gap: 18px;
    }

    .experience-theme-item {
        padding: 32px;
    }

    .home-gallery-grid {
        grid-template-columns: 1.15fr 0.85fr;
        grid-template-rows: repeat(3, 250px);
    }

    .home-gallery-item-large {
        grid-row: 1 / span 2;
        min-height: auto;
    }

    .home-gallery-item-wide {
        grid-column: 1 / span 2;
    }

    .home-faq-layout {
        gap: 58px;
    }


}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .experience-theme-grid {
        grid-template-columns: 1fr;
    }

    .experience-theme-item {
        min-height: 0;
    }

    .experience-availability-note {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 42px;
    }


    .home-gallery-section,
    .home-faq-section,


    .home-faq-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .home-faq-heading {
        position: static;
    }


}


/* =========================================================
   MOBILE AND SMALL TABLET
========================================================= */

@media (max-width: 767.98px) {

    .home-stay-categories {
        justify-content: flex-start;
        margin-top: 34px;
    }

    .home-stay-categories span {
        min-height: 36px;
        padding: 8px 13px;
        font-size: 0.68rem;
    }

    .home-nature-features {
        margin: 24px 0 30px;
    }

    .home-nature-features span {
        padding: 7px 12px;
        font-size: 0.68rem;
    }

    .experience-theme-grid {
        margin-top: 42px;
        margin-bottom: 48px;
    }

    .experience-theme-item {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .experience-theme-item > span {
        margin-bottom: 24px;
    }

    .experience-availability-note {
        margin-top: 52px;
        padding: 32px 25px;
        border-radius: 22px;
    }

    .attraction-category-links {
        justify-content: flex-start;
        margin-top: 32px;
    }

    .attraction-category-links a {
        min-height: 38px;
        padding: 8px 13px;
        font-size: 0.7rem;
    }



    .sustainability-points {
        grid-template-columns: 1fr;
    }

    .sustainability-points > div,
    .sustainability-points > div:nth-child(odd),
    .sustainability-points > div:nth-child(even) {
        min-height: auto;
        padding: 22px 0;
        border-right: 0;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 370px repeat(2, 210px);
        gap: 12px;
        margin-top: 42px;
    }

    .home-gallery-item-large {
        grid-column: 1 / span 2;
        grid-row: auto;
    }

    .home-gallery-item-wide {
        grid-column: 1 / span 2;
    }

    .home-gallery-item {
        min-height: 210px;
        border-radius: 16px;
    }

    .home-gallery-item span {
        left: 17px;
        bottom: 16px;
        font-size: 0.67rem;
    }

    .home-faq-item summary {
        min-height: 82px;
        padding-right: 48px;
    }

    .home-faq-item > div {
        padding-right: 35px;
    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .home-gallery-section,
    .home-faq-section,


    .experience-theme-item h3 {
        font-size: 1.8rem;
    }

    .experience-availability-note h3 {
        font-size: 2.25rem;
    }


    .home-gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .home-gallery-item,
    .home-gallery-item-large,
    .home-gallery-item-wide {
        min-height: 280px;
    }

    .home-gallery-item:first-child {
        min-height: 390px;
    }

    .home-faq-heading h2,


    .home-faq-item summary {
        min-height: 76px;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 1.35rem;
    }


}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .experience-theme-item,
    .home-gallery-item img,
    .nearby-card > a img,
    .attraction-category-links a,
    .home-stay-categories span,
    .home-faq-item summary::after {
        transition: none;
    }

    .experience-theme-item:hover,
    .attraction-category-links a:hover,
    .home-stay-categories span:hover {
        transform: none;
    }

    .home-gallery-item:hover img,
    .nearby-card:hover > a img {
        transform: none;
    }
}

/* =========================================================
   CUISINE PAGE
========================================================= */

.cuisine-page {
    background: #fbf8f2;
}


/* =========================================================
   SHARED INNER-PAGE IMAGE HERO
========================================================= */

.inner-image-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    min-height: 760px;
    padding: 180px 0 105px;
    overflow: hidden;
    background: #102f25;
}

.inner-image-hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.015);
}

.inner-image-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 30, 23, 0.92) 0%,
            rgba(7, 30, 23, 0.72) 47%,
            rgba(7, 30, 23, 0.28) 78%,
            rgba(7, 30, 23, 0.14) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6, 27, 21, 0.16) 0%,
            rgba(6, 27, 21, 0.72) 100%
        );
}

.inner-image-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18),
            transparent 20%,
            transparent 72%,
            rgba(0, 0, 0, 0.18)
        );
}

.inner-image-hero-content {
    position: relative;
    z-index: 2;
}

.inner-image-hero-content h1 {
    max-width: 900px;
    margin: 18px 0 28px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(4.4rem, 8vw, 8.2rem);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.045em;
}

.inner-image-hero-content > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.8;
}

.inner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   CUISINE INTRODUCTION
========================================================= */

.cuisine-introduction-section {
    padding: 125px 0;
    overflow: hidden;
    background: #fbf8f2;
}

.cuisine-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: clamp(55px, 8vw, 120px);
    align-items: start;
}

.cuisine-introduction-heading h2 {
    max-width: 600px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.2vw, 5.4rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.cuisine-introduction-content {
    max-width: 690px;
}

.cuisine-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.cuisine-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.cuisine-introduction-images {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 24px;
    align-items: end;
    margin-top: 75px;
}

.cuisine-introduction-image {
    margin: 0;
    overflow: hidden;
}

.cuisine-introduction-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cuisine-image-large {
    height: 650px;
    border-radius: 4px;
}

.cuisine-image-small {
    transform: translateY(68px);
}

.cuisine-image-small img {
    height: 430px;
    border-radius: 4px;
}

.cuisine-image-small figcaption {
    max-width: 340px;
    margin-top: 18px;
    color: var(--home-text-soft);
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}


/* =========================================================
   CUISINE CHOICES
========================================================= */

.cuisine-choices-section {
    padding: 145px 0 125px;
    background: #fff;
}

.cuisine-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 64px;
}

.cuisine-choice-card {
    display: grid;
    grid-template-rows: 410px 1fr;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    background: #fbf8f2;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.cuisine-choice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.24);
    box-shadow: var(--home-shadow);
}

.cuisine-choice-card-large,
.cuisine-choice-card-wide {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
    grid-template-rows: none;
    min-height: 600px;
}

.cuisine-choice-card-wide {
    grid-template-columns: minmax(420px, 0.85fr) minmax(0, 1.15fr);
}

.cuisine-choice-card-wide .cuisine-choice-image {
    order: 2;
}

.cuisine-choice-image {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: #d6d4ca;
}

.cuisine-choice-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(8, 35, 26, 0.18) 100%
        );
    pointer-events: none;
}

.cuisine-choice-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cuisine-choice-card:hover .cuisine-choice-image img {
    transform: scale(1.045);
}

.cuisine-choice-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.cuisine-choice-card-large .cuisine-choice-content,
.cuisine-choice-card-wide .cuisine-choice-content {
    padding: clamp(48px, 6vw, 82px);
}

.cuisine-choice-number {
    display: block;
    margin-bottom: 28px;
    color: #a27b45;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.cuisine-choice-content .section-kicker {
    margin-bottom: 15px;
}

.cuisine-choice-content h3 {
    max-width: 590px;
    margin: 0 0 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.1rem, 3.4vw, 3.7rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
}

.cuisine-choice-content p {
    max-width: 580px;
    margin: 0 0 28px;
    color: var(--home-text-soft);
    font-size: 0.97rem;
    line-height: 1.75;
}


/* =========================================================
   AVAILABLE CUISINE
========================================================= */

.available-cuisine-section {
    padding: 125px 0;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 78, 58, 0.07),
            transparent 28%
        ),
        #f6f1e8;
}

.cuisine-category-stack {
    margin-top: 70px;
}

.cuisine-category-block + .cuisine-category-block {
    margin-top: 100px;
}

.cuisine-category-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 38px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--home-border);
}

.cuisine-category-heading h3 {
    margin: 13px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 1;
}

.cuisine-category-heading > p {
    max-width: 540px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.7;
}

.cuisine-item-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cuisine-item-card {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cuisine-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(22, 57, 43, 0.12);
}

.cuisine-item-image {
    height: 275px;
    overflow: hidden;
    background: #d9d7cf;
}

.cuisine-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.cuisine-item-card:hover .cuisine-item-image img {
    transform: scale(1.045);
}

.cuisine-item-content {
    padding: 26px 25px 28px;
}

.cuisine-item-meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 17px;
}

.cuisine-period,
.cuisine-price {
    color: #8c6c43;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cuisine-price {
    color: var(--home-green-deep);
    white-space: nowrap;
}

.cuisine-item-content h4 {
    margin: 0 0 13px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.08;
}

.cuisine-item-content > p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

.cuisine-attribute-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
}

.cuisine-attribute-list span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 6px 10px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    color: var(--home-green-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.cuisine-advance-note {
    margin-top: 22px;
    padding: 15px 16px;
    border-left: 3px solid #a67f45;
    background: #f7f0e5;
}

.cuisine-advance-note strong,
.cuisine-advance-note span {
    display: block;
}

.cuisine-advance-note strong {
    margin-bottom: 5px;
    color: var(--home-green-deep);
    font-size: 0.78rem;
}

.cuisine-advance-note span {
    color: var(--home-text-soft);
    font-size: 0.78rem;
    line-height: 1.5;
}


/* Empty database state */

.cuisine-coming-soon {
    max-width: 900px;
    margin: 70px auto 0;
    padding: 70px 60px;
    border: 1px solid var(--home-border);
    border-radius: 26px;
    background: #fff;
    text-align: center;
    box-shadow: var(--home-shadow);
}

.cuisine-coming-soon h3 {
    margin: 16px 0 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.5rem, 4.5vw, 4.4rem);
    font-weight: 500;
    line-height: 1;
}

.cuisine-coming-soon p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--home-text-soft);
    line-height: 1.75;
}


/* =========================================================
   CUISINE EXPERIENCES
========================================================= */

.cuisine-experiences-section {
    position: relative;
    isolation: isolate;
    min-height: 850px;
    padding: 120px 0;
    overflow: hidden;
    background: #0f3226;
}

.cuisine-experiences-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cuisine-experiences-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 30, 23, 0.96) 0%,
            rgba(7, 30, 23, 0.85) 45%,
            rgba(7, 30, 23, 0.5) 75%,
            rgba(7, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.2),
            rgba(5, 24, 18, 0.62)
        );
}

.cuisine-experiences-content {
    position: relative;
    z-index: 2;
}

.cuisine-experiences-heading {
    max-width: 740px;
}

.cuisine-experiences-heading h2 {
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.4rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.cuisine-experiences-heading p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.cuisine-experience-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 940px;
    margin: 65px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cuisine-experience-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    min-height: 195px;
    padding: 30px 28px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cuisine-experience-list article:nth-child(odd) {
    padding-right: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cuisine-experience-list article:nth-child(even) {
    padding-left: 34px;
}

.cuisine-experience-list article > span {
    color: #d8ad6d;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.cuisine-experience-list h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1.1;
}

.cuisine-experience-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   CUISINE GUIDANCE
========================================================= */

.cuisine-guidance-section {
    padding: 125px 0;
    background: #fff;
}

.cuisine-guidance-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.cuisine-guidance-heading {
    position: sticky;
    top: 130px;
}

.cuisine-guidance-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.cuisine-guidance-heading p {
    max-width: 530px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.cuisine-guidance-points {
    border-top: 1px solid var(--home-border);
}

.cuisine-guidance-points > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.cuisine-guidance-points > div > span {
    color: #a37b46;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.cuisine-guidance-points strong {
    display: block;
    margin-bottom: 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.cuisine-guidance-points p {
    max-width: 610px;
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   CUISINE AVAILABILITY
========================================================= */

.cuisine-availability-section {
    padding: 0 0 125px;
    background: #fff;
}

.cuisine-availability-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 60px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.cuisine-availability-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.6rem, 4.3vw, 4.6rem);
    font-weight: 500;
    line-height: 0.98;
}

.cuisine-availability-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.cuisine-availability-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
    margin-top: 30px;
}


/* =========================================================
   CUISINE FINAL CTA
========================================================= */

.cuisine-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.cuisine-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cuisine-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(8, 31, 24, 0.94) 0%,
            rgba(8, 31, 24, 0.75) 52%,
            rgba(8, 31, 24, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 31, 24, 0.12),
            rgba(8, 31, 24, 0.54)
        );
}

.cuisine-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.cuisine-final-content h2 {
    max-width: 800px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.3vw, 6.4rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.cuisine-final-content p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.cuisine-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   CUISINE FOCUS ACCESSIBILITY
========================================================= */

.cuisine-choice-card a:focus-visible,
.cuisine-item-card a:focus-visible,
.cuisine-final-actions a:focus-visible,
.cuisine-availability-actions a:focus-visible,
.inner-hero-actions a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   CUISINE — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .cuisine-choice-card-large,
    .cuisine-choice-card-wide {
        grid-template-columns: 1fr 1fr;
        min-height: 550px;
    }

    .cuisine-item-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cuisine-introduction-images {
        grid-template-columns: 1.2fr 0.8fr;
    }
}


/* =========================================================
   CUISINE — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .inner-image-hero {
        min-height: 680px;
        padding: 160px 0 90px;
    }

    .inner-image-hero-background {
        background-position: 62% center;
    }

    .cuisine-introduction-section,
    .cuisine-choices-section,
    .available-cuisine-section,
    .cuisine-guidance-section {
        padding: 96px 0;
    }

    .cuisine-introduction-grid,
    .cuisine-guidance-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .cuisine-guidance-heading {
        position: static;
    }

    .cuisine-introduction-images {
        margin-top: 55px;
    }

    .cuisine-image-large {
        height: 530px;
    }

    .cuisine-image-small {
        transform: translateY(40px);
    }

    .cuisine-image-small img {
        height: 370px;
    }

    .cuisine-choice-card-large,
    .cuisine-choice-card-wide {
        grid-template-columns: 1fr;
        grid-template-rows: 460px auto;
        min-height: auto;
    }

    .cuisine-choice-card-wide .cuisine-choice-image {
        order: 0;
    }

    .cuisine-choice-card-large .cuisine-choice-content,
    .cuisine-choice-card-wide .cuisine-choice-content {
        padding: 46px;
    }

    .cuisine-category-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cuisine-experiences-section {
        min-height: auto;
        padding: 96px 0;
    }

    .cuisine-availability-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .cuisine-final-section {
        min-height: 650px;
        padding: 96px 0;
    }
}


/* =========================================================
   CUISINE — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .inner-image-hero {
        min-height: 640px;
        padding: 145px 0 72px;
    }

    .inner-image-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 30, 23, 0.22) 0%,
                rgba(7, 30, 23, 0.6) 46%,
                rgba(7, 30, 23, 0.96) 100%
            );
    }

    .inner-image-hero-content h1 {
        font-size: clamp(4rem, 18vw, 6.2rem);
        line-height: 0.9;
    }

    .inner-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .inner-hero-actions .btn {
        width: 100%;
    }

    .cuisine-introduction-section,
    .cuisine-choices-section,
    .available-cuisine-section,
    .cuisine-guidance-section {
        padding: 78px 0;
    }

    .cuisine-introduction-images {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .cuisine-image-large {
        height: 430px;
    }

    .cuisine-image-small {
        transform: none;
    }

    .cuisine-image-small img {
        height: 330px;
    }

    .cuisine-choice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 46px;
    }

    .cuisine-choice-card,
    .cuisine-choice-card-large,
    .cuisine-choice-card-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 330px auto;
    }

    .cuisine-choice-content,
    .cuisine-choice-card-large .cuisine-choice-content,
    .cuisine-choice-card-wide .cuisine-choice-content {
        padding: 30px 25px;
    }

    .cuisine-item-grid {
        grid-template-columns: 1fr;
    }

    .cuisine-item-image {
        height: 300px;
    }

    .cuisine-coming-soon {
        padding: 48px 27px;
    }

    .cuisine-experience-list {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .cuisine-experience-list article,
    .cuisine-experience-list article:nth-child(odd),
    .cuisine-experience-list article:nth-child(even) {
        padding: 25px 0;
        border-right: 0;
    }

    .cuisine-guidance-points > div {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .cuisine-availability-section {
        padding-bottom: 78px;
    }

    .cuisine-availability-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .cuisine-availability-actions,
    .cuisine-final-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cuisine-availability-actions .btn,
    .cuisine-final-actions .btn {
        width: 100%;
    }

    .cuisine-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .cuisine-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 31, 24, 0.28) 0%,
                rgba(8, 31, 24, 0.74) 47%,
                rgba(8, 31, 24, 0.98) 100%
            );
    }
}


/* =========================================================
   CUISINE — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .inner-image-hero-content h1 {
        font-size: 4.2rem;
    }

    .cuisine-image-large {
        height: 380px;
    }

    .cuisine-image-small img {
        height: 290px;
    }

    .cuisine-choice-card,
    .cuisine-choice-card-large,
    .cuisine-choice-card-wide {
        grid-template-rows: 280px auto;
    }

    .cuisine-choice-content h3 {
        font-size: 2.3rem;
    }

    .cuisine-item-image {
        height: 260px;
    }

    .cuisine-availability-panel h2 {
        font-size: 2.7rem;
    }

    .cuisine-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cuisine-choice-card,
    .cuisine-choice-image img,
    .cuisine-item-card,
    .cuisine-item-image img {
        transition: none;
    }

    .cuisine-choice-card:hover,
    .cuisine-item-card:hover {
        transform: none;
    }

    .cuisine-choice-card:hover .cuisine-choice-image img,
    .cuisine-item-card:hover .cuisine-item-image img {
        transform: none;
    }
}

/* =========================================================
   CUISINE — CATEGORY NAVIGATION
========================================================= */

.cuisine-category-navigation-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: #fffdf8;
  scroll-margin-top: 110px;
}

.cuisine-category-navigation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: var(--home-border);
}

.cuisine-category-navigation a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 230px;
  padding: 1.6rem;
  flex-direction: column;
  color: var(--home-green-deep);
  background: #fff;
  text-decoration: none;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.cuisine-category-navigation a:hover,
.cuisine-category-navigation a:focus-visible {
  color: #fff;
  background: var(--home-green-deep);
}

.cuisine-category-navigation a:focus-visible {
  z-index: 2;
  outline: 3px solid #d8b583;
  outline-offset: -3px;
}

.cuisine-category-navigation-number {
  margin-bottom: auto;
  color: #9a7043;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.cuisine-category-navigation strong {
  margin-top: 2.5rem;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1;
}

.cuisine-category-navigation small {
  margin-top: 0.7rem;
  color: var(--home-text-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

.cuisine-category-navigation-arrow {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  color: rgba(21, 59, 46, 0.38);
}

.cuisine-category-navigation a:hover
.cuisine-category-navigation-number,
.cuisine-category-navigation a:focus-visible
.cuisine-category-navigation-number,
.cuisine-category-navigation a:hover
.cuisine-category-navigation-arrow,
.cuisine-category-navigation a:focus-visible
.cuisine-category-navigation-arrow {
  color: #e2c499;
}

.cuisine-category-navigation a:hover small,
.cuisine-category-navigation a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   CUISINE — FEATURE SECTIONS
========================================================= */

.cuisine-feature-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  scroll-margin-top: 100px;
}

.cuisine-feature-light {
  background: #fffdf8;
}

.cuisine-feature-soft {
  background: #f3eee4;
}

.cuisine-feature-warm {
  background: #eee1ce;
}

.cuisine-feature-dark {
  color: #fff;
  background: var(--home-green-deep);
}

.cuisine-feature-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.cuisine-feature-reversed .cuisine-feature-image {
  order: 2;
}

.cuisine-feature-image {
  position: relative;
  min-height: clamp(430px, 58vw, 720px);
  overflow: hidden;
  background: #dfe3dc;
}

.cuisine-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.cuisine-feature-section:hover .cuisine-feature-image img {
  transform: scale(1.025);
}

.cuisine-feature-image-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: #fff;
  background: rgba(20, 55, 40, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cuisine-feature-content h2 {
  margin: 0.65rem 0 1.4rem;
  color: var(--home-green-deep);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.cuisine-feature-content p {
  color: var(--home-text-soft);
  line-height: 1.8;
}

.cuisine-feature-dark .cuisine-feature-content h2,
.cuisine-feature-dark .cuisine-feature-content p {
  color: #fff;
}

.cuisine-feature-dark .cuisine-feature-content p {
  color: rgba(255, 255, 255, 0.76);
}

.cuisine-feature-highlights {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--home-border);
  list-style: none;
}

.cuisine-feature-highlights li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.4rem;
  border-bottom: 1px solid var(--home-border);
  color: var(--home-green-deep);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cuisine-feature-highlights li::before {
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #9a7043;
  content: "";
}

.cuisine-feature-dark .cuisine-feature-highlights {
  border-color: rgba(255, 255, 255, 0.2);
}

.cuisine-feature-dark .cuisine-feature-highlights li {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.2);
}

.cuisine-feature-dark .cuisine-feature-highlights li::before {
  background: #e2c499;
}

.cuisine-feature-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.cuisine-back-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--home-green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.cuisine-back-link:hover {
  color: #9a7043;
}

.cuisine-back-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.cuisine-back-link-light:hover {
  color: #e2c499;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .cuisine-category-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cuisine-feature-layout {
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  .cuisine-feature-layout {
    grid-template-columns: 1fr;
  }

  .cuisine-feature-reversed .cuisine-feature-image {
    order: initial;
  }

  .cuisine-feature-image {
    min-height: 480px;
  }
}

@media (max-width: 600px) {
  .cuisine-category-navigation {
    grid-template-columns: 1fr;
  }

  .cuisine-category-navigation a {
    min-height: 165px;
  }

  .cuisine-feature-image {
    min-height: 330px;
  }

  .cuisine-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cuisine-feature-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cuisine-back-link {
    justify-content: center;
    padding: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cuisine-category-navigation a,
  .cuisine-feature-image img {
    transition: none;
  }
}

/* =========================================================
   NATURE PAGE
========================================================= */

.nature-page {
    background: #f8f6ef;
}


/* =========================================================
   NATURE HERO
========================================================= */

.nature-hero .inner-image-hero-background {
    background-position: center 56%;
}

.nature-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 31, 23, 0.94) 0%,
            rgba(5, 31, 23, 0.76) 46%,
            rgba(5, 31, 23, 0.34) 76%,
            rgba(5, 31, 23, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 25, 19, 0.12) 0%,
            rgba(5, 25, 19, 0.68) 100%
        );
}

.nature-hero .inner-image-hero-content h1 {
    max-width: 970px;
}


/* =========================================================
   NATURE INTRODUCTION
========================================================= */

.nature-introduction-section {
    padding: 125px 0 145px;
    overflow: hidden;
    background: #fbf9f3;
}

.nature-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.nature-introduction-heading h2 {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.nature-introduction-content {
    max-width: 700px;
}

.nature-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.nature-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.nature-introduction-images {
    display: grid;
    grid-template-columns:
        minmax(0, 1.34fr)
        minmax(270px, 0.66fr);
    gap: 24px;
    align-items: end;
    margin-top: 76px;
}

.nature-introduction-image {
    margin: 0;
    overflow: hidden;
}

.nature-introduction-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nature-image-large {
    height: 650px;
    border-radius: 4px;
}

.nature-image-small {
    transform: translateY(68px);
}

.nature-image-small img {
    height: 430px;
    border-radius: 4px;
}

.nature-image-small figcaption {
    max-width: 350px;
    margin-top: 18px;
    color: var(--home-text-soft);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}


/* =========================================================
   NATURAL LANDSCAPES
========================================================= */

.nature-landscapes-section {
    padding: 145px 0 125px;
    background: #fff;
}

.nature-landscape-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 65px;
}

.nature-landscape-card {
    display: grid;
    grid-template-rows: 410px 1fr;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    background: #f8f5ed;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.nature-landscape-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.24);
    box-shadow: var(--home-shadow);
}

.nature-landscape-card-large,
.nature-landscape-card-wide {
    grid-column: 1 / -1;
    grid-template-columns:
        minmax(0, 1.16fr)
        minmax(420px, 0.84fr);
    grid-template-rows: none;
    min-height: 600px;
}

.nature-landscape-card-wide {
    grid-template-columns:
        minmax(420px, 0.84fr)
        minmax(0, 1.16fr);
}

.nature-landscape-card-wide .nature-landscape-image {
    order: 2;
}

.nature-landscape-image {
    position: relative;
    overflow: hidden;
    background: #d8ddd4;
}

.nature-landscape-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 56%,
            rgba(7, 34, 25, 0.2) 100%
        );
}

.nature-landscape-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.nature-landscape-card:hover .nature-landscape-image img {
    transform: scale(1.045);
}

.nature-landscape-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.nature-landscape-card-large .nature-landscape-content,
.nature-landscape-card-wide .nature-landscape-content {
    padding: clamp(48px, 6vw, 82px);
}

.nature-landscape-number {
    display: block;
    margin-bottom: 28px;
    color: #9a7749;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.nature-landscape-content .section-kicker {
    margin-bottom: 15px;
}

.nature-landscape-content h3 {
    max-width: 590px;
    margin: 0 0 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.15rem, 3.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
}

.nature-landscape-content p {
    max-width: 580px;
    margin: 0 0 16px;
    color: var(--home-text-soft);
    font-size: 0.97rem;
    line-height: 1.75;
}

.nature-landscape-content .editorial-link {
    margin-top: 12px;
}


/* =========================================================
   WILDLIFE SECTION
========================================================= */

.nature-wildlife-section {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    padding: 125px 0;
    overflow: hidden;
    background: #103429;
}

.nature-wildlife-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nature-wildlife-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.86) 44%,
            rgba(6, 30, 23, 0.54) 74%,
            rgba(6, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.15),
            rgba(5, 24, 18, 0.62)
        );
}

.nature-wildlife-content {
    position: relative;
    z-index: 2;
}

.nature-wildlife-heading {
    max-width: 750px;
}

.nature-wildlife-heading h2 {
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.nature-wildlife-heading p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.nature-wildlife-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 960px;
    margin-top: 66px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nature-wildlife-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nature-wildlife-grid article:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nature-wildlife-grid article:nth-child(even) {
    padding-left: 36px;
}

.nature-wildlife-grid article > span {
    color: #d7ae72;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.nature-wildlife-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.1;
}

.nature-wildlife-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   NATURE MOMENTS
========================================================= */

.nature-moments-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.nature-moment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.nature-moment-card {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.nature-moment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(22, 57, 43, 0.12);
}

.nature-moment-image {
    height: 340px;
    overflow: hidden;
    background: #d8ddd3;
}

.nature-moment-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.nature-moment-card:hover .nature-moment-image img {
    transform: scale(1.045);
}

.nature-moment-content {
    padding: 28px 27px 32px;
}

.nature-moment-content > span {
    display: block;
    margin-bottom: 13px;
    color: #967144;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nature-moment-content h3 {
    margin: 0 0 13px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.nature-moment-content p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.93rem;
    line-height: 1.7;
}


/* =========================================================
   SEASONAL NATURE NOTE
========================================================= */

.nature-season-section {
    padding: 0 0 125px;
    background: #f7f3ea;
}

.nature-season-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 62px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.nature-season-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.nature-season-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.nature-season-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.nature-season-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   RESPONSIBLE ENJOYMENT
========================================================= */

.nature-care-section {
    padding: 125px 0;
    background: #fff;
}

.nature-care-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.nature-care-heading {
    position: sticky;
    top: 130px;
}

.nature-care-heading h2 {
    max-width: 550px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.nature-care-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.nature-care-list {
    border-top: 1px solid var(--home-border);
}

.nature-care-list > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.nature-care-list > div > span {
    color: #9b7648;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.nature-care-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.nature-care-list p {
    max-width: 610px;
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   NATURE AND SUSTAINABILITY
========================================================= */

.nature-sustainability-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0e3227;
}

.nature-sustainability-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nature-sustainability-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.14),
            rgba(7, 31, 23, 0.56)
        );
}

.nature-sustainability-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.nature-sustainability-content h2 {
    max-width: 780px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.nature-sustainability-content p {
    max-width: 680px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}


/* =========================================================
   NEARBY NATURAL ATTRACTIONS
========================================================= */

.nature-nearby-section {
    padding: 125px 0;
    background: #f8f5ee;
}

.nature-nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 62px;
}

.nature-nearby-card {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.nature-nearby-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(22, 57, 43, 0.12);
}

.nature-nearby-card > img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.nature-nearby-card:hover > img {
    transform: scale(1.045);
}

.nature-nearby-card > div {
    padding: 27px 26px 31px;
}

.nature-nearby-card span {
    display: block;
    margin-bottom: 13px;
    color: #947044;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nature-nearby-card h3 {
    margin: 0 0 12px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.nature-nearby-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   NATURE FINAL CTA
========================================================= */

.nature-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.nature-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nature-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.nature-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.nature-final-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.nature-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.nature-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   NATURE ACCESSIBILITY
========================================================= */

.nature-landscape-card a:focus-visible,
.nature-sustainability-content a:focus-visible,
.nature-final-actions a:focus-visible,
.nature-nearby-section a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   NATURE — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .nature-landscape-card-large,
    .nature-landscape-card-wide {
        grid-template-columns: 1fr 1fr;
        min-height: 550px;
    }

    .nature-moment-grid,
    .nature-nearby-grid {
        gap: 20px;
    }

    .nature-introduction-images {
        grid-template-columns: 1.2fr 0.8fr;
    }
}


/* =========================================================
   NATURE — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .nature-introduction-section,
    .nature-landscapes-section,
    .nature-moments-section,
    .nature-care-section,
    .nature-nearby-section {
        padding: 96px 0;
    }

    .nature-introduction-grid,
    .nature-care-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .nature-care-heading {
        position: static;
    }

    .nature-introduction-images {
        margin-top: 55px;
    }

    .nature-image-large {
        height: 530px;
    }

    .nature-image-small {
        transform: translateY(40px);
    }

    .nature-image-small img {
        height: 370px;
    }

    .nature-landscape-card-large,
    .nature-landscape-card-wide {
        grid-template-columns: 1fr;
        grid-template-rows: 460px auto;
        min-height: auto;
    }

    .nature-landscape-card-wide .nature-landscape-image {
        order: 0;
    }

    .nature-landscape-card-large .nature-landscape-content,
    .nature-landscape-card-wide .nature-landscape-content {
        padding: 46px;
    }

    .nature-wildlife-section {
        min-height: auto;
        padding: 96px 0;
    }

    .nature-moment-grid,
    .nature-nearby-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nature-moment-card:last-child,
    .nature-nearby-card:last-child {
        grid-column: 1 / -1;
    }

    .nature-season-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .nature-sustainability-section,
    .nature-final-section {
        min-height: 650px;
        padding: 96px 0;
    }
}


/* =========================================================
   NATURE — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .nature-hero .inner-image-hero-background {
        background-position: 65% center;
    }

    .nature-introduction-section,
    .nature-landscapes-section,
    .nature-moments-section,
    .nature-care-section,
    .nature-nearby-section {
        padding: 78px 0;
    }

    .nature-introduction-images {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .nature-image-large {
        height: 430px;
    }

    .nature-image-small {
        transform: none;
    }

    .nature-image-small img {
        height: 330px;
    }

    .nature-landscape-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 46px;
    }

    .nature-landscape-card,
    .nature-landscape-card-large,
    .nature-landscape-card-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 330px auto;
    }

    .nature-landscape-content,
    .nature-landscape-card-large .nature-landscape-content,
    .nature-landscape-card-wide .nature-landscape-content {
        padding: 30px 25px;
    }

    .nature-wildlife-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .nature-wildlife-grid article,
    .nature-wildlife-grid article:nth-child(odd),
    .nature-wildlife-grid article:nth-child(even) {
        padding: 25px 0;
        border-right: 0;
    }

    .nature-moment-grid,
    .nature-nearby-grid {
        grid-template-columns: 1fr;
    }

    .nature-moment-card:last-child,
    .nature-nearby-card:last-child {
        grid-column: auto;
    }

    .nature-moment-image,
    .nature-nearby-card > img {
        height: 300px;
    }

    .nature-season-section {
        padding-bottom: 78px;
    }

    .nature-season-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .nature-care-list > div {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .nature-sustainability-section,
    .nature-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .nature-sustainability-overlay,
    .nature-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.28) 0%,
                rgba(7, 31, 23, 0.74) 47%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .nature-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nature-final-actions .btn {
        width: 100%;
    }
}


/* =========================================================
   NATURE — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .nature-image-large {
        height: 380px;
    }

    .nature-image-small img {
        height: 290px;
    }

    .nature-landscape-card,
    .nature-landscape-card-large,
    .nature-landscape-card-wide {
        grid-template-rows: 280px auto;
    }

    .nature-landscape-content h3 {
        font-size: 2.3rem;
    }

    .nature-moment-image,
    .nature-nearby-card > img {
        height: 260px;
    }

    .nature-season-panel h2 {
        font-size: 2.8rem;
    }

    .nature-sustainability-content h2,
    .nature-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nature-landscape-card,
    .nature-landscape-image img,
    .nature-moment-card,
    .nature-moment-image img,
    .nature-nearby-card,
    .nature-nearby-card > img {
        transition: none;
    }

    .nature-landscape-card:hover,
    .nature-moment-card:hover,
    .nature-nearby-card:hover {
        transform: none;
    }

    .nature-landscape-card:hover .nature-landscape-image img,
    .nature-moment-card:hover .nature-moment-image img,
    .nature-nearby-card:hover > img {
        transform: none;
    }
}

/* =========================================================
   NATURE — CATEGORY NAVIGATION
========================================================= */

.nature-category-navigation-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: #fffdf8;
  scroll-margin-top: 110px;
}

.nature-category-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: var(--home-border);
}

.nature-category-navigation a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 230px;
  padding: 1.6rem;
  flex-direction: column;
  color: var(--home-green-deep);
  background: #fff;
  text-decoration: none;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.nature-category-navigation a:hover,
.nature-category-navigation a:focus-visible {
  color: #fff;
  background: var(--home-green-deep);
}

.nature-category-navigation a:focus-visible {
  z-index: 2;
  outline: 3px solid #d8b583;
  outline-offset: -3px;
}

.nature-category-navigation-number {
  margin-bottom: auto;
  color: #9a7043;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.nature-category-navigation strong {
  max-width: 90%;
  margin-top: 2.5rem;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1;
}

.nature-category-navigation small {
  margin-top: 0.7rem;
  color: var(--home-text-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

.nature-category-navigation-arrow {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  color: rgba(21, 59, 46, 0.38);
}

.nature-category-navigation a:hover
.nature-category-navigation-number,
.nature-category-navigation a:focus-visible
.nature-category-navigation-number,
.nature-category-navigation a:hover
.nature-category-navigation-arrow,
.nature-category-navigation a:focus-visible
.nature-category-navigation-arrow {
  color: #e2c499;
}

.nature-category-navigation a:hover small,
.nature-category-navigation a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   NATURE — FEATURE SECTIONS
========================================================= */

.nature-feature-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  scroll-margin-top: 100px;
}

.nature-feature-light {
  background: #fffdf8;
}

.nature-feature-soft {
  background: #f3eee4;
}

.nature-feature-warm {
  background: #eee4d2;
}

.nature-feature-water {
  background: #e7efeb;
}

.nature-feature-earth {
  background: #eee5d8;
}

.nature-feature-dark {
  color: #fff;
  background: var(--home-green-deep);
}

.nature-feature-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.nature-feature-reversed .nature-feature-image {
  order: 2;
}

.nature-feature-image {
  position: relative;
  min-height: clamp(430px, 58vw, 720px);
  overflow: hidden;
  background: #dfe3dc;
}

.nature-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.nature-feature-section:hover .nature-feature-image img {
  transform: scale(1.025);
}

.nature-feature-image-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: #fff;
  background: rgba(20, 55, 40, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nature-feature-content h2 {
  margin: 0.65rem 0 1.4rem;
  color: var(--home-green-deep);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.nature-feature-content p {
  color: var(--home-text-soft);
  line-height: 1.8;
}

.nature-feature-dark .nature-feature-content h2 {
  color: #fff;
}

.nature-feature-dark .nature-feature-content p {
  color: rgba(255, 255, 255, 0.76);
}


/* =========================================================
   NATURE — FEATURE HIGHLIGHTS
========================================================= */

.nature-feature-highlights {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--home-border);
  list-style: none;
}

.nature-feature-highlights li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.4rem;
  border-bottom: 1px solid var(--home-border);
  color: var(--home-green-deep);
  font-size: 0.86rem;
  line-height: 1.5;
}

.nature-feature-highlights li::before {
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #9a7043;
  content: "";
}

.nature-feature-dark .nature-feature-highlights {
  border-color: rgba(255, 255, 255, 0.2);
}

.nature-feature-dark .nature-feature-highlights li {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.2);
}

.nature-feature-dark .nature-feature-highlights li::before {
  background: #e2c499;
}


/* =========================================================
   NATURE — FEATURE ACTIONS
========================================================= */

.nature-feature-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.nature-back-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--home-green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.nature-back-link:hover,
.nature-back-link:focus-visible {
  color: #9a7043;
}

.nature-back-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.nature-back-link-light:hover,
.nature-back-link-light:focus-visible {
  color: #e2c499;
}


/* =========================================================
   NATURE — RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .nature-category-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nature-feature-layout {
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  .nature-feature-layout {
    grid-template-columns: 1fr;
  }

  .nature-feature-reversed .nature-feature-image {
    order: initial;
  }

  .nature-feature-image {
    min-height: 480px;
  }
}

@media (max-width: 600px) {
  .nature-category-navigation {
    grid-template-columns: 1fr;
  }

  .nature-category-navigation a {
    min-height: 165px;
  }

  .nature-feature-image {
    min-height: 330px;
  }

  .nature-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nature-feature-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nature-back-link {
    justify-content: center;
    padding: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nature-category-navigation a,
  .nature-feature-image img {
    transition: none;
  }
}




/* =========================================================
   EXPERIENCES PAGE
========================================================= */

.experiences-page {
    background: #f8f5ee;
}


/* =========================================================
   EXPERIENCES HERO
========================================================= */

.experiences-hero .inner-image-hero-background {
    background-position: center 52%;
}

.experiences-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.95) 0%,
            rgba(6, 30, 23, 0.77) 46%,
            rgba(6, 30, 23, 0.34) 76%,
            rgba(6, 30, 23, 0.14) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.12),
            rgba(5, 24, 18, 0.7)
        );
}

.experiences-hero .inner-image-hero-content h1 {
    max-width: 980px;
}


/* =========================================================
   EXPERIENCES INTRODUCTION
========================================================= */

.experiences-introduction-section {
    padding: 125px 0 145px;
    overflow: hidden;
    background: #fbf9f3;
}

.experiences-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.experiences-introduction-heading h2 {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.experiences-introduction-content {
    max-width: 700px;
}

.experiences-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.experiences-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.experiences-introduction-images {
    display: grid;
    grid-template-columns:
        minmax(0, 1.34fr)
        minmax(270px, 0.66fr);
    gap: 24px;
    align-items: end;
    margin-top: 76px;
}

.experiences-introduction-image {
    margin: 0;
    overflow: hidden;
}

.experiences-introduction-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiences-image-large {
    height: 650px;
    border-radius: 4px;
}

.experiences-image-small {
    transform: translateY(68px);
}

.experiences-image-small img {
    height: 430px;
    border-radius: 4px;
}

.experiences-image-small figcaption {
    max-width: 360px;
    margin-top: 18px;
    color: var(--home-text-soft);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}


/* =========================================================
   EXPERIENCE CATEGORY OVERVIEW
========================================================= */

.experience-category-overview-section {
    padding: 145px 0 125px;
    background: #fff;
}

.experience-category-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.experience-category-overview-card {
    position: relative;
    min-height: 260px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 79, 59, 0.08),
            transparent 35%
        ),
        #f8f5ed;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.experience-category-overview-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(23, 63, 50, 0.08);
    border-radius: 50%;
}

.experience-category-overview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.25);
    box-shadow: var(--home-shadow);
}

.experience-category-overview-card > span {
    display: block;
    margin-bottom: 40px;
    color: #9c7544;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.experience-category-overview-card h3 {
    margin: 0 0 13px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.experience-category-overview-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.68;
}


/* =========================================================
   SHARED EXPERIENCE DETAIL SECTION
========================================================= */

.experience-detail-section {
    position: relative;
    overflow: hidden;
}

.experience-detail-light {
    padding: 125px 0;
    background: #f7f3ea;
}

.experience-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.experience-detail-image {
    min-height: 720px;
    overflow: hidden;
    border-radius: 24px;
    background: #d7ddd3;
}

.experience-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
}

.experience-detail-content {
    max-width: 650px;
}

.experience-detail-number {
    display: block;
    margin-bottom: 28px;
    color: #9b7546;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.experience-detail-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.4vw, 5.6rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.experience-detail-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.experience-detail-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.experience-item-list {
    margin-top: 38px;
    border-top: 1px solid var(--home-border);
}

.experience-item-list article {
    padding: 24px 0;
    border-bottom: 1px solid var(--home-border);
}

.experience-item-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.experience-item-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}


/* =========================================================
   SPORTING — DARK IMAGE SECTION
========================================================= */

.experience-detail-dark {
    isolation: isolate;
    min-height: 780px;
    padding: 120px 0;
    background: #103329;
}

.experience-detail-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.experience-detail-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.95) 0%,
            rgba(6, 30, 23, 0.82) 50%,
            rgba(6, 30, 23, 0.38) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.16),
            rgba(5, 24, 18, 0.58)
        );
}

.experience-detail-dark-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.experience-detail-dark-content .experience-detail-number {
    color: #deb57b;
}

.experience-detail-dark-content h2 {
    max-width: 740px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.experience-detail-dark-content > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.experience-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin: 36px 0 40px;
}

.experience-pill-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   ADVENTURES
========================================================= */

.experience-adventures-section {
    padding: 125px 0;
    background: #fff;
}

.experience-adventure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.experience-adventure-card {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #f8f5ed;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.experience-adventure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(22, 57, 43, 0.12);
}

.experience-adventure-card > img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.experience-adventure-card:hover > img {
    transform: scale(1.045);
}

.experience-adventure-card > div {
    padding: 28px 27px 32px;
}

.experience-adventure-card > div > span {
    display: block;
    margin-bottom: 13px;
    color: #987246;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.experience-adventure-card h3 {
    margin: 0 0 12px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.experience-adventure-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

.experience-adventure-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.experience-adventure-card-wide > img {
    height: 100%;
    min-height: 460px;
}

.experience-adventure-card-wide > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}


/* =========================================================
   ACTIVITIES
========================================================= */

.experience-activities-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.experience-activities-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.experience-activities-heading {
    position: sticky;
    top: 130px;
}

.experience-activities-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.experience-activities-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.experience-activities-list {
    border-top: 1px solid var(--home-border);
}

.experience-activities-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.experience-activities-list article > span {
    color: #9a7446;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.experience-activities-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.experience-activities-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   FUN
========================================================= */

.experience-fun-section {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    padding: 120px 0;
    overflow: hidden;
    background: #103329;
}

.experience-fun-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.experience-fun-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.95) 0%,
            rgba(6, 30, 23, 0.82) 52%,
            rgba(6, 30, 23, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.16),
            rgba(5, 24, 18, 0.62)
        );
}

.experience-fun-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.experience-fun-content h2 {
    max-width: 780px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.experience-fun-content > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.experience-fun-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 50px;
}

.experience-fun-grid article {
    min-height: 145px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.experience-fun-grid article > span {
    display: block;
    margin-bottom: 25px;
    color: #d9b17a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.experience-fun-grid h3 {
    margin: 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.1;
}


/* =========================================================
   CULTURE
========================================================= */

.experience-culture-section {
    padding: 125px 0;
    background: #fff;
}

.experience-culture-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.experience-culture-image {
    min-height: 700px;
    overflow: hidden;
    border-radius: 24px;
}

.experience-culture-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

.experience-culture-content {
    max-width: 650px;
}

.experience-culture-content h2 {
    max-width: 600px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.experience-culture-content .story-lead {
    margin: 0 0 25px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.experience-culture-list {
    margin: 30px 0;
    border-top: 1px solid var(--home-border);
}

.experience-culture-list article {
    padding: 24px 0;
    border-bottom: 1px solid var(--home-border);
}

.experience-culture-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.experience-culture-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.93rem;
    line-height: 1.68;
}


/* =========================================================
   LEISURE
========================================================= */

.experience-leisure-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.experience-leisure-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.experience-leisure-card {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.experience-leisure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(22, 57, 43, 0.12);
}

.experience-leisure-card > img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.experience-leisure-card:hover > img {
    transform: scale(1.045);
}

.experience-leisure-card > div {
    padding: 28px 27px 32px;
}

.experience-leisure-card span {
    display: block;
    margin-bottom: 13px;
    color: #997247;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.experience-leisure-card h3 {
    margin: 0 0 12px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.experience-leisure-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   AVAILABLE DATABASE EXPERIENCES
========================================================= */

.available-experiences-section {
    padding: 125px 0;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 78, 58, 0.07),
            transparent 28%
        ),
        #fff;
}

.available-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 70px;
}

.available-experience-card {
    display: grid;
    grid-template-rows: 380px 1fr;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background: #f8f5ed;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.available-experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(22, 57, 43, 0.12);
}

.available-experience-image {
    display: block;
    overflow: hidden;
    background: #d8ddd3;
}

.available-experience-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.available-experience-card:hover .available-experience-image img {
    transform: scale(1.045);
}

.available-experience-content {
    display: flex;
    flex-direction: column;
    padding: 34px 32px 36px;
}

.available-experience-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.available-experience-category,
.available-experience-price {
    color: #977044;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.available-experience-price {
    color: var(--home-green-deep);
    text-align: right;
}

.available-experience-content h3 {
    margin: 0 0 14px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.05;
}

.available-experience-content > p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.72;
}

.available-experience-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 28px 0;
    border-top: 1px solid var(--home-border);
    border-left: 1px solid var(--home-border);
}

.available-experience-facts > div {
    min-height: 88px;
    padding: 16px;
    border-right: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
}

.available-experience-facts span,
.available-experience-facts strong {
    display: block;
}

.available-experience-facts span {
    margin-bottom: 6px;
    color: var(--home-text-soft);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.available-experience-facts strong {
    color: var(--home-green-deep);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.available-experience-notice {
    margin-bottom: 24px;
    padding: 15px 16px;
    border-left: 3px solid #a67f45;
    background: #f3eadc;
}

.available-experience-notice strong,
.available-experience-notice span {
    display: block;
}

.available-experience-notice strong {
    margin-bottom: 5px;
    color: var(--home-green-deep);
    font-size: 0.78rem;
}

.available-experience-notice span {
    color: var(--home-text-soft);
    font-size: 0.78rem;
    line-height: 1.5;
}

.available-experience-button {
    width: 100%;
    margin-top: auto;
}


/* Empty state */

.experiences-coming-soon {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 70px auto 0;
    padding: 70px 60px;
    border: 1px solid var(--home-border);
    border-radius: 26px;
    background: #f8f5ed;
    text-align: center;
    box-shadow: var(--home-shadow);
}

.experiences-coming-soon h3 {
    margin: 16px 0 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.5rem, 4.5vw, 4.4rem);
    font-weight: 500;
    line-height: 1;
}

.experiences-coming-soon p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--home-text-soft);
    line-height: 1.75;
}


/* =========================================================
   EXPERIENCE GUIDANCE
========================================================= */

.experience-guidance-section {
    padding: 0 0 125px;
    background: #fff;
}

.experience-guidance-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 62px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.experience-guidance-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.experience-guidance-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.experience-guidance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.experience-guidance-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   EXPERIENCES FINAL CTA
========================================================= */

.experiences-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.experiences-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.experiences-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.experiences-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.experiences-final-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.experiences-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.experiences-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   EXPERIENCES ACCESSIBILITY
========================================================= */

.experience-category-overview-card:focus-visible,
.available-experience-image:focus-visible,
.available-experience-button:focus-visible,
.experiences-final-actions a:focus-visible,
.experience-detail-dark-content a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   EXPERIENCES — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .experience-category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-detail-layout,
    .experience-culture-grid {
        gap: 55px;
    }

    .experience-fun-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   EXPERIENCES — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .experiences-introduction-section,
    .experience-category-overview-section,
    .experience-detail-light,
    .experience-adventures-section,
    .experience-activities-section,
    .experience-culture-section,
    .experience-leisure-section,
    .available-experiences-section {
        padding: 96px 0;
    }

    .experiences-introduction-grid,
    .experience-detail-layout,
    .experience-activities-layout,
    .experience-culture-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .experience-activities-heading {
        position: static;
    }

    .experiences-introduction-images {
        margin-top: 55px;
    }

    .experiences-image-large {
        height: 530px;
    }

    .experiences-image-small {
        transform: translateY(40px);
    }

    .experiences-image-small img {
        height: 370px;
    }

    .experience-detail-image,
    .experience-detail-image img,
    .experience-culture-image,
    .experience-culture-image img {
        min-height: 540px;
    }

    .experience-detail-dark,
    .experience-fun-section {
        min-height: auto;
        padding: 96px 0;
    }

    .experience-adventure-card-wide {
        grid-template-columns: 1fr;
    }

    .experience-adventure-card-wide > img {
        min-height: 380px;
    }

    .experience-leisure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-leisure-card:last-child {
        grid-column: 1 / -1;
    }

    .available-experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-guidance-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .experiences-final-section {
        min-height: 650px;
        padding: 96px 0;
    }
}


/* =========================================================
   EXPERIENCES — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .experiences-hero .inner-image-hero-background {
        background-position: 63% center;
    }

    .experiences-introduction-section,
    .experience-category-overview-section,
    .experience-detail-light,
    .experience-adventures-section,
    .experience-activities-section,
    .experience-culture-section,
    .experience-leisure-section,
    .available-experiences-section {
        padding: 78px 0;
    }

    .experiences-introduction-images {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .experiences-image-large {
        height: 430px;
    }

    .experiences-image-small {
        transform: none;
    }

    .experiences-image-small img {
        height: 330px;
    }

    .experience-category-overview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 46px;
    }

    .experience-category-overview-card {
        min-height: 220px;
    }

    .experience-detail-image,
    .experience-detail-image img,
    .experience-culture-image,
    .experience-culture-image img {
        min-height: 430px;
    }

    .experience-detail-dark,
    .experience-fun-section {
        padding: 86px 0;
    }

    .experience-detail-overlay,
    .experience-fun-overlay,
    .experiences-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.26) 0%,
                rgba(7, 31, 23, 0.72) 47%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .experience-adventure-grid,
    .experience-leisure-grid {
        grid-template-columns: 1fr;
    }

    .experience-adventure-card-wide,
    .experience-leisure-card:last-child {
        grid-column: auto;
    }

    .experience-adventure-card > img,
    .experience-leisure-card > img {
        height: 300px;
    }

    .experience-activities-list article {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .experience-fun-grid {
        grid-template-columns: 1fr;
    }

    .available-experience-card {
        grid-template-rows: 320px 1fr;
    }

    .available-experience-content {
        padding: 28px 24px 30px;
    }

    .available-experience-facts {
        grid-template-columns: 1fr;
    }

    .experience-guidance-section {
        padding-bottom: 78px;
    }

    .experience-guidance-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .experiences-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .experiences-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .experiences-final-actions .btn {
        width: 100%;
    }
}


/* =========================================================
   EXPERIENCES — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .experiences-image-large {
        height: 380px;
    }

    .experiences-image-small img {
        height: 290px;
    }

    .experience-detail-image,
    .experience-detail-image img,
    .experience-culture-image,
    .experience-culture-image img {
        min-height: 360px;
    }

    .experience-adventure-card > img,
    .experience-leisure-card > img {
        height: 260px;
    }

    .available-experience-card {
        grid-template-rows: 270px 1fr;
    }

    .available-experience-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .available-experience-price {
        text-align: left;
    }

    .experience-guidance-panel h2 {
        font-size: 2.8rem;
    }

    .experiences-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .experience-category-overview-card,
    .experience-adventure-card,
    .experience-adventure-card > img,
    .experience-leisure-card,
    .experience-leisure-card > img,
    .available-experience-card,
    .available-experience-image img {
        transition: none;
    }

    .experience-category-overview-card:hover,
    .experience-adventure-card:hover,
    .experience-leisure-card:hover,
    .available-experience-card:hover {
        transform: none;
    }

    .experience-adventure-card:hover > img,
    .experience-leisure-card:hover > img,
    .available-experience-card:hover .available-experience-image img {
        transform: none;
    }
}


/* =========================================================
   EXPERIENCES — CATEGORY NAVIGATION
========================================================= */

.experience-category-navigation-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: #fffdf8;
  scroll-margin-top: 110px;
}

.experience-category-navigation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: var(--home-border);
}

.experience-category-navigation a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 230px;
  padding: 1.6rem;
  flex-direction: column;
  color: var(--home-green-deep);
  background: #fff;
  text-decoration: none;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.experience-category-navigation a:hover,
.experience-category-navigation a:focus-visible {
  color: #fff;
  background: var(--home-green-deep);
}

.experience-category-navigation a:focus-visible {
  z-index: 2;
  outline: 3px solid #d8b583;
  outline-offset: -3px;
}

.experience-category-navigation-wide {
  grid-column: span 2;
}

.experience-category-navigation-number {
  margin-bottom: auto;
  color: #9a7043;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.experience-category-navigation strong {
  max-width: 90%;
  margin-top: 2.5rem;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1;
}

.experience-category-navigation small {
  margin-top: 0.7rem;
  color: var(--home-text-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

.experience-category-navigation-arrow {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  color: rgba(21, 59, 46, 0.38);
}

.experience-category-navigation a:hover
.experience-category-navigation-number,
.experience-category-navigation a:focus-visible
.experience-category-navigation-number,
.experience-category-navigation a:hover
.experience-category-navigation-arrow,
.experience-category-navigation a:focus-visible
.experience-category-navigation-arrow {
  color: #e2c499;
}

.experience-category-navigation a:hover small,
.experience-category-navigation a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   EXPERIENCES — FEATURE SECTIONS
========================================================= */

.experience-feature-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  scroll-margin-top: 100px;
}

.experience-feature-light {
  background: #fffdf8;
}

.experience-feature-soft {
  background: #f3eee4;
}

.experience-feature-warm {
  background: #eee1ce;
}

.experience-feature-earth {
  background: #eee5d8;
}

.experience-feature-water {
  background: #e5eeea;
}

.experience-feature-dark {
  color: #fff;
  background: var(--home-green-deep);
}

.experience-feature-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.experience-feature-reversed .experience-feature-image {
  order: 2;
}

.experience-feature-image {
  position: relative;
  min-height: clamp(430px, 58vw, 720px);
  overflow: hidden;
  background: #dfe3dc;
}

.experience-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.experience-feature-section:hover .experience-feature-image img {
  transform: scale(1.025);
}

.experience-feature-image-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: #fff;
  background: rgba(20, 55, 40, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.experience-feature-content h2 {
  margin: 0.65rem 0 1.4rem;
  color: var(--home-green-deep);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.experience-feature-content p {
  color: var(--home-text-soft);
  line-height: 1.8;
}

.experience-feature-content .story-lead {
  color: var(--home-green-deep);
}

.experience-feature-dark .experience-feature-content h2,
.experience-feature-dark .experience-feature-content .story-lead {
  color: #fff;
}

.experience-feature-dark .experience-feature-content p {
  color: rgba(255, 255, 255, 0.76);
}


/* =========================================================
   EXPERIENCES — FEATURE HIGHLIGHTS
========================================================= */

.experience-feature-highlights {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--home-border);
  list-style: none;
}

.experience-feature-highlights li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.4rem;
  border-bottom: 1px solid var(--home-border);
  color: var(--home-green-deep);
  font-size: 0.86rem;
  line-height: 1.5;
}

.experience-feature-highlights li::before {
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #9a7043;
  content: "";
}

.experience-feature-dark .experience-feature-highlights {
  border-color: rgba(255, 255, 255, 0.2);
}

.experience-feature-dark .experience-feature-highlights li {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.2);
}

.experience-feature-dark
.experience-feature-highlights li::before {
  background: #e2c499;
}


/* =========================================================
   EXPERIENCES — FEATURE ACTIONS
========================================================= */

.experience-feature-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.experience-back-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--home-green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.experience-back-link:hover,
.experience-back-link:focus-visible {
  color: #9a7043;
}

.experience-back-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.experience-back-link-light:hover,
.experience-back-link-light:focus-visible {
  color: #e2c499;
}


/* =========================================================
   EXPERIENCES — GUIDANCE ACTIONS
========================================================= */

.experience-guidance-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
}


/* =========================================================
   EXPERIENCES — RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .experience-category-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-category-navigation-wide {
    grid-column: span 2;
  }

  .experience-feature-layout {
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  .experience-feature-layout {
    grid-template-columns: 1fr;
  }

  .experience-feature-reversed .experience-feature-image {
    order: initial;
  }

  .experience-feature-image {
    min-height: 480px;
  }
}

@media (max-width: 600px) {
  .experience-category-navigation {
    grid-template-columns: 1fr;
  }

  .experience-category-navigation-wide {
    grid-column: auto;
  }

  .experience-category-navigation a {
    min-height: 165px;
  }

  .experience-feature-image {
    min-height: 420px;
  }

  .experience-feature-actions,
  .experience-guidance-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .experience-feature-actions .btn,
  .experience-guidance-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .experience-back-link {
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .experience-feature-image {
    min-height: 350px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-category-navigation a,
  .experience-feature-image img {
    transition: none;
  }
}

/* =========================================================
   ATTRACTIONS PAGE
========================================================= */

.attractions-page {
    background: #f8f5ee;
}


/* =========================================================
   ATTRACTIONS HERO
========================================================= */

.attractions-hero .inner-image-hero-background {
    background-position: center 52%;
}

.attractions-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.95) 0%,
            rgba(6, 30, 23, 0.78) 46%,
            rgba(6, 30, 23, 0.36) 76%,
            rgba(6, 30, 23, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.12),
            rgba(5, 24, 18, 0.7)
        );
}

.attractions-hero .inner-image-hero-content h1 {
    max-width: 980px;
}


/* =========================================================
   ATTRACTIONS INTRODUCTION
========================================================= */

.attractions-introduction-section {
    padding: 125px 0 145px;
    overflow: hidden;
    background: #fbf9f3;
}

.attractions-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.attractions-introduction-heading h2 {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.attractions-introduction-content {
    max-width: 700px;
}

.attractions-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.attractions-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.attractions-introduction-images {
    display: grid;
    grid-template-columns:
        minmax(0, 1.34fr)
        minmax(270px, 0.66fr);
    gap: 24px;
    align-items: end;
    margin-top: 76px;
}

.attractions-introduction-image {
    margin: 0;
    overflow: hidden;
}

.attractions-introduction-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attractions-image-large {
    height: 650px;
    border-radius: 4px;
}

.attractions-image-small {
    transform: translateY(68px);
}

.attractions-image-small img {
    height: 430px;
    border-radius: 4px;
}

.attractions-image-small figcaption {
    max-width: 360px;
    margin-top: 18px;
    color: var(--home-text-soft);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}


/* =========================================================
   ATTRACTION CATEGORY OVERVIEW
========================================================= */

.attraction-category-section {
    padding: 145px 0 125px;
    background: #fff;
}

.attraction-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.attraction-category-card {
    position: relative;
    min-height: 260px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 79, 59, 0.08),
            transparent 35%
        ),
        #f8f5ed;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.attraction-category-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(23, 63, 50, 0.08);
    border-radius: 50%;
}

.attraction-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.25);
    box-shadow: var(--home-shadow);
}

.attraction-category-card > span {
    display: block;
    margin-bottom: 40px;
    color: #9c7544;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.attraction-category-card h3 {
    margin: 0 0 13px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.attraction-category-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.68;
}


/* =========================================================
   SHARED ATTRACTION DETAIL SECTION
========================================================= */

.attraction-detail-section {
    position: relative;
    overflow: hidden;
}

.attraction-detail-light {
    padding: 125px 0;
    background: #f7f3ea;
}

.attraction-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.attraction-detail-image {
    min-height: 720px;
    overflow: hidden;
    border-radius: 24px;
    background: #d7ddd3;
}

.attraction-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
}

.attraction-detail-content {
    max-width: 650px;
}

.attraction-detail-number {
    display: block;
    margin-bottom: 28px;
    color: #9b7546;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.attraction-detail-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.4vw, 5.6rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.attraction-detail-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.attraction-detail-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.attraction-detail-list {
    margin: 38px 0 30px;
    border-top: 1px solid var(--home-border);
}

.attraction-detail-list article {
    padding: 24px 0;
    border-bottom: 1px solid var(--home-border);
}

.attraction-detail-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.attraction-detail-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}


/* =========================================================
   BIRDWATCHING SECTION
========================================================= */

.attraction-birdwatching-section {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    padding: 125px 0;
    overflow: hidden;
    background: #103429;
}

.attraction-birdwatching-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.attraction-birdwatching-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.86) 44%,
            rgba(6, 30, 23, 0.54) 74%,
            rgba(6, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.15),
            rgba(5, 24, 18, 0.62)
        );
}

.attraction-birdwatching-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.attraction-birdwatching-content .attraction-detail-number {
    color: #deb57b;
}

.attraction-birdwatching-content h2 {
    max-width: 760px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.attraction-birdwatching-content > p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.attraction-birdwatching-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 66px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.attraction-birdwatching-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.attraction-birdwatching-grid article:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.attraction-birdwatching-grid article:nth-child(even) {
    padding-left: 36px;
}

.attraction-birdwatching-grid article > span {
    color: #d7ae72;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.attraction-birdwatching-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.1;
}

.attraction-birdwatching-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   FEATURED NATURAL ATTRACTIONS
========================================================= */

.featured-attractions-section {
    padding: 125px 0;
    background: #fff;
}

.featured-attraction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 64px;
}

.featured-attraction-card {
    display: grid;
    grid-template-rows: 410px 1fr;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    background: #f8f5ed;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.featured-attraction-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.24);
    box-shadow: var(--home-shadow);
}

.featured-attraction-card-large {
    grid-column: 1 / -1;
    grid-template-columns:
        minmax(0, 1.16fr)
        minmax(420px, 0.84fr);
    grid-template-rows: none;
    min-height: 600px;
}

.featured-attraction-image {
    position: relative;
    overflow: hidden;
    background: #d8ddd4;
}

.featured-attraction-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 56%,
            rgba(7, 34, 25, 0.2) 100%
        );
}

.featured-attraction-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-attraction-card:hover .featured-attraction-image img {
    transform: scale(1.045);
}

.featured-attraction-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.featured-attraction-card-large .featured-attraction-content {
    padding: clamp(48px, 6vw, 82px);
}

.featured-attraction-number {
    display: block;
    margin-bottom: 28px;
    color: #9a7749;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.featured-attraction-content h3 {
    max-width: 590px;
    margin: 15px 0 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.15rem, 3.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
}

.featured-attraction-content p {
    max-width: 580px;
    margin: 0 0 16px;
    color: var(--home-text-soft);
    font-size: 0.97rem;
    line-height: 1.75;
}


/* =========================================================
   HERITAGE AND PILGRIMAGE
========================================================= */

.attraction-heritage-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.attraction-heritage-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.attraction-heritage-heading {
    position: sticky;
    top: 130px;
}

.attraction-heritage-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.attraction-heritage-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.attraction-heritage-list {
    border-top: 1px solid var(--home-border);
}

.attraction-heritage-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.attraction-heritage-list article > span {
    color: #9a7446;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.attraction-heritage-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.attraction-heritage-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   COASTAL AND SURFING
========================================================= */

.attraction-coastal-section {
    position: relative;
    isolation: isolate;
    min-height: 780px;
    padding: 120px 0;
    overflow: hidden;
    background: #103329;
}

.attraction-coastal-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.attraction-coastal-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.95) 0%,
            rgba(6, 30, 23, 0.82) 50%,
            rgba(6, 30, 23, 0.38) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.16),
            rgba(5, 24, 18, 0.58)
        );
}

.attraction-coastal-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.attraction-coastal-content .attraction-detail-number {
    color: #deb57b;
}

.attraction-coastal-content h2 {
    max-width: 740px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.attraction-coastal-content > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.attraction-coastal-feature {
    max-width: 620px;
    margin: 38px 0 36px;
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.attraction-coastal-feature > span {
    display: block;
    margin-bottom: 12px;
    color: #dcb47a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.attraction-coastal-feature h3 {
    margin: 0 0 12px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
}

.attraction-coastal-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
    line-height: 1.7;
}


/* =========================================================
   SAFARI TOURS
========================================================= */

.attraction-safari-section {
    padding: 125px 0;
    background: #fff;
}

.attraction-safari-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.attraction-safari-image {
    min-height: 700px;
    overflow: hidden;
    border-radius: 24px;
}

.attraction-safari-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

.attraction-safari-content {
    max-width: 650px;
}

.attraction-safari-content h2 {
    max-width: 600px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.attraction-safari-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.attraction-safari-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.attraction-safari-points {
    margin: 34px 0 30px;
    border-top: 1px solid var(--home-border);
}

.attraction-safari-points > div {
    padding: 20px 0;
    border-bottom: 1px solid var(--home-border);
}

.attraction-safari-points span,
.attraction-safari-points strong {
    display: block;
}

.attraction-safari-points span {
    margin-bottom: 7px;
    color: #987246;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.attraction-safari-points strong {
    color: var(--home-green-deep);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   JOURNEY PLANNING
========================================================= */

.attraction-planning-section {
    padding: 0 0 125px;
    background: #fff;
}

.attraction-planning-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 62px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.attraction-planning-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.attraction-planning-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.attraction-planning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.attraction-planning-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   LINK TO EXPERIENCES
========================================================= */

.attraction-experience-link-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 700px;
    padding: 110px 0;
    overflow: hidden;
    background: #0e3227;
}

.attraction-experience-link-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.attraction-experience-link-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.14),
            rgba(7, 31, 23, 0.56)
        );
}

.attraction-experience-link-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.attraction-experience-link-content h2 {
    max-width: 780px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.attraction-experience-link-content p {
    max-width: 680px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}


/* =========================================================
   ATTRACTIONS FINAL CTA
========================================================= */

.attractions-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.attractions-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.attractions-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.attractions-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.attractions-final-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.attractions-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.attractions-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   ATTRACTIONS ACCESSIBILITY
========================================================= */

.attraction-category-card:focus-visible,
.attraction-detail-content a:focus-visible,
.attraction-coastal-content a:focus-visible,
.attraction-safari-content a:focus-visible,
.attraction-experience-link-content a:focus-visible,
.attractions-final-actions a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   ATTRACTIONS — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .attraction-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .attraction-detail-layout,
    .attraction-safari-grid {
        gap: 55px;
    }

    .featured-attraction-card-large {
        grid-template-columns: 1fr 1fr;
        min-height: 550px;
    }
}


/* =========================================================
   ATTRACTIONS — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .attractions-introduction-section,
    .attraction-category-section,
    .attraction-detail-light,
    .featured-attractions-section,
    .attraction-heritage-section,
    .attraction-safari-section {
        padding: 96px 0;
    }

    .attractions-introduction-grid,
    .attraction-detail-layout,
    .attraction-heritage-layout,
    .attraction-safari-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .attraction-heritage-heading {
        position: static;
    }

    .attractions-introduction-images {
        margin-top: 55px;
    }

    .attractions-image-large {
        height: 530px;
    }

    .attractions-image-small {
        transform: translateY(40px);
    }

    .attractions-image-small img {
        height: 370px;
    }

    .attraction-detail-image,
    .attraction-detail-image img,
    .attraction-safari-image,
    .attraction-safari-image img {
        min-height: 540px;
    }

    .attraction-birdwatching-section,
    .attraction-coastal-section {
        min-height: auto;
        padding: 96px 0;
    }

    .featured-attraction-card-large {
        grid-template-columns: 1fr;
        grid-template-rows: 460px auto;
        min-height: auto;
    }

    .featured-attraction-card-large .featured-attraction-content {
        padding: 46px;
    }

    .attraction-planning-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .attraction-experience-link-section,
    .attractions-final-section {
        min-height: 650px;
        padding: 96px 0;
    }
}


/* =========================================================
   ATTRACTIONS — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .attractions-hero .inner-image-hero-background {
        background-position: 64% center;
    }

    .attractions-introduction-section,
    .attraction-category-section,
    .attraction-detail-light,
    .featured-attractions-section,
    .attraction-heritage-section,
    .attraction-safari-section {
        padding: 78px 0;
    }

    .attractions-introduction-images {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .attractions-image-large {
        height: 430px;
    }

    .attractions-image-small {
        transform: none;
    }

    .attractions-image-small img {
        height: 330px;
    }

    .attraction-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 46px;
    }

    .attraction-category-card {
        min-height: 220px;
    }

    .attraction-detail-image,
    .attraction-detail-image img,
    .attraction-safari-image,
    .attraction-safari-image img {
        min-height: 430px;
    }

    .attraction-birdwatching-section,
    .attraction-coastal-section {
        padding: 86px 0;
    }

    .attraction-birdwatching-overlay,
    .attraction-coastal-overlay,
    .attraction-experience-link-overlay,
    .attractions-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.26) 0%,
                rgba(7, 31, 23, 0.72) 47%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .attraction-birdwatching-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .attraction-birdwatching-grid article,
    .attraction-birdwatching-grid article:nth-child(odd),
    .attraction-birdwatching-grid article:nth-child(even) {
        padding: 25px 0;
        border-right: 0;
    }

    .featured-attraction-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-attraction-card,
    .featured-attraction-card-large {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 330px auto;
    }

    .featured-attraction-content,
    .featured-attraction-card-large .featured-attraction-content {
        padding: 30px 25px;
    }

    .attraction-heritage-list article {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .attraction-planning-section {
        padding-bottom: 78px;
    }

    .attraction-planning-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .attraction-experience-link-section,
    .attractions-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .attractions-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .attractions-final-actions .btn {
        width: 100%;
    }
}


/* =========================================================
   ATTRACTIONS — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .attractions-image-large {
        height: 380px;
    }

    .attractions-image-small img {
        height: 290px;
    }

    .attraction-detail-image,
    .attraction-detail-image img,
    .attraction-safari-image,
    .attraction-safari-image img {
        min-height: 360px;
    }

    .featured-attraction-card,
    .featured-attraction-card-large {
        grid-template-rows: 280px auto;
    }

    .featured-attraction-content h3 {
        font-size: 2.3rem;
    }

    .attraction-planning-panel h2 {
        font-size: 2.8rem;
    }

    .attraction-experience-link-content h2,
    .attractions-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .attraction-category-card,
    .featured-attraction-card,
    .featured-attraction-image img {
        transition: none;
    }

    .attraction-category-card:hover,
    .featured-attraction-card:hover {
        transform: none;
    }

    .featured-attraction-card:hover .featured-attraction-image img {
        transform: none;
    }
}


/* =========================================================
   ATTRACTIONS — CATEGORY NAVIGATION
========================================================= */

.attraction-category-navigation-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: #fffdf8;
  scroll-margin-top: 110px;
}

.attraction-category-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: var(--home-border);
}

.attraction-category-navigation a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 230px;
  padding: 1.6rem;
  flex-direction: column;
  color: var(--home-green-deep);
  background: #fff;
  text-decoration: none;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.attraction-category-navigation a:hover,
.attraction-category-navigation a:focus-visible {
  color: #fff;
  background: var(--home-green-deep);
}

.attraction-category-navigation a:focus-visible {
  z-index: 2;
  outline: 3px solid #d8b583;
  outline-offset: -3px;
}

.attraction-category-navigation-wide {
  grid-column: span 2;
}

.attraction-category-navigation-number {
  margin-bottom: auto;
  color: #9a7043;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.attraction-category-navigation strong {
  max-width: 92%;
  margin-top: 2.5rem;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
}

.attraction-category-navigation small {
  margin-top: 0.75rem;
  color: var(--home-text-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

.attraction-category-navigation-arrow {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  color: rgba(21, 59, 46, 0.38);
}

.attraction-category-navigation a:hover
.attraction-category-navigation-number,
.attraction-category-navigation a:focus-visible
.attraction-category-navigation-number,
.attraction-category-navigation a:hover
.attraction-category-navigation-arrow,
.attraction-category-navigation a:focus-visible
.attraction-category-navigation-arrow {
  color: #e2c499;
}

.attraction-category-navigation a:hover small,
.attraction-category-navigation a:focus-visible small {
  color: rgba(255, 255, 255, 0.74);
}


/* =========================================================
   ATTRACTIONS — ANCHOR TARGETS
========================================================= */

.attraction-detail-section,
.attraction-topic-group,
.attraction-heritage-section,
.attraction-coastal-section,
.attraction-safari-section {
  scroll-margin-top: 100px;
}


/* =========================================================
   ATTRACTIONS — IMAGE NUMBERS
========================================================= */

.attraction-detail-image,
.attraction-safari-image {
  position: relative;
}

.attraction-feature-image-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: #fff;
  background: rgba(20, 55, 40, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}


/* =========================================================
   ATTRACTIONS — ACTIONS AND BACK LINKS
========================================================= */

.attraction-feature-actions,
.attraction-dark-actions,
.attraction-guidance-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.attraction-back-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--home-green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.attraction-back-link:hover,
.attraction-back-link:focus-visible {
  color: #9a7043;
}

.attraction-back-link-light {
  color: rgba(255, 255, 255, 0.84);
}

.attraction-back-link-light:hover,
.attraction-back-link-light:focus-visible {
  color: #e2c499;
}


/* =========================================================
   ATTRACTIONS — BIRD-WATCHING GROUP
========================================================= */

.attraction-topic-group {
  background: #fffdf8;
}

.attraction-topic-group .featured-attractions-section {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}


/* =========================================================
   ATTRACTIONS — HERITAGE SECTION IMPROVEMENTS
========================================================= */

.attraction-heritage-heading .attraction-detail-number {
  display: block;
  margin-bottom: 1.5rem;
}

.attraction-heritage-heading .story-lead {
  color: var(--home-green-deep);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.attraction-heritage-heading > p {
  line-height: 1.8;
}


/* =========================================================
   ATTRACTIONS — RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .attraction-category-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .attraction-category-navigation-wide {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .attraction-category-navigation {
    grid-template-columns: 1fr;
  }

  .attraction-category-navigation-wide {
    grid-column: auto;
  }

  .attraction-category-navigation a {
    min-height: 175px;
  }

  .attraction-feature-actions,
  .attraction-dark-actions,
  .attraction-guidance-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .attraction-feature-actions .btn,
  .attraction-dark-actions .btn,
  .attraction-guidance-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .attraction-back-link {
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .attraction-category-navigation a {
    transition: none;
  }
}

/* =========================================================
   CELEBRATIONS PAGE
========================================================= */

.celebrations-page {
    background: #f8f5ee;
}


/* =========================================================
   CELEBRATIONS HERO
========================================================= */

.celebrations-hero .inner-image-hero-background {
    background-position: center 50%;
}

.celebrations-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 29, 23, 0.95) 0%,
            rgba(7, 29, 23, 0.78) 46%,
            rgba(7, 29, 23, 0.36) 76%,
            rgba(7, 29, 23, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.12),
            rgba(5, 24, 18, 0.72)
        );
}

.celebrations-hero .inner-image-hero-content h1 {
    max-width: 930px;
}


/* =========================================================
   CELEBRATIONS INTRODUCTION
========================================================= */

.celebrations-introduction-section {
    padding: 125px 0 145px;
    overflow: hidden;
    background: #fbf9f3;
}

.celebrations-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.celebrations-introduction-heading h2 {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.celebrations-introduction-content {
    max-width: 700px;
}

.celebrations-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.celebrations-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.celebrations-introduction-images {
    display: grid;
    grid-template-columns:
        minmax(0, 1.34fr)
        minmax(270px, 0.66fr);
    gap: 24px;
    align-items: end;
    margin-top: 76px;
}

.celebrations-introduction-image {
    margin: 0;
    overflow: hidden;
}

.celebrations-introduction-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.celebrations-image-large {
    height: 650px;
    border-radius: 4px;
}

.celebrations-image-small {
    transform: translateY(68px);
}

.celebrations-image-small img {
    height: 430px;
    border-radius: 4px;
}

.celebrations-image-small figcaption {
    max-width: 360px;
    margin-top: 18px;
    color: var(--home-text-soft);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}


/* =========================================================
   CELEBRATION CHOICES
========================================================= */

.celebration-choices-section {
    padding: 145px 0 125px;
    background: #fff;
}

.celebration-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.celebration-choice-card {
    position: relative;
    min-height: 285px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(156, 117, 68, 0.1),
            transparent 36%
        ),
        #f8f5ed;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.celebration-choice-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -58px;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(23, 63, 50, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.celebration-choice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.24);
    box-shadow: var(--home-shadow);
}

.celebration-choice-number {
    display: block;
    margin-bottom: 44px;
    color: #9c7544;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.celebration-choice-card h3 {
    margin: 0 0 14px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.celebration-choice-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.68;
}


/* =========================================================
   CELEBRATION SETTINGS
========================================================= */

.celebration-settings-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.celebration-setting-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 64px;
}

.celebration-setting-card {
    display: grid;
    grid-template-rows: 410px 1fr;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    background: #fff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.celebration-setting-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.24);
    box-shadow: var(--home-shadow);
}

.celebration-setting-card-large,
.celebration-setting-card-wide {
    grid-column: 1 / -1;
    grid-template-columns:
        minmax(0, 1.16fr)
        minmax(420px, 0.84fr);
    grid-template-rows: none;
    min-height: 600px;
}

.celebration-setting-card-wide {
    grid-template-columns:
        minmax(420px, 0.84fr)
        minmax(0, 1.16fr);
}

.celebration-setting-card-wide .celebration-setting-image {
    order: 2;
}

.celebration-setting-image {
    position: relative;
    overflow: hidden;
    background: #d8ddd4;
}

.celebration-setting-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(7, 34, 25, 0.2) 100%
        );
}

.celebration-setting-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.celebration-setting-card:hover .celebration-setting-image img {
    transform: scale(1.045);
}

.celebration-setting-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.celebration-setting-card-large .celebration-setting-content,
.celebration-setting-card-wide .celebration-setting-content {
    padding: clamp(48px, 6vw, 82px);
}

.celebration-setting-number {
    display: block;
    margin-bottom: 28px;
    color: #9a7749;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.celebration-setting-content .section-kicker {
    margin-bottom: 15px;
}

.celebration-setting-content h3 {
    max-width: 590px;
    margin: 0 0 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.15rem, 3.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
}

.celebration-setting-content p {
    max-width: 580px;
    margin: 0 0 20px;
    color: var(--home-text-soft);
    font-size: 0.97rem;
    line-height: 1.75;
}

.celebration-setting-content .editorial-link {
    margin-top: 10px;
}


/* =========================================================
   VILLAGE-INSPIRED CELEBRATIONS
========================================================= */

.celebration-village-section {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    padding: 125px 0;
    overflow: hidden;
    background: #103429;
}

.celebration-village-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.celebration-village-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.86) 44%,
            rgba(6, 30, 23, 0.54) 74%,
            rgba(6, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.15),
            rgba(5, 24, 18, 0.64)
        );
}

.celebration-village-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.celebration-village-content h2 {
    max-width: 790px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.celebration-village-content > p {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.celebration-village-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 66px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.celebration-village-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.celebration-village-grid article:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.celebration-village-grid article:nth-child(even) {
    padding-left: 36px;
}

.celebration-village-grid article > span {
    color: #d7ae72;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.celebration-village-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.1;
}

.celebration-village-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   CELEBRATION CUISINE
========================================================= */

.celebration-cuisine-section {
    padding: 125px 0;
    overflow: hidden;
    background: #fff;
}

.celebration-cuisine-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.celebration-cuisine-images {
    position: relative;
    min-height: 690px;
}

.celebration-cuisine-image-main,
.celebration-cuisine-image-secondary {
    margin: 0;
    overflow: hidden;
}

.celebration-cuisine-image-main {
    width: 78%;
    height: 630px;
    border-radius: 24px;
}

.celebration-cuisine-image-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 340px;
    border: 10px solid #fff;
    border-radius: 20px;
    box-shadow: var(--home-shadow);
}

.celebration-cuisine-images img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.celebration-cuisine-content {
    max-width: 650px;
}

.celebration-cuisine-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.celebration-cuisine-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.celebration-cuisine-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.celebration-cuisine-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 34px;
}

.celebration-cuisine-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    color: var(--home-green-deep);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   CELEBRATION EXPERIENCES
========================================================= */

.celebration-experiences-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.celebration-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.celebration-experience-card {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.celebration-experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(22, 57, 43, 0.12);
}

.celebration-experience-card > img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.celebration-experience-card:hover > img {
    transform: scale(1.045);
}

.celebration-experience-card > div {
    padding: 28px 27px 32px;
}

.celebration-experience-card span {
    display: block;
    margin-bottom: 13px;
    color: #997247;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.celebration-experience-card h3 {
    margin: 0 0 12px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.celebration-experience-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   CELEBRATION PLANNING PROCESS
========================================================= */

.celebration-planning-section {
    padding: 125px 0;
    background: #fff;
}

.celebration-planning-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.celebration-planning-heading {
    position: sticky;
    top: 130px;
}

.celebration-planning-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.celebration-planning-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.celebration-planning-steps {
    border-top: 1px solid var(--home-border);
}

.celebration-planning-steps article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.celebration-planning-steps article > span {
    color: #9a7446;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.celebration-planning-steps h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.celebration-planning-steps p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   CELEBRATION GUIDANCE
========================================================= */

.celebration-guidance-section {
    padding: 0 0 125px;
    background: #fff;
}

.celebration-guidance-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 62px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.celebration-guidance-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.celebration-guidance-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.celebration-guidance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.celebration-guidance-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   CELEBRATIONS FINAL CTA
========================================================= */

.celebrations-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.celebrations-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.celebrations-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.celebrations-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.celebrations-final-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.celebrations-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.celebrations-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   CELEBRATIONS ACCESSIBILITY
========================================================= */

.celebration-setting-content a:focus-visible,
.celebration-village-content a:focus-visible,
.celebration-cuisine-content a:focus-visible,
.celebration-experiences-section a:focus-visible,
.celebrations-final-actions a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   CELEBRATIONS — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .celebration-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .celebration-setting-card-large,
    .celebration-setting-card-wide {
        grid-template-columns: 1fr 1fr;
        min-height: 550px;
    }

    .celebration-cuisine-grid {
        gap: 55px;
    }

    .celebration-experience-grid {
        gap: 20px;
    }
}


/* =========================================================
   CELEBRATIONS — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .celebrations-introduction-section,
    .celebration-choices-section,
    .celebration-settings-section,
    .celebration-cuisine-section,
    .celebration-experiences-section,
    .celebration-planning-section {
        padding: 96px 0;
    }

    .celebrations-introduction-grid,
    .celebration-cuisine-grid,
    .celebration-planning-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .celebration-planning-heading {
        position: static;
    }

    .celebrations-introduction-images {
        margin-top: 55px;
    }

    .celebrations-image-large {
        height: 530px;
    }

    .celebrations-image-small {
        transform: translateY(40px);
    }

    .celebrations-image-small img {
        height: 370px;
    }

    .celebration-setting-card-large,
    .celebration-setting-card-wide {
        grid-template-columns: 1fr;
        grid-template-rows: 460px auto;
        min-height: auto;
    }

    .celebration-setting-card-wide .celebration-setting-image {
        order: 0;
    }

    .celebration-setting-card-large .celebration-setting-content,
    .celebration-setting-card-wide .celebration-setting-content {
        padding: 46px;
    }

    .celebration-village-section {
        min-height: auto;
        padding: 96px 0;
    }

    .celebration-cuisine-images {
        max-width: 760px;
        min-height: 630px;
    }

    .celebration-cuisine-image-main {
        height: 570px;
    }

    .celebration-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .celebration-experience-card:last-child {
        grid-column: 1 / -1;
    }

    .celebration-guidance-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .celebrations-final-section {
        min-height: 650px;
        padding: 96px 0;
    }
}


/* =========================================================
   CELEBRATIONS — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .celebrations-hero .inner-image-hero-background {
        background-position: 64% center;
    }

    .celebrations-introduction-section,
    .celebration-choices-section,
    .celebration-settings-section,
    .celebration-cuisine-section,
    .celebration-experiences-section,
    .celebration-planning-section {
        padding: 78px 0;
    }

    .celebrations-introduction-images {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .celebrations-image-large {
        height: 430px;
    }

    .celebrations-image-small {
        transform: none;
    }

    .celebrations-image-small img {
        height: 330px;
    }

    .celebration-choice-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 46px;
    }

    .celebration-choice-card {
        min-height: 235px;
    }

    .celebration-setting-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .celebration-setting-card,
    .celebration-setting-card-large,
    .celebration-setting-card-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 330px auto;
    }

    .celebration-setting-content,
    .celebration-setting-card-large .celebration-setting-content,
    .celebration-setting-card-wide .celebration-setting-content {
        padding: 30px 25px;
    }

    .celebration-village-section {
        padding: 86px 0;
    }

    .celebration-village-overlay,
    .celebrations-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.26) 0%,
                rgba(7, 31, 23, 0.72) 47%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .celebration-village-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .celebration-village-grid article,
    .celebration-village-grid article:nth-child(odd),
    .celebration-village-grid article:nth-child(even) {
        padding: 25px 0;
        border-right: 0;
    }

    .celebration-cuisine-images {
        min-height: 530px;
    }

    .celebration-cuisine-image-main {
        width: 86%;
        height: 480px;
    }

    .celebration-cuisine-image-secondary {
        width: 48%;
        height: 260px;
        border-width: 7px;
    }

    .celebration-experience-grid {
        grid-template-columns: 1fr;
    }

    .celebration-experience-card:last-child {
        grid-column: auto;
    }

    .celebration-experience-card > img {
        height: 300px;
    }

    .celebration-planning-steps article {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .celebration-guidance-section {
        padding-bottom: 78px;
    }

    .celebration-guidance-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .celebrations-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .celebrations-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .celebrations-final-actions .btn {
        width: 100%;
    }
}


/* =========================================================
   CELEBRATIONS — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .celebrations-image-large {
        height: 380px;
    }

    .celebrations-image-small img {
        height: 290px;
    }

    .celebration-setting-card,
    .celebration-setting-card-large,
    .celebration-setting-card-wide {
        grid-template-rows: 280px auto;
    }

    .celebration-setting-content h3 {
        font-size: 2.3rem;
    }

    .celebration-cuisine-images {
        min-height: 455px;
    }

    .celebration-cuisine-image-main {
        width: 90%;
        height: 410px;
    }

    .celebration-cuisine-image-secondary {
        width: 52%;
        height: 215px;
    }

    .celebration-experience-card > img {
        height: 260px;
    }

    .celebration-guidance-panel h2 {
        font-size: 2.8rem;
    }

    .celebrations-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .celebration-choice-card,
    .celebration-setting-card,
    .celebration-setting-image img,
    .celebration-experience-card,
    .celebration-experience-card > img {
        transition: none;
    }

    .celebration-choice-card:hover,
    .celebration-setting-card:hover,
    .celebration-experience-card:hover {
        transform: none;
    }

    .celebration-setting-card:hover .celebration-setting-image img,
    .celebration-experience-card:hover > img {
        transform: none;
    }
}

/* =========================================================
   CELEBRATIONS — LEVEL 2 CATEGORY NAVIGATION
========================================================= */

.celebration-category-navigation-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: #fffdf8;
  scroll-margin-top: 110px;
}

.celebration-category-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: var(--home-border);
}

.celebration-category-navigation a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 1.6rem;
  flex-direction: column;
  color: var(--home-green-deep);
  background: #fff;
  text-decoration: none;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.celebration-category-navigation a:hover,
.celebration-category-navigation a:focus-visible {
  color: #fff;
  background: var(--home-green-deep);
}

.celebration-category-navigation a:focus-visible {
  z-index: 2;
  outline: 3px solid #d8b583;
  outline-offset: -3px;
}

.celebration-category-navigation-wide {
  grid-column: span 2;
}

.celebration-category-navigation-number {
  color: #9a7043;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.celebration-category-navigation-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: auto;
  place-items: center;
  color: #9a7043;
}

.celebration-category-navigation-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.celebration-category-navigation strong {
  max-width: 92%;
  margin-top: 1rem;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
}

.celebration-category-navigation small {
  margin-top: 0.75rem;
  color: var(--home-text-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

.celebration-category-navigation-arrow {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  color: rgba(21, 59, 46, 0.38);
}

.celebration-category-navigation a:hover
.celebration-category-navigation-number,
.celebration-category-navigation a:focus-visible
.celebration-category-navigation-number,
.celebration-category-navigation a:hover
.celebration-category-navigation-icon,
.celebration-category-navigation a:focus-visible
.celebration-category-navigation-icon,
.celebration-category-navigation a:hover
.celebration-category-navigation-arrow,
.celebration-category-navigation a:focus-visible
.celebration-category-navigation-arrow {
  color: #e2c499;
}

.celebration-category-navigation a:hover small,
.celebration-category-navigation a:focus-visible small {
  color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   CELEBRATIONS — SHARED TOPIC STYLES
========================================================= */

.celebration-topic-section,
.celebration-private-dining-section,
.celebration-anniversary-section,
.celebration-small-group-section {
  scroll-margin-top: 100px;
}

.celebration-topic-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.celebration-topic-light {
  background: #f5f1e8;
}

.celebration-birthday-section {
  background: #fff;
}

.celebration-topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.celebration-topic-layout-reversed
.celebration-topic-image {
  grid-column: 2;
  grid-row: 1;
}

.celebration-topic-layout-reversed
.celebration-topic-content {
  grid-column: 1;
  grid-row: 1;
}

.celebration-topic-image {
  position: relative;
  min-height: clamp(500px, 62vw, 760px);
  overflow: hidden;
  border-radius: 2px 120px 2px 2px;
  background: #d9ded7;
}

.celebration-topic-layout-reversed
.celebration-topic-image {
  border-radius: 120px 2px 2px 2px;
}

.celebration-topic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.celebration-topic-image-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  color: #fff;
  background: rgba(20, 55, 40, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.celebration-topic-content h2,
.celebration-anniversary-heading h2,
.celebration-private-dining-content h2,
.celebration-small-group-content h2 {
  max-width: 700px;
}

.celebration-topic-content .story-lead,
.celebration-anniversary-heading .story-lead {
  color: var(--home-green-deep);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.65;
}

.celebration-topic-content > p,
.celebration-anniversary-heading > p {
  line-height: 1.8;
}

.celebration-topic-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--home-border);
  background: var(--home-border);
}

.celebration-topic-feature-grid article {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
}

.celebration-topic-feature-grid h3 {
  margin: 0 0 0.55rem;
  color: var(--home-green-deep);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.celebration-topic-feature-grid p {
  margin: 0;
  color: var(--home-text-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.celebration-topic-number {
  display: block;
  margin-bottom: 1.5rem;
  color: #d8b583;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}


/* =========================================================
   CELEBRATIONS — ACTIONS AND BACK LINKS
========================================================= */

.celebration-topic-actions,
.celebration-dark-actions,
.celebration-guidance-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.celebration-back-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--home-green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.celebration-back-link:hover,
.celebration-back-link:focus-visible {
  color: #9a7043;
}

.celebration-back-link-light {
  color: rgba(255, 255, 255, 0.84);
}

.celebration-back-link-light:hover,
.celebration-back-link-light:focus-visible {
  color: #e2c499;
}


/* =========================================================
   CELEBRATIONS — PRIVATE DINING
========================================================= */

.celebration-private-dining-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.celebration-private-dining-background,
.celebration-private-dining-overlay {
  position: absolute;
  inset: 0;
}

.celebration-private-dining-background {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.celebration-private-dining-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(9, 31, 24, 0.95) 0%,
      rgba(9, 31, 24, 0.82) 52%,
      rgba(9, 31, 24, 0.35) 100%
    );
}

.celebration-private-dining-content {
  max-width: 760px;
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  color: #fff;
}

.celebration-private-dining-content > p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.celebration-private-dining-lead {
  color: #fff !important;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
}

.celebration-private-dining-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
}

.celebration-private-dining-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem;
  background: rgba(10, 39, 29, 0.68);
  backdrop-filter: blur(8px);
}

.celebration-private-dining-grid article > span {
  color: #d8b583;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.celebration-private-dining-grid h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.celebration-private-dining-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.6;
}


/* =========================================================
   CELEBRATIONS — ANNIVERSARIES
========================================================= */

.celebration-anniversary-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: #f5f1e8;
}

.celebration-anniversary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.celebration-anniversary-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 25px 65px rgba(24, 53, 42, 0.11);
}

.celebration-anniversary-image {
  height: clamp(360px, 42vw, 560px);
  overflow: hidden;
}

.celebration-anniversary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.celebration-anniversary-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.celebration-anniversary-details article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1.4rem;
  border-right: 1px solid var(--home-border);
}

.celebration-anniversary-details article:last-child {
  border-right: 0;
}

.celebration-anniversary-details article > span {
  color: #9a7043;
  font-size: 0.65rem;
  font-weight: 700;
}

.celebration-anniversary-details h3 {
  margin: 0 0 0.45rem;
  color: var(--home-green-deep);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.celebration-anniversary-details p {
  margin: 0;
  color: var(--home-text-soft);
  font-size: 0.72rem;
  line-height: 1.6;
}


/* =========================================================
   CELEBRATIONS — SMALL GROUP OCCASIONS
========================================================= */

.celebration-small-group-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.celebration-small-group-background,
.celebration-small-group-overlay {
  position: absolute;
  inset: 0;
}

.celebration-small-group-background {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.celebration-small-group-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 30, 22, 0.94),
      rgba(8, 30, 22, 0.72)
    );
}

.celebration-small-group-content {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  color: #fff;
}

.celebration-small-group-content > p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.celebration-small-group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.2);
}

.celebration-small-group-grid article {
  min-height: 240px;
  padding: 1.5rem;
  background: rgba(11, 43, 32, 0.72);
  backdrop-filter: blur(8px);
}

.celebration-small-group-grid article > span {
  color: #d8b583;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.celebration-small-group-grid h3 {
  margin: 4rem 0 0.7rem;
  color: #fff;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.celebration-small-group-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.65;
}


/* =========================================================
   CELEBRATIONS — RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .celebration-category-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .celebration-category-navigation-wide {
    grid-column: span 2;
  }

  .celebration-small-group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .celebration-anniversary-details {
    grid-template-columns: 1fr;
  }

  .celebration-anniversary-details article {
    border-right: 0;
    border-bottom: 1px solid var(--home-border);
  }

  .celebration-anniversary-details article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .celebration-topic-layout,
  .celebration-anniversary-layout {
    grid-template-columns: 1fr;
  }

  .celebration-topic-layout-reversed
  .celebration-topic-image,
  .celebration-topic-layout-reversed
  .celebration-topic-content {
    grid-column: auto;
    grid-row: auto;
  }

  .celebration-topic-layout-reversed
  .celebration-topic-image {
    order: 1;
  }

  .celebration-topic-layout-reversed
  .celebration-topic-content {
    order: 2;
  }

  .celebration-topic-image {
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .celebration-category-navigation {
    grid-template-columns: 1fr;
  }

  .celebration-category-navigation-wide {
    grid-column: auto;
  }

  .celebration-category-navigation a {
    min-height: 210px;
  }

  .celebration-topic-image {
    min-height: 440px;
    border-radius: 2px 70px 2px 2px;
  }

  .celebration-topic-layout-reversed
  .celebration-topic-image {
    border-radius: 70px 2px 2px 2px;
  }

  .celebration-topic-feature-grid,
  .celebration-private-dining-grid,
  .celebration-small-group-grid {
    grid-template-columns: 1fr;
  }

  .celebration-small-group-grid article {
    min-height: auto;
  }

  .celebration-small-group-grid h3 {
    margin-top: 2.5rem;
  }

  .celebration-topic-actions,
  .celebration-dark-actions,
  .celebration-guidance-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .celebration-topic-actions .btn,
  .celebration-dark-actions .btn,
  .celebration-guidance-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .celebration-back-link {
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
  }

  .celebration-private-dining-overlay {
    background: rgba(9, 31, 24, 0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .celebration-category-navigation a {
    transition: none;
  }
}

/* White headings on dark celebration sections */
.celebration-private-dining-content
#private-dining-title,
.celebration-small-group-content
#small-group-occasions-title {
  color: #fff;
}

/* =========================================================
   SUSTAINABILITY PAGE
========================================================= */

.sustainability-page {
    background: #f8f5ee;
}


/* =========================================================
   SUSTAINABILITY HERO
========================================================= */

.sustainability-hero .inner-image-hero-background {
    background-position: center 52%;
}

.sustainability-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.79) 46%,
            rgba(6, 30, 23, 0.37) 76%,
            rgba(6, 30, 23, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.12),
            rgba(5, 24, 18, 0.72)
        );
}

.sustainability-hero .inner-image-hero-content h1 {
    max-width: 980px;
}


/* =========================================================
   SUSTAINABILITY INTRODUCTION
========================================================= */

.sustainability-introduction-section {
    padding: 125px 0 145px;
    overflow: hidden;
    background: #fbf9f3;
}

.sustainability-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.sustainability-introduction-heading h2 {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.sustainability-introduction-content {
    max-width: 700px;
}

.sustainability-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.sustainability-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.sustainability-introduction-images {
    display: grid;
    grid-template-columns:
        minmax(0, 1.34fr)
        minmax(270px, 0.66fr);
    gap: 24px;
    align-items: end;
    margin-top: 76px;
}

.sustainability-introduction-image {
    margin: 0;
    overflow: hidden;
}

.sustainability-introduction-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustainability-image-large {
    height: 650px;
    border-radius: 4px;
}

.sustainability-image-small {
    transform: translateY(68px);
}

.sustainability-image-small img {
    height: 430px;
    border-radius: 4px;
}

.sustainability-image-small figcaption {
    max-width: 360px;
    margin-top: 18px;
    color: var(--home-text-soft);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}


/* =========================================================
   SUSTAINABILITY PILLARS
========================================================= */

.sustainability-pillars-section {
    padding: 145px 0 125px;
    background: #fff;
}

.sustainability-pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.sustainability-pillar-card {
    position: relative;
    min-height: 275px;
    padding: 32px 28px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 79, 59, 0.09),
            transparent 36%
        ),
        #f8f5ed;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.sustainability-pillar-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -58px;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(23, 63, 50, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.sustainability-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.25);
    box-shadow: var(--home-shadow);
}

.sustainability-pillar-card > span {
    display: block;
    margin-bottom: 38px;
    color: #947044;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.sustainability-pillar-card h3 {
    margin: 0 0 13px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.05;
}

.sustainability-pillar-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.9rem;
    line-height: 1.68;
}


/* =========================================================
   SHARED SUSTAINABILITY DETAILS
========================================================= */

.sustainability-detail-number {
    display: block;
    margin-bottom: 28px;
    color: #997247;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.sustainability-detail-list {
    margin-top: 38px;
    border-top: 1px solid var(--home-border);
}

.sustainability-detail-list article {
    padding: 24px 0;
    border-bottom: 1px solid var(--home-border);
}

.sustainability-detail-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.sustainability-detail-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}


/* =========================================================
   DESIGN AND CONSTRUCTION
========================================================= */

.sustainability-design-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.sustainability-design-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.sustainability-design-image {
    min-height: 720px;
    overflow: hidden;
    border-radius: 24px;
    background: #d7ddd3;
}

.sustainability-design-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
}

.sustainability-design-content {
    max-width: 650px;
}

.sustainability-design-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.4vw, 5.6rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.sustainability-design-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.sustainability-design-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}


/* =========================================================
   COMMUNITY ENGAGEMENT
========================================================= */

.sustainability-community-section {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    padding: 125px 0;
    overflow: hidden;
    background: #103429;
}

.sustainability-community-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sustainability-community-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.86) 44%,
            rgba(6, 30, 23, 0.54) 74%,
            rgba(6, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.15),
            rgba(5, 24, 18, 0.64)
        );
}

.sustainability-community-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.sustainability-community-content .sustainability-detail-number {
    color: #deb57b;
}

.sustainability-community-content h2 {
    max-width: 790px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.sustainability-community-content > p {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.sustainability-community-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 66px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-community-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-community-grid article:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-community-grid article:nth-child(even) {
    padding-left: 36px;
}

.sustainability-community-grid article > span {
    color: #d7ae72;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.sustainability-community-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.1;
}

.sustainability-community-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   EDUCATION
========================================================= */

.sustainability-education-section {
    padding: 125px 0;
    background: #fff;
}

.sustainability-education-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.sustainability-education-heading {
    position: sticky;
    top: 130px;
}

.sustainability-education-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.sustainability-education-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.sustainability-education-list {
    border-top: 1px solid var(--home-border);
}

.sustainability-education-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.sustainability-education-list article > span {
    color: #9a7446;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.sustainability-education-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.sustainability-education-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   RESOURCE MANAGEMENT INTRO
========================================================= */

.sustainability-resources-intro-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 110px 0;
    overflow: hidden;
    background: #0e3227;
}

.sustainability-resources-intro-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sustainability-resources-intro-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.14),
            rgba(7, 31, 23, 0.58)
        );
}

.sustainability-resources-intro-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.sustainability-resources-intro-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.sustainability-resources-intro-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}


/* =========================================================
   RESOURCE SECTIONS
========================================================= */

.sustainability-resource-section {
    padding: 125px 0;
    background: #fff;
}

.sustainability-resource-section-alt {
    background: #f7f3ea;
}

.sustainability-resource-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.sustainability-resource-content {
    max-width: 650px;
}

.sustainability-resource-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.sustainability-resource-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.sustainability-resource-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.sustainability-resource-image {
    min-height: 650px;
    overflow: hidden;
    border-radius: 24px;
    background: #d7ddd3;
}

.sustainability-resource-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.sustainability-resource-points {
    margin-top: 34px;
    border-top: 1px solid var(--home-border);
}

.sustainability-resource-points > div {
    padding: 20px 0;
    border-bottom: 1px solid var(--home-border);
}

.sustainability-resource-points span,
.sustainability-resource-points strong {
    display: block;
}

.sustainability-resource-points span {
    margin-bottom: 7px;
    color: #987246;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sustainability-resource-points strong {
    color: var(--home-green-deep);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   WATER MANAGEMENT
========================================================= */

.sustainability-water-section {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    padding: 125px 0;
    overflow: hidden;
    background: #103429;
}

.sustainability-water-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sustainability-water-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.86) 44%,
            rgba(6, 30, 23, 0.54) 74%,
            rgba(6, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.15),
            rgba(5, 24, 18, 0.64)
        );
}

.sustainability-water-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.sustainability-water-content .sustainability-detail-number {
    color: #deb57b;
}

.sustainability-water-content h2 {
    max-width: 790px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.sustainability-water-content > p {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.sustainability-water-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 66px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-water-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-water-grid article:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-water-grid article:nth-child(even) {
    padding-left: 36px;
}

.sustainability-water-grid article > span {
    color: #d7ae72;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.sustainability-water-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.1;
}

.sustainability-water-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   FOOD MANAGEMENT
========================================================= */

.sustainability-food-section {
    padding: 125px 0;
    overflow: hidden;
    background: #fff;
}

.sustainability-food-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.sustainability-food-images {
    position: relative;
    min-height: 690px;
}

.sustainability-food-image-main,
.sustainability-food-image-secondary {
    margin: 0;
    overflow: hidden;
}

.sustainability-food-image-main {
    width: 78%;
    height: 630px;
    border-radius: 24px;
}

.sustainability-food-image-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 340px;
    border: 10px solid #fff;
    border-radius: 20px;
    box-shadow: var(--home-shadow);
}

.sustainability-food-images img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustainability-food-content {
    max-width: 650px;
}

.sustainability-food-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.sustainability-food-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.sustainability-food-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.sustainability-food-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 34px;
}

.sustainability-food-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    color: var(--home-green-deep);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   TRANSPORTATION
========================================================= */

.sustainability-transport-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.sustainability-transport-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.sustainability-transport-heading {
    position: sticky;
    top: 130px;
}

.sustainability-transport-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.sustainability-transport-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.sustainability-transport-list {
    border-top: 1px solid var(--home-border);
}

.sustainability-transport-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.sustainability-transport-list article > span {
    color: #9a7446;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.sustainability-transport-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.sustainability-transport-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   GUEST PARTICIPATION
========================================================= */

.sustainability-guest-section {
    position: relative;
    isolation: isolate;
    min-height: 800px;
    padding: 120px 0;
    overflow: hidden;
    background: #103329;
}

.sustainability-guest-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sustainability-guest-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.95) 0%,
            rgba(6, 30, 23, 0.82) 52%,
            rgba(6, 30, 23, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.16),
            rgba(5, 24, 18, 0.64)
        );
}

.sustainability-guest-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.sustainability-guest-content h2 {
    max-width: 790px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.sustainability-guest-content > p {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.sustainability-guest-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 50px;
}

.sustainability-guest-actions > div {
    min-height: 155px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sustainability-guest-actions span {
    display: block;
    margin-bottom: 26px;
    color: #d9b17a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.sustainability-guest-actions strong {
    display: block;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.15;
}


/* =========================================================
   CONTINUOUS IMPROVEMENT
========================================================= */

.sustainability-progress-section {
    padding: 125px 0;
    background: #fff;
}

.sustainability-progress-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 62px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.sustainability-progress-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.sustainability-progress-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.sustainability-progress-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.sustainability-progress-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   SUSTAINABILITY FINAL CTA
========================================================= */

.sustainability-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.sustainability-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sustainability-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.sustainability-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.sustainability-final-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.sustainability-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.sustainability-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.sustainability-pillar-card:focus-visible,
.sustainability-community-content a:focus-visible,
.sustainability-water-content a:focus-visible,
.sustainability-food-content a:focus-visible,
.sustainability-final-actions a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .sustainability-pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sustainability-design-layout,
    .sustainability-resource-layout,
    .sustainability-food-grid {
        gap: 55px;
    }

    .sustainability-guest-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .sustainability-introduction-section,
    .sustainability-pillars-section,
    .sustainability-design-section,
    .sustainability-education-section,
    .sustainability-resource-section,
    .sustainability-food-section,
    .sustainability-transport-section,
    .sustainability-progress-section {
        padding: 96px 0;
    }

    .sustainability-introduction-grid,
    .sustainability-design-layout,
    .sustainability-education-grid,
    .sustainability-resource-layout,
    .sustainability-food-grid,
    .sustainability-transport-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .sustainability-education-heading,
    .sustainability-transport-heading {
        position: static;
    }

    .sustainability-introduction-images {
        margin-top: 55px;
    }

    .sustainability-image-large {
        height: 530px;
    }

    .sustainability-image-small {
        transform: translateY(40px);
    }

    .sustainability-image-small img {
        height: 370px;
    }

    .sustainability-design-image,
    .sustainability-design-image img,
    .sustainability-resource-image,
    .sustainability-resource-image img {
        min-height: 540px;
    }

    .sustainability-community-section,
    .sustainability-water-section,
    .sustainability-guest-section {
        min-height: auto;
        padding: 96px 0;
    }

    .sustainability-resources-intro-section {
        min-height: 620px;
        padding: 96px 0;
    }

    .sustainability-food-images {
        max-width: 760px;
        min-height: 630px;
    }

    .sustainability-food-image-main {
        height: 570px;
    }

    .sustainability-progress-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .sustainability-final-section {
        min-height: 650px;
        padding: 96px 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .sustainability-hero .inner-image-hero-background {
        background-position: 64% center;
    }

    .sustainability-introduction-section,
    .sustainability-pillars-section,
    .sustainability-design-section,
    .sustainability-education-section,
    .sustainability-resource-section,
    .sustainability-food-section,
    .sustainability-transport-section,
    .sustainability-progress-section {
        padding: 78px 0;
    }

    .sustainability-introduction-images {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .sustainability-image-large {
        height: 430px;
    }

    .sustainability-image-small {
        transform: none;
    }

    .sustainability-image-small img {
        height: 330px;
    }

    .sustainability-pillar-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 46px;
    }

    .sustainability-pillar-card {
        min-height: 230px;
    }

    .sustainability-design-image,
    .sustainability-design-image img,
    .sustainability-resource-image,
    .sustainability-resource-image img {
        min-height: 430px;
    }

    .sustainability-community-section,
    .sustainability-water-section,
    .sustainability-guest-section {
        padding: 86px 0;
    }

    .sustainability-community-overlay,
    .sustainability-water-overlay,
    .sustainability-guest-overlay,
    .sustainability-resources-intro-overlay,
    .sustainability-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.26) 0%,
                rgba(7, 31, 23, 0.72) 47%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .sustainability-community-grid,
    .sustainability-water-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .sustainability-community-grid article,
    .sustainability-community-grid article:nth-child(odd),
    .sustainability-community-grid article:nth-child(even),
    .sustainability-water-grid article,
    .sustainability-water-grid article:nth-child(odd),
    .sustainability-water-grid article:nth-child(even) {
        padding: 25px 0;
        border-right: 0;
    }

    .sustainability-education-list article,
    .sustainability-transport-list article {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .sustainability-resources-intro-section {
        min-height: 650px;
        padding: 86px 0;
    }

    .sustainability-food-images {
        min-height: 530px;
    }

    .sustainability-food-image-main {
        width: 86%;
        height: 480px;
    }

    .sustainability-food-image-secondary {
        width: 48%;
        height: 260px;
        border-width: 7px;
    }

    .sustainability-guest-actions {
        grid-template-columns: 1fr;
    }

    .sustainability-progress-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .sustainability-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .sustainability-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sustainability-final-actions .btn {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .sustainability-image-large {
        height: 380px;
    }

    .sustainability-image-small img {
        height: 290px;
    }

    .sustainability-design-image,
    .sustainability-design-image img,
    .sustainability-resource-image,
    .sustainability-resource-image img {
        min-height: 360px;
    }

    .sustainability-food-images {
        min-height: 455px;
    }

    .sustainability-food-image-main {
        width: 90%;
        height: 410px;
    }

    .sustainability-food-image-secondary {
        width: 52%;
        height: 215px;
    }

    .sustainability-progress-panel h2 {
        font-size: 2.8rem;
    }

    .sustainability-resources-intro-content h2,
    .sustainability-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sustainability-pillar-card {
        transition: none;
    }

    .sustainability-pillar-card:hover {
        transform: none;
    }
}

/* =========================================================
   ABOUT / OUR STORY PAGE
========================================================= */

.about-page {
    background: #f8f5ee;
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-new-hero .inner-image-hero-background {
    background-position: center 50%;
}

.about-new-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.8) 46%,
            rgba(6, 30, 23, 0.38) 76%,
            rgba(6, 30, 23, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.12),
            rgba(5, 24, 18, 0.72)
        );
}

.about-new-hero .inner-image-hero-content h1 {
    max-width: 930px;
}


/* =========================================================
   STORY INTRODUCTION
========================================================= */

.about-story-introduction-section {
    padding: 125px 0 145px;
    overflow: hidden;
    background: #fbf9f3;
}

.about-story-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.about-story-introduction-heading h2 {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.about-story-introduction-content {
    max-width: 700px;
}

.about-story-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.about-story-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.about-story-introduction-images {
    display: grid;
    grid-template-columns:
        minmax(0, 1.34fr)
        minmax(270px, 0.66fr);
    gap: 24px;
    align-items: end;
    margin-top: 76px;
}

.about-story-introduction-image {
    margin: 0;
    overflow: hidden;
}

.about-story-introduction-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-image-large {
    height: 650px;
    border-radius: 4px;
}

.about-story-image-small {
    transform: translateY(68px);
}

.about-story-image-small img {
    height: 430px;
    border-radius: 4px;
}

.about-story-image-small figcaption {
    max-width: 360px;
    margin-top: 18px;
    color: var(--home-text-soft);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}


/* =========================================================
   HISTORY PLACEHOLDER
========================================================= */

.about-history-section {
    padding: 145px 0 125px;
    background: #fff;
}

.about-history-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.about-history-heading {
    position: sticky;
    top: 130px;
}

.about-history-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.about-history-heading p {
    max-width: 500px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.75;
}

.about-history-content {
    max-width: 760px;
}

.about-history-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.1vw, 1.95rem);
    line-height: 1.42;
}

.about-history-content > p:not(.story-lead) {
    margin: 0 0 25px;
    color: var(--home-text-soft);
    line-height: 1.8;
}

.about-history-placeholder {
    position: relative;
    margin-top: 38px;
    padding: 38px 40px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 79, 59, 0.08),
            transparent 36%
        ),
        #f8f5ed;
}

.about-history-placeholder::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 165px;
    height: 165px;
    border: 1px solid rgba(23, 63, 50, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.about-history-placeholder > span {
    display: block;
    margin-bottom: 14px;
    color: #987246;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-history-placeholder p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.75;
}


/* =========================================================
   ABOUT VISION
========================================================= */

.about-vision-section {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    padding: 125px 0;
    overflow: hidden;
    background: #103429;
}

.about-vision-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-vision-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.86) 44%,
            rgba(6, 30, 23, 0.54) 74%,
            rgba(6, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.15),
            rgba(5, 24, 18, 0.64)
        );
}

.about-vision-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.about-vision-content h2 {
    max-width: 800px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.about-vision-content > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 66px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-vision-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.about-vision-grid article:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about-vision-grid article:nth-child(even) {
    padding-left: 36px;
}

.about-vision-grid article > span {
    color: #d7ae72;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.about-vision-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.1;
}

.about-vision-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   WHAT DEFINES PALM GROVE
========================================================= */

.about-identity-section {
    padding: 125px 0;
    background: #fff;
}

.about-identity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.about-identity-card {
    position: relative;
    min-height: 285px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 79, 59, 0.08),
            transparent 36%
        ),
        #f8f5ed;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.about-identity-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -58px;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(23, 63, 50, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.about-identity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.24);
    box-shadow: var(--home-shadow);
}

.about-identity-number {
    display: block;
    margin-bottom: 44px;
    color: #9c7544;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.about-identity-card h3 {
    margin: 0 0 14px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.about-identity-card p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.68;
}


/* =========================================================
   LANDSCAPE AND AGRICULTURE
========================================================= */

.about-land-section {
    padding: 125px 0;
    overflow: hidden;
    background: #f7f3ea;
}

.about-land-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.about-land-images {
    position: relative;
    min-height: 690px;
}

.about-land-image-main,
.about-land-image-secondary {
    margin: 0;
    overflow: hidden;
}

.about-land-image-main {
    width: 78%;
    height: 630px;
    border-radius: 24px;
}

.about-land-image-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 340px;
    border: 10px solid #f7f3ea;
    border-radius: 20px;
    box-shadow: var(--home-shadow);
}

.about-land-images img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-land-content {
    max-width: 650px;
}

.about-land-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.about-land-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.about-land-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.about-land-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 34px;
}

.about-land-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    color: var(--home-green-deep);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   GUEST EXPERIENCE
========================================================= */

.about-guest-experience-section {
    padding: 125px 0;
    background: #fff;
}

.about-guest-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.about-guest-experience-card {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #f8f5ed;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-guest-experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(22, 57, 43, 0.12);
}

.about-guest-experience-card > img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-guest-experience-card:hover > img {
    transform: scale(1.045);
}

.about-guest-experience-card > div {
    padding: 28px 27px 32px;
}

.about-guest-experience-card > div > span {
    display: block;
    margin-bottom: 13px;
    color: #997247;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-guest-experience-card h3 {
    margin: 0 0 12px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

.about-guest-experience-card p {
    margin: 0 0 20px;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   LOCATION AND REGION
========================================================= */

.about-region-section {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    padding: 125px 0;
    overflow: hidden;
    background: #103429;
}

.about-region-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-region-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.86) 44%,
            rgba(6, 30, 23, 0.54) 74%,
            rgba(6, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.15),
            rgba(5, 24, 18, 0.64)
        );
}

.about-region-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.about-region-content h2 {
    max-width: 800px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.about-region-content > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.about-region-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 66px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-region-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.about-region-grid article:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about-region-grid article:nth-child(even) {
    padding-left: 36px;
}

.about-region-grid article > span {
    color: #d7ae72;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.about-region-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.1;
}

.about-region-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   VALUES AND APPROACH
========================================================= */

.about-values-new-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.about-values-new-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.about-values-new-heading {
    position: sticky;
    top: 130px;
}

.about-values-new-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.about-values-new-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.about-values-new-list {
    border-top: 1px solid var(--home-border);
}

.about-values-new-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.about-values-new-list article > span {
    color: #9a7446;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.about-values-new-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.about-values-new-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   SUSTAINABILITY CONNECTION
========================================================= */

.about-sustainability-link-section {
    padding: 125px 0;
    background: #fff;
}

.about-sustainability-link-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 62px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.about-sustainability-link-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.about-sustainability-link-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.about-sustainability-link-panel .editorial-link {
    margin-top: 14px;
}


/* =========================================================
   STORY DEVELOPMENT NOTE
========================================================= */

.about-story-development-section {
    padding: 115px 0;
    background: #f7f3ea;
}

.about-story-development-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.about-story-development-content h2 {
    max-width: 850px;
    margin: 18px auto 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.6rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.about-story-development-content p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   ABOUT FINAL CTA
========================================================= */

.about-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.about-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.about-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.about-final-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.about-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   ABOUT ACCESSIBILITY
========================================================= */

.about-identity-card:focus-visible,
.about-guest-experience-card a:focus-visible,
.about-region-content a:focus-visible,
.about-sustainability-link-panel a:focus-visible,
.about-final-actions a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   ABOUT — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .about-identity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-land-grid {
        gap: 55px;
    }

    .about-guest-experience-grid {
        gap: 20px;
    }
}


/* =========================================================
   ABOUT — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .about-story-introduction-section,
    .about-history-section,
    .about-identity-section,
    .about-land-section,
    .about-guest-experience-section,
    .about-values-new-section,
    .about-sustainability-link-section,
    .about-story-development-section {
        padding: 96px 0;
    }

    .about-story-introduction-grid,
    .about-history-layout,
    .about-land-grid,
    .about-values-new-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .about-history-heading,
    .about-values-new-heading {
        position: static;
    }

    .about-story-introduction-images {
        margin-top: 55px;
    }

    .about-story-image-large {
        height: 530px;
    }

    .about-story-image-small {
        transform: translateY(40px);
    }

    .about-story-image-small img {
        height: 370px;
    }

    .about-vision-section,
    .about-region-section {
        min-height: auto;
        padding: 96px 0;
    }

    .about-land-images {
        max-width: 760px;
        min-height: 630px;
    }

    .about-land-image-main {
        height: 570px;
    }

    .about-guest-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-guest-experience-card:last-child {
        grid-column: 1 / -1;
    }

    .about-sustainability-link-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .about-final-section {
        min-height: 650px;
        padding: 96px 0;
    }
}


/* =========================================================
   ABOUT — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .about-new-hero .inner-image-hero-background {
        background-position: 64% center;
    }

    .about-story-introduction-section,
    .about-history-section,
    .about-identity-section,
    .about-land-section,
    .about-guest-experience-section,
    .about-values-new-section,
    .about-sustainability-link-section,
    .about-story-development-section {
        padding: 78px 0;
    }

    .about-story-introduction-images {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .about-story-image-large {
        height: 430px;
    }

    .about-story-image-small {
        transform: none;
    }

    .about-story-image-small img {
        height: 330px;
    }

    .about-history-placeholder {
        padding: 30px 26px;
        border-radius: 19px;
    }

    .about-vision-section,
    .about-region-section {
        padding: 86px 0;
    }

    .about-vision-overlay,
    .about-region-overlay,
    .about-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.26) 0%,
                rgba(7, 31, 23, 0.72) 47%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .about-vision-grid,
    .about-region-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .about-vision-grid article,
    .about-vision-grid article:nth-child(odd),
    .about-vision-grid article:nth-child(even),
    .about-region-grid article,
    .about-region-grid article:nth-child(odd),
    .about-region-grid article:nth-child(even) {
        padding: 25px 0;
        border-right: 0;
    }

    .about-identity-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 46px;
    }

    .about-identity-card {
        min-height: 235px;
    }

    .about-land-images {
        min-height: 530px;
    }

    .about-land-image-main {
        width: 86%;
        height: 480px;
    }

    .about-land-image-secondary {
        width: 48%;
        height: 260px;
        border-width: 7px;
    }

    .about-guest-experience-grid {
        grid-template-columns: 1fr;
    }

    .about-guest-experience-card:last-child {
        grid-column: auto;
    }

    .about-guest-experience-card > img {
        height: 300px;
    }

    .about-values-new-list article {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .about-sustainability-link-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .about-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .about-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-final-actions .btn {
        width: 100%;
    }
}


/* =========================================================
   ABOUT — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .about-story-image-large {
        height: 380px;
    }

    .about-story-image-small img {
        height: 290px;
    }

    .about-land-images {
        min-height: 455px;
    }

    .about-land-image-main {
        width: 90%;
        height: 410px;
    }

    .about-land-image-secondary {
        width: 52%;
        height: 215px;
    }

    .about-guest-experience-card > img {
        height: 260px;
    }

    .about-sustainability-link-panel h2 {
        font-size: 2.8rem;
    }

    .about-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-identity-card,
    .about-guest-experience-card,
    .about-guest-experience-card > img {
        transition: none;
    }

    .about-identity-card:hover,
    .about-guest-experience-card:hover {
        transform: none;
    }

    .about-guest-experience-card:hover > img {
        transform: none;
    }
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    background: #f8f5ee;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-new-hero .inner-image-hero-background {
    background-position: center 52%;
}

.contact-new-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.8) 46%,
            rgba(6, 30, 23, 0.38) 76%,
            rgba(6, 30, 23, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.12),
            rgba(5, 24, 18, 0.72)
        );
}

.contact-new-hero .inner-image-hero-content h1 {
    max-width: 930px;
}


/* =========================================================
   CONTACT INTRODUCTION
========================================================= */

.contact-introduction-section {
    padding: 125px 0 115px;
    background: #fbf9f3;
}

.contact-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.contact-introduction-heading h2 {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.contact-introduction-content {
    max-width: 700px;
}

.contact-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.contact-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   CONTACT FEEDBACK MESSAGES
========================================================= */

.contact-feedback-section {
    padding: 28px 0 0;
    background: #fff;
}

.contact-feedback-list {
    display: grid;
    gap: 14px;
}

.contact-feedback-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 26px;
    border: 1px solid var(--home-border);
    border-radius: 16px;
    background: #f8f5ed;
}

.contact-feedback-message strong {
    display: block;
    margin-bottom: 5px;
    color: var(--home-green-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

.contact-feedback-message p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-feedback-message > span {
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--home-green-deep);
    color: #fff;
    font-weight: 700;
}

.contact-feedback-success {
    border-color: rgba(47, 109, 76, 0.35);
    background: #eef5ef;
}

.contact-feedback-error {
    border-color: rgba(149, 77, 59, 0.32);
    background: #faf0ec;
}

.contact-feedback-error > span {
    background: #8b4638;
}


/* =========================================================
   CONTACT OPTIONS
========================================================= */

.contact-options-section {
    padding: 125px 0;
    background: #fff;
}

.contact-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.contact-option-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 79, 59, 0.08),
            transparent 36%
        ),
        #f8f5ed;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-option-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -62px;
    width: 155px;
    height: 155px;
    border: 1px solid rgba(23, 63, 50, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.contact-option-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.25);
    box-shadow: var(--home-shadow);
}

.contact-option-card-featured {
    border-color: rgba(23, 63, 50, 0.36);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.08),
            transparent 38%
        ),
        var(--home-green-deep);
}

.contact-option-number {
    display: block;
    margin-bottom: 68px;
    color: #9c7544;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.contact-option-card-featured .contact-option-number {
    color: #deb57b;
}

.contact-option-card > div {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.contact-option-label {
    display: block;
    margin-bottom: 12px;
    color: #987246;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-option-card h3 {
    margin: 0 0 15px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 2.15rem;
    font-weight: 500;
    line-height: 1.05;
}

.contact-option-card p {
    margin: 0 0 28px;
    color: var(--home-text-soft);
    font-size: 0.93rem;
    line-height: 1.7;
}

.contact-option-card strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    color: var(--home-green-deep);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1.5;
}

.contact-option-card-featured .contact-option-label,
.contact-option-card-featured h3,
.contact-option-card-featured strong {
    color: #fff;
}

.contact-option-card-featured p {
    color: rgba(255, 255, 255, 0.73);
}


/* =========================================================
   ENQUIRY LAYOUT
========================================================= */

.contact-enquiry-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.contact-enquiry-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);
    gap: 0;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--home-shadow);
}


/* =========================================================
   CONTACT INFORMATION PANEL
========================================================= */

.contact-information-panel {
    padding: clamp(48px, 5.5vw, 76px);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 34%
        ),
        var(--home-green-deep);
    color: #fff;
}

.contact-information-panel > h2 {
    max-width: 560px;
    margin: 18px 0 22px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.contact-information-panel > p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    line-height: 1.8;
}

.contact-information-list {
    margin-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-information-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-information-list article > span {
    color: #d7ae72;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.contact-information-list h3 {
    margin: 0 0 7px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.contact-information-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.65;
}

.contact-suggested-message {
    margin-top: 35px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.contact-suggested-message > span {
    display: block;
    margin-bottom: 11px;
    color: #dcb57a;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-suggested-message p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.91rem;
    line-height: 1.72;
}

.contact-business-details {
    margin-top: 40px;
}

.contact-business-details-label {
    display: block;
    margin-bottom: 18px;
    color: #dcb57a;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-business-detail-list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-business-detail-list > div {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-business-detail-list span,
.contact-business-detail-list strong {
    display: block;
}

.contact-business-detail-list span {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-business-detail-list strong {
    color: #fff;
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.6;
}


/* =========================================================
   CONTACT FORM PANEL
========================================================= */

.contact-form-panel {
    padding: clamp(48px, 5.5vw, 76px);
    background: #fff;
}

.contact-form-panel > h2 {
    max-width: 570px;
    margin: 18px 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.contact-form-panel > p {
    max-width: 590px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.contact-new-form {
    display: grid;
    gap: 23px;
    margin-top: 42px;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form-field {
    display: grid;
    gap: 9px;
}

.contact-form-field label {
    color: var(--home-green-deep);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.contact-form-field label span {
    color: #93613f;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    width: 100%;
    border: 1px solid rgba(23, 63, 50, 0.2);
    border-radius: 10px;
    background: #fbfaf6;
    color: var(--home-green-deep);
    font-family: inherit;
    font-size: 0.96rem;
    line-height: 1.5;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.contact-form-field input,
.contact-form-field select {
    min-height: 54px;
    padding: 0 16px;
}

.contact-form-field textarea {
    min-height: 175px;
    padding: 15px 16px;
    resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: rgba(27, 52, 43, 0.47);
}

.contact-form-field input:hover,
.contact-form-field select:hover,
.contact-form-field textarea:hover {
    border-color: rgba(23, 63, 50, 0.36);
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--home-green-deep);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 63, 50, 0.1);
}

.contact-field-help {
    color: rgba(27, 52, 43, 0.58);
    font-size: 0.72rem;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 5px;
}

.contact-form-note {
    max-width: 620px;
    margin: 0;
    color: rgba(27, 52, 43, 0.58);
    font-size: 0.77rem;
    line-height: 1.65;
}


/* =========================================================
   CONTACT LOCATION
========================================================= */

.contact-location-section {
    padding: 125px 0;
    background: #fff;
}

.contact-location-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.contact-location-content {
    max-width: 630px;
}

.contact-location-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.contact-location-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.contact-location-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.contact-location-details {
    margin: 34px 0;
    border-top: 1px solid var(--home-border);
}

.contact-location-details > div {
    padding: 19px 0;
    border-bottom: 1px solid var(--home-border);
}

.contact-location-details span,
.contact-location-details strong {
    display: block;
}

.contact-location-details span {
    margin-bottom: 6px;
    color: #987246;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-location-details strong {
    color: var(--home-green-deep);
    font-size: 0.98rem;
    font-weight: 600;
}

.contact-location-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 26px;
}

.contact-directions-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 8px 0;
    color: var(--home-green-deep);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-directions-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.42;
    transform: scaleX(1);
    transform-origin: left center;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.contact-directions-link:hover::after {
    opacity: 1;
    transform: scaleX(0.78);
}

.contact-location-map {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 26px;
    background: #e8e2d8;
    box-shadow: var(--home-shadow);
}

.contact-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    border: 0;
}


/* =========================================================
   CONTACT QUICK LINKS
========================================================= */

.contact-quick-links-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.contact-quick-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 60px;
}

.contact-quick-link {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 27px 25px;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-quick-link:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 63, 50, 0.25);
    box-shadow: var(--home-shadow);
}

.contact-quick-link > span {
    margin-bottom: 48px;
    color: #997247;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.contact-quick-link strong {
    display: block;
    margin-top: auto;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.1;
}

.contact-quick-link small {
    display: block;
    margin-top: 8px;
    color: var(--home-text-soft);
    font-size: 0.8rem;
    line-height: 1.5;
}


/* =========================================================
   CONTACT FINAL CTA
========================================================= */

.contact-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.contact-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.contact-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.contact-final-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.contact-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.contact-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   CONTACT ACCESSIBILITY
========================================================= */

.contact-option-card:focus-visible,
.contact-quick-link:focus-visible,
.contact-directions-link:focus-visible,
.contact-final-actions a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   CONTACT — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .contact-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-option-card-featured {
        grid-column: 1 / -1;
        min-height: 330px;
    }

    .contact-quick-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   CONTACT — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .contact-introduction-section,
    .contact-options-section,
    .contact-enquiry-section,
    .contact-location-section,
    .contact-quick-links-section {
        padding: 96px 0;
    }

    .contact-introduction-grid,
    .contact-enquiry-layout,
    .contact-location-grid {
        grid-template-columns: 1fr;
    }

    .contact-enquiry-layout {
        border-radius: 24px;
    }

    .contact-location-map,
    .contact-location-map iframe {
        min-height: 500px;
    }

    .contact-location-map {
        margin-top: 10px;
    }
}


/* =========================================================
   CONTACT — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .contact-new-hero .inner-image-hero-background {
        background-position: 64% center;
    }

    .contact-introduction-section,
    .contact-options-section,
    .contact-enquiry-section,
    .contact-location-section,
    .contact-quick-links-section {
        padding: 78px 0;
    }

    .contact-option-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 46px;
    }

    .contact-option-card-featured {
        grid-column: auto;
    }

    .contact-option-card {
        min-height: 320px;
    }

    .contact-information-panel,
    .contact-form-panel {
        padding: 42px 27px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form-actions .btn {
        width: 100%;
    }

    .contact-location-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-location-map,
    .contact-location-map iframe {
        min-height: 410px;
    }

    .contact-location-map {
        border-radius: 20px;
    }

    .contact-quick-link-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-quick-link {
        min-height: 190px;
    }

    .contact-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.26) 0%,
                rgba(7, 31, 23, 0.72) 47%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .contact-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .contact-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-final-actions .btn {
        width: 100%;
    }
}


/* =========================================================
   CONTACT — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .contact-information-panel,
    .contact-form-panel {
        padding: 36px 22px;
    }

    .contact-feedback-message {
        align-items: flex-start;
        padding: 20px;
    }

    .contact-location-map,
    .contact-location-map iframe {
        min-height: 360px;
    }

    .contact-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   CONTACT — REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-option-card,
    .contact-quick-link {
        transition: none;
    }

    .contact-option-card:hover,
    .contact-quick-link:hover {
        transform: none;
    }
}

/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page {
    overflow-x: hidden;
    background: #f8f5ee;
}


/* =========================================================
   GALLERY HERO
========================================================= */

.gallery-new-hero .inner-image-hero-background {
    background-position: center 52%;
}

.gallery-new-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.8) 46%,
            rgba(6, 30, 23, 0.38) 76%,
            rgba(6, 30, 23, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.12),
            rgba(5, 24, 18, 0.72)
        );
}

.gallery-new-hero .inner-image-hero-content h1 {
    max-width: 980px;
}


/* =========================================================
   GALLERY INTRODUCTION
========================================================= */

.gallery-introduction-section {
    padding: 125px 0;
    background: #fbf9f3;
}

.gallery-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.gallery-introduction-heading h2 {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.gallery-introduction-content {
    max-width: 700px;
}

.gallery-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.gallery-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}




/* =========================================================
   FEATURED GALLERY MOMENT
========================================================= */

.gallery-featured-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.gallery-featured-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.16fr)
        minmax(0, 0.84fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.gallery-featured-image {
    min-height: 720px;
    overflow: hidden;
    border-radius: 24px;
    background: #d8ddd4;
    box-shadow: var(--home-shadow);
}

.gallery-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-featured-image:hover img {
    transform: scale(1.025);
}

.gallery-featured-content {
    max-width: 640px;
}

.gallery-featured-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.gallery-featured-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.gallery-featured-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.gallery-featured-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin-top: 34px;
}


/* =========================================================
   MAIN GALLERY COLLECTION
========================================================= */

.gallery-collection-section {
    padding: 125px 0;
    background: #fff;
}

.gallery-editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 48px;
    gap: 18px;
    margin-top: 68px;
}

.gallery-editorial-item {
    position: relative;
    grid-column: span 4;
    grid-row: span 8;
    min-width: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: #d8ddd4;
    color: #fff;
    cursor: zoom-in;
    font: inherit;
    text-align: left;
    box-shadow: none;
    appearance: none;
}

.gallery-editorial-item.gallery-item-large {
    grid-column: span 8;
    grid-row: span 12;
}

.gallery-editorial-item.gallery-item-tall {
    grid-column: span 4;
    grid-row: span 12;
}

.gallery-editorial-item.gallery-item-wide {
    grid-column: span 8;
    grid-row: span 8;
}

.gallery-editorial-item.gallery-item-standard {
    grid-column: span 4;
    grid-row: span 8;
}

.gallery-editorial-photo,
.gallery-editorial-photo img,
.gallery-editorial-overlay {
    position: absolute;
    inset: 0;
}

.gallery-editorial-photo {
    display: block;
    overflow: hidden;
}

.gallery-editorial-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.gallery-editorial-overlay {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(5, 25, 19, 0.04) 25%,
            rgba(5, 25, 19, 0.15) 55%,
            rgba(5, 25, 19, 0.84) 100%
        );
    transition: background 0.35s ease;
}

.gallery-editorial-item:hover .gallery-editorial-photo img,
.gallery-editorial-item:focus-visible .gallery-editorial-photo img {
    transform: scale(1.055);
}

.gallery-editorial-item:hover .gallery-editorial-overlay,
.gallery-editorial-item:focus-visible .gallery-editorial-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(5, 25, 19, 0.08) 20%,
            rgba(5, 25, 19, 0.2) 50%,
            rgba(5, 25, 19, 0.9) 100%
        );
}

.gallery-editorial-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 28px;
    transform: translateY(4px);
    transition: transform 0.35s ease;
}

.gallery-editorial-item:hover .gallery-editorial-caption,
.gallery-editorial-item:focus-visible .gallery-editorial-caption {
    transform: translateY(0);
}

.gallery-editorial-number {
    flex: 0 0 auto;
    padding-bottom: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.gallery-editorial-caption > span:last-child {
    display: block;
    min-width: 0;
}

.gallery-editorial-caption strong {
    display: block;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.55rem, 2.3vw, 2.35rem);
    font-weight: 500;
    line-height: 1.05;
}

.gallery-editorial-caption small {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   EMPTY GALLERY STATE
========================================================= */

.gallery-empty-state {
    max-width: 850px;
    margin: 68px auto 0;
    padding: 75px 55px;
    border: 1px solid var(--home-border);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 79, 59, 0.08),
            transparent 35%
        ),
        #f8f5ed;
    text-align: center;
}

.gallery-empty-state h3 {
    max-width: 650px;
    margin: 18px auto 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    font-weight: 500;
    line-height: 1;
}

.gallery-empty-state p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: var(--home-text-soft);
    line-height: 1.75;
}


/* =========================================================
   GALLERY STORY CATEGORIES
========================================================= */

.gallery-story-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.gallery-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 64px;
}

.gallery-story-card {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    background: #fff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.gallery-story-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 50, 0.24);
    box-shadow: var(--home-shadow);
}

.gallery-story-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #d8ddd4;
}

.gallery-story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(7, 34, 25, 0.17) 100%
        );
}

.gallery-story-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-story-card:hover .gallery-story-image img {
    transform: scale(1.045);
}

.gallery-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 38px;
}

.gallery-story-content > span {
    display: block;
    margin-bottom: 38px;
    color: #997247;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.17em;
}

.gallery-story-content h3 {
    margin: 0 0 17px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.gallery-story-content p {
    margin: 0 0 23px;
    color: var(--home-text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   GALLERY EVENING SECTION
========================================================= */

.gallery-evening-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 800px;
    padding: 120px 0;
    overflow: hidden;
    background: #103329;
}

.gallery-evening-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery-evening-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 27, 21, 0.96) 0%,
            rgba(6, 27, 21, 0.84) 46%,
            rgba(6, 27, 21, 0.5) 76%,
            rgba(6, 27, 21, 0.26) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.14),
            rgba(5, 24, 18, 0.68)
        );
}

.gallery-evening-content {
    position: relative;
    z-index: 2;
    max-width: 830px;
}

.gallery-evening-content h2 {
    max-width: 800px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.gallery-evening-content > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.79);
    font-size: 1rem;
    line-height: 1.8;
}

.gallery-evening-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    max-width: 720px;
    margin: 32px 0 36px;
}

.gallery-evening-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 37px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   GALLERY GUIDANCE
========================================================= */

.gallery-guidance-section {
    padding: 125px 0;
    background: #fff;
}

.gallery-guidance-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 62px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.gallery-guidance-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.gallery-guidance-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.gallery-guidance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.gallery-guidance-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   GALLERY FINAL CTA
========================================================= */

.gallery-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.gallery-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.gallery-final-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.gallery-final-content h2 {
    max-width: 840px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.gallery-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.gallery-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   GALLERY LIGHTBOX
========================================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    align-items: center;
    padding: 36px;
    background: rgba(3, 17, 13, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.gallery-lightbox.is-open,
.gallery-lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 1500px);
    max-height: calc(100vh - 72px);
    margin: 0 auto;
}

.gallery-lightbox-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 145px);
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.44);
}

.gallery-lightbox-caption {
    max-width: 900px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.35rem;
    line-height: 1.3;
    text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-navigation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    font: inherit;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-navigation:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.14);
}

.gallery-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
    line-height: 1;
}

.gallery-lightbox-navigation {
    width: 54px;
    height: 54px;
    justify-self: center;
    font-size: 1.25rem;
}

.gallery-lightbox-previous:hover {
    transform: translateX(-3px);
}

.gallery-lightbox-next:hover {
    transform: translateX(3px);
}

body.gallery-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   GALLERY ACCESSIBILITY
========================================================= */

.gallery-editorial-item:focus-visible,
.gallery-introduction-themes a:focus-visible,
.gallery-story-content a:focus-visible,
.gallery-evening-content a:focus-visible,
.gallery-final-actions a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-navigation:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}


/* =========================================================
   GALLERY — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .gallery-introduction-themes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-featured-layout {
        gap: 55px;
    }

    .gallery-editorial-grid {
        grid-auto-rows: 44px;
    }

    .gallery-story-card {
        grid-template-columns: 1fr;
        grid-template-rows: 390px auto;
    }

    .gallery-story-image,
    .gallery-story-image img {
        min-height: 390px;
    }

    .gallery-story-content {
        padding: 36px 32px;
    }
}


/* =========================================================
   GALLERY — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .gallery-introduction-section,
    .gallery-featured-section,
    .gallery-collection-section,
    .gallery-story-section,
    .gallery-guidance-section {
        padding: 96px 0;
    }

    .gallery-introduction-grid,
    .gallery-featured-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .gallery-featured-image,
    .gallery-featured-image img {
        min-height: 560px;
    }

    .gallery-editorial-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-auto-rows: 44px;
    }

    .gallery-editorial-item,
    .gallery-editorial-item.gallery-item-standard,
    .gallery-editorial-item.gallery-item-tall {
        grid-column: span 4;
    }

    .gallery-editorial-item.gallery-item-large,
    .gallery-editorial-item.gallery-item-wide {
        grid-column: span 8;
    }

    .gallery-editorial-item,
    .gallery-editorial-item.gallery-item-standard {
        grid-row: span 8;
    }

    .gallery-editorial-item.gallery-item-tall,
    .gallery-editorial-item.gallery-item-large {
        grid-row: span 11;
    }

    .gallery-editorial-item.gallery-item-wide {
        grid-row: span 8;
    }

    .gallery-story-grid {
        grid-template-columns: 1fr;
    }

    .gallery-story-card {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(0, 1.05fr);
        grid-template-rows: none;
    }

    .gallery-story-image,
    .gallery-story-image img {
        min-height: 470px;
    }

    .gallery-evening-section {
        min-height: 720px;
        padding: 96px 0;
    }

    .gallery-guidance-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .gallery-final-section {
        min-height: 650px;
        padding: 96px 0;
    }

    .gallery-lightbox {
        grid-template-columns: 62px minmax(0, 1fr) 62px;
        padding: 28px 18px;
    }

    .gallery-lightbox-navigation {
        width: 48px;
        height: 48px;
    }
}


/* =========================================================
   GALLERY — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gallery-new-hero .inner-image-hero-background {
        background-position: 64% center;
    }

    .gallery-introduction-section,
    .gallery-featured-section,
    .gallery-collection-section,
    .gallery-story-section,
    .gallery-guidance-section {
        padding: 78px 0;
    }

    .gallery-introduction-themes {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 48px;
    }

    .gallery-introduction-themes a {
        min-height: 170px;
    }

    .gallery-featured-image,
    .gallery-featured-image img {
        min-height: 440px;
    }

    .gallery-featured-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .gallery-editorial-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 15px;
        margin-top: 48px;
    }

    .gallery-editorial-item,
    .gallery-editorial-item.gallery-item-large,
    .gallery-editorial-item.gallery-item-tall,
    .gallery-editorial-item.gallery-item-standard,
    .gallery-editorial-item.gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .gallery-editorial-item.gallery-item-tall {
        aspect-ratio: 4 / 5;
    }

    .gallery-editorial-caption {
        gap: 14px;
        padding: 22px;
    }

    .gallery-editorial-caption strong {
        font-size: 1.75rem;
    }

    .gallery-story-grid {
        gap: 20px;
        margin-top: 48px;
    }

    .gallery-story-card {
        grid-template-columns: 1fr;
        grid-template-rows: 330px auto;
        min-height: auto;
    }

    .gallery-story-image,
    .gallery-story-image img {
        min-height: 330px;
    }

    .gallery-story-content {
        padding: 31px 26px 34px;
    }

    .gallery-evening-section {
        min-height: 700px;
        padding: 86px 0;
    }

    .gallery-evening-overlay,
    .gallery-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.2) 0%,
                rgba(7, 31, 23, 0.68) 44%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .gallery-guidance-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .gallery-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .gallery-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-final-actions .btn {
        width: 100%;
    }

    .gallery-lightbox {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 70px 14px 90px;
    }

    .gallery-lightbox-figure {
        max-height: calc(100vh - 160px);
    }

    .gallery-lightbox-image {
        max-height: calc(100vh - 220px);
    }

    .gallery-lightbox-caption {
        margin-top: 14px;
        font-size: 1.12rem;
    }

    .gallery-lightbox-navigation {
        position: absolute;
        bottom: 22px;
        width: 48px;
        height: 48px;
    }

    .gallery-lightbox-previous {
        left: calc(50% - 58px);
    }

    .gallery-lightbox-next {
        right: calc(50% - 58px);
    }

    .gallery-lightbox-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}


/* =========================================================
   GALLERY — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .gallery-featured-image,
    .gallery-featured-image img {
        min-height: 370px;
    }

    .gallery-editorial-item,
    .gallery-editorial-item.gallery-item-large,
    .gallery-editorial-item.gallery-item-standard,
    .gallery-editorial-item.gallery-item-wide {
        aspect-ratio: 1 / 1;
    }

    .gallery-editorial-item.gallery-item-tall {
        aspect-ratio: 4 / 5;
    }

    .gallery-editorial-caption {
        padding: 19px;
    }

    .gallery-editorial-caption strong {
        font-size: 1.55rem;
    }

    .gallery-story-card {
        grid-template-rows: 280px auto;
    }

    .gallery-story-image,
    .gallery-story-image img {
        min-height: 280px;
    }

    .gallery-empty-state {
        padding: 52px 24px;
    }

    .gallery-guidance-panel h2 {
        font-size: 2.8rem;
    }

    .gallery-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   GALLERY — REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gallery-introduction-themes a,
    .gallery-introduction-themes a::after,
    .gallery-featured-image img,
    .gallery-editorial-photo img,
    .gallery-editorial-caption,
    .gallery-story-card,
    .gallery-story-image img,
    .gallery-lightbox,
    .gallery-lightbox-close,
    .gallery-lightbox-navigation {
        transition: none;
    }

    .gallery-introduction-themes a:hover::after,
    .gallery-featured-image:hover img,
    .gallery-editorial-item:hover .gallery-editorial-photo img,
    .gallery-editorial-item:focus-visible .gallery-editorial-photo img,
    .gallery-story-card:hover,
    .gallery-story-card:hover .gallery-story-image img,
    .gallery-lightbox-previous:hover,
    .gallery-lightbox-next:hover {
        transform: none;
    }
}

/* =========================================================
   SLEEP PAGE
========================================================= */

.sleep-page {
    overflow-x: hidden;
    background: #f8f5ee;
}


/* =========================================================
   SLEEP HERO
========================================================= */

.sleep-hero .inner-image-hero-background {
    background-position: center 52%;
}

.sleep-hero .inner-image-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.8) 46%,
            rgba(6, 30, 23, 0.38) 76%,
            rgba(6, 30, 23, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.12),
            rgba(5, 24, 18, 0.72)
        );
}

.sleep-hero .inner-image-hero-content h1 {
    max-width: 930px;
}


/* =========================================================
   SLEEP INTRODUCTION
========================================================= */

.sleep-introduction-section {
    padding: 125px 0;
    background: #fbf9f3;
}

.sleep-introduction-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 120px);
    align-items: start;
}

.sleep-introduction-heading h2 {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.sleep-introduction-content {
    max-width: 700px;
}

.sleep-introduction-content .story-lead {
    margin: 0 0 22px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.4;
}

.sleep-introduction-content p:not(.story-lead) {
    margin: 0 0 18px;
    color: var(--home-text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.sleep-introduction-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 72px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background: var(--home-border);
}

.sleep-introduction-features > div {
    min-height: 205px;
    padding: 28px 26px;
    background: #fff;
}

.sleep-introduction-features span {
    display: block;
    margin-bottom: 48px;
    color: #997247;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.sleep-introduction-features strong {
    display: block;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.08;
}

.sleep-introduction-features small {
    display: block;
    margin-top: 9px;
    color: var(--home-text-soft);
    font-size: 0.78rem;
    line-height: 1.5;
}


/* =========================================================
   FEATURED SLEEP STORY
========================================================= */

.sleep-featured-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.sleep-featured-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.16fr)
        minmax(0, 0.84fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.sleep-featured-image {
    min-height: 720px;
    overflow: hidden;
    border-radius: 24px;
    background: #d8ddd4;
    box-shadow: var(--home-shadow);
}

.sleep-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.sleep-featured-image:hover img {
    transform: scale(1.025);
}

.sleep-featured-content {
    max-width: 640px;
}

.sleep-featured-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.sleep-featured-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.sleep-featured-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.sleep-featured-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 34px;
}

.sleep-featured-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    color: var(--home-green-deep);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   STAY CHOICES
========================================================= */

.sleep-choices-section {
    padding: 125px 0;
    background: #fff;
}

.sleep-choice-list {
    display: grid;
    gap: 42px;
    margin-top: 68px;
}

.sleep-choice-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 26px;
    background: #f8f5ed;
    box-shadow: 0 20px 60px rgba(22, 57, 43, 0.08);
}

.sleep-choice-card.sleep-image-right {
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);
}

.sleep-choice-card.sleep-image-right .sleep-choice-image {
    order: 2;
}

.sleep-choice-image {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #d8ddd4;
}

.sleep-choice-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(5, 25, 19, 0.02) 50%,
            rgba(5, 25, 19, 0.35) 100%
        );
}

.sleep-choice-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.sleep-choice-card:hover .sleep-choice-image img {
    transform: scale(1.035);
}

.sleep-choice-image-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(7, 31, 23, 0.52);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sleep-choice-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 5vw, 72px);
}

.sleep-choice-heading {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
}

.sleep-choice-number {
    padding-top: 5px;
    color: #997247;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
}

.sleep-choice-heading h3 {
    max-width: 590px;
    margin: 14px 0 0;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.8rem, 4.3vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.sleep-choice-description {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--home-text-soft);
    font-size: 0.97rem;
    line-height: 1.78;
}

.sleep-choice-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    border-top: 1px solid var(--home-border);
}

.sleep-choice-details > div {
    padding: 20px 20px 20px 0;
    border-bottom: 1px solid var(--home-border);
}

.sleep-choice-details > div:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid var(--home-border);
}

.sleep-choice-details span,
.sleep-choice-details strong {
    display: block;
}

.sleep-choice-details span {
    margin-bottom: 7px;
    color: #987246;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.sleep-choice-details strong {
    color: var(--home-green-deep);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.55;
}

.sleep-choice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.sleep-choice-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    background: #fff;
    color: var(--home-green-deep);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.sleep-choice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}


/* =========================================================
   EMPTY STAY STATE
========================================================= */

.sleep-empty-state {
    max-width: 850px;
    margin: 68px auto 0;
    padding: 75px 55px;
    border: 1px solid var(--home-border);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(31, 79, 59, 0.08),
            transparent 35%
        ),
        #f8f5ed;
    text-align: center;
}

.sleep-empty-state h3 {
    max-width: 650px;
    margin: 18px auto 20px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    font-weight: 500;
    line-height: 1;
}

.sleep-empty-state p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: var(--home-text-soft);
    line-height: 1.75;
}


/* =========================================================
   GUEST COMFORT
========================================================= */

.sleep-comfort-section {
    padding: 125px 0;
    background: #f7f3ea;
}

.sleep-comfort-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.sleep-comfort-heading {
    position: sticky;
    top: 130px;
}

.sleep-comfort-heading h2 {
    max-width: 560px;
    margin: 17px 0 23px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.sleep-comfort-heading p {
    max-width: 500px;
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.sleep-comfort-list {
    border-top: 1px solid var(--home-border);
}

.sleep-comfort-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--home-border);
}

.sleep-comfort-list article > span {
    color: #9a7446;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.sleep-comfort-list h3 {
    margin: 0 0 8px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.sleep-comfort-list p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   SLEEP AND CUISINE
========================================================= */

.sleep-cuisine-section {
    padding: 125px 0;
    overflow: hidden;
    background: #fff;
}

.sleep-cuisine-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);
    gap: clamp(55px, 7vw, 100px);
    align-items: center;
}

.sleep-cuisine-images {
    position: relative;
    min-height: 690px;
}

.sleep-cuisine-image-main,
.sleep-cuisine-image-secondary {
    margin: 0;
    overflow: hidden;
}

.sleep-cuisine-image-main {
    width: 78%;
    height: 630px;
    border-radius: 24px;
}

.sleep-cuisine-image-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 340px;
    border: 10px solid #fff;
    border-radius: 20px;
    box-shadow: var(--home-shadow);
}

.sleep-cuisine-images img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sleep-cuisine-content {
    max-width: 650px;
}

.sleep-cuisine-content h2 {
    max-width: 610px;
    margin: 17px 0 24px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.2rem, 5.3vw, 5.5rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.sleep-cuisine-content .story-lead {
    margin: 0 0 18px;
    color: var(--home-green-deep);
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.42;
}

.sleep-cuisine-content > p:not(.story-lead) {
    margin: 0;
    color: var(--home-text-soft);
    line-height: 1.78;
}

.sleep-cuisine-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 34px;
}

.sleep-cuisine-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    color: var(--home-green-deep);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   BEYOND THE STAY
========================================================= */

.sleep-experience-section {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    padding: 125px 0;
    overflow: hidden;
    background: #103429;
}

.sleep-experience-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sleep-experience-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 30, 23, 0.96) 0%,
            rgba(6, 30, 23, 0.86) 44%,
            rgba(6, 30, 23, 0.54) 74%,
            rgba(6, 30, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 24, 18, 0.15),
            rgba(5, 24, 18, 0.64)
        );
}

.sleep-experience-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.sleep-experience-content h2 {
    max-width: 800px;
    margin: 17px 0 24px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.sleep-experience-content > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.sleep-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 66px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sleep-experience-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sleep-experience-grid article:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sleep-experience-grid article:nth-child(even) {
    padding-left: 36px;
}

.sleep-experience-grid article > span {
    color: #d7ae72;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.sleep-experience-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.1;
}

.sleep-experience-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.65;
}


/* =========================================================
   BOOKING GUIDANCE
========================================================= */

.sleep-booking-guidance-section {
    padding: 125px 0;
    background: #fff;
}

.sleep-booking-guidance-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 65px;
    padding: 62px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.06),
            transparent 32%
        ),
        var(--home-green-deep);
    color: #fff;
}

.sleep-booking-guidance-panel h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.sleep-booking-guidance-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.sleep-booking-guidance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 28px 0;
}

.sleep-booking-guidance-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}


/* =========================================================
   SLEEP FINAL CTA
========================================================= */

.sleep-final-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: 115px 0;
    overflow: hidden;
    background: #0d3025;
}

.sleep-final-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sleep-final-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 23, 0.95) 0%,
            rgba(7, 31, 23, 0.76) 52%,
            rgba(7, 31, 23, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 31, 23, 0.12),
            rgba(7, 31, 23, 0.58)
        );
}

.sleep-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.sleep-final-content h2 {
    max-width: 790px;
    margin: 18px 0 25px;
    color: #fff;
    font-family:
        var(--heading-font, "Cormorant Garamond"),
        Georgia,
        serif;
    font-size: clamp(3.5rem, 6.2vw, 6.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.sleep-final-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.8;
}

.sleep-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   SLEEP ACCESSIBILITY
========================================================= */

.sleep-choice-actions a:focus-visible,
.sleep-featured-content a:focus-visible,
.sleep-cuisine-content a:focus-visible,
.sleep-experience-content a:focus-visible,
.sleep-booking-guidance-panel a:focus-visible,
.sleep-final-actions a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--home-green-deep);
}


/* =========================================================
   SLEEP — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .sleep-introduction-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sleep-featured-layout,
    .sleep-cuisine-grid {
        gap: 55px;
    }

    .sleep-choice-card,
    .sleep-choice-card.sleep-image-right {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   SLEEP — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .sleep-introduction-section,
    .sleep-featured-section,
    .sleep-choices-section,
    .sleep-comfort-section,
    .sleep-cuisine-section,
    .sleep-booking-guidance-section {
        padding: 96px 0;
    }

    .sleep-introduction-grid,
    .sleep-featured-layout,
    .sleep-comfort-layout,
    .sleep-cuisine-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .sleep-comfort-heading {
        position: static;
    }

    .sleep-featured-image,
    .sleep-featured-image img {
        min-height: 560px;
    }

    .sleep-choice-card,
    .sleep-choice-card.sleep-image-right {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sleep-choice-card.sleep-image-right .sleep-choice-image {
        order: 0;
    }

    .sleep-choice-image,
    .sleep-choice-image img {
        min-height: 520px;
    }

    .sleep-cuisine-images {
        max-width: 760px;
        min-height: 630px;
    }

    .sleep-cuisine-image-main {
        height: 570px;
    }

    .sleep-experience-section {
        min-height: auto;
        padding: 96px 0;
    }

    .sleep-booking-guidance-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px;
    }

    .sleep-final-section {
        min-height: 650px;
        padding: 96px 0;
    }
}


/* =========================================================
   SLEEP — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .sleep-hero .inner-image-hero-background {
        background-position: 64% center;
    }

    .sleep-introduction-section,
    .sleep-featured-section,
    .sleep-choices-section,
    .sleep-comfort-section,
    .sleep-cuisine-section,
    .sleep-booking-guidance-section {
        padding: 78px 0;
    }

    .sleep-introduction-features {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .sleep-introduction-features > div {
        min-height: 175px;
    }

    .sleep-featured-image,
    .sleep-featured-image img {
        min-height: 430px;
    }

    .sleep-choice-list {
        gap: 24px;
        margin-top: 48px;
    }

    .sleep-choice-card {
        border-radius: 22px;
    }

    .sleep-choice-image,
    .sleep-choice-image img {
        min-height: 390px;
    }

    .sleep-choice-content {
        padding: 36px 27px 40px;
    }

    .sleep-choice-heading {
        grid-template-columns: 38px 1fr;
        gap: 14px;
    }

    .sleep-choice-details {
        grid-template-columns: 1fr;
    }

    .sleep-choice-details > div,
    .sleep-choice-details > div:nth-child(even) {
        padding: 18px 0;
        border-left: 0;
    }

    .sleep-choice-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sleep-choice-actions .btn {
        width: 100%;
    }

    .sleep-comfort-list article {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .sleep-cuisine-images {
        min-height: 530px;
    }

    .sleep-cuisine-image-main {
        width: 86%;
        height: 480px;
    }

    .sleep-cuisine-image-secondary {
        width: 48%;
        height: 260px;
        border-width: 7px;
    }

    .sleep-experience-section {
        padding: 86px 0;
    }

    .sleep-experience-overlay,
    .sleep-final-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 31, 23, 0.22) 0%,
                rgba(7, 31, 23, 0.7) 46%,
                rgba(7, 31, 23, 0.98) 100%
            );
    }

    .sleep-experience-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .sleep-experience-grid article,
    .sleep-experience-grid article:nth-child(odd),
    .sleep-experience-grid article:nth-child(even) {
        padding: 25px 0;
        border-right: 0;
    }

    .sleep-booking-guidance-panel {
        padding: 34px 27px;
        border-radius: 22px;
    }

    .sleep-final-section {
        min-height: 680px;
        padding: 86px 0;
    }

    .sleep-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sleep-final-actions .btn {
        width: 100%;
    }
}


/* =========================================================
   SLEEP — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .sleep-featured-image,
    .sleep-featured-image img {
        min-height: 360px;
    }

    .sleep-choice-image,
    .sleep-choice-image img {
        min-height: 320px;
    }

    .sleep-choice-content {
        padding: 31px 22px 35px;
    }

    .sleep-choice-heading h3 {
        font-size: 2.65rem;
    }

    .sleep-cuisine-images {
        min-height: 455px;
    }

    .sleep-cuisine-image-main {
        width: 90%;
        height: 410px;
    }

    .sleep-cuisine-image-secondary {
        width: 52%;
        height: 215px;
    }

    .sleep-empty-state {
        padding: 52px 24px;
    }

    .sleep-booking-guidance-panel h2 {
        font-size: 2.8rem;
    }

    .sleep-final-content h2 {
        font-size: 3.6rem;
    }
}


/* =========================================================
   SLEEP — REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sleep-featured-image img,
    .sleep-choice-image img {
        transition: none;
    }

    .sleep-featured-image:hover img,
    .sleep-choice-card:hover .sleep-choice-image img {
        transform: none;
    }
}

/* Palm Grove Hideaway — shared policy page styles */

.policy-page {
  --policy-ink: #193326;
  --policy-muted: #667268;
  --policy-green: #173c2a;
  --policy-accent: #b98a4a;
  --policy-paper: #f7f4ec;
  --policy-line: rgba(25, 51, 38, 0.15);
  background: #fffdf8;
  color: var(--policy-ink);
}

.policy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(10rem, 18vw, 14rem) 0 clamp(5rem, 9vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(185, 138, 74, 0.2), transparent 28rem),
    linear-gradient(135deg, #102b1e 0%, #1c4933 100%);
}

.policy-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -16rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025),
              0 0 0 10rem rgba(255, 255, 255, 0.018);
}

.policy-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: linear-gradient(115deg, transparent 48%, rgba(255,255,255,.08) 49%, transparent 50%);
  background-size: 52px 52px;
  mask-image: linear-gradient(to left, #000, transparent 70%);
}

.policy-hero-inner { max-width: 880px; }

.policy-hero h1 {
  max-width: 760px;
  margin: 0.45rem 0 1.25rem;
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 6.75rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.policy-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.policy-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-meta::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--policy-accent);
}

.policy-meta strong { color: #fff; font-weight: 600; }

.policy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 800px);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  justify-content: center;
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.policy-sidebar { position: sticky; top: 8.5rem; }

.policy-nav {
  padding: 1.5rem 0 1.5rem 1.35rem;
  border-left: 1px solid var(--policy-line);
}

.policy-nav-title {
  display: block;
  margin-bottom: 1rem;
  color: var(--policy-accent);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-nav ol { margin: 0; padding: 0; list-style: none; }
.policy-nav li + li { margin-top: 0.18rem; }

.policy-nav a {
  display: block;
  padding: 0.38rem 0;
  color: var(--policy-muted);
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.policy-nav a:hover,
.policy-nav a:focus-visible { color: var(--policy-green); transform: translateX(3px); }

.policy-content { min-width: 0; }

.policy-introduction {
  margin-bottom: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--policy-line);
}

.policy-introduction p,
.policy-section p,
.policy-section li {
  color: var(--policy-muted);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.85;
}

.policy-introduction .policy-lead {
  margin-top: 0;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.48;
}

.policy-section {
  position: relative;
  scroll-margin-top: 8rem;
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
}

.policy-section + .policy-section {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--policy-line);
}

.policy-section-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--policy-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.policy-section h2 {
  max-width: 650px;
  margin: 0 0 1.5rem;
  color: var(--policy-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.policy-section p { margin: 0 0 1.2rem; }
.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.policy-section li {
  position: relative;
  padding-left: 1.55rem;
}

.policy-section li + li { margin-top: 0.65rem; }

.policy-section li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--policy-accent);
}

.policy-section a:not(.btn) {
  color: var(--policy-green);
  text-decoration-color: rgba(23, 60, 42, 0.3);
  text-underline-offset: 0.2em;
}

.policy-note {
  margin: 2rem 0;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-left: 3px solid var(--policy-accent);
  background: var(--policy-paper);
}

.policy-note strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--policy-ink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-note p { margin: 0; font-size: 0.98rem; }

.policy-contact {
  margin-top: 0;
  padding: clamp(2.25rem, 5vw, 3.5rem) !important;
  border: 0 !important;
  background: var(--policy-paper);
}

.policy-contact address {
  margin: 1.6rem 0 2rem;
  color: var(--policy-muted);
  font-style: normal;
  line-height: 1.8;
}

.policy-closing {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--policy-green);
  color: #fff;
}

.policy-closing-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.policy-closing h2 {
  max-width: 650px;
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
}

@media (max-width: 900px) {
  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; }
  .policy-nav { padding: 1.3rem; border: 1px solid var(--policy-line); background: var(--policy-paper); }
  .policy-nav ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.1rem 1.2rem; }
}

@media (max-width: 600px) {
  .policy-hero { padding-top: 8.5rem; }
  .policy-meta { flex-wrap: wrap; }
  .policy-layout { gap: 3.5rem; }
  .policy-nav ol { grid-template-columns: 1fr; }
  .policy-contact { margin-inline: -0.25rem; }
  .policy-closing-inner { align-items: flex-start; flex-direction: column; }
}

@media print {
  .site-header, .site-footer, .policy-sidebar, .policy-closing { display: none !important; }
  .policy-hero { padding: 2rem 0; color: #000; background: none; }
  .policy-hero h1, .policy-hero p, .policy-meta strong { color: #000; }
  .policy-layout { display: block; padding: 2rem 0; }
  .policy-section { break-inside: avoid; }
}


/* Palm Grove Hideaway — shared policy page styles */

.policy-page {
  --policy-ink: #193326;
  --policy-muted: #667268;
  --policy-green: #173c2a;
  --policy-accent: #b98a4a;
  --policy-paper: #f7f4ec;
  --policy-line: rgba(25, 51, 38, 0.15);
  background: #fffdf8;
  color: var(--policy-ink);
}

.policy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(10rem, 18vw, 14rem) 0 clamp(5rem, 9vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(185, 138, 74, 0.2), transparent 28rem),
    linear-gradient(135deg, #102b1e 0%, #1c4933 100%);
}

.policy-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -16rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025),
              0 0 0 10rem rgba(255, 255, 255, 0.018);
}

.policy-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: linear-gradient(115deg, transparent 48%, rgba(255,255,255,.08) 49%, transparent 50%);
  background-size: 52px 52px;
  mask-image: linear-gradient(to left, #000, transparent 70%);
}

.policy-hero-inner { max-width: 880px; }

.policy-hero h1 {
  max-width: 760px;
  margin: 0.45rem 0 1.25rem;
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 6.75rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.policy-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.policy-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-meta::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--policy-accent);
}

.policy-meta strong { color: #fff; font-weight: 600; }

.booking-policy-summary {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.booking-policy-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(16, 43, 30, 0.12);
}

.booking-summary-card {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.booking-summary-card + .booking-summary-card {
  border-left: 1px solid var(--policy-line);
}

.booking-summary-card span,
.booking-time-panel span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--policy-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-summary-card strong {
  display: block;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 400;
  line-height: 1.25;
}

.booking-summary-card small {
  display: block;
  margin-top: 0.45rem;
  color: var(--policy-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.booking-summary-card a {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--policy-green);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 800px);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  justify-content: center;
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.policy-sidebar { position: sticky; top: 8.5rem; }

.policy-nav {
  padding: 1.5rem 0 1.5rem 1.35rem;
  border-left: 1px solid var(--policy-line);
}

.policy-nav-title {
  display: block;
  margin-bottom: 1rem;
  color: var(--policy-accent);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-nav ol { margin: 0; padding: 0; list-style: none; }
.policy-nav li + li { margin-top: 0.18rem; }

.policy-nav a {
  display: block;
  padding: 0.38rem 0;
  color: var(--policy-muted);
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.policy-nav a:hover,
.policy-nav a:focus-visible { color: var(--policy-green); transform: translateX(3px); }

.policy-content { min-width: 0; }

.policy-introduction {
  margin-bottom: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--policy-line);
}

.policy-introduction p,
.policy-section p,
.policy-section li {
  color: var(--policy-muted);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.85;
}

.policy-introduction .policy-lead {
  margin-top: 0;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.48;
}

.policy-section {
  position: relative;
  scroll-margin-top: 8rem;
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
}

.policy-section + .policy-section {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--policy-line);
}

.policy-section-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--policy-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.policy-section h2 {
  max-width: 650px;
  margin: 0 0 1.5rem;
  color: var(--policy-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.policy-section p { margin: 0 0 1.2rem; }
.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.policy-section li {
  position: relative;
  padding-left: 1.55rem;
}

.policy-section li + li { margin-top: 0.65rem; }

.policy-section li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--policy-accent);
}

.policy-section a:not(.btn) {
  color: var(--policy-green);
  text-decoration-color: rgba(23, 60, 42, 0.3);
  text-underline-offset: 0.2em;
}

.policy-note {
  margin: 2rem 0;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-left: 3px solid var(--policy-accent);
  background: var(--policy-paper);
}

.policy-note strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--policy-ink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-note p { margin: 0; font-size: 0.98rem; }

.booking-time-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 2rem;
  background: var(--policy-line);
  border: 1px solid var(--policy-line);
}

.booking-time-panel > div {
  padding: clamp(1.4rem, 4vw, 2rem);
  background: var(--policy-paper);
}

.booking-time-panel strong {
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 400;
}

.policy-contact {
  margin-top: 0;
  padding: clamp(2.25rem, 5vw, 3.5rem) !important;
  border: 0 !important;
  background: var(--policy-paper);
}

.policy-contact address {
  margin: 1.6rem 0 2rem;
  color: var(--policy-muted);
  font-style: normal;
  line-height: 1.8;
}

.policy-contact-actions {
  display: flex;
  gap: 1.25rem 1.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.policy-text-link {
  color: var(--policy-green);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none !important;
}

.policy-closing {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--policy-green);
  color: #fff;
}

.policy-closing-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.policy-closing h2 {
  max-width: 650px;
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
}

@media (max-width: 900px) {
  .booking-policy-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-summary-card:nth-child(3) { border-left: 0; }
  .booking-summary-card:nth-child(n+3) { border-top: 1px solid var(--policy-line); }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; }
  .policy-nav { padding: 1.3rem; border: 1px solid var(--policy-line); background: var(--policy-paper); }
  .policy-nav ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.1rem 1.2rem; }
}

@media (max-width: 600px) {
  .policy-hero { padding-top: 8.5rem; }
  .policy-meta { flex-wrap: wrap; }
  .booking-policy-summary { margin-top: 0; }
  .booking-policy-summary-grid { grid-template-columns: 1fr; box-shadow: none; }
  .booking-summary-card + .booking-summary-card { border-left: 0; border-top: 1px solid var(--policy-line); }
  .booking-time-panel { grid-template-columns: 1fr; }
  .policy-layout { gap: 3.5rem; }
  .policy-nav ol { grid-template-columns: 1fr; }
  .policy-contact { margin-inline: -0.25rem; }
  .policy-closing-inner { align-items: flex-start; flex-direction: column; }
}

@media print {
  .site-header, .site-footer, .policy-sidebar, .policy-closing { display: none !important; }
  .policy-hero { padding: 2rem 0; color: #000; background: none; }
  .policy-hero h1, .policy-hero p, .policy-meta strong { color: #000; }
  .policy-layout { display: block; padding: 2rem 0; }
  .policy-section { break-inside: avoid; }
}


/* Privacy page additions — load after palm_grove_policy_pages.css */

.privacy-principles {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.privacy-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(16, 43, 30, 0.12);
}

.privacy-principle {
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
}

.privacy-principle + .privacy-principle {
  border-left: 1px solid var(--policy-line);
}

.privacy-principle > span,
.privacy-data-card > span,
.privacy-request-steps span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--policy-accent);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-principle strong {
  display: block;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.3;
}

.privacy-principle p {
  margin: 0.65rem 0 0;
  color: var(--policy-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.privacy-definition {
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--policy-line);
  background: #fff;
}

.privacy-definition strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.privacy-definition p { margin: 0; font-size: 0.95rem; }

.privacy-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 2rem 0;
  border: 1px solid var(--policy-line);
  background: var(--policy-line);
}

.privacy-data-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: #fffdf8;
}

.privacy-data-card h3 {
  margin: 0 0 0.7rem;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.3;
}

.privacy-data-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.privacy-request-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 2rem 0;
  background: var(--policy-line);
  border: 1px solid var(--policy-line);
}

.privacy-request-steps > div {
  padding: clamp(1.35rem, 3vw, 1.9rem);
  background: var(--policy-paper);
}

.privacy-request-steps strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.privacy-request-steps p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.privacy-cookie-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.privacy-cookie-list > div {
  padding: 1.35rem 1.45rem;
  border-left: 2px solid var(--policy-accent);
  background: var(--policy-paper);
}

.privacy-cookie-list strong {
  color: var(--policy-ink);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-cookie-list p {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.privacy-contact {
  box-shadow: inset 0 3px 0 var(--policy-accent);
}

@media (max-width: 900px) {
  .privacy-principles-grid { grid-template-columns: 1fr; }
  .privacy-principle + .privacy-principle { border-top: 1px solid var(--policy-line); border-left: 0; }
  .privacy-request-steps { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .privacy-principles { margin-top: 0; }
  .privacy-principles-grid { box-shadow: none; }
  .privacy-data-grid,
  .privacy-cookie-list { grid-template-columns: 1fr; }
}

@media print {
  .privacy-principles { margin: 0; }
  .privacy-principles-grid { box-shadow: none; border: 1px solid #ccc; }
}


/* Disclaimer page additions — load after palm_grove_policy_pages.css */

.disclaimer-overview {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.disclaimer-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(16, 43, 30, 0.12);
}

.disclaimer-overview article {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.disclaimer-overview article + article {
  border-left: 1px solid var(--policy-line);
}

.disclaimer-overview article > span,
.disclaimer-callout > span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--policy-accent);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.disclaimer-overview strong {
  display: block;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
}

.disclaimer-overview p {
  margin: 0.55rem 0 0;
  color: var(--policy-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.disclaimer-callout {
  position: relative;
  margin: 2rem 0;
  padding: clamp(1.7rem, 4vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(185, 138, 74, 0.35);
  background: linear-gradient(135deg, #f7f4ec, #fffdf8);
}

.disclaimer-callout::after {
  content: "i";
  position: absolute;
  right: 1.5rem;
  bottom: -2.7rem;
  color: rgba(185, 138, 74, 0.09);
  font-family: Georgia, serif;
  font-size: 9rem;
  font-style: italic;
  line-height: 1;
}

.disclaimer-callout p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  line-height: 1.55;
}

.disclaimer-status-key {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 2rem 0 0;
  border: 1px solid var(--policy-line);
  background: var(--policy-line);
}

.disclaimer-status-key > div {
  position: relative;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  background: #fffdf8;
}

.status-dot {
  display: block;
  width: 0.62rem;
  height: 0.62rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
}

.status-confirmed { background: #3b7655; }
.status-seasonal { background: var(--policy-accent); }
.status-planned { background: #a3aaa4; }

.disclaimer-status-key strong {
  display: block;
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.disclaimer-status-key p {
  margin: 0.5rem 0 0;
  font-size: 0.84rem;
  line-height: 1.65;
}

.disclaimer-contact {
  box-shadow: inset 0 3px 0 var(--policy-accent);
}

@media (max-width: 900px) {
  .disclaimer-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .disclaimer-overview article:nth-child(3) { border-left: 0; }
  .disclaimer-overview article:nth-child(n+3) { border-top: 1px solid var(--policy-line); }
  .disclaimer-status-key { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .disclaimer-overview { margin-top: 0; }
  .disclaimer-overview-grid { grid-template-columns: 1fr; box-shadow: none; }
  .disclaimer-overview article + article { border-top: 1px solid var(--policy-line); border-left: 0; }
}

@media print {
  .disclaimer-overview { margin: 0; }
  .disclaimer-overview-grid { box-shadow: none; border: 1px solid #ccc; }
  .disclaimer-callout::after { display: none; }
}


/* FAQ page additions — load after palm_grove_policy_pages.css */

.faq-topic-strip {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.faq-topic-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(16, 43, 30, 0.12);
}

.faq-topic-grid a {
  min-width: 0;
  padding: clamp(1.2rem, 2.5vw, 1.8rem) 1rem;
  color: var(--policy-ink);
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.faq-topic-grid a + a { border-left: 1px solid var(--policy-line); }

.faq-topic-grid a:hover,
.faq-topic-grid a:focus-visible { color: #fff; background: var(--policy-green); }

.faq-topic-grid span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--policy-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.faq-topic-grid strong {
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 800px);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  justify-content: center;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.faq-aside { position: sticky; top: 8.5rem; }

.faq-aside-inner {
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid var(--policy-line);
  background: var(--policy-paper);
}

.faq-aside h2 {
  margin: 0.5rem 0 1rem;
  color: var(--policy-ink);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 1.12;
}

.faq-aside p {
  margin: 0 0 1.6rem;
  color: var(--policy-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-content { min-width: 0; }

.faq-group {
  scroll-margin-top: 8rem;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.faq-group + .faq-group {
  padding-top: clamp(4rem, 8vw, 6rem);
  border-top: 1px solid var(--policy-line);
}

.faq-group-heading {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.faq-group-heading > span {
  flex: 0 0 auto;
  margin-top: 0.25rem;
  color: var(--policy-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.faq-group-heading small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--policy-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq-group-heading h2 {
  margin: 0;
  color: var(--policy-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
}

.faq-item { border-top: 1px solid var(--policy-line); }
.faq-item:last-child { border-bottom: 1px solid var(--policy-line); }

.faq-item summary {
  position: relative;
  padding: 1.4rem 3.3rem 1.4rem 0;
  color: var(--policy-ink);
  cursor: pointer;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.45;
  list-style: none;
  transition: color 180ms ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 1.05rem;
  height: 1px;
  background: var(--policy-accent);
  transition: transform 180ms ease;
}

.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-item summary:hover,
.faq-item summary:focus-visible { color: var(--policy-accent); }
.faq-item summary:focus-visible { outline: 2px solid var(--policy-accent); outline-offset: 4px; }

.faq-answer {
  padding: 0 3.5rem 1.6rem 0;
  animation: faq-reveal 180ms ease-out;
}

.faq-answer p {
  margin: 0;
  color: var(--policy-muted);
  font-size: 1rem;
  line-height: 1.82;
}

.faq-answer a {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--policy-green);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration-color: rgba(23, 60, 42, 0.3);
  text-underline-offset: 0.22em;
}

.faq-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--policy-line);
  background: var(--policy-line);
}

.faq-time-grid > div { padding: 1.3rem; background: var(--policy-paper); }

.faq-time-grid span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--policy-accent);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-time-grid strong {
  color: var(--policy-ink);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-help-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-top: 3px solid var(--policy-accent);
  background: var(--policy-paper);
}

.faq-help-card h2 {
  margin: 0.5rem 0 1rem;
  color: var(--policy-ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 400;
  line-height: 1.1;
}

.faq-help-card p {
  max-width: 620px;
  margin: 0 0 1.7rem;
  color: var(--policy-muted);
  line-height: 1.8;
}

.faq-help-actions {
  display: flex;
  gap: 1.2rem 1.7rem;
  align-items: center;
  flex-wrap: wrap;
}

@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-0.3rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { animation: none; }
}

@media (max-width: 900px) {
  .faq-topic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq-topic-grid a:nth-child(4) { border-left: 0; }
  .faq-topic-grid a:nth-child(n+4) { border-top: 1px solid var(--policy-line); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
}

@media (max-width: 600px) {
  .faq-topic-strip { margin-top: 0; }
  .faq-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); box-shadow: none; }
  .faq-topic-grid a:nth-child(odd) { border-left: 0; }
  .faq-topic-grid a:nth-child(n+3) { border-top: 1px solid var(--policy-line); }
  .faq-answer { padding-right: 0.5rem; }
  .faq-time-grid { grid-template-columns: 1fr; }
}

@media print {
  .faq-topic-strip, .faq-aside, .faq-help-card { display: none !important; }
  .faq-layout { display: block; padding: 2rem 0; }
  .faq-item > .faq-answer { display: block !important; }
}


/* =========================================================
   HOME — PREMIUM LEVEL 2 TOPIC GRID
   ========================================================= */

.home-topic-navigation {
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.home-topic-navigation-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.home-topic-navigation-header h3 {
  max-width: 690px;
  margin: 0.65rem 0 0;
  color: #183c2b;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.home-topic-navigation-header > p {
  max-width: 550px;
  margin: 0;
  color: #5e685f;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.75;
}

.home-topic-nav {
  width: 100%;
}

.home-topic-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-topic-item {
  min-width: 0;
}

.home-topic-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(230px, 23vw, 310px);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border: 1px solid rgba(31, 63, 45, 0.14);
  border-radius: 2px;
  color: #183c2b;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(241, 238, 225, 0.78)
    );
  box-shadow:
    0 18px 40px rgba(34, 54, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Decorative glow */
.home-topic-link::before {
  position: absolute;
  top: -5rem;
  right: -5rem;
  z-index: -2;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(181, 143, 93, 0.11);
  content: "";
  transition:
    background-color 350ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Dark hover background */
.home-topic-link::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(190, 151, 98, 0.28),
      transparent 42%
    ),
    linear-gradient(145deg, #214c36, #102f21);
  content: "";
  opacity: 0;
  transition: opacity 350ms ease;
}

.home-topic-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.home-topic-copy strong {
  max-width: 240px;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-topic-copy small {
  max-width: 290px;
  color: #69736b;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  transition: color 350ms ease;
}

.home-topic-arrow {
  display: grid;
  align-self: flex-end;
  width: 2.9rem;
  height: 2.9rem;
  margin-top: 2rem;
  place-items: center;
  border: 1px solid rgba(31, 63, 45, 0.28);
  border-radius: 50%;
  color: #214c36;
  font-size: 1rem;
  line-height: 1;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    background-color 350ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-topic-link:hover,
.home-topic-link:focus-visible {
  color: #ffffff;
  border-color: rgba(207, 173, 123, 0.55);
  box-shadow: 0 24px 55px rgba(19, 46, 31, 0.2);
  transform: translateY(-7px);
}

.home-topic-link:hover::before,
.home-topic-link:focus-visible::before {
  background: rgba(216, 181, 131, 0.18);
  transform: scale(1.3);
}

.home-topic-link:hover::after,
.home-topic-link:focus-visible::after {
  opacity: 1;
}

.home-topic-link:hover .home-topic-copy small,
.home-topic-link:focus-visible .home-topic-copy small {
  color: rgba(255, 255, 255, 0.73);
}

.home-topic-link:hover .home-topic-arrow,
.home-topic-link:focus-visible .home-topic-arrow {
  color: #173c2a;
  border-color: #d8b583;
  background-color: #d8b583;
  transform: rotate(45deg);
}

.home-topic-link:focus-visible {
  outline: 3px solid #d8b583;
  outline-offset: 4px;
}

/* Anchor offset for the fixed public header */
#sleep,
#cuisine,
#nature,
#experiences,
#attractions,
#celebrations,
#sustainability,
#ayurveda-spa {
  scroll-margin-top: 7rem;
}

@media (max-width: 1100px) {
  .home-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-topic-link {
    min-height: 245px;
  }
}

@media (max-width: 860px) {
  .home-topic-navigation-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  .home-topic-navigation-header > p {
    max-width: 650px;
  }
}

@media (max-width: 580px) {
  .home-topic-navigation {
    margin-top: 3.25rem;
  }

  .home-topic-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .home-topic-link {
    min-height: 205px;
    padding: 1.6rem;
  }

  .home-topic-copy strong {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .home-topic-copy small {
    font-size: 0.87rem;
  }

  .home-topic-arrow {
    width: 2.6rem;
    height: 2.6rem;
    margin-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-topic-link,
  .home-topic-link::before,
  .home-topic-link::after,
  .home-topic-copy small,
  .home-topic-arrow {
    transition: none;
  }
}

/* =========================================================
   HOME — SLEEP CATEGORY GRID
   ========================================================= */

.home-stay-section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 9rem);
  background: #f4f1e8;
  overflow: hidden;
}

.home-stay-section::before {
  position: absolute;
  top: -10rem;
  right: -12rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: rgba(176, 143, 97, 0.08);
  content: "";
  pointer-events: none;
}

.home-sleep-category-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(2.75rem, 5vw, 5rem);
}

.home-sleep-category-card {
  min-width: 0;
}

.home-sleep-category-card-wide {
  grid-column: 1 / -1;
}

.home-sleep-category-link {
  position: relative;
  display: grid;
  grid-template-rows: minmax(300px, 38vw) 1fr;
  height: 100%;
  color: #183c2b;
  background: #fffdf8;
  box-shadow: 0 20px 50px rgba(29, 51, 37, 0.08);
  text-decoration: none;
  overflow: hidden;
  transition:
    box-shadow 400ms ease,
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-sleep-category-card-wide .home-sleep-category-link {
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  grid-template-rows: minmax(430px, 42vw);
}

.home-sleep-category-image {
  position: relative;
  min-height: 0;
  background: #d9ddcf;
  overflow: hidden;
}

.home-sleep-category-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(14, 40, 27, 0.24),
      transparent 45%
    );
  content: "";
  pointer-events: none;
}

.home-sleep-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 500ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-sleep-category-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.75rem, 3.5vw, 3rem);
}

.home-sleep-category-content .stay-category {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: #9a7447;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-sleep-category-content .stay-category::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.home-sleep-category-content h3 {
  max-width: 560px;
  margin: 0;
  color: #183c2b;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-sleep-category-content p {
  max-width: 590px;
  margin: 1.15rem 0 0;
  color: #657068;
  font-size: 0.96rem;
  line-height: 1.75;
}

.home-sleep-category-action {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  margin-top: auto;
  padding-top: 2rem;
  color: #214c36;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-sleep-category-action > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(33, 76, 54, 0.3);
  border-radius: 50%;
  font-size: 0.9rem;
  transition:
    color 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}

.home-sleep-category-link:hover,
.home-sleep-category-link:focus-visible {
  box-shadow: 0 30px 65px rgba(24, 60, 43, 0.17);
  transform: translateY(-7px);
}

.home-sleep-category-link:hover .home-sleep-category-image img,
.home-sleep-category-link:focus-visible .home-sleep-category-image img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.home-sleep-category-link:hover .home-sleep-category-action > span,
.home-sleep-category-link:focus-visible .home-sleep-category-action > span {
  color: #ffffff;
  border-color: #214c36;
  background: #214c36;
  transform: rotate(45deg);
}

.home-sleep-category-link:focus-visible {
  outline: 3px solid #c59a64;
  outline-offset: 5px;
}

.home-stay-section .home-section-action {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

/* Sleep page anchor offset */
#palm-villas,
#nature-chalets,
#tree-house,
#glamping,
#nature-shelters {
  scroll-margin-top: 7rem;
}

@media (max-width: 900px) {
  .home-sleep-category-grid {
    grid-template-columns: 1fr;
  }

  .home-sleep-category-card-wide {
    grid-column: auto;
  }

  .home-sleep-category-card-wide .home-sleep-category-link {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 55vw) 1fr;
  }

  .home-sleep-category-link {
    grid-template-rows: minmax(300px, 55vw) 1fr;
  }
}

@media (max-width: 580px) {
  .home-sleep-category-grid {
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .home-sleep-category-link,
  .home-sleep-category-card-wide .home-sleep-category-link {
    grid-template-rows: minmax(240px, 75vw) 1fr;
  }

  .home-sleep-category-content {
    padding: 1.6rem;
  }

  .home-sleep-category-content h3 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .home-sleep-category-content p {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-sleep-category-link,
  .home-sleep-category-image img,
  .home-sleep-category-action > span {
    transition: none;
  }
}

/* =========================================================
   GALLERY — TOPIC NAVIGATION
========================================================= */

.gallery-topic-navigation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.gallery-topic-navigation a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 1rem;
  align-items: center;
  min-height: 100px;
  padding: 1.25rem;
  border: 1px solid rgba(31, 63, 45, 0.14);
  color: #183c2b;
  background: #fffdf8;
  text-decoration: none;
  transition:
    color 250ms ease,
    border-color 250ms ease,
    background-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.gallery-topic-navigation a:hover,
.gallery-topic-navigation a:focus-visible {
  color: #ffffff;
  border-color: #214c36;
  background: #214c36;
  box-shadow: 0 16px 34px rgba(31, 63, 45, 0.14);
  transform: translateY(-3px);
}

.gallery-topic-navigation a:focus-visible {
  outline: 3px solid #d8b583;
  outline-offset: 3px;
}

.gallery-topic-navigation a > span {
  grid-row: 1 / span 2;
  color: #a27a4c;
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.5rem;
}

.gallery-topic-navigation a:hover > span,
.gallery-topic-navigation a:focus-visible > span {
  color: #e2c499;
}

.gallery-topic-navigation strong {
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.3;
}

.gallery-topic-navigation small {
  color: #758077;
  font-size: 0.76rem;
}

.gallery-topic-navigation a:hover small,
.gallery-topic-navigation a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   GALLERY — TOPIC COLLECTIONS
========================================================= */

.gallery-topic-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  scroll-margin-top: 110px;
}

.gallery-topic-section:nth-of-type(even) {
  background: #f5f0e7;
}

.gallery-topic-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.gallery-topic-title {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: flex-start;
}

.gallery-topic-number {
  padding-top: 0.4rem;
  color: #a27a4c;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.gallery-topic-heading h3 {
  margin: 0.45rem 0 0;
  color: #183c2b;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.gallery-topic-heading > p {
  max-width: 520px;
  margin: 0;
  color: #69746c;
  line-height: 1.8;
}

.gallery-topic-empty {
  padding: 3rem;
  border: 1px solid rgba(31, 63, 45, 0.14);
  text-align: center;
}

.gallery-back-link {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 2rem;
  color: #214c36;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-back-link:hover,
.gallery-back-link:focus-visible {
  color: #9a7043;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .gallery-topic-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-topic-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 620px) {
  .gallery-topic-navigation {
    grid-template-columns: 1fr;
  }

  .gallery-topic-navigation a {
    min-height: 82px;
  }

  .gallery-topic-section {
    padding: 4rem 0;
    scroll-margin-top: 80px;
  }

  .gallery-topic-title {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-topic-navigation a {
    transition: none;
  }
}

/* =========================================================
   HOME — GALLERY TOPIC PREVIEW
========================================================= */

.home-gallery-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 0.85rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.home-gallery-topic-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 2px;
  color: #fff;
  background: #183c2b;
  text-decoration: none;
}

.home-gallery-topic-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.home-gallery-topic-wide {
  grid-column: span 2;
}

.home-gallery-topic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 400ms ease;
}

.home-gallery-topic-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(11, 35, 25, 0.06) 15%,
      rgba(11, 35, 25, 0.78) 100%
    );
  transition: background-color 350ms ease;
}

.home-gallery-topic-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.home-gallery-topic-content small {
  margin-bottom: 0.6rem;
  color: #e3c59b;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.home-gallery-topic-content strong {
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
}

.home-gallery-topic-content > span {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.82;
}

.home-gallery-topic-card:hover img,
.home-gallery-topic-card:focus-visible img {
  filter: saturate(1.05);
  transform: scale(1.055);
}

.home-gallery-topic-card:hover .home-gallery-topic-overlay,
.home-gallery-topic-card:focus-visible .home-gallery-topic-overlay {
  background-color: rgba(18, 58, 41, 0.15);
}

.home-gallery-topic-card:focus-visible {
  outline: 3px solid #d8b583;
  outline-offset: 4px;
}

.home-gallery-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .home-gallery-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }
}

@media (max-width: 640px) {
  .home-gallery-topic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px;
  }

  .home-gallery-topic-featured,
  .home-gallery-topic-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .home-gallery-topic-content {
    padding: 1.35rem;
  }

  .home-gallery-topic-content strong {
    font-size: 2rem;
  }

  .home-gallery-action .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-gallery-topic-card img {
    transition: none;
  }
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(2, minmax(150px, 1fr));
  gap: 3rem;
  align-items: start;
}

.footer-logo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-social-link i {
  font-size: 1rem;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background-color: #fff;
  border-color: #fff;
  color: #183c2f;
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
  }

  .footer-logo-column {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* =========================================================
   SLEEP — CATEGORY NAVIGATION
========================================================= */

.sleep-category-navigation-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fffdf8;
  scroll-margin-top: 110px;
}

.sleep-category-navigation {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: var(--home-border);
}

.sleep-category-navigation a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 210px;
  padding: 1.6rem;
  flex-direction: column;
  color: var(--home-green-deep);
  background: #fff;
  text-decoration: none;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.sleep-category-navigation a:hover,
.sleep-category-navigation a:focus-visible {
  color: #fff;
  background: var(--home-green-deep);
}

.sleep-category-navigation a:focus-visible {
  z-index: 2;
  outline: 3px solid #d8b583;
  outline-offset: -3px;
}

.sleep-category-navigation-number {
  margin-bottom: auto;
  color: #9a7043;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.sleep-category-navigation a:hover
.sleep-category-navigation-number,
.sleep-category-navigation a:focus-visible
.sleep-category-navigation-number {
  color: #e2c499;
}

.sleep-category-navigation strong {
  margin-top: 2.5rem;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.sleep-category-navigation small {
  margin-top: 0.65rem;
  color: var(--home-text-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.sleep-category-navigation a:hover small,
.sleep-category-navigation a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}

.sleep-category-navigation-arrow {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  color: rgba(21, 59, 46, 0.38);
}

.sleep-category-navigation a:hover
.sleep-category-navigation-arrow,
.sleep-category-navigation a:focus-visible
.sleep-category-navigation-arrow {
  color: #e2c499;
}


/* =========================================================
   SLEEP — CATEGORY SECTIONS
========================================================= */

.sleep-category-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  scroll-margin-top: 100px;
}

.sleep-category-light {
  background: #fffdf8;
}

.sleep-category-soft {
  background: #f4efe5;
}

.sleep-category-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(300px, 0.55fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.sleep-category-title-group {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: flex-start;
}

.sleep-category-number {
  padding-top: 0.45rem;
  color: #9a7043;
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.sleep-category-heading h2 {
  margin: 0.5rem 0 0;
  color: var(--home-green-deep);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.sleep-category-subtitle {
  margin: 1rem 0 0;
  color: #9a7043;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sleep-category-introduction p {
  margin: 0 0 1.5rem;
  color: var(--home-text-soft);
  line-height: 1.8;
}


/* =========================================================
   SLEEP — ROOM TYPE CARDS
========================================================= */

.sleep-category-room-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.sleep-category-room-card {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-border);
  background: #fff;
  box-shadow: 0 18px 50px rgba(31, 63, 45, 0.07);
}

.sleep-category-room-card:nth-child(even) {
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);
}

.sleep-category-room-card:nth-child(even)
.sleep-category-room-image {
  order: 2;
}

.sleep-category-room-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #dfe3dc;
}

.sleep-category-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.sleep-category-room-card:hover
.sleep-category-room-image img {
  transform: scale(1.035);
}

.sleep-category-room-status {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: rgba(20, 55, 40, 0.88);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sleep-category-room-content {
  display: flex;
  min-width: 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  flex-direction: column;
  justify-content: center;
}

.sleep-category-room-content h3 {
  margin: 0.55rem 0 1rem;
  color: var(--home-green-deep);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.sleep-category-room-content > p {
  color: var(--home-text-soft);
  line-height: 1.8;
}

.sleep-category-room-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 1.75rem 0;
  border-top: 1px solid var(--home-border);
  border-left: 1px solid var(--home-border);
}

.sleep-category-room-details div {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.sleep-category-room-details dt {
  margin-bottom: 0.35rem;
  color: #9a7043;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sleep-category-room-details dd {
  margin: 0;
  color: var(--home-green-deep);
  font-size: 0.88rem;
  line-height: 1.5;
}

.sleep-category-room-rate {
  display: flex;
  gap: 0.45rem;
  align-items: baseline;
  margin: 0 0 1.5rem;
}

.sleep-category-room-rate span,
.sleep-category-room-rate small {
  color: var(--home-text-soft);
  font-size: 0.75rem;
}

.sleep-category-room-rate strong {
  color: var(--home-green-deep);
  font-size: 1.3rem;
}

.sleep-category-room-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}


/* =========================================================
   SLEEP — EMPTY AND SECTION FOOTER
========================================================= */

.sleep-category-coming-soon {
  max-width: 760px;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.62);
}

.sleep-category-coming-soon h3 {
  margin: 0.65rem 0 1rem;
  color: var(--home-green-deep);
  font-family:
    var(--heading-font, "Cormorant Garamond"),
    Georgia,
    serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
}

.sleep-category-footer {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--home-border);
}

.sleep-category-back-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--home-green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .sleep-category-navigation {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sleep-category-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 850px) {
  .sleep-category-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sleep-category-room-card,
  .sleep-category-room-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .sleep-category-room-card:nth-child(even)
  .sleep-category-room-image {
    order: initial;
  }

  .sleep-category-room-image {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .sleep-category-navigation {
    grid-template-columns: 1fr;
  }

  .sleep-category-navigation a {
    min-height: 155px;
  }

  .sleep-category-room-image {
    min-height: 280px;
  }

  .sleep-category-room-details {
    grid-template-columns: 1fr;
  }

  .sleep-category-room-actions,
  .sleep-category-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .sleep-category-room-actions .btn,
  .sleep-category-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sleep-category-navigation a,
  .sleep-category-room-image img {
    transition: none;
  }
}


/* =========================================================
   AYURVEDA & SPA
========================================================= */


/* =========================================================
   SHARED AYURVEDA UTILITIES
========================================================= */

#ayurveda-introduction,
#ayurveda-topics,
#ayurvedic-consultations,
#ayurvedic-treatments,
#therapeutic-massage,
#herbal-baths-and-steam-therapy,
#yoga-and-meditation,
#wellness-packages {
  scroll-margin-top: 6.5rem;
}

.ayurveda-hero,
.ayurveda-detail-section,
.ayurveda-massage-section,
.ayurveda-mindfulness-section,
.ayurveda-final-section {
  position: relative;
}

.ayurveda-detail-content h2,
.ayurveda-introduction-heading h2,
.ayurveda-planning-panel h2,
.ayurveda-massage-content h2,
.ayurveda-mindfulness-heading h2,
.ayurveda-final-content h2 {
  text-wrap: balance;
}

.ayurveda-detail-content p,
.ayurveda-introduction-content p,
.ayurveda-massage-content p,
.ayurveda-mindfulness-section p,
.ayurveda-planning-section p,
.ayurveda-final-content p {
  line-height: 1.8;
}


/* =========================================================
   01. HERO
========================================================= */

.ayurveda-hero {
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: #fff;
  background-color: var(--ayurveda-green-dark, #0b2d22);
}

.ayurveda-hero .inner-image-hero-media,
.ayurveda-hero .inner-image-hero-overlay {
  position: absolute;
  inset: 0;
}

.ayurveda-hero .inner-image-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ayurveda-hero .inner-image-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 24, 17, 0.84) 0%,
      rgba(5, 24, 17, 0.64) 42%,
      rgba(5, 24, 17, 0.25) 72%,
      rgba(5, 24, 17, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 22, 16, 0.48) 0%,
      rgba(5, 22, 16, 0.05) 42%,
      rgba(5, 22, 16, 0.55) 100%
    );
}

.ayurveda-hero .inner-image-hero-content {
  position: relative;
  z-index: 2;
  min-height: min(900px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(8rem, 15vh, 11rem);
  padding-bottom: clamp(7rem, 12vh, 9rem);
}

.ayurveda-hero .inner-image-hero-content h1 {
  max-width: 800px;
  margin: 0.65rem 0 1.25rem;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.ayurveda-hero .inner-image-hero-content > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.ayurveda-hero .section-kicker-light {
  color: var(--ayurveda-gold-light, #dfc397);
}

.ayurveda-hero .inner-image-hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.ayurveda-hero .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.ayurveda-hero .btn-outline-light:hover {
  color: var(--ayurveda-green-dark, #0b2d22);
  border-color: #fff;
  background-color: #fff;
}

.ayurveda-hero .inner-image-hero-scroll {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.ayurveda-hero .inner-image-hero-scroll span:last-child {
  font-size: 1.1rem;
}

.ayurveda-hero .inner-image-hero-scroll:hover {
  color: #fff;
  transform: translateY(3px);
}


/* =========================================================
   02. INTRODUCTION
========================================================= */

.ayurveda-introduction-section {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
  background-color: #fff;
}

.ayurveda-introduction-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.ayurveda-introduction-heading {
  position: sticky;
  top: 8rem;
}

.ayurveda-introduction-heading h2 {
  max-width: 570px;
  margin: 0.7rem 0 0;
  color: var(--ayurveda-green-dark, #0b2d22);
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.ayurveda-introduction-content {
  max-width: 760px;
}

.ayurveda-introduction-content p {
  margin: 0 0 1.25rem;
  color: var(--ayurveda-muted, #68736c);
}

.ayurveda-introduction-content .story-lead {
  color: var(--ayurveda-text, #25312a);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.6;
}

.ayurveda-introduction-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--ayurveda-gold, #b98b50);
  background-color: var(--ayurveda-cream-soft, #faf8f3);
}

.ayurveda-introduction-note > span {
  color: var(--ayurveda-gold, #b98b50);
  font-size: 1.15rem;
  line-height: 1.6;
}

.ayurveda-introduction-note p {
  margin: 0;
  color: var(--ayurveda-text, #25312a);
  font-size: 0.92rem;
}


/* =========================================================
   03. TOPIC NAVIGATION
========================================================= */

.ayurveda-topic-navigation-section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  background-color: var(--ayurveda-cream, #f5f1e8);
}

.ayurveda-topic-navigation-section
.section-heading-centered {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.ayurveda-topic-navigation-section
.section-heading-centered h2 {
  margin: 0.7rem 0 1rem;
  color: var(--ayurveda-green-dark, #0b2d22);
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.ayurveda-topic-navigation-section
.section-heading-centered p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ayurveda-muted, #68736c);
  line-height: 1.8;
}

.ayurveda-topic-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
  border-left: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
}

.ayurveda-topic-navigation > a {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  overflow: hidden;
  color: var(--ayurveda-text, #25312a);
  border-right: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
  border-bottom: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
  background-color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.ayurveda-topic-navigation > a::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  z-index: 0;
  background-color: var(--ayurveda-green-dark, #0b2d22);
  transition: height 320ms ease;
}

.ayurveda-topic-navigation > a > * {
  position: relative;
  z-index: 1;
}

.ayurveda-topic-navigation > a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.ayurveda-topic-navigation > a:hover::before {
  height: 100%;
}

.ayurveda-topic-navigation-number {
  color: var(--ayurveda-gold, #b98b50);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ayurveda-topic-navigation-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2.1rem 0 1.6rem;
  color: var(--ayurveda-green, #315a46);
  border: 1px solid currentColor;
  border-radius: 50%;
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.ayurveda-topic-navigation-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ayurveda-topic-navigation strong {
  display: block;
  max-width: 280px;
  font-family: inherit;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.25;
}

.ayurveda-topic-navigation small {
  display: block;
  margin-top: 0.8rem;
  color: var(--ayurveda-muted, #68736c);
  font-size: 0.88rem;
  line-height: 1.7;
  transition: color 220ms ease;
}

.ayurveda-topic-navigation-arrow {
  position: absolute;
  right: 1.6rem;
  top: 1.45rem;
  color: var(--ayurveda-green, #315a46);
  font-size: 1.1rem;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.ayurveda-topic-navigation > a:hover
.ayurveda-topic-navigation-icon,
.ayurveda-topic-navigation > a:hover
.ayurveda-topic-navigation-arrow {
  color: var(--ayurveda-gold-light, #dfc397);
}

.ayurveda-topic-navigation > a:hover small {
  color: rgba(255, 255, 255, 0.72);
}

.ayurveda-topic-navigation > a:hover
.ayurveda-topic-navigation-arrow {
  transform: translate(3px, -3px);
}


/* =========================================================
   04, 05, 07 & 09. DETAIL SECTIONS
========================================================= */

.ayurveda-detail-section {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
  background-color: #fff;
}

.ayurveda-detail-section-soft {
  background-color: var(--ayurveda-cream-soft, #faf8f3);
}

.ayurveda-detail-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.ayurveda-detail-layout-reversed
.ayurveda-detail-image {
  grid-column: 2;
  grid-row: 1;
}

.ayurveda-detail-layout-reversed
.ayurveda-detail-content {
  grid-column: 1;
  grid-row: 1;
}

.ayurveda-detail-image {
  position: relative;
  min-height: clamp(560px, 68vw, 820px);
  overflow: hidden;
  background-color: var(--ayurveda-sage, #aab8a7);
}

.ayurveda-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(6, 28, 20, 0.3) 100%
    );
}

.ayurveda-detail-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 700ms ease;
}

.ayurveda-detail-section:hover
.ayurveda-detail-image img {
  transform: scale(1.025);
}

.ayurveda-detail-image-number {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 3.2rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background-color: rgba(9, 38, 28, 0.3);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ayurveda-detail-content {
  max-width: 740px;
}

.ayurveda-detail-content h2 {
  max-width: 680px;
  margin: 0.65rem 0 1.5rem;
  color: var(--ayurveda-green-dark, #0b2d22);
  font-size: clamp(2.3rem, 4.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.ayurveda-detail-content > p {
  margin: 0 0 1.15rem;
  color: var(--ayurveda-muted, #68736c);
}

.ayurveda-detail-content .story-lead {
  color: var(--ayurveda-text, #25312a);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.65;
}

.ayurveda-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.4rem;
  border-top: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
  border-left: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
}

.ayurveda-feature-grid article {
  min-height: 180px;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border-right: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
  border-bottom: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
  background-color: rgba(255, 255, 255, 0.48);
}

.ayurveda-detail-section:not(.ayurveda-detail-section-soft)
.ayurveda-feature-grid article {
  background-color: var(--ayurveda-cream-soft, #faf8f3);
}

.ayurveda-feature-grid h3 {
  margin: 0 0 0.65rem;
  color: var(--ayurveda-green-dark, #0b2d22);
  font-size: 1rem;
  line-height: 1.35;
}

.ayurveda-feature-grid p {
  margin: 0;
  color: var(--ayurveda-muted, #68736c);
  font-size: 0.85rem;
  line-height: 1.7;
}

.ayurveda-back-link {
  display: inline-flex;
  margin-top: 2rem;
  color: var(--ayurveda-green, #315a46);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.ayurveda-back-link:hover {
  color: var(--ayurveda-gold, #b98b50);
  transform: translateY(-2px);
}

.ayurveda-back-link-light {
  color: rgba(255, 255, 255, 0.8);
}

.ayurveda-back-link-light:hover {
  color: var(--ayurveda-gold-light, #dfc397);
}

.ayurveda-detail-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.ayurveda-detail-actions
.ayurveda-back-link {
  margin-top: 0;
}


/* =========================================================
   06. THERAPEUTIC MASSAGE
========================================================= */

.ayurveda-massage-section {
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: var(--ayurveda-green-dark, #0b2d22);
}

.ayurveda-massage-background,
.ayurveda-massage-overlay {
  position: absolute;
  inset: 0;
}

.ayurveda-massage-background {
  background-position: center;
  background-size: cover;
}

.ayurveda-massage-overlay {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 25, 18, 0.95) 0%,
      rgba(5, 25, 18, 0.83) 43%,
      rgba(5, 25, 18, 0.36) 72%,
      rgba(5, 25, 18, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 25, 18, 0.25),
      rgba(5, 25, 18, 0.5)
    );
}

.ayurveda-massage-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-left: max(
    0px,
    calc((100vw - var(--container-width, 1320px)) / 2)
  );
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(6rem, 10vw, 9rem);
}

.ayurveda-massage-number,
.ayurveda-mindfulness-number {
  display: block;
  margin-bottom: 2rem;
  color: var(--ayurveda-gold-light, #dfc397);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ayurveda-massage-content h2 {
  max-width: 720px;
  margin: 0.65rem 0 1.4rem;
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.ayurveda-massage-content > p {
  max-width: 690px;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.72);
}

.ayurveda-massage-content
.ayurveda-massage-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.65;
}

.ayurveda-massage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
  margin-top: 2.75rem;
  border-top: 1px solid var(--ayurveda-white-border, rgba(255, 255, 255, 0.24));
  border-left: 1px solid var(--ayurveda-white-border, rgba(255, 255, 255, 0.24));
}

.ayurveda-massage-grid article {
  min-height: 200px;
  padding: clamp(1.3rem, 2.5vw, 2rem);
  border-right: 1px solid var(--ayurveda-white-border, rgba(255, 255, 255, 0.24));
  border-bottom: 1px solid var(--ayurveda-white-border, rgba(255, 255, 255, 0.24));
  background-color: rgba(8, 32, 23, 0.2);
  backdrop-filter: blur(7px);
}

.ayurveda-massage-grid article > span {
  color: var(--ayurveda-gold-light, #dfc397);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.ayurveda-massage-grid h3 {
  margin: 1rem 0 0.65rem;
  color: #fff;
  font-size: 1.05rem;
}

.ayurveda-massage-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  line-height: 1.7;
}


/* =========================================================
   08. YOGA AND MEDITATION
========================================================= */

.ayurveda-mindfulness-section {
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: var(--ayurveda-green-dark, #0b2d22);
}

.ayurveda-mindfulness-background,
.ayurveda-mindfulness-overlay {
  position: absolute;
  inset: 0;
}

.ayurveda-mindfulness-background {
  background-position: center;
  background-size: cover;
}

.ayurveda-mindfulness-overlay {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 24, 17, 0.78) 0%,
      rgba(5, 24, 17, 0.48) 48%,
      rgba(5, 24, 17, 0.76) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 24, 17, 0.25),
      rgba(5, 24, 17, 0.64)
    );
}

.ayurveda-mindfulness-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(6rem, 10vw, 9rem);
}

.ayurveda-mindfulness-heading h2 {
  max-width: 670px;
  margin: 0.65rem 0 1.4rem;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: -0.04em;
}

.ayurveda-mindfulness-heading p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.ayurveda-mindfulness-points {
  border-top: 1px solid var(--ayurveda-white-border, rgba(255, 255, 255, 0.24));
}

.ayurveda-mindfulness-points article {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1.3rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--ayurveda-white-border, rgba(255, 255, 255, 0.24));
}

.ayurveda-mindfulness-points article > span {
  padding-top: 0.2rem;
  color: var(--ayurveda-gold-light, #dfc397);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.ayurveda-mindfulness-points h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1.1rem;
}

.ayurveda-mindfulness-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.7;
}


/* =========================================================
   09. WELLNESS PACKAGE LIST
========================================================= */

.ayurveda-package-list {
  margin-top: 2.4rem;
  border-top: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
}

.ayurveda-package-list article {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--ayurveda-border, rgba(36, 67, 51, 0.16));
}

.ayurveda-package-list article > span {
  padding-top: 0.15rem;
  color: var(--ayurveda-gold, #b98b50);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.ayurveda-package-list h3 {
  margin: 0 0 0.4rem;
  color: var(--ayurveda-green-dark, #0b2d22);
  font-size: 1.05rem;
}

.ayurveda-package-list p {
  margin: 0;
  color: var(--ayurveda-muted, #68736c);
  font-size: 0.87rem;
  line-height: 1.7;
}


/* =========================================================
   10. PLANNING YOUR EXPERIENCE
========================================================= */

.ayurveda-planning-section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  background-color: #fff;
}

.ayurveda-planning-panel {
  display: grid;
  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2.5rem, 6vw, 5.5rem);
  color: #fff;
  background-color:
    var(--ayurveda-green-dark, #0b2d22);
}

.ayurveda-planning-panel
.section-kicker-light {
  color: var(--ayurveda-gold-light, #dfc397);
}

.ayurveda-planning-panel h2 {
  max-width: 620px;
  margin: 0.7rem 0 0;
  color: #fff;
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.ayurveda-planning-content > p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.75);
}

.ayurveda-planning-content ul {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ayurveda-white-border, rgba(255, 255, 255, 0.24));
}

.ayurveda-planning-content li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--ayurveda-white-border, rgba(255, 255, 255, 0.24));
  line-height: 1.65;
}

.ayurveda-planning-content li::before {
  content: "✦";
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--ayurveda-gold-light, #dfc397);
  font-size: 0.72rem;
}

.ayurveda-planning-content
.ayurveda-planning-disclaimer {
  margin: 1.8rem 0 0;
  padding: 1.2rem 1.3rem;
  color: rgba(255, 255, 255, 0.72);
  border-left: 2px solid var(--ayurveda-gold-light, #dfc397);
  background-color: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  line-height: 1.75;
}


/* =========================================================
   11. FINAL CTA
========================================================= */

.ayurveda-final-section {
  min-height: min(780px, 90svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: var(--ayurveda-green-dark, #0b2d22);
}

.ayurveda-final-background,
.ayurveda-final-overlay {
  position: absolute;
  inset: 0;
}

.ayurveda-final-background {
  background-position: center;
  background-size: cover;
}

.ayurveda-final-overlay {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 23, 16, 0.44) 0%,
      rgba(5, 23, 16, 0.68) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 23, 16, 0.48),
      rgba(5, 23, 16, 0.25),
      rgba(5, 23, 16, 0.48)
    );
}

.ayurveda-final-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(6rem, 10vw, 9rem);
  text-align: center;
}

.ayurveda-final-content
.section-kicker-light {
  color: var(--ayurveda-gold-light, #dfc397);
}

.ayurveda-final-content h2 {
  margin: 0.7rem auto 1.3rem;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.ayurveda-final-content > p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.ayurveda-final-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.ayurveda-final-actions
.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.ayurveda-final-actions
.btn-outline-light:hover {
  color: var(--ayurveda-green-dark, #0b2d22);
  border-color: #fff;
  background-color: #fff;
}


/* =========================================================
   KEYBOARD ACCESSIBILITY
========================================================= */

.ayurveda-topic-navigation > a:focus-visible,
.ayurveda-back-link:focus-visible,
.ayurveda-hero .inner-image-hero-scroll:focus-visible {
  outline: 3px solid var(--ayurveda-gold-light, #dfc397);
  outline-offset: 4px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {
  .ayurveda-topic-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ayurveda-introduction-layout,
  .ayurveda-detail-layout,
  .ayurveda-planning-panel {
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  .ayurveda-detail-image {
    min-height: 620px;
  }

  .ayurveda-mindfulness-layout {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(0, 1.1fr);
    gap: 4rem;
  }
}


/* =========================================================
   RESPONSIVE — SMALL TABLET
========================================================= */

@media (max-width: 850px) {
  .ayurveda-introduction-layout,
  .ayurveda-detail-layout,
  .ayurveda-mindfulness-layout,
  .ayurveda-planning-panel {
    grid-template-columns: 1fr;
  }

  .ayurveda-introduction-heading {
    position: static;
  }

  .ayurveda-detail-layout-reversed
  .ayurveda-detail-image,
  .ayurveda-detail-layout-reversed
  .ayurveda-detail-content {
    grid-column: auto;
    grid-row: auto;
  }

  .ayurveda-detail-layout-reversed
  .ayurveda-detail-image {
    order: 0;
  }

  .ayurveda-detail-layout-reversed
  .ayurveda-detail-content {
    order: 1;
  }

  .ayurveda-detail-image {
    min-height: min(720px, 105vw);
  }

  .ayurveda-massage-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 25, 18, 0.9),
        rgba(5, 25, 18, 0.62)
      ),
      linear-gradient(
        180deg,
        rgba(5, 25, 18, 0.25),
        rgba(5, 25, 18, 0.72)
      );
  }

  .ayurveda-mindfulness-overlay {
    background-color: rgba(5, 24, 17, 0.68);
  }

  .ayurveda-mindfulness-heading {
    max-width: 700px;
  }

  .ayurveda-mindfulness-points {
    max-width: 700px;
  }

  .ayurveda-planning-panel {
    padding: clamp(2.25rem, 6vw, 4rem);
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 640px) {
  #ayurveda-introduction,
  #ayurveda-topics,
  #ayurvedic-consultations,
  #ayurvedic-treatments,
  #therapeutic-massage,
  #herbal-baths-and-steam-therapy,
  #yoga-and-meditation,
  #wellness-packages {
    scroll-margin-top: 5rem;
  }

  .ayurveda-hero {
    min-height: 820px;
  }

  .ayurveda-hero .inner-image-hero-media img {
    object-position: 58% center;
  }

  .ayurveda-hero .inner-image-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 24, 17, 0.58) 0%,
        rgba(5, 24, 17, 0.4) 35%,
        rgba(5, 24, 17, 0.88) 100%
      );
  }

  .ayurveda-hero .inner-image-hero-content {
    min-height: 820px;
    justify-content: flex-end;
    padding-top: 8rem;
    padding-bottom: 7.5rem;
  }

  .ayurveda-hero .inner-image-hero-content h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .ayurveda-hero .inner-image-hero-actions,
  .ayurveda-final-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .ayurveda-hero .inner-image-hero-actions .btn,
  .ayurveda-final-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ayurveda-hero .inner-image-hero-scroll {
    right: auto;
    left: 1.25rem;
    bottom: 1.5rem;
  }

  .ayurveda-topic-navigation {
    grid-template-columns: 1fr;
  }

  .ayurveda-topic-navigation > a {
    min-height: 285px;
  }

  .ayurveda-feature-grid,
  .ayurveda-massage-grid {
    grid-template-columns: 1fr;
  }

  .ayurveda-feature-grid article,
  .ayurveda-massage-grid article {
    min-height: auto;
  }

  .ayurveda-detail-image {
    min-height: 125vw;
    max-height: 690px;
  }

  .ayurveda-detail-image-number {
    left: 1rem;
    bottom: 1rem;
  }

  .ayurveda-massage-section,
  .ayurveda-mindfulness-section {
    min-height: auto;
  }

  .ayurveda-massage-background {
    background-position: 64% center;
  }

  .ayurveda-massage-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 25, 18, 0.55) 0%,
        rgba(5, 25, 18, 0.88) 48%,
        rgba(5, 25, 18, 0.97) 100%
      );
  }

  .ayurveda-massage-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .ayurveda-massage-content h2,
  .ayurveda-mindfulness-heading h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .ayurveda-mindfulness-background {
    background-position: 56% center;
  }

  .ayurveda-mindfulness-layout {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .ayurveda-mindfulness-points article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .ayurveda-planning-section {
    padding-right: 0;
    padding-left: 0;
  }

  .ayurveda-planning-section .container {
    width: 100%;
  }

  .ayurveda-planning-panel {
    padding: 3.5rem 1.25rem;
  }

  .ayurveda-detail-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ayurveda-detail-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ayurveda-final-section {
    min-height: 720px;
  }

  .ayurveda-final-background {
    background-position: center;
  }

  .ayurveda-final-content h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .ayurveda-topic-navigation > a {
    min-height: 260px;
    padding: 1.35rem;
  }

  .ayurveda-topic-navigation-icon {
    margin-top: 1.65rem;
    margin-bottom: 1.25rem;
  }

  .ayurveda-introduction-note {
    grid-template-columns: 1fr;
  }

  .ayurveda-package-list article {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .ayurveda-planning-content li {
    padding-left: 1.7rem;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .ayurveda-topic-navigation > a,
  .ayurveda-topic-navigation > a::before,
  .ayurveda-topic-navigation-arrow,
  .ayurveda-detail-image img,
  .ayurveda-back-link,
  .ayurveda-hero .inner-image-hero-scroll {
    transition: none;
  }

  .ayurveda-topic-navigation > a:hover,
  .ayurveda-detail-section:hover
  .ayurveda-detail-image img,
  .ayurveda-back-link:hover,
  .ayurveda-hero .inner-image-hero-scroll:hover {
    transform: none;
  }
}