@import url('https://fonts.googleapis.com/css2?family=Bowlby+One&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --display: 'Bowlby One', 'Impact', sans-serif;
    --condensed: 'Oswald', 'Arial Narrow', sans-serif;
    --sans: 'Inter', -apple-system, system-ui, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    --saffron: #E0651E;
    --saffron-2: #F0823A;
    --saffron-deep: #B84915;

    --green: #1F5A2E;
    --green-2: #2D7A45;

    --ink: #1A1108;
    --ink-2: #3A2A1C;
    --ink-3: #6A5440;

    --paper: #F4EBD7;
    --paper-2: #EADFC4;
    --paper-3: #DBCBA5;

    --blood: #8B1A1A;
    --gold: #C9A227;

    --cream: var(--paper);
    --cream-deep: var(--paper-2);
    --sand: var(--paper-3);
    --gold-bright: var(--saffron-2);
    --wood: var(--ink-2);
    --ink-soft: rgba(58, 42, 28, 0.78);
    --ink-faint: rgba(106, 84, 64, 0.72);
    --navy: var(--green);
    --navy-deep: var(--ink);
    --charcoal: var(--ink);
    --white: #fffaf0;
    --line: rgba(26, 17, 8, 0.18);
    --line-strong: rgba(244, 235, 215, 0.18);
    --shadow-soft: 10px 10px 0 rgba(26, 17, 8, 0.08), 0 22px 54px rgba(26, 17, 8, 0.12);
    --shadow-card: 8px 8px 0 rgba(26, 17, 8, 0.11), 0 20px 48px rgba(26, 17, 8, 0.13);
    --shadow-dark: 10px 10px 0 rgba(224, 101, 30, 0.22), 0 34px 86px rgba(0, 0, 0, 0.34);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --content-width: 1280px;
    --ease: all 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 248, 235, 0.84), transparent 34%),
        linear-gradient(180deg, #fbf7f0 0%, var(--cream) 100%);
    color: var(--ink);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.72;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

body.motion-safe {
    scroll-behavior: auto;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 48px, var(--content-width));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
    color: var(--gold);
    letter-spacing: 0.01em;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.015em;
    text-wrap: balance;
    margin-bottom: 26px;
    color: #3b2e21;
    /* Richer, softer deep luxury brown */
    transition: var(--ease);
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

.section-lead,
p {
    font-size: 0.98rem;
    color: var(--ink-soft);
    letter-spacing: 0.005em;
}

.section-lead {
    /* max-width: 740px; */
    margin-top: 22px;
    line-height: 1.82;
    font-size: 1.1rem;
    color: var(--ink-soft);
    font-weight: 300;
}

.section-shell {
    position: relative;
    padding: 130px 0;
    transition: var(--ease);
}

.section-shell.light {
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.6) 0%, rgba(247, 241, 230, 0.96) 100%);
}

.section-shell.dark {
    color: #f5eee3;
    background:
        radial-gradient(circle at top, rgba(179, 139, 93, 0.14), transparent 28%),
        linear-gradient(180deg, #18202a 0%, #12171d 100%);
}

.inquiry-section {
    padding-top: 130px;
    background:
        radial-gradient(circle at 80% 10%, rgba(198, 161, 110, 0.12), transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(122, 92, 62, 0.14), transparent 55%),
        linear-gradient(180deg, #1b2432 0%, #111721 100%) !important;
    border-bottom: 1px solid rgba(198, 161, 110, 0.04);
}

.section-shell.dark .section-lead,
.section-shell.dark p,
.section-shell.dark .detail,
.section-shell.dark .form-note,
.section-shell.dark .rate-row,
.section-shell.dark .footer-meta {
    color: rgba(255, 252, 245, 0.82);
}

.section-shell.dark .section-title {
    color: #fffdfa;
}

.section-head {
    max-width: 780px;
}

.section-head.centered {
    margin: 0 auto;
    text-align: center;
}

.section-head.centered .eyebrow {
    justify-content: center;
}

.section-head.centered .eyebrow::before {
    display: none;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 22px auto 0;
    color: var(--gold);
    opacity: 0.85;
}

.section-divider span {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(179, 139, 93, 0.08), rgba(179, 139, 93, 0.8), rgba(179, 139, 93, 0.08));
}

.section-divider svg {
    width: 34px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
}

.lotus-watermark {
    position: absolute;
    width: min(38vw, 460px);
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(1);
    transition: var(--ease);
}

.lotus-watermark.right {
    right: -6%;
    top: 12%;
}

.lotus-watermark.left {
    left: -6%;
    bottom: 10%;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #c6a16e 0%, #7a5c3e 100%);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(122, 92, 62, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #d2b385 0%, #8c6a49 100%);
    box-shadow: 0 16px 36px rgba(122, 92, 62, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 232, 197, 0.22);
    color: #fff8ef;
    backdrop-filter: blur(16px);
}

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

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 80px;
    background: linear-gradient(135deg, rgba(24, 32, 42, 0.95), rgba(18, 23, 29, 0.98));
    border: 1px solid rgba(255, 233, 201, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(20px);
    color: #fffdfa;
}

.cta-band .section-title {
    margin-bottom: 0;
    color: #fffdfa;
}

@media (max-width: 991px) {
    .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
        gap: 30px;
    }
}

.btn-dark {
    background: var(--navy-deep);
    color: #f8f1e6;
    box-shadow: 0 14px 28px rgba(31, 39, 48, 0.18);
}

#main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--ease);
}

#main-nav::before {
    content: '';
    position: absolute;
    inset: 10px 18px;
    border-radius: 18px;
    transition: var(--ease);
    z-index: -1;
}

#main-nav.is-scrolled {
    padding: 8px 0;
}

#main-nav.is-scrolled::before {
    background: rgba(255, 253, 248, 0.95);
    border-bottom: 1px solid rgba(43, 36, 29, 0.08);
    box-shadow: 0 12px 34px rgba(43, 36, 29, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.nav-open #main-nav::before {
    background: linear-gradient(180deg, rgba(18, 24, 31, 0.96), rgba(12, 17, 24, 0.92));
    border-color: rgba(255, 237, 205, 0.12);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
}

.logo-text {
    font-family: 'Poiret One', cursive;
    font-size: 1.05rem;
    font-weight: 400;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--sand);
    white-space: nowrap;
    transition: var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none !important;
}

#main-nav.is-scrolled .logo-text {
    color: var(--gold);
    border-left-color: rgba(43, 36, 29, 0.15);
}

@media (max-width: 920px) {
    .logo-text {
        display: none;
    }
}

.logo-wrap img {
    width: auto;
    height: 100px;
    filter: brightness(0) invert(1);
    transition: var(--ease);
}

#main-nav.is-scrolled .logo-wrap img {
    height: 80px;
    filter: none;
}

#main-nav.is-scrolled .nav-links a {
    color: #2B241D;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #f7f0e5;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-bright);
    transform: translateX(-50%) scaleX(0);
    transition: var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-book-btn {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 10px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(198, 161, 110, 0.25);
    border-radius: 12px;
    background: rgba(15, 23, 34, 0.6);
    color: var(--gold);
    backdrop-filter: blur(8px);
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1010;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 1px;
    background: currentColor;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

body.nav-open .nav-toggle {
    background: rgba(15, 23, 34, 0.95);
    border-color: var(--gold);
}

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

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

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

.hero-home {
    min-height: 100svh;
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
    color: #f8f1e6;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-home::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 50% 50%, rgba(179, 139, 93, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.mist {
    position: absolute;
    inset: auto 0 0 0;
    height: 30%;
    z-index: 2;
    background: linear-gradient(to top, rgba(16, 21, 26, 1) 0%, rgba(16, 21, 26, 0) 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    align-items: center;
}

.hero-reference-grid {
    min-height: 540px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-reference-copy {
    width: min(100%, 740px);
    margin: 0 auto;
    text-align: center;
    padding-top: 8vh;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 6.5vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #f8f2e8;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-script {
    margin-top: 4px;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--sand);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(100%, 470px);
    margin: 18px auto 0;
    color: rgba(199, 154, 91, 0.92);
}

.hero-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(199, 154, 91, 0.18), rgba(199, 154, 91, 0.92), rgba(199, 154, 91, 0.18));
}

.hero-divider svg {
    width: 40px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.hero-location {
    margin-top: 16px;
    font-size: 1.06rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: #f8f2e8;
}

.hero-amenities-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 4;
}

.hero-amenities-bar {
    width: min(100%, 900px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 18px 24px;
    border-radius: 20px;
    background: rgba(18, 24, 32, 0.55);
    border: 1px solid rgba(255, 233, 201, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    transition: var(--ease);
}

.hero-amenity-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 16px;
    color: rgba(248, 242, 232, 0.92);
    transition: all 300ms ease;
}

.hero-amenity-item:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.hero-amenity-item+.hero-amenity-item {
    border-left: 1px solid rgba(255, 233, 201, 0.06);
}

.hero-amenity-item svg {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-amenity-item span {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.25;
}

.page-hero {
    height: 300px;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #f8f1e6;
    background: var(--charcoal);
}

.page-hero.about-hero,
.page-hero.inner-hero {
    height: 580px;
    align-items: flex-end;
    padding-bottom: 72px;
    padding-top: 130px;
    box-sizing: border-box;
}

/* Position hero background image absolutely to cover container */
.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Custom cinematic overlay wash for about and inner page heroes */
.page-hero.about-hero::before,
.page-hero.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 34, 0.38) 0%, rgba(15, 23, 34, 0.9) 100%),
        radial-gradient(circle at 30% 30%, rgba(198, 161, 110, 0.15) 0%, transparent 68%);
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 12, 16, 0.26) 0%, rgba(8, 12, 16, 0.84) 100%),
        linear-gradient(90deg, rgba(8, 12, 16, 0.7) 0%, rgba(8, 12, 16, 0.26) 62%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-bottom: 16px;
    color: var(--gold);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--ease);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.page-hero-content .eyebrow {
    margin-bottom: 8px;
    letter-spacing: 0.4em;
    font-size: 0.7rem;
}

.page-hero-content .section-title {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fffdfa;
}

.page-hero-content .section-lead {
    color: rgba(255, 252, 245, 0.85);
    font-size: 0.95rem;
    max-width: 620px;
    margin-top: 0;
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 74px;
    align-items: center;
}

.editorial-grid.reverse {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.editorial-visual {
    position: relative;
}

.stacked-visual {
    min-height: 640px;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.image-frame img,
.room-image img,
.gallery-tile img,
.postcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-frame:hover img,
.room-card:hover .room-image img,
.gallery-tile:hover img,
.postcard:hover img {
    transform: scale(1.05);
}

.frame-main {
    width: 82%;
    height: 580px;
    margin-left: auto;
}

.frame-accent {
    position: absolute;
    left: 0;
    bottom: -42px;
    width: 44%;
    height: 240px;
    border: 12px solid rgba(249, 244, 235, 0.96);
}

.experience-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.experience-list,
.contact-stack {
    display: grid;
    gap: 18px;
}

.experience-item,
.timeline-item,
.value-card,
.contact-card,
.metric {
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(179, 139, 93, 0.08);
    border-radius: var(--radius-md);
    padding: 38px 36px;
    box-shadow: 0 12px 34px rgba(50, 34, 18, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
}

.experience-item:hover,
.timeline-item:hover,
.value-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 28px 56px rgba(107, 78, 49, 0.08);
    border-color: rgba(179, 139, 93, 0.2);
}

.experience-item h3,
.timeline-item h3,
.value-card h3,
.contact-card h3 {
    color: var(--ink);
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.heading-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.6;
    filter: sepia(1) saturate(2) hue-rotate(350deg);
}

.heading-icon-svg {
    width: 45px;
    height: 45px;
    color: #c6a16e;
    /* Brand warm gold */
    stroke-width: 1.35;
    flex-shrink: 0;
    transition: transform 350ms cubic-bezier(0.25, 1, 0.5, 1), color 350ms cubic-bezier(0.25, 1, 0.5, 1);
}

.experience-item:hover .heading-icon-svg {
    transform: scale(1.15) rotate(-5deg);
    color: #7a5c3e;
    /* Shifts to Smoky Bronze on hover */
}

.experience-item p,
.timeline-item p,
.value-card p,
.contact-card p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}

.section-shell.dark .experience-item,
.section-shell.dark .timeline-item,
.section-shell.dark .value-card,
.section-shell.dark .contact-card {
    background: rgba(255, 253, 248, 0.04);
    border-color: rgba(255, 234, 202, 0.14);
    backdrop-filter: blur(8px);
}

.section-shell.dark .experience-item:hover,
.section-shell.dark .timeline-item:hover,
.section-shell.dark .value-card:hover,
.section-shell.dark .contact-card:hover {
    background: rgba(255, 253, 248, 0.07);
    border-color: rgba(255, 234, 202, 0.24);
}

.section-shell.dark .experience-item h3,
.section-shell.dark .timeline-item h3,
.section-shell.dark .value-card h3,
.section-shell.dark .contact-card h3 {
    color: #fffdfa;
}

.section-shell.dark .heading-icon {
    filter: brightness(0) invert(1) opacity(0.5);
    /* White icon for dark sections */
}

.section-shell.dark .experience-item p,
.section-shell.dark .timeline-item p,
.section-shell.dark .value-card p,
.section-shell.dark .contact-card p {
    color: rgba(255, 252, 245, 0.8);
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.room-card {
    background: var(--white);
    border: 1px solid rgba(179, 139, 93, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(56, 38, 20, 0.05);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(56, 38, 20, 0.12);
    border-color: rgba(179, 139, 93, 0.18);
}

.room-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.room-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 18, 24, 0) 60%, rgba(14, 18, 24, 0.2) 100%);
}

.room-card-footer-action {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(198, 161, 110, 0.08);
    width: 100%;
}

.room-card-footer-action .btn {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.room-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.room-price-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    transition: var(--ease);
}

.room-content h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin-top: 10px;
    transition: var(--ease);
}

.room-card:hover .room-content h3 {
    color: var(--gold);
}

.room-card:hover .room-content h3::after {
    width: 60px;
    background: var(--gold-bright);
}

.room-content>p {
    text-align: left;
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 14px 0 16px;
}

.chip {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(179, 139, 93, 0.14);
    background: rgba(220, 200, 163, 0.2);
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.room-rate-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(179, 139, 93, 0.08);
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.rate-row:last-child {
    border-bottom: none;
}

.rate-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rate-row svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.7;
}

.rate-row strong {
    color: var(--wood);
    font-weight: 700;
}

.image-strip {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    margin-top: 58px;
}

.image-strip .image-frame {
    height: 480px;
}

.image-strip-copy,
.pull-quote,
.booking-panel,
.newsletter-panel,
.form-shell {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.image-strip-copy,
.pull-quote,
.form-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 246, 0.82));
    border: 1px solid var(--line);
}

.image-strip-copy {
    align-self: center;
    padding: 42px;
}

.pull-quote {
    padding: 42px;
}

.pull-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.28;
}

.pull-quote cite {
    display: block;
    margin-top: 18px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: 1.18fr 0.9fr 0.92fr;
    gap: 22px;
    align-items: start;
    margin-top: 52px;
}

.gallery-column {
    display: grid;
    gap: 22px;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4 / 3;
}

.gallery-tile.tall {
    aspect-ratio: 4 / 5;
}

.gallery-tile.medium {
    aspect-ratio: 4 / 4.2;
}

.gallery-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 18, 24, 0) 32%, rgba(13, 18, 24, 0.48) 100%);
}

.gallery-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    color: #fff8ef;
}

.gallery-caption span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 248, 239, 0.74);
}

.postcard-grid,
.timeline-grid,
.three-up,
.testimonial-grid,
.metrics-grid {
    display: grid;
    gap: 22px;
}

.postcard-grid,
.three-up,
.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 46px;
}

.timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
}

.metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 38px;
}

.postcard {
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.postcard-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.postcard-body {
    padding: 22px 22px 24px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 234, 202, 0.12);
}

.testimonial-card p {
    color: rgba(245, 238, 227, 0.76);
}

.testimonial-card .guest {
    display: block;
    margin-top: 18px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand);
}

.metric {
    text-align: center;
}

.metric strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 6px;
    color: var(--wood);
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 42px;
    margin-top: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(179, 139, 93, 0.14);
    background: linear-gradient(135deg, rgba(255, 245, 227, 0.92), rgba(239, 226, 203, 0.82));
    box-shadow: var(--shadow-soft);
}

.split-band,
.dual-panel,
.contact-grid {
    display: grid;
    gap: 40px;
    margin-top: 30px;
}

.split-band {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
}

.dual-panel {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
}

.contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
}

.booking-panel,
.newsletter-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)), rgba(15, 20, 26, 0.78);
    border: 1px solid rgba(255, 233, 201, 0.12);
    color: #f9f4eb;
    backdrop-filter: blur(20px);
}

.form-shell.dark-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)), rgba(27, 36, 50, 0.55);
    border: 1px solid rgba(198, 161, 110, 0.15);
    color: #f9f4eb;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 64px rgba(8, 12, 18, 0.25);
}

.booking-panel,
.newsletter-panel,
.form-shell {
    padding: 38px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.form-note {
    margin-top: 12px;
    color: rgb(255 255 255 / 56%);
    font-size: 0.94rem;
}

/* Inquiry Highlights */
.inquiry-highlights {
    margin-top: 48px;
    display: grid;
    gap: 32px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 233, 201, 0.1);
    border-radius: 14px;
    color: var(--gold);
    transition: var(--ease);
}

.highlight-item:hover .highlight-icon {
    background: rgba(179, 139, 93, 0.15);
    transform: translateY(-3px);
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-text h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: #fffdfa;
    font-family: 'Playfair Display', serif;
}

.highlight-text p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 252, 245, 0.7);
    max-width: 320px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.form-grid .field:last-child {
    margin-top: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    transition: var(--ease);
}

.dark-form .field label {
    color: rgba(255, 252, 245, 0.6);
}

.field input,
.field select,
.field textarea,
.newsletter-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(107, 78, 49, 0.08);
    background: rgba(255, 255, 255, 0.65);
    color: var(--ink);
    outline: none;
    transition: all 300ms ease;
    font-size: 1rem;
    /* 16px to prevent iOS zoom */
}

.field textarea {
    min-height: 130px;
    padding: 14px 16px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(43, 36, 29, 0.35);
}

.dark-form .field input,
.dark-form .field select,
.dark-form .field textarea,
.newsletter-panel .newsletter-form input,
.site-footer .newsletter-form input {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 233, 201, 0.08);
    color: #f9f4eb;
}

.dark-form .field input::placeholder,
.dark-form .field textarea::placeholder,
.newsletter-panel .newsletter-form input::placeholder,
.site-footer .newsletter-form input::placeholder {
    color: rgba(249, 244, 235, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.newsletter-form input:focus {
    border-color: rgba(179, 139, 93, 0.65);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(179, 139, 93, 0.06);
}

.dark-form .field input:focus,
.dark-form .field select:focus,
.dark-form .field textarea:focus {
    background: rgba(18, 24, 32, 0.8);
    border-color: rgba(179, 139, 93, 0.8);
    box-shadow: 0 0 0 4px rgba(179, 139, 93, 0.12);
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: #f7f0e5;
    background:
        radial-gradient(circle at bottom, rgba(198, 161, 110, 0.03), transparent 45%),
        linear-gradient(180deg, #0d121b 0%, #07090e 100%);
    padding: 110px 0 40px;
    border-top: 1px solid rgba(198, 161, 110, 0.08);
}

.site-footer .lotus-watermark {
    opacity: 0.05;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
    gap: 28px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 233, 201, 0.1);
}

.footer-brand img {
    width: auto;
    height: 104px;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-nav a,
.footer-newsletter p,
.footer-bottom {
    color: rgba(247, 240, 229, 0.68);
}

.footer-title {
    margin-bottom: 16px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
}

.footer-nav ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-nav a {
    text-decoration: none;
    transition: var(--ease);
}

.footer-nav a:hover {
    color: #fff8ef;
    padding-left: 6px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 233, 201, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff8ef;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--ease);
}

.social-link:hover {
    transform: translateY(-4px);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.newsletter-form .btn {
    min-height: 54px;
    border-radius: 14px;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

body.motion-safe:not(.gsap-active) [data-reveal] {
    transition: opacity 800ms cubic-bezier(0.25, 1, 0.5, 1), transform 1100ms cubic-bezier(0.25, 1, 0.5, 1);
}

body.motion-safe:not(.gsap-active) [data-reveal]:not(.is-visible) {
    opacity: 0;
    transform: translateY(24px);
}

@media (max-width: 1200px) {
    .hero-reference-copy {
        width: min(100%, 660px);
    }

    .editorial-grid,
    .editorial-grid.reverse,
    .image-strip,
    .split-band,
    .dual-panel,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .room-grid,
    .postcard-grid,
    .three-up,
    .testimonial-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-grid,
    .gallery-masonry {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 920px) {
    #main-nav::before {
        inset: 8px 12px;
        border-radius: 16px;
    }

    body.nav-open #main-nav::before {
        opacity: 0;
        /* Hide backing container when full-screen nav overlay is active */
    }

    .logo-wrap img {
        height: 74px;
        transition: filter 0.4s ease, height 0.4s ease;
    }

    #main-nav.is-scrolled .logo-wrap img {
        height: 64px;
    }

    body.nav-open #main-nav.is-scrolled .logo-wrap img {
        filter: brightness(0) invert(1);
        /* Force white logo against dark navy full screen menu */
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #main-nav.is-scrolled .nav-toggle {
        color: #3b2e21;
        /* Elegant dark bronze for high contrast against light scrolled navbar */
        border-color: rgba(59, 46, 33, 0.18);
        background: rgba(59, 46, 33, 0.04);
    }

    body.nav-open #main-nav.is-scrolled .nav-toggle {
        color: var(--gold);
        /* Keep bronze gold toggle visible on full screen dark navy menu */
        border-color: var(--gold);
        background: rgba(15, 23, 34, 0.95);
    }

    .nav-actions .btn {
        display: none;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100svh;
        background: rgba(15, 23, 34, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        /* Tighter premium gap */
        padding: clamp(110px, 16vh, 160px) 24px 60px;
        /* Bring content slightly upward with luxury breathing room */
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    }

    body.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
    }

    body.nav-open .nav-links li {
        opacity: 1;
        transform: translateY(0);
    }

    body.nav-open .nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    body.nav-open .nav-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    body.nav-open .nav-links li:nth-child(3) {
        transition-delay: 0.2s;
    }

    body.nav-open .nav-links li:nth-child(4) {
        transition-delay: 0.25s;
    }

    body.nav-open .nav-links li:nth-child(5) {
        transition-delay: 0.3s;
    }

    body.nav-open .nav-links li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links li+li {
        border-top: none;
    }

    .nav-links a,
    #main-nav.is-scrolled .nav-links a {
        display: inline-block;
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.1rem;
        /* Slightly refined text size */
        font-weight: 400;
        color: #fffdfa !important;
        /* Force warm white text to ensure readable contrast against dark overlay */
        text-decoration: none;
        padding: 6px 0;
        /* Compact premium link padding */
        letter-spacing: 0.04em;
        transition: color 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active,
    #main-nav.is-scrolled .nav-links a:hover,
    #main-nav.is-scrolled .nav-links a.active {
        color: var(--gold) !important;
        /* Warm gold accent for hovered or active items */
    }

    .nav-links a::after {
        display: none;
    }

    .logo-wrap {
        position: relative;
        z-index: 1010;
    }

    .hero-home {
        min-height: 720px;
        padding: 122px 0 134px;
    }

    .hero-reference-copy {
        padding-top: 5vh;
    }

    .hero-amenities-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 620px);
    }

    .hero-amenity-item:nth-child(3) {
        border-left: 0;
    }

    .stacked-visual {
        min-height: auto;
        padding-bottom: 170px;
    }

    .frame-main {
        width: 100%;
        height: 500px;
    }

    .frame-accent {
        left: 50%;
        transform: translateX(-50%);
        width: min(68%, 320px);
    }

    .gallery-column,
    .form-grid,
    .room-grid,
    .postcard-grid,
    .three-up,
    .testimonial-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        grid-template-columns: 1fr;
    }
}

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

    #main-nav {
        padding: 12px 0;
    }

    .logo-wrap img {
        height: 66px;
    }

    .hero-home,
    .page-hero {
        padding-top: 108px;
    }

    .hero-home {
        min-height: 620px;
        padding-bottom: 140px;
    }

    .hero-reference-copy {
        width: min(100%, 420px);
        padding-top: 2vh;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 3.8rem);
        letter-spacing: -0.03em;
    }

    .hero-script {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        margin-top: 2px;
    }

    .section-title {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
        line-height: 1.25;
        margin-top: 10px !important;
        margin-bottom: 12px !important;
    }

    .section-lead {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .eyebrow {
        font-size: 0.72rem !important;
        letter-spacing: 0.2em !important;
    }

    .section-divider {
        margin: 20px auto 24px !important;
    }

    .hero-divider {
        width: min(100%, 300px);
        gap: 10px;
    }

    .hero-divider svg {
        width: 32px;
        height: 12px;
    }

    .hero-location {
        font-size: 0.9rem;
        letter-spacing: 0.3em;
    }

    .page-hero {
        min-height: 400px;
        padding-bottom: 48px;
    }

    .section-shell,
    .site-footer {
        padding: 60px 0 !important;
        /* Compact premium mobile vertical rhythm */
    }

    .booking-panel,
    .newsletter-panel,
    .form-shell,
    .image-strip-copy,
    .pull-quote {
        padding: 28px;
    }

    /* Asymmetric image overlays mobile scale */
    .stacked-visual {
        padding-bottom: 110px !important;
    }

    .frame-main {
        width: 100%;
        height: 300px !important;
        border-radius: 16px;
    }

    .frame-accent {
        left: 50%;
        transform: translateX(-50%);
        width: 160px !important;
        height: 160px !important;
        border-width: 6px !important;
        border-radius: 12px;
        bottom: -32px !important;
    }

    /* First section compact 1-column layouts */
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .experience-list {
        gap: 16px;
    }

    .experience-item {
        padding: 22px 20px !important;
    }

    .experience-item h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .experience-item .detail {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    /* Symmetrical 2x2 amenities bar */
    .hero-amenities-wrap {
        bottom: 16px;
    }

    .hero-amenities-bar {
        width: 100%;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .hero-amenity-item {
        justify-content: center;
        min-height: 0;
        padding: 8px 4px;
    }

    .hero-amenity-item+.hero-amenity-item {
        border-left: 0;
        border-top: 0;
    }

    .hero-amenity-item svg {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .hero-amenity-item span {
        font-size: 0.82rem;
    }

    /* Room grid mobile swiper horizontal carousel */
    .room-grid {
        grid-auto-flow: column;
        grid-auto-columns: 86%;
        grid-template-columns: none;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 4px 2px 16px;
        gap: 16px;
    }

    .room-grid::-webkit-scrollbar {
        display: none;
    }

    .room-card {
        scroll-snap-align: start;
        height: auto;
    }

    /* Section 3 Timeline 2-column mobile grid */
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .timeline-item {
        padding: 18px 16px !important;
        border-radius: 12px !important;
    }

    .timeline-item h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
        margin-top: 0;
    }

    .timeline-item p {
        font-size: 0.82rem;
        line-height: 1.5;
        margin: 0;
    }

    /* Boutique Details / In-Room Luxuries Mobile Grid */
    .amenities-horizontal-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .amenity-highlight-item {
        padding: 12px 8px !important;
    }

    .amenity-highlight-item svg {
        width: 24px !important;
        height: 24px !important;
        margin-bottom: 10px !important;
    }

    .amenity-highlight-item h4 {
        font-size: 1.05rem !important;
        margin-bottom: 6px !important;
    }

    .amenity-highlight-item p {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
    }

    /* Override inline tall landscape height on mobile viewports */
    .editorial-visual .image-frame {
        height: 280px !important;
    }

    /* Premium horizontal cinematic image slider for mobile gallery */
    .gallery-masonry {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        gap: 16px !important;
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 4px 6vw 30px !important;
    }

    .gallery-masonry::-webkit-scrollbar {
        display: none !important;
    }

    .gallery-column {
        display: flex !important;
        flex-direction: row !important;
        gap: 16px !important;
        flex: 0 0 auto !important;
    }

    .gallery-tile {
        flex: 0 0 84vw !important;
        /* ~1.15 cards visible */
        height: clamp(380px, 60vh, 520px) !important;
        margin-bottom: 0 !important;
        border-radius: 16px !important;
        scroll-snap-align: center !important;
        transform: translateZ(0) !important;
        position: relative !important;
    }

    .gallery-tile.tall,
    .gallery-tile.medium {
        height: clamp(380px, 60vh, 520px) !important;
    }

    .gallery-tile img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .gallery-caption {
        padding: 24px !important;
        background: linear-gradient(transparent, rgba(15, 23, 34, 0.9)) !important;
    }

    .gallery-caption span {
        font-size: 0.65rem !important;
    }

    .gallery-caption h3 {
        font-size: 0.94rem !important;
        line-height: 1.3;
    }

    /* Quote sizing optimization */
    .pull-quote blockquote {
        font-size: 1.35rem !important;
        line-height: 1.5;
    }

    .booking-panel .form-title {
        font-size: 1.6rem !important;
    }

    /* Section 6 Inquiry highlights mobile optimize */
    .inquiry-highlights {
        margin-top: 24px !important;
        gap: 18px !important;
    }

    .highlight-item {
        gap: 14px !important;
    }

    .highlight-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .highlight-icon svg {
        width: 18px;
        height: 18px;
    }

    .highlight-text h4 {
        font-size: 0.98rem !important;
        margin-bottom: 4px;
    }

    .highlight-text p {
        font-size: 0.84rem !important;
        line-height: 1.45;
    }

    /* Newsletter stretches cleanly */
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input {
        width: 100% !important;
        text-align: center;
    }

    .newsletter-form .btn {
        width: 100% !important;
        justify-content: center;
    }

    .footer-brand img {
        height: 92px;
    }
}

/* --- Modal / Popup Form --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 18, 24, 0.82);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease);
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: min(100% - 32px, 580px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    position: relative;
    transform: scale(0.95) translateY(30px);
    transition: var(--ease);
    box-shadow: var(--shadow-dark);
}

.mobile-only-link {
    display: none;
}

@media (max-width: 920px) {
    .mobile-only-link {
        display: block;
    }
}

.modal-overlay.is-active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ease);
}

.modal-close:hover {
    background: var(--cream);
    color: var(--ink);
}

.modal-header {
    margin-bottom: 34px;
    text-align: center;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--ink-soft);
}

@media (max-width: 600px) {
    .modal-content {
        padding: 42px 24px;
    }

    .modal-header h2 {
        font-size: 1.8rem;
    }
}

/* Spacing refinements for Visual Journal & Booking Section transition */
.journal-section {
    padding-bottom: 70px;
}

.booking-section {
    padding-top: 65px;
}

@media (max-width: 768px) {
    .journal-section {
        padding-bottom: 50px;
    }

    .booking-section {
        padding-top: 45px;
    }
}

/* --- Premium editorial / brutalist visual refresh --- */
body {
    background:
        linear-gradient(rgba(26, 17, 8, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 17, 8, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 8% 0%, rgba(224, 101, 30, 0.16), transparent 32%),
        linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
    background-size: 34px 34px, 34px 34px, auto, auto;
    color: var(--ink);
    font-family: var(--sans);
}

.eyebrow,
.breadcrumb,
.room-price-eyebrow,
.chip,
.rate-row,
.gallery-caption span,
.testimonial-card .guest,
.pull-quote cite,
.field label,
.footer-title,
.footer-bottom,
.hero-location,
.time-mark,
.path-step-num {
    font-family: var(--mono);
}

.section-title,
.hero-title,
.form-title,
.modal-header h2,
.room-content h3,
.pull-quote blockquote,
.metric strong,
.path-step-title,
.premium-band-card h3,
.highlight-text h4,
.gallery-caption h3 {
    font-family: var(--display) !important;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-title {
    color: var(--ink);
    line-height: 1.04;
    max-width: 980px;
}

.section-title em,
.script,
.hero-script {
    font-family: var(--condensed);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--saffron);
}

.section-lead,
p,
.detail,
.form-note {
    font-family: var(--sans);
    color: var(--ink-soft);
}

.section-shell {
    padding: clamp(84px, 9vw, 132px) 0;
}

.section-shell.light {
    background:
        linear-gradient(rgba(26, 17, 8, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 17, 8, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(244, 235, 215, 0.9), rgba(234, 223, 196, 0.94));
    background-size: 38px 38px, 38px 38px, auto;
}

.section-shell.dark,
.inquiry-section,
.site-footer {
    background:
        radial-gradient(circle at 12% 8%, rgba(224, 101, 30, 0.18), transparent 34%),
        linear-gradient(180deg, var(--ink) 0%, #0f0a05 100%) !important;
}

.section-shell.dark .section-title,
.section-shell.dark .form-title,
.site-footer .footer-title {
    color: var(--paper);
}

.section-shell.dark .eyebrow,
.site-footer .footer-title,
.section-shell.dark .script {
    color: var(--saffron-2);
}

.btn {
    border-radius: 0;
    font-family: var(--condensed);
}

.btn-primary {
    background: var(--saffron-deep);
    color: var(--paper);
    font-family: var(--condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 18px 32px;
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: auto;
}

.btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--ink);
    background: var(--saffron-deep);
}

.btn-pill,
.nav-book-btn {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--condensed);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 22px;
    border: 2px solid var(--ink);
    transition: all 0.18s;
    border-radius: 0;
    min-height: auto;
    box-shadow: none;
}

.btn-pill:hover,
.nav-book-btn:hover {
    background: var(--saffron-deep);
    border-color: var(--saffron-deep);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--ink);
}

.btn-link {
    font-family: var(--condensed);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 6px;
    transition: all 0.2s;
}

.btn-link:hover {
    color: var(--saffron-deep);
    border-color: var(--saffron-deep);
}

.btn-dark,
.btn-secondary {
    background: var(--ink);
    color: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0 rgba(26, 17, 8, 0.32);
}

.btn-dark:hover,
.btn-secondary:hover {
    background: var(--green);
    color: var(--paper);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(26, 17, 8, 0.52);
}

#main-nav::before {
    border-radius: 0;
}

#main-nav.is-scrolled::before {
    background: rgba(244, 235, 215, 0.94);
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 rgba(26, 17, 8, 0.16);
}

#main-nav.is-scrolled .logo-wrap img {
    filter: none;
}

.logo-text,
#main-nav.is-scrolled .logo-text {
    font-family: var(--condensed);
    color: var(--paper);
}

#main-nav.is-scrolled .logo-text {
    color: var(--ink);
}

.primary-nav a,
.nav-links a {
    position: relative;
    font-family: var(--condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--paper);
    padding-bottom: 8px;
    transition: color 0.2s;
}

#main-nav.is-scrolled .primary-nav a,
#main-nav.is-scrolled .nav-links a {
    color: var(--ink);
}

.primary-nav a::after,
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 2px;
    border-radius: 0;
    background: var(--saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.primary-nav a:hover::after,
.primary-nav a.active::after,
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.hero-home::before {
    background:
        linear-gradient(90deg, rgba(26, 17, 8, 0.5) 0%, rgba(26, 17, 8, 0.15) 50%, rgba(26, 17, 8, 0.45) 100%),
        linear-gradient(180deg, rgba(26, 17, 8, 0.3), rgba(26, 17, 8, 0.45));
}

.hero-home::after,
.page-hero.about-hero::before,
.page-hero.inner-hero::before,
.page-hero::before {
    background: linear-gradient(180deg, rgba(26, 17, 8, 0.22), rgba(26, 17, 8, 0.86));
    background-size: auto;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.9;
    color: var(--paper);
    text-shadow: 7px 7px 0 rgba(26, 17, 8, 0.75);
}

.hero-script {
    color: var(--saffron-2);
    text-shadow: 3px 3px 0 rgba(26, 17, 8, 0.82);
}

.hero-divider,
.section-divider {
    color: var(--saffron);
}

.hero-amenities-bar {
    border: 2px solid rgba(244, 235, 215, 0.4);
    border-radius: 0;
    background: rgba(26, 17, 8, 0.72);
    box-shadow: 8px 8px 0 rgba(224, 101, 30, 0.24);
}

.hero-amenity-item span {
    font-family: var(--condensed);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.image-frame,
.room-card,
.gallery-tile,
.postcard,
.testimonial-card,
.experience-item,
.timeline-item,
.value-card,
.contact-card,
.metric,
.pull-quote,
.booking-panel,
.newsletter-panel,
.form-shell,
.modal-content,
.premium-band-card,
.path-step-card {
    border-radius: var(--radius-sm);
}

.image-frame,
.gallery-tile,
.postcard-media {
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 rgba(26, 17, 8, 0.16);
}

.frame-accent {
    border-color: var(--paper);
}

.experience-item,
.timeline-item,
.value-card,
.contact-card,
.metric,
.postcard,
.room-card,
.path-step-card {
    background: rgba(244, 235, 215, 0.9);
    border: 2px solid rgba(26, 17, 8, 0.22);
    box-shadow: 7px 7px 0 rgba(26, 17, 8, 0.08);
}

.experience-item:hover,
.timeline-item:hover,
.value-card:hover,
.contact-card:hover,
.postcard:hover,
.room-card:hover,
.path-step-card:hover {
    transform: translate(-4px, -4px);
    border-color: var(--ink);
    box-shadow: 10px 10px 0 rgba(184, 73, 21, 0.22), 0 26px 54px rgba(26, 17, 8, 0.12);
}

.section-shell.dark .experience-item,
.section-shell.dark .timeline-item,
.section-shell.dark .value-card,
.section-shell.dark .contact-card,
.testimonial-card,
.booking-panel,
.newsletter-panel,
.form-shell.dark-form,
.premium-band-card {
    background: rgba(244, 235, 215, 0.055);
    border: 2px solid rgba(244, 235, 215, 0.16);
    box-shadow: 7px 7px 0 rgba(224, 101, 30, 0.14);
}

.section-shell.dark .experience-item:hover,
.section-shell.dark .timeline-item:hover,
.section-shell.dark .value-card:hover,
.section-shell.dark .contact-card:hover,
.premium-band-card:hover {
    border-color: rgba(244, 235, 215, 0.36);
    box-shadow: 10px 10px 0 rgba(224, 101, 30, 0.22);
}

.heading-icon-svg,
.rate-row svg,
.highlight-icon {
    color: var(--saffron);
    stroke: var(--saffron);
}

.room-content h3 {
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
    color: var(--ink);
}

.room-card:hover .room-content h3 {
    color: var(--saffron-deep);
}

.room-card:hover .room-content h3::after {
    background: var(--saffron-deep);
}

.chip {
    border-radius: 0;
    background: var(--paper-2);
    border-color: rgba(26, 17, 8, 0.22);
    color: var(--ink-2);
}

.cta-band {
    border-radius: 0;
    border: 2px solid var(--ink);
    background: var(--green);
    box-shadow: 9px 9px 0 var(--ink);
}

.pull-quote,
.image-strip-copy,
.form-shell {
    background: rgba(244, 235, 215, 0.92);
    border: 2px solid rgba(26, 17, 8, 0.18);
}

.field input,
.field select,
.field textarea,
.newsletter-form input {
    border-radius: 0;
    border: 2px solid rgba(26, 17, 8, 0.22);
    background: rgba(255, 250, 240, 0.78);
    font-family: var(--sans);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.newsletter-form input:focus {
    border-color: var(--saffron-deep);
    box-shadow: 4px 4px 0 rgba(184, 73, 21, 0.18);
}

.dark-form .field input,
.dark-form .field select,
.dark-form .field textarea,
.newsletter-panel .newsletter-form input,
.site-footer .newsletter-form input {
    border-color: rgba(244, 235, 215, 0.22);
    background: rgba(244, 235, 215, 0.08);
}

.footer-nav a {
    font-family: var(--condensed);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-nav a:hover,
.breadcrumb a:hover {
    color: var(--saffron-2);
}

.social-link {
    border-radius: 0;
    border: 2px solid rgba(244, 235, 215, 0.2);
}

.social-link:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 rgba(244, 235, 215, 0.18);
}

.modal-close {
    border-radius: 0;
    border: 2px solid var(--ink);
}

.modal-close:hover {
    background: var(--saffron-deep);
    color: var(--paper);
    box-shadow: 3px 3px 0 var(--ink);
}

@media (max-width: 920px) {
    .nav-links {
        background:
            linear-gradient(rgba(244, 235, 215, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(244, 235, 215, 0.035) 1px, transparent 1px),
            var(--ink);
        background-size: 40px 40px, 40px 40px, auto;
    }

    .nav-links a,
    #main-nav.is-scrolled .nav-links a {
        font-family: var(--display);
        font-size: clamp(2rem, 9vw, 3.8rem);
        line-height: 0.95;
        color: var(--paper) !important;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .nav-links a:hover,
    .nav-links a.active,
    #main-nav.is-scrolled .nav-links a:hover,
    #main-nav.is-scrolled .nav-links a.active {
        color: var(--saffron-2) !important;
    }

    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }

    .nav-book-btn {
        width: auto;
    }

    .hero-title {
        font-size: clamp(2.7rem, 14vw, 4.5rem);
        line-height: 0.92;
    }

    .section-title {
        font-size: clamp(1.55rem, 8vw, 2.25rem);
    }

    .hero-amenities-bar {
        box-shadow: 5px 5px 0 rgba(224, 101, 30, 0.24);
    }

    .room-card,
    .experience-item,
    .timeline-item,
    .gallery-tile,
    .form-shell,
    .pull-quote,
    .booking-panel {
        box-shadow: 5px 5px 0 rgba(26, 17, 8, 0.08);
    }
}

/* ============================================================
   GALLERY — Luxury Editorial Grid
   ============================================================ */

.gallery-editorial-section {
    padding: clamp(84px, 9vw, 132px) 0;
    background: var(--paper-2);
    position: relative;
}

.gallery-editorial-section .section-head {
    margin-bottom: 60px;
}

/* ——— Main 2-column grid: Hero left | Right column ——— */
.lux-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.lux-right-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lux-pair-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ——— Tile system ——— */
.lux-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 rgba(26, 17, 8, 0.16);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lux-tile-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lux-tile-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.lux-tile:hover .lux-tile-inner img {
    transform: scale(1.05);
}

/* ——— Size variants ——— */
.lux-hero {
    height: 680px;
}

.lux-tall {
    height: 320px;
}

.lux-compact {
    height: 320px;
}

/* ——— Caption overlay ——— */
.lux-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top,
            rgba(26, 17, 8, 0.92) 0%,
            rgba(26, 17, 8, 0.38) 60%,
            transparent 100%);
    color: var(--paper);
    z-index: 2;
}

.lux-eyebrow {
    display: block;
    font-family: var(--condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--saffron-2);
    margin-bottom: 8px;
}

.lux-title {
    font-family: var(--display) !important;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--paper);
    text-transform: uppercase;
    margin: 0;
}

.lux-hero .lux-title {
    font-size: 1.6rem;
}

.lux-compact .lux-caption {
    padding: 30px;
}

.lux-compact .lux-title {
    font-size: 1.3rem;
}

.lux-compact .lux-eyebrow {
    font-size: 11px;
    margin-bottom: 5px;
}

/* ============================================================
   GALLERY — Cinematic Full-Height Slider
   ============================================================ */

.gallery-cinema-section {
    background: var(--ink);
    padding: clamp(84px, 9vw, 132px) 0 0 0;
    position: relative;
}

/* Label above slider */
.cinema-label {
    text-align: center;
    padding: 0 20px 60px;
}

.cinema-heading {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--paper);
    margin: 16px 0 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.cinema-label .eyebrow {
    color: var(--saffron-2);
}

/* Slider container — immersive 70vh */
.cinema-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 520px;
    max-height: 800px;
    overflow: hidden;
    background: var(--ink);
}

.cinema-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.cinema-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.cinema-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.cinema-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cinema-slide.is-active .cinema-slide-img {
    transform: scale(1);
}

/* Dark cinematic overlay */
.cinema-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(26, 17, 8, 0.92));
    z-index: 3;
    pointer-events: none;
}

/* Slide text content */
.cinema-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    z-index: 4;
    max-width: 800px;
}

.cinema-eyebrow {
    display: block;
    font-family: var(--condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--saffron-2);
    margin-bottom: 8px;
}

.cinema-title {
    font-family: var(--display) !important;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--paper);
    text-transform: uppercase;
    margin: 0;
}

/* ——— Premium Arrow Navigation ——— */
.cinema-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(244, 235, 215, 0.25);
    background: rgba(26, 17, 8, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cinema-arrow:hover {
    background: var(--saffron-deep);
    border-color: var(--saffron-deep);
    color: var(--paper);
    transform: translateY(-50%) scale(1.1);
}

.cinema-arrow svg {
    width: 24px;
    height: 24px;
}

.cinema-prev {
    left: 40px;
}

.cinema-next {
    right: 40px;
}

/* ——— Line-style Pagination ——— */
.cinema-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.cinema-pip {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: rgba(244, 235, 215, 0.38);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
}

.cinema-pip.is-active {
    width: 24px;
    background: var(--saffron-2);
    border-radius: 4px;
}

.cinema-pip:hover {
    background: rgba(244, 235, 215, 0.6);
}

/* ——— Slide Counter ——— */
.cinema-counter {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 10;
    font-family: var(--mono);
    font-size: 1rem;
    color: rgba(244, 235, 215, 0.52);
    letter-spacing: 0.1em;
}

.cinema-counter-current {
    color: var(--saffron-2);
    font-weight: 600;
}

.cinema-counter-sep {
    margin: 0 6px;
}

/* ============================================================
   CONTACT PAGE — Dual Grid, Concierge Cards, Path Steps
   ============================================================ */

/* Main two-column contact layout */
.contact-dual-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Concierge narrative left column */
.concierge-narrative {
    /* flex styles configured via inline php layout */
}

/* Concierge contact card links */
.concierge-card-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--ink);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: var(--ease);
    box-shadow: 6px 6px 0 var(--ink);
}

.concierge-card-link:hover {
    border-color: var(--ink);
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 rgba(184, 73, 21, 0.22);
}

.concierge-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(224, 101, 30, 0.08);
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron-deep);
    transition: var(--ease);
}

.concierge-card-link:hover .concierge-icon-box {
    background: var(--saffron-deep);
    color: var(--paper);
}

/* Concierge Process Path steps container */
.path-steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

/* Individual path step card */
.path-step-card {
    position: relative;
    padding: 40px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--ink);
    transition: var(--ease);
}

.path-step-card:hover {
    border-color: var(--ink);
    box-shadow: 9px 9px 0 rgba(184, 73, 21, 0.22);
    transform: translate(-3px, -3px);
}

/* Large roman numeral step number */
.path-step-num {
    display: block;
    font-family: var(--mono);
    font-size: 3.5rem;
    font-weight: 400;
    color: rgba(224, 101, 30, 0.18);
    line-height: 1;
    position: absolute;
    top: 25px;
    right: 30px;
}

.path-step-title {
    font-family: var(--display) !important;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink);
    margin: 15px 0 12px;
    line-height: 1.3;
    text-transform: uppercase;
}

.path-step-desc {
    font-family: var(--sans);
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* Concierge section background */
.concierge-path-section {
    background:
        linear-gradient(rgba(26, 17, 8, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 17, 8, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(244, 235, 215, 0.9), rgba(234, 223, 196, 0.94));
    background-size: 38px 38px, 38px 38px, auto;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}

/* Split band: two staggered premium info cards */
.split-band-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.premium-band-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(244, 235, 215, 0.16);
    background: rgba(244, 235, 215, 0.055);
    box-shadow: 7px 7px 0 rgba(224, 101, 30, 0.14);
    height: 100%;
    transition: var(--ease);
}

.premium-band-card:hover {
    border-color: rgba(244, 235, 215, 0.36);
    box-shadow: 10px 10px 0 rgba(224, 101, 30, 0.22);
    transform: translate(-3px, -3px);
}

/* Cinematic full-bleed stargaze banner */
.cinematic-stargaze-banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cinematic-stargaze-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.03);
    z-index: 1;
}

.cinematic-stargaze-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26, 17, 8, 0.4), rgba(26, 17, 8, 0.85));
    z-index: 2;
}

.stargaze-banner-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 30px;
    color: var(--paper);
}

.stargaze-banner-content h2 {
    font-family: var(--display) !important;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 12px 0;
    line-height: 1.3;
    color: var(--paper);
    text-transform: uppercase;
}

/* ============================================================
   GALLERY & CONTACT — Responsive Breakpoints
   ============================================================ */

@media (max-width: 1024px) {
    .lux-gallery-grid {
        gap: 30px;
    }

    .lux-hero {
        height: 520px;
    }

    .path-steps-container {
        gap: 24px;
    }

    .split-band-container {
        gap: 24px;
    }

    .contact-dual-grid {
        gap: 40px;
    }

    .cinema-slider {
        height: 500px;
    }

    .cinema-prev {
        left: 20px;
    }

    .cinema-next {
        right: 20px;
    }
}

@media (max-width: 768px) {

    /* Gallery grid → stacked editorial */
    .lux-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .lux-tile,
    .lux-hero,
    .lux-tall,
    .lux-compact {
        width: 100% !important;
        height: 360px !important;
        border-radius: 16px !important;
    }

    .lux-tile-inner,
    .lux-hero .lux-tile-inner,
    .lux-tall .lux-tile-inner,
    .lux-compact .lux-tile-inner {
        height: 100% !important;
        width: 100% !important;
    }

    .lux-right-col {
        width: 100% !important;
        gap: 24px !important;
    }

    .lux-pair-row {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .lux-caption {
        padding: 24px !important;
    }

    .lux-title,
    .lux-hero .lux-title {
        font-size: 1.3rem !important;
    }

    /* Cinema slider tablet/mobile */
    .cinema-slider {
        height: 420px !important;
        border-radius: 16px !important;
        margin-top: 24px !important;
    }

    .cinema-content {
        padding: 30px 20px !important;
    }

    .cinema-title {
        font-size: 1.4rem !important;
    }

    .cinema-arrow {
        width: 44px !important;
        height: 44px !important;
    }

    .cinema-arrow svg {
        width: 20px !important;
        height: 20px !important;
    }

    .cinema-prev {
        left: 12px !important;
    }

    .cinema-next {
        right: 12px !important;
    }

    .cinema-pagination {
        bottom: 24px !important;
    }

    .cinema-counter {
        display: none;
    }

    /* Contact */
    .contact-dual-grid {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .path-steps-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .split-band-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .premium-band-card {
        padding: 35px 24px !important;
    }

    .cinematic-stargaze-banner {
        height: 380px !important;
    }

    .stargaze-banner-content h2 {
        font-size: 1.8rem !important;
    }
}

/* ============================================================
   UI/UX SENIOR DESIGNER REFINEMENTS
   ============================================================ */

/* 4. Perspective Section Spacing Fix */
.journal-section .section-head {
    margin-bottom: 50px;
}

/* 5. Journeys Section Title Visibility & Card Contrast */
.booking-panel {
    background: rgba(244, 235, 215, 0.95) !important;
    border: 2px solid var(--ink) !important;
    box-shadow: 7px 7px 0 rgba(26, 17, 8, 0.16) !important;
    color: var(--ink) !important;
    transition: var(--ease);
}

.booking-panel:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 rgba(184, 73, 21, 0.22), 0 26px 54px rgba(26, 17, 8, 0.12) !important;
}

.booking-panel .form-title {
    color: var(--ink) !important;
}

.booking-panel .form-note {
    color: var(--ink-soft) !important;
}

.booking-panel .eyebrow {
    color: var(--saffron) !important;
}

/* Sticky WhatsApp Inquiry Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 100px !important;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--paper);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: var(--radius-sm);
    box-shadow: 5px 5px 0 var(--ink);
    font-family: var(--condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.sticky-whatsapp.is-footer-visible {
    bottom: 180px;
    /* Moves above the footer bottom text */
}

.sticky-whatsapp svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sticky-whatsapp:hover {
    background: var(--saffron-deep);
    border-color: var(--saffron-deep);
    color: var(--paper);
    box-shadow: 3px 3px 0 var(--ink);
    transform: translate(2px, 2px);
}

.sticky-whatsapp:hover svg {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {

    /* Hide floating WhatsApp button on mobile since bottom sticky bar has an Enquire/WhatsApp tab */
    .sticky-whatsapp {
        display: none !important;
    }

    /* Add padding to body on mobile to ensure floating bottom bar never blocks layout/footer contents */
    body {
        padding-bottom: 110px !important;
    }

    /* Mobile Header Spacing Fix */
    .nav-inner {
        padding: 0 34px !important;
    }

    /* Immersive Bottom Mobile Navigation Bar */
    .mobile-sticky-nav {
        display: block !important;
        position: fixed;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        left: 16px;
        right: 16px;
        height: 72px;
        background: #0d0805;
        /* Immersive dark earthy tone matching original palette */
        border: 2px solid var(--ink);
        border-radius: 20px;
        /* Symmetrical premium rounded corners inspired by reference */
        box-shadow: 8px 8px 0 rgba(26, 17, 8, 0.2), 0 16px 48px rgba(0, 0, 0, 0.4);
        z-index: 9999;
        overflow: hidden;
        box-sizing: border-box;
    }

    .mobile-nav-track {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: stretch;
    }

    .mobile-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: rgba(247, 240, 229, 0.4);
        /* Premium soft earthy color for inactive tabs */
        font-family: var(--condensed) !important;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        gap: 6px;
        position: relative;
        border-right: 1px solid rgba(255, 233, 201, 0.05);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        box-sizing: border-box;
        padding-top: 4px;
    }

    .mobile-nav-item:last-child {
        border-right: none;
    }

    .mobile-nav-item svg {
        width: 20px;
        height: 20px;
        stroke-width: 1.5;
        transition: transform 0.25s ease;
    }

    /* Active states styling matching the reference visual rules */
    .mobile-nav-item.is-active {
        color: var(--saffron-2);
        /* Elegant bronze/gold active accent */
    }

    .mobile-nav-item.is-active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--saffron-2);
        border-radius: 0 0 2px 2px;
    }

    .mobile-nav-item.is-active::after {
        content: '';
        position: absolute;
        bottom: 8px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--saffron-2);
    }

    /* Enquire tab styling - premium WhatsApp badge */
    .mobile-nav-item.item-enquire {
        background: #091b10;
        /* Dark forest green */
        color: #2D7A45;
        /* Clean brand green for text */
    }

    .mobile-nav-item.item-enquire::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #2D7A45;
        border-radius: 0 0 2px 2px;
    }

    .mobile-nav-item.item-enquire .enquire-badge {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(45, 122, 69, 0.12);
        border: 1px solid rgba(45, 122, 69, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2D7A45;
        transition: all 0.3s ease;
    }

    .mobile-nav-item.item-enquire:active .enquire-badge,
    .mobile-nav-item.item-enquire:hover .enquire-badge {
        background: #2d7a45;
        color: var(--paper);
    }

    .mobile-nav-item:active svg {
        transform: scale(0.9);
    }
}

/* Sticky Bottom Mobile Navigation Bar Default State */
.mobile-sticky-nav {
    display: none;
}



.image-frame.frame-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 85%;
}