/* ==========================================================================
   NEW SHAHEEN HOTEL — "ARCHITECTURE IN MOTION"
   A geometric luxury design system
   Layers: GRID → GEOMETRY → SPACE → TYPOGRAPHY → MOTION
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* palette — warm architectural paper + interior crimson */
    --bg:        #F3EEE5;
    --bg-2:      #ECE4D6;
    --bg-3:      #E4DBC9;
    --ink:       #211B15;
    --ink-2:     #5D5347;
    --ink-3:     #948878;
    --accent:    #8E2F25;
    --accent-dp: #6E2119;
    --cream:     #F3EEE5;
    --cream-2:   #CFC6B4;
    --cream-3:   #9B9182;

    --line:   rgba(33, 27, 21, 0.14);
    --line-2: rgba(33, 27, 21, 0.30);
    --line-d: rgba(243, 238, 229, 0.16);
    --line-d2:rgba(243, 238, 229, 0.36);

    /* typography */
    --font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    --font-sans:  'Archivo', 'Helvetica Neue', Arial, sans-serif;
    --font-mono:  'IBM Plex Mono', 'Courier New', monospace;

    /* space — architectural rhythm */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.75rem;
    --space-lg: 3rem;
    --space-xl: 5.5rem;
    --space-2xl: 8.5rem;

    --gutter: clamp(1.25rem, 4.5vw, 5rem);
    --sec-y:  clamp(4.5rem, 11vw, 10rem);
    --max-w:  1480px;

    /* motion — slow geometry, fast micro-interaction */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
    --t-fast: 220ms;
    --t-mid:  420ms;
    --t-slow: 900ms;
    --t-xslow: 1400ms;

    /* z-index scale */
    --z-nav: 100; --z-menu: 110; --z-modal: 200; --z-lb: 210;
    --z-toast: 250; --z-loader: 300; --z-cursor: 400;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

body.no-scroll { overflow: hidden; }

img, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
em { font-style: italic; }

::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* subtle custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. SHARED GEOMETRIC UTILITIES
   -------------------------------------------------------------------------- */

/* corner measurement crosses */
.cross {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--ink-3);
    opacity: 0.7;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}
.cross-tl { top: calc(var(--gutter) * 0.55); left: calc(var(--gutter) * 0.55); }
.cross-br { bottom: calc(var(--gutter) * 0.55); right: calc(var(--gutter) * 0.55); }
.cross-tr { top: calc(var(--gutter) * 0.55); right: calc(var(--gutter) * 0.55); }

/* figure meta line — FIG. 01 — CAPTION */
.fig-meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.95rem;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.fig-meta span:last-child { color: var(--ink-2); }
.fig-meta::before, .fig-meta::after {
    content: '';
    height: 1px;
    background: var(--line-2);
    flex: 0 0 clamp(18px, 3vw, 34px);
}

/* corner ticks for image frames (drawn over photography) */
.frame-tick {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 0 solid var(--cream);
    opacity: 0.95;
    z-index: 3;
    transition: transform var(--t-mid) var(--ease-out), width var(--t-mid) var(--ease-out), height var(--t-mid) var(--ease-out);
    pointer-events: none;
}
.ft-tl { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; }
.ft-tr { top: 12px; right: 12px; border-top-width: 1px; border-right-width: 1px; }
.ft-bl { bottom: 12px; left: 12px; border-bottom-width: 1px; border-left-width: 1px; }
.ft-br { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }

/* --------------------------------------------------------------------------
   4. BUTTON SYSTEM
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.05rem 1.9rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: color var(--t-mid) var(--ease-out), border-color var(--t-mid) var(--ease-out);
    -webkit-tap-highlight-color: transparent;
}

.btn .btn-label { position: relative; z-index: 2; }
.btn .btn-arrow {
    position: relative;
    z-index: 2;
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    transition: transform var(--t-mid) var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(5px); }

/* sliding geometric fill */
.btn .btn-fill {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 480ms var(--ease-io);
}
.btn:hover .btn-fill { transform: scaleX(1); }

/* solid — primary */
.btn-solid {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.btn-solid .btn-fill { background: var(--accent); }
.btn-solid:hover { border-color: var(--accent); }

/* line — secondary on light */
.btn-line {
    color: var(--ink);
    border-color: var(--line-2);
    background: transparent;
}
.btn-line .btn-fill { background: var(--ink); }
.btn-line:hover { color: var(--cream); border-color: var(--ink); }

/* ghost — on dark grounds */
.btn-ghost {
    color: var(--cream);
    border-color: var(--line-d2);
    background: transparent;
}
.btn-ghost .btn-fill { background: var(--cream); }
.btn-ghost:hover { color: var(--ink); border-color: var(--cream); }

.btn--lg { padding: 1.25rem 2.4rem; font-size: 0.78rem; }
.btn--full { width: 100%; }

/* nav variant — adapts to nav ground */
.btn-nav {
    padding: 0.78rem 1.5rem;
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.btn-nav .btn-fill { background: var(--accent); }
.nav.scrolled .btn-nav,
.mmenu .btn-nav { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-nav:hover { color: var(--cream); border-color: var(--accent); }

/* --------------------------------------------------------------------------
   5. LOADER — square rotates, circle expands, monogram settles
   -------------------------------------------------------------------------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: var(--z-loader);
    display: grid;
    place-items: center;
    background: var(--bg);
    transition: opacity 500ms var(--ease-out), visibility 500ms;
}
.loader.done { opacity: 0; visibility: hidden; }

.loader-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}
.loader-spinner {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--line-2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: ld-spin 900ms linear infinite;
}
@keyframes ld-spin {
    to { transform: rotate(360deg); }
}
.loader-mark {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--ink);
    text-indent: 0.3em;
    opacity: 0;
    animation: ld-mark 420ms 200ms var(--ease-out) forwards;
}
.loader-caption {
    position: absolute;
    bottom: 12vh;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.42em;
    text-indent: 0.42em;
    color: var(--ink-3);
    opacity: 0;
    animation: ld-mark 420ms 400ms var(--ease-out) forwards;
}
@keyframes ld-mark {
    0%   { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   6. GEOMETRIC CURSOR — ring that whispers "VIEW" over the gallery
   -------------------------------------------------------------------------- */
.cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: var(--z-cursor);
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid var(--cream);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
    transition: opacity 300ms var(--ease-out), transform 450ms var(--ease-out);
    will-change: transform;
}
.cursor .cursor-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    color: var(--cream);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 250ms var(--ease-out), transform 350ms var(--ease-out);
}
.cursor.is-visible { opacity: 1; }
.cursor.is-view { transform: translate(-50%, -50%) scale(1); }
.cursor.is-view .cursor-label { opacity: 1; transform: scale(1); }
.cursor.is-link { transform: translate(-50%, -50%) scale(0.45); }

@media (hover: none), (pointer: coarse) {
    .cursor { display: none; }
}

/* --------------------------------------------------------------------------
   7. SCROLL PROGRESS — a drawing rule across the top
   -------------------------------------------------------------------------- */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: calc(var(--z-nav) + 1);
    pointer-events: none;
}
.progress-bar {
    display: block;
    height: 100%;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
}

/* --------------------------------------------------------------------------
   8. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    height: 84px;
    padding-inline: var(--gutter);
    color: var(--cream);
    transition: height 420ms var(--ease-out), background 420ms var(--ease-out),
                color 420ms var(--ease-out), border-color 420ms var(--ease-out);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    height: 66px;
    color: var(--ink);
    background: rgba(243, 238, 229, 0.9);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
    backdrop-filter: blur(14px) saturate(1.3);
    border-bottom-color: var(--line);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}
.nav-mark {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    transition: transform 600ms var(--ease-out);
}
.nav-mark circle { fill: var(--accent); stroke: none; }
.nav:hover .nav-mark { transform: rotate(90deg); }
.nav-brand-text {
    font-family: var(--font-serif);
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.nav-brand-text small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.52rem;
    font-weight: 400;
    letter-spacing: 0.44em;
    opacity: 0.75;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.4vw, 2.3rem);
}
.nav-link {
    position: relative;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-block: 0.4rem;
    transition: color var(--t-mid);
}
.nav-link::before {
    content: '○';
    position: absolute;
    left: -1.05em;
    top: 50%;
    translate: 0 -50%;
    font-size: 0.62rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity var(--t-mid), transform var(--t-mid);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 420ms var(--ease-io);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left center; }
.nav-link:hover::before,
.nav-link.active::before { opacity: 1; transform: translateX(0); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.8vw, 1.6rem);
    flex-shrink: 0;
}
.nav-phone {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    opacity: 0.85;
    transition: color var(--t-mid), opacity var(--t-mid);
}
.nav-phone:hover { color: var(--accent); opacity: 1; }

/* toggle — two bars inside a measured square */
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid currentColor;
    border-radius: 0;
    opacity: 0.85;
    position: relative;
}
.nav-toggle-box {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 6px;
}
.nav-toggle-box i {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 380ms var(--ease-io);
}
.nav-toggle[aria-expanded="true"] i:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   9. MOBILE MENU — the expanding circle
   -------------------------------------------------------------------------- */
.mmenu {
    position: fixed;
    inset: 0;
    z-index: var(--z-menu);
    clip-path: circle(0px at calc(100% - 3.2rem) 3.4rem);
    visibility: hidden;
    transition: clip-path 720ms var(--ease-io), visibility 0s 720ms;
    background: var(--ink);
    color: var(--cream);
}
.mmenu.open {
    clip-path: circle(150% at calc(100% - 3.2rem) 3.4rem);
    visibility: visible;
    transition: clip-path 760ms var(--ease-io);
}
.mmenu-veil { position: absolute; inset: 0; }

.mmenu-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--gutter) + 3rem) var(--gutter) var(--gutter);
}
.mmenu-close {
    position: absolute;
    top: 1.2rem;
    right: var(--gutter);
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-d2);
    display: grid;
    place-items: center;
    transition: transform 480ms var(--ease-io), border-color var(--t-mid);
}
.mmenu-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}
.mmenu-close:hover { transform: rotate(90deg); border-color: var(--cream); }

.mmenu-nav { display: flex; flex-direction: column; }
.mmenu-link {
    display: flex;
    align-items: baseline;
    gap: 1.1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line-d);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}
.mmenu.open .mmenu-link {
    opacity: 1;
    transform: none;
    transition-delay: calc(180ms + var(--i, 0) * 70ms);
}
.mmenu-link:active .mmenu-word { color: var(--cream-2); }
.mmenu-num {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}
.mmenu-word {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8.5vw, 2.9rem);
    font-weight: 400;
    line-height: 1;
    transition: transform 420ms var(--ease-out), color var(--t-mid);
}
.mmenu-link:hover .mmenu-word { transform: translateX(10px); color: var(--cream-2); }

.mmenu-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: clamp(2rem, 6vh, 3.5rem);
    opacity: 0;
    transition: opacity 520ms 560ms var(--ease-out);
}
.mmenu.open .mmenu-foot { opacity: 1; }
.mmenu-tel {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--cream-2);
}

.mmenu-orbit {
    position: absolute;
    right: -34%;
    bottom: -28%;
    width: min(88vw, 560px);
    aspect-ratio: 1;
    fill: none;
    stroke: var(--cream);
    stroke-opacity: 0.1;
    stroke-width: 1;
    animation: slow-rotate 90s linear infinite;
    pointer-events: none;
}

@keyframes slow-rotate {
    to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   10. HERO — replaced by HERO V2 (editorial composition) further below.
   The legacy `.hero` / `.hero-orbit` / `.hero-meta` markup was removed
   in favour of `.hero-v2`; only the booking-strip bridge below remains.
   -------------------------------------------------------------------------- */
.hero-v2.hero { display: block; align-items: stretch; }

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 38%;
    transform: scale(1.08);
    transition: transform 2000ms var(--ease-out);
}
.hero.ready .hero-bg { transform: scale(1); }
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.08);
    transition: transform 2000ms var(--ease-out);
    z-index: 0;
}
.hero.ready .hero-video { transform: scale(1); }

/* backlayer — lets video show through while keeping text readable */
.hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(102deg, rgba(23, 17, 12, 0.62) 0%, rgba(23, 17, 12, 0.32) 46%, rgba(23, 17, 12, 0.50) 100%),
        linear-gradient(180deg, rgba(23, 17, 12, 0.28) 0%, transparent 20%, transparent 56%, rgba(23, 17, 12, 0.52) 100%);
}
.hero-veil::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(23, 17, 12, 0.12);
}

/* Pattern A — fine architectural grid, discovered rather than seen */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(243, 238, 229, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(243, 238, 229, 0.06) 1px, transparent 1px);
    background-size: clamp(64px, 8.5vw, 128px) clamp(64px, 8.5vw, 128px);
    opacity: 0;
    transition: opacity 1s var(--ease-out) 300ms;
}
.hero.ready .hero-grid { opacity: 1; }

/* the great circle — partially beyond the viewport */
.hero-orbit {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: min(4vw, 6rem);
    width: min(92vh, 860px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    fill: none;
    stroke: var(--cream);
    pointer-events: none;
    overflow: visible;
}
.orbit-ring, .orbit-inner {
    stroke-width: 1;
    stroke-opacity: 0.55;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transform-box: fill-box;
    transform-origin: center;
    transition: stroke-dashoffset 1500ms var(--ease-io) 600ms;
}
.orbit-inner { stroke-opacity: 0.3; stroke-dasharray: 2 8; transition-delay: 900ms; }
.hero.ready .orbit-ring, .hero.ready .orbit-inner { stroke-dashoffset: 0; }

.orbit-ticks line { stroke-width: 1; stroke-opacity: 0.4; }
.orbit-ticks { opacity: 0; transition: opacity 900ms var(--ease-out) 1300ms; }
.hero.ready .orbit-ticks { opacity: 1; }

.orbit-core { opacity: 0; transition: opacity 700ms var(--ease-out) 1500ms; }
.orbit-core path, .orbit-core circle { stroke-width: 1; stroke-opacity: 0.7; }
.orbit-core circle { fill: var(--accent); stroke: none; }
.hero.ready .orbit-core { opacity: 1; }

.orbit-chord {
    stroke: var(--accent);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1100ms var(--ease-io) 1100ms;
}
.hero.ready .orbit-chord { stroke-dashoffset: 0; }
.orbit-node { fill: var(--accent); opacity: 0; transition: opacity 400ms var(--ease-out) 2100ms; }
.hero.ready .orbit-node { opacity: 1; }

/* measured labels around the composition */
.hero-meta {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    color: rgba(243, 238, 229, 0.92);
    text-shadow: 0 1px 14px rgba(23, 17, 12, 0.85), 0 0 2px rgba(23, 17, 12, 0.6);
}
.hero-meta-item::after {
    content: '';
    position: absolute;
    inset: -6px -10px;
    background: linear-gradient(90deg, rgba(23,17,12,0.42), rgba(23,17,12,0.14));
    z-index: -1;
}
.hero-meta-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.hero-meta-item::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid var(--accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.hero.ready .hero-meta-item { opacity: 1; transform: none; }
.hero.ready .m1 { transition-delay: 1700ms; }
.hero.ready .m2 { transition-delay: 1850ms; }
.hero.ready .m3 { transition-delay: 2000ms; }
.hero.ready .m4 { transition-delay: 1600ms; }

.m1 { top: 24vh; right: 7vw; }
.m2 { top: 50%; right: 3vw; transform: translateY(-50%); }
.hero.ready .m2 { transform: translateY(-50%); }
.m3 { bottom: 26vh; right: 16vw; }
.m4 { top: calc(84px + 2.5vh); right: 42vw; }

/* hero content */
.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding: calc(84px + 3vh) var(--gutter) calc(96px + 6vh);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--cream-2);
    margin-bottom: clamp(1.4rem, 3vh, 2.4rem);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 800ms var(--ease-out) 800ms, transform 800ms var(--ease-out) 800ms;
}
.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    transform: rotate(45deg);
}
.hero.ready .hero-eyebrow { opacity: 1; transform: none; }

.hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(3.1rem, min(8.2vw, 13.5vh), 7.6rem);
    line-height: 0.99;
    letter-spacing: -0.015em;
    max-width: 15ch;
    text-shadow: 0 2px 24px rgba(23, 17, 12, 0.45);
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero-line-inner {
    display: inline-block;
    transform: translateY(112%);
    transition: transform 1100ms var(--ease-io) 900ms;
}
.hero-line:nth-child(2) .hero-line-inner { transition-delay: 1030ms; }
.hero.ready .hero-line-inner { transform: translateY(0); }
.hero-title em { font-weight: 300; color: var(--cream-2); }

.hero-sub {
    max-width: 44ch;
    margin-top: clamp(1.4rem, 3vh, 2.2rem);
    font-weight: 300;
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    line-height: 1.8;
    color: rgba(243, 238, 229, 0.88);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 900ms var(--ease-out) 1200ms, transform 900ms var(--ease-out) 1200ms;
}
.hero.ready .hero-sub { opacity: 1; transform: none; }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: clamp(1.8rem, 4vh, 3rem);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 900ms var(--ease-out) 1400ms, transform 900ms var(--ease-out) 1400ms;
}
.hero.ready .hero-cta { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   11. RESERVATION STRIP — the architectural booking module
   -------------------------------------------------------------------------- */
.bookbar {
    position: relative;
    z-index: 6;
    margin: clamp(-5.5rem, -5vw, -3.5rem) var(--gutter) clamp(-5.5rem, -5vw, -3.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr 1.65fr 1fr auto;
    gap: 0.7rem;
    padding: 0.9rem;
    background: var(--bg);
    border: 1px solid var(--line-2);
    border-radius: 20px;
    box-shadow: 0 30px 70px -42px rgba(23, 17, 12, 0.6);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 900ms var(--ease-out) 1550ms, transform 900ms var(--ease-out) 1550ms;
}
.hero.ready + .bookbar { opacity: 1; transform: none; }

.bookbar-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg);
    transition: border-color var(--t-mid), background var(--t-mid), box-shadow var(--t-mid);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}
.bookbar-field:hover {
    border-color: var(--ink-3);
    background: rgba(33, 27, 21, 0.025);
}
.bookbar-field:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(142, 47, 37, 0.10);
}
.bookbar-field label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.bookbar-field input,
.bookbar-field select {
    border: 0;
    background: transparent;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    padding: 0;
    width: 100%;
    cursor: pointer;
    color-scheme: light;
}

.bookbar-field { cursor: pointer; }
.bookbar-field label { pointer-events: none; }
.bookbar-field input:focus,
.bookbar-field select:focus { outline: none; }
.bookbar-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 49%, var(--ink) 50%),
                      linear-gradient(-45deg, transparent 49%, var(--ink) 50%);
    background-size: 6px 6px;
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 1.4rem;
}
.bookbar-field.error {
    border-color: var(--accent);
    background: rgba(142, 47, 37, 0.06);
}

.bookbar-submit {
    border: 1px solid var(--ink);
    border-radius: 12px;
    padding-inline: 2.4rem;
    background: var(--ink);
    color: var(--cream);
}
.bookbar-submit .btn-fill { background: var(--accent); }
.bookbar-submit:hover { color: var(--cream); border-color: var(--accent); }

/* --------------------------------------------------------------------------
    11a. CUSTOM SELECT — styled dropdown replacing the native <select>
    -------------------------------------------------------------------------- */
.custom-select {
    position: relative;
    width: 100%;
}
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    width: 100%;
    border: 0;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    padding: 0;
    cursor: pointer;
    text-align: left;
}
.custom-select-trigger:focus-visible {
    outline: none;
}
.custom-select-arrow {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--ink-3);
    stroke-width: 1.7;
    transition: transform var(--t-mid) var(--ease-out);
}
.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}
.custom-select-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-select-options {
    position: absolute;
    z-index: 30;
    top: calc(100% + 0.55rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: calc(100% + 2.2rem);
    max-width: 22rem;
    background: var(--bg);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    box-shadow: 0 28px 56px -28px rgba(23, 17, 12, 0.55);
    padding: 0.4rem;
    list-style: none;
    margin: 0;
    max-height: 270px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out), visibility 0s var(--t-mid);
}
.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out), visibility 0s;
}
.custom-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.62rem 0.75rem;
    border-radius: 9px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    transition: background var(--t-fast), color var(--t-fast);
}
.custom-select-option:hover {
    background: var(--bg-2);
}
.custom-select-option.is-selected {
    background: rgba(142, 47, 37, 0.07);
    color: var(--accent);
}
.cso-main {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cso-meta {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink-3);
    flex-shrink: 0;
}
.custom-select-option.is-selected .cso-meta {
    color: var(--accent);
}
.custom-select-option.is-selected::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}
.custom-select.open .custom-select-trigger {
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   12. SECTION BASE + SECTION HEADS
   -------------------------------------------------------------------------- */
.section {
    position: relative;
    padding: var(--sec-y) var(--gutter);
    max-width: var(--max-w);
    margin-inline: auto;
    overflow: hidden;
    scroll-margin-top: 90px;
}

#top { scroll-margin-top: 90px; }

.shead {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.4rem, 3.5vw, 3.2rem);
    align-items: end;
    margin-bottom: clamp(3rem, 6.5vw, 5.5rem);
}
.shead-num {
    font-family: var(--font-mono);
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    font-weight: 500;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px var(--ink-3);
    transition: color var(--t-mid), -webkit-text-stroke-color var(--t-mid);
}
[data-reveal].in .shead-num:hover,
.shead.in .shead-num:hover {
    -webkit-text-stroke-color: var(--accent);
    color: rgba(142, 47, 37, 0.08);
}
@supports not (-webkit-text-stroke: 1px black) {
    .shead-num { color: var(--ink-3); }
}
.shead-rule {
    display: block;
    height: 1px;
    width: clamp(30px, 4.5vw, 72px);
    background: var(--accent);
    margin-top: 0.9rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 900ms var(--ease-io) 300ms;
}
[data-reveal].in .shead-rule, .shead.in .shead-rule { transform: scaleX(1); }

.shead-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.9rem;
}
.shead-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid var(--accent);
    transform: rotate(45deg);
}
.shead-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.3rem, 4.6vw, 4.1rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
    max-width: 18ch;
}
.shead-title em { color: var(--accent); font-weight: 300; }
.shead-sub {
    margin-top: 1.1rem;
    max-width: 52ch;
    color: var(--ink-2);
    font-weight: 300;
}

/* dark variant */
.shead--dark .shead-num { -webkit-text-stroke-color: var(--cream-3); }
.shead--dark .shead-title { color: var(--cream); }
.shead--dark .shead-sub { color: var(--cream-2); }

/* --------------------------------------------------------------------------
   13. REVEAL SYSTEM — everything arrives considered
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
    transition-delay: calc(var(--d, 0) * 95ms);
}
[data-reveal].in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   14. INTRO — the editorial spread
   -------------------------------------------------------------------------- */
.intro { background: var(--bg); }
.intro::before {
    /* Pattern D — a great circle resting off the composition */
    content: '';
    position: absolute;
    left: -14%;
    top: -22%;
    width: 56%;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    pointer-events: none;
}
.intro::after {
    /* Pattern B — dot matrix, quietly present */
    content: '';
    position: absolute;
    right: var(--gutter);
    bottom: 8%;
    width: clamp(120px, 16vw, 230px);
    aspect-ratio: 1;
    background-image: radial-gradient(var(--line-2) 1px, transparent 1.4px);
    background-size: 18px 18px;
    opacity: 0.55;
    pointer-events: none;
}

.intro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.intro-lead {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 1.9vw, 1.75rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 1.6rem;
}
.intro-lead strong { color: var(--accent); font-weight: 500; }
.intro-body {
    color: var(--ink-2);
    font-weight: 300;
    margin-bottom: 1.2rem;
    max-width: 52ch;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
    margin-block: clamp(2rem, 4vw, 3rem);
}
.stat {
    position: relative;
    background: var(--bg);
    padding: 1.6rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: background var(--t-mid), transform var(--t-mid) var(--ease-out);
}
.stat:hover {
    background: var(--bg-2);
    transform: translateY(-2px);
}
.stat-num {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    transition: color var(--t-mid);
}
.stat:hover .stat-num { color: var(--accent); }
.stat-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.stat-ring {
    position: absolute;
    top: -5px;
    right: 10px;
    width: 26px;
    height: 26px;
    border: 1px solid var(--line-2);
    border-radius: 50%;
    opacity: 0.7;
}
.stat-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 0.2rem;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.stat-ring::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

/* the intersecting composition — circle meets rectangle */
.intro-figure {
    position: relative;
    margin: 0;
}
.intro-figure-clip {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bg-3);
}
.intro-figure-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out);
}
.intro-figure:hover .intro-figure-clip img { transform: scale(1.04); }

.intro-orbit {
    position: absolute;
    top: -14%;
    right: -12%;
    width: 64%;
    aspect-ratio: 1;
    fill: none;
    stroke: var(--ink);
    pointer-events: none;
    overflow: visible;
}
.io-ring { stroke-width: 1; stroke-opacity: 0.5; }
.io-dash { stroke-width: 1; stroke-opacity: 0.35; stroke-dasharray: 3 9; stroke: var(--accent); }
.io-ticks line { stroke-width: 1; stroke-opacity: 0.4; }
.io-node { fill: var(--accent); }
.io-cross { stroke-width: 1; stroke-opacity: 0.6; }

.intro-figure-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.08);
    transition: transform 1.4s var(--ease-out);
}
.intro-figure:hover .intro-figure-video { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   15. ROOMS — architectural modules, numbered like floor plans
   -------------------------------------------------------------------------- */
.rooms { background: var(--bg-2); }
.rooms::before {
    /* Pattern C — diagonal hatching along the left rule */
    content: '';
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: clamp(30px, 4vw, 64px);
    background-image: repeating-linear-gradient(
        -45deg,
        var(--line) 0 1px,
        transparent 1px 9px
    );
    pointer-events: none;
}

.rooms-list { position: relative; z-index: 1; }

.room {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0 clamp(1.5rem, 3vw, 3rem);
    align-items: center;
    padding-block: clamp(2.6rem, 5.5vw, 4.6rem);
    border-top: 1px solid var(--line-2);
}
.room:last-of-type { border-bottom: 1px solid var(--line-2); }

.room-media {
    position: relative;
    grid-column: 1 / span 7;
    margin: 0;
}
.room--flip .room-media { grid-column: 6 / span 7; grid-row: 1; }
.room--flip .room-info { grid-column: 1 / span 5; grid-row: 1; }
.room-info { grid-column: 8 / span 5; }

.room-media-clip {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: var(--bg-3);
    clip-path: inset(0 100% 0 0 round 0);
    transition: clip-path 1150ms var(--ease-io) 120ms;
}
.room--flip .room-media-clip {
    clip-path: inset(0 0 0 100% round 0);
    transition: clip-path 1150ms var(--ease-io) 120ms;
}
.room.in .room-media-clip,
.room--flip.in .room-media-clip { clip-path: inset(0 0 0 0 round 0); }

.room-media-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.08);
    transition: transform 1500ms var(--ease-io) 120ms;
}
.room.in .room-media-clip img { transform: scale(1); }
.room.in .room-media-clip img,
.room--flip.in .room-media-clip img { transition: transform 900ms var(--ease-out); }
.room:hover .room-media-clip img { transform: scale(1.045); }

/* frame ticks expand on approach */
.room:hover .ft-tl { transform: translate(-5px, -5px); }
.room:hover .ft-tr { transform: translate(5px, -5px); }
.room:hover .ft-bl { transform: translate(-5px, 5px); }
.room:hover .ft-br { transform: translate(5px, 5px); }

.room-tag {
    position: absolute;
    top: 12px;
    right: 44px;
    font-family: var(--font-mono);
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    color: var(--cream);
    opacity: 0.8;
    z-index: 3;
}

/* the great number */
.room-num {
    position: absolute;
    z-index: 2;
    top: clamp(0.8rem, 2vw, 1.8rem);
    left: clamp(-0.5rem, -0.5vw, -0.2rem);
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: clamp(4.2rem, 8vw, 7.6rem);
    line-height: 0.75;
    color: transparent;
    -webkit-text-stroke: 1px var(--line-2);
    pointer-events: none;
    transition: transform 700ms var(--ease-out), -webkit-text-stroke-color 700ms;
}
@supports not (-webkit-text-stroke: 1px black) {
    .room-num { color: rgba(33, 27, 21, 0.16); }
}
.room--flip .room-num {
    left: auto;
    right: clamp(-0.5rem, -0.5vw, -0.2rem);
    text-align: right;
}
.room:hover .room-num {
    -webkit-text-stroke-color: var(--accent);
    transform: translateY(-8px);
}
.room--flip:hover .room-num { transform: translateY(-8px); }

.room-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 1rem;
}
.room-label::after {
    content: '';
    height: 1px;
    width: clamp(24px, 3vw, 48px);
    background: var(--line-2);
}

.room-name {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    line-height: 1.05;
    margin-bottom: 0.9rem;
}
.room-name span {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
    margin-left: 0.35em;
}
.room-desc {
    color: var(--ink-2);
    font-weight: 300;
    font-size: 0.97rem;
    max-width: 46ch;
    margin-bottom: 1.5rem;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.room-specs li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
    padding: 0.42rem 0.75rem;
    border: 1px solid var(--line-2);
    transition: border-color var(--t-mid), color var(--t-mid);
}
.spec-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--accent);
}
.room:hover .room-specs li { border-color: var(--ink-3); }

.room-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.room-price {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    font-weight: 500;
    line-height: 1;
}
.room-price-cur {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    vertical-align: 0.5em;
    margin-right: 0.2em;
    color: var(--ink-3);
}
.room-price em {
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-left: 0.4em;
}

.room-book {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 0.45rem;
    position: relative;
    transition: color var(--t-mid);
}
.room-book::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: var(--ink);
    transform: scaleX(0.32);
    transform-origin: left;
    transition: transform 420ms var(--ease-io), background var(--t-mid);
}
.room-book .btn-arrow {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    transition: transform var(--t-mid) var(--ease-out);
}
.room-book:hover { color: var(--accent); }
.room-book:hover::after { transform: scaleX(1); background: var(--accent); }
.room-book:hover .btn-arrow { transform: translateX(5px); }

.rooms-note {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    max-width: 58ch;
    margin-top: clamp(2.4rem, 4vw, 3.4rem);
    color: var(--ink-2);
    font-weight: 300;
    font-size: 0.92rem;
}
.rooms-note strong { color: var(--ink); font-weight: 500; }
.rooms-note-ring {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1;
    animation: slow-rotate 26s linear infinite;
}
.rooms-note-ring circle:last-child { stroke: var(--ink-3); stroke-dasharray: 2 6; }

/* --------------------------------------------------------------------------
   16. EXPERIENCE — the dark chapter, the drawn timeline
   -------------------------------------------------------------------------- */
.exp {
    background: var(--ink);
    color: var(--cream);
    max-width: none;
    padding-inline: 0;
}
.exp-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.exp-pattern::before {
    /* Pattern B — dot matrix at whisper volume */
    content: '';
    position: absolute;
    left: 6%;
    top: 10%;
    width: 30%;
    aspect-ratio: 1.6;
    background-image: radial-gradient(rgba(243, 238, 229, 0.14) 1px, transparent 1.4px);
    background-size: 20px 20px;
    opacity: 0.5;
}
.exp-pattern::after {
    /* Pattern D — concentric circles drifting off-edge */
    content: '';
    position: absolute;
    right: -18%;
    bottom: -30%;
    width: 60%;
    aspect-ratio: 1;
    background:
        radial-gradient(circle, transparent 0 calc(50% - 1px), rgba(243, 238, 229, 0.09) calc(50% - 1px) 50%, transparent 50%),
        radial-gradient(circle, transparent 0 calc(31% - 1px), rgba(243, 238, 229, 0.09) calc(31% - 1px) 31%, transparent 31%),
        radial-gradient(circle, transparent 0 calc(15% - 1px), rgba(243, 238, 229, 0.09) calc(15% - 1px) 15%, transparent 15%);
    border-radius: 50%;
}

.exp .shead,
.exp .exp-grid {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gutter);
    position: relative;
    z-index: 1;
}

.exp-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(3rem, 6vw, 6.5rem);
    align-items: start;
}

/* the arch — a nod to the architecture itself */
.exp-visual {
    position: relative;
    margin: 0;
    position: sticky;
    top: clamp(90px, 12vh, 130px);
}
.exp-arch {
    position: relative;
    aspect-ratio: 3 / 3.6;
    overflow: hidden;
    background: var(--bg-3);
}
.exp-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}
.exp-visual:hover .exp-arch img { transform: scale(1.045); }

.exp-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 118%;
    aspect-ratio: 1;
    translate: -50% -50%;
    fill: none;
    stroke: var(--cream);
    pointer-events: none;
}
.exp-ring-a { stroke-width: 1; stroke-opacity: 0.28; }
.exp-ring-b { stroke-width: 1; stroke-opacity: 0.2; stroke-dasharray: 3 9; animation: slow-rotate 60s linear infinite; transform-box: fill-box; transform-origin: center; }

.exp-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
}
.exp-dot-a { top: 6%; left: -3%; }
.exp-dot-b { bottom: 12%; right: -2.5%; }

.exp-visual .fig-meta { color: var(--cream-3); }
.exp-visual .fig-meta span:last-child { color: var(--cream-2); }
.exp-visual .fig-meta::before, .exp-visual .fig-meta::after { background: var(--line-d2); }

/* the timeline that draws itself */
.exp-list-wrap { position: relative; padding-left: clamp(0.5rem, 2vw, 1.5rem); }
.exp-line {
    position: absolute;
    left: clamp(0.9rem, 2.6vw, 2.05rem);
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: var(--line-d);
}
.exp-line i {
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top center;
    display: block;
}

.exp-item {
    display: grid;
    grid-template-columns: 3.6rem 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.35rem 0 1.35rem 0.6rem;
    border-bottom: 1px solid var(--line-d);
    opacity: 0.52;
    transform: translateX(6px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out), background var(--t-mid);
}
.exp-item:hover {
    background: rgba(243, 238, 229, 0.04);
}
.exp-item:first-child { padding-top: 0.2rem; }
.exp-item.active { opacity: 1; transform: none; }

.exp-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--cream-3);
    padding-top: 0.45rem;
    position: relative;
    transition: color 500ms;
}
.exp-num::before {
    content: '';
    position: absolute;
    left: calc(-1 * clamp(0.9rem, 2.6vw, 2.05rem) - clamp(0.5rem, 2vw, 1.5rem) - 0.05rem);
    top: 0.95rem;
    width: 7px;
    height: 7px;
    background: var(--ink);
    border: 1px solid var(--cream-3);
    transform: rotate(45deg);
    transition: background 500ms, border-color 500ms;
}
.exp-item.active .exp-num { color: var(--accent); }
.exp-item.active .exp-num::before { background: var(--accent); border-color: var(--accent); }

.exp-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.3rem;
}
.exp-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 500ms;
}
.exp-item.active .exp-icon { stroke: var(--cream); }
.exp-name {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.1;
    margin-bottom: 0;
}
.exp-desc {
    color: var(--cream-2);
    font-weight: 300;
    font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   17. GALLERY — the editorial grid, overlapping frames
   -------------------------------------------------------------------------- */
.gallery { background: var(--bg); }
.gallery::after {
    /* Pattern B — quiet dots under the grid */
    content: '';
    position: absolute;
    left: var(--gutter);
    top: 6%;
    width: clamp(100px, 13vw, 190px);
    aspect-ratio: 1;
    background-image: radial-gradient(var(--line-2) 1px, transparent 1.4px);
    background-size: 16px 16px;
    opacity: 0.5;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   17. GALLERY — Instagram-style dense mosaic
   -------------------------------------------------------------------------- */
.gallery { background: var(--bg); }
.gallery::after {
    content: '';
    position: absolute;
    left: var(--gutter);
    top: 6%;
    width: clamp(100px, 13vw, 190px);
    aspect-ratio: 1;
    background-image: radial-gradient(var(--line-2) 1px, transparent 1.4px);
    background-size: 16px 16px;
    opacity: 0.5;
    pointer-events: none;
}

.gallery-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-auto-flow: dense;
    gap: 4px;
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.gitem {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--bg-3);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    aspect-ratio: 1 / 1;
}
.gitem img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease-out), opacity 500ms;
    will-change: transform;
}
.gitem:hover img,
.gitem:focus-visible img { transform: scale(1.06); }

.gitem::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(142, 47, 37, 0.0);
    transition: background 450ms var(--ease-out);
    pointer-events: none;
    z-index: 2;
}
.gitem:hover::after,
.gitem:focus-visible::after { background: rgba(142, 47, 37, 0.08); }

.gitem figcaption {
    position: absolute;
    left: 14px;
    bottom: 12px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
    pointer-events: none;
    z-index: 3;
}
.gitem figcaption span:first-child { opacity: 0.85; }
.gitem::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(23, 17, 12, 0.55));
    opacity: 0;
    transition: opacity 400ms;
    z-index: 1;
    pointer-events: none;
}
.gitem:hover figcaption,
.gitem:focus-visible figcaption { opacity: 1; transform: none; }
.gitem:hover::before,
.gitem:focus-visible::before { opacity: 1; }

/* all gallery items uniform 1:1 squares */
.g-a, .g-b, .g-c, .g-d, .g-e,
.g-f, .g-g, .g-h, .g-i, .g-j,
.g-k, .g-l { grid-column: auto; grid-row: auto; }

/* --------------------------------------------------------------------------
   18. LOCATION — the designed map
   -------------------------------------------------------------------------- */
.location { background: var(--bg-2); }
.location::before {
    /* Pattern A — the survey grid */
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: clamp(72px, 9vw, 140px) clamp(72px, 9vw, 140px);
    mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
    pointer-events: none;
}

.loc-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}

.loc-map {
    position: relative;
    margin: 0;
    background: var(--bg);
    border: 1px solid var(--line-2);
    padding: clamp(0.9rem, 1.6vw, 1.4rem);
}
.loc-map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-3);
}
.loc-map-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.35) contrast(1.02);
}
.loc-map-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: var(--accent);
    border-style: solid;
    pointer-events: none;
    z-index: 2;
}
.loc-map-corner.lmc-tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.loc-map-corner.lmc-tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.loc-map-corner.lmc-bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.loc-map-corner.lmc-br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }
.loc-map-pin {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linejoin: round;
}

.loc-map-cta {
    position: absolute;
    left: 50%;
    bottom: clamp(-1.4rem, -1.2vw, -1rem);
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    background: var(--ink);
    color: var(--cream);
    padding: 0.85rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background var(--t-mid);
}
.loc-map-cta .btn-arrow {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    transition: transform var(--t-mid) var(--ease-out);
}
.loc-map-cta:hover { background: var(--accent); }
.loc-map-cta:hover .btn-arrow { transform: translateX(5px); }
.loc-map-cta:hover .loc-map-pin { stroke: var(--cream); }
.loc-map-pin {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--t-mid);
}

/* contact rows — lettered like plan annotations */
.loc-rows { border-top: 1px solid var(--line-2); }
.loc-row {
    display: grid;
    grid-template-columns: 2.8rem 1fr auto;
    gap: 1.1rem;
    align-items: center;
    padding: 1.15rem 0.4rem;
    border-bottom: 1px solid var(--line-2);
    transition: background var(--t-mid), padding var(--t-mid);
}
.loc-row:hover { background: rgba(33, 27, 21, 0.035); padding-left: 0.9rem; }
.loc-row-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--line-2);
    color: var(--ink-2);
    transition: border-color var(--t-mid), color var(--t-mid), background var(--t-mid);
}
.loc-row-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.loc-row:hover .loc-row-icon { border-color: var(--accent); color: var(--accent); }
.loc-row-body h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.1;
}
.loc-row-body p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ink-2);
}
.loc-row .btn-arrow {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--ink-3);
    stroke-width: 1.6;
    transition: transform var(--t-mid) var(--ease-out), stroke var(--t-mid);
}
.loc-row:hover .btn-arrow { transform: translateX(5px); stroke: var(--accent); }

/* hours — measured data */
.loc-hours {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-block: clamp(1.8rem, 3.5vw, 2.6rem);
    border-block: 1px solid var(--line-2);
}
.loc-hour {
    flex: 1;
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.loc-hour-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 0.15rem;
}
.loc-hour-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.loc-hour-time {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 1.8vw, 1.65rem);
    font-weight: 500;
    line-height: 1;
}
.loc-hour-sep {
    width: 1px;
    background: var(--line-2);
    margin-block: 0.8rem;
}

/* message form — architectural underlines */
.loc-form-label {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.3rem;
}
.loc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.3rem; }
.field label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.field label i { color: var(--accent); font-style: normal; }
.field label span { opacity: 0.7; }
.field input,
.field textarea {
    border: 0;
    border-bottom: 1px solid var(--line-2);
    background: transparent;
    padding: 0.55rem 0.1rem;
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: 0;
    transition: border-color var(--t-mid);
    resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-3); opacity: 0.75; }
.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field.error input,
.field.error textarea { border-bottom-color: var(--accent); background: rgba(142, 47, 37, 0.05); }

/* --------------------------------------------------------------------------
   19. FINAL CTA — the cinematic close, the expanding circle
   -------------------------------------------------------------------------- */
.cta {
    position: relative;
    min-height: 94svh;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
    /* the diagonal cut — one architectural gesture */
    clip-path: polygon(0 3.2vw, 100% 0, 100% 100%, 0 100%);
    margin-top: calc(-1 * 3.2vw);
    padding: calc(3.2vw + var(--sec-y)) var(--gutter) var(--sec-y);
}
.cta-media {
    position: absolute;
    inset: 0;
}
.cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transform: scale(1.06);
    will-change: transform;
}
.cta-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(23, 17, 12, 0.1) 0%, rgba(23, 17, 12, 0.72) 78%),
        linear-gradient(180deg, rgba(23, 17, 12, 0.55), rgba(23, 17, 12, 0.62));
}

.cta-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(150vh, 1180px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%) scale(0.86);
    fill: none;
    stroke: var(--cream);
    opacity: 0.35;
    will-change: transform, opacity;
    pointer-events: none;
}
.cta-ring { stroke-width: 1; stroke-opacity: 0.5; }
.cta-ring--dash { stroke-width: 1; stroke-opacity: 0.35; stroke-dasharray: 3 10; animation: slow-rotate 80s linear infinite; transform-box: fill-box; transform-origin: center; }
.cta-ticks line { stroke-width: 1; stroke-opacity: 0.45; }
.cta-cross { stroke-opacity: 0.6; stroke-width: 1; }

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.2rem, 3vh, 2rem);
    max-width: 46rem;
}
.cta-label {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cream-2);
    transition: color var(--t-mid), letter-spacing var(--t-mid) var(--ease-out);
}
.cta-label:hover { color: var(--accent); letter-spacing: 0.52em; }
.cta-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.7rem, 6.4vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    transition: letter-spacing var(--t-slow) var(--ease-out);
}
.cta-title:hover { letter-spacing: 0.02em; }
.cta-title em { color: var(--cream-2); font-weight: 300; }
.cta .btn-solid {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.cta .btn-solid .btn-fill { background: var(--accent); }
.cta .btn-solid:hover { color: var(--cream); border-color: var(--accent); }

.cta-meta {
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(243, 238, 229, 0.9);
    text-shadow: 0 1px 10px rgba(23, 17, 12, 0.7);
}
.cta-meta a {
    color: var(--cream);
    border-bottom: 1px solid var(--accent);
    transition: color var(--t-mid);
}
.cta-meta a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   20. FOOTER — the architectural base
   -------------------------------------------------------------------------- */
.footer {
    position: relative;
    background: var(--ink);
    color: var(--cream);
    padding: 0 var(--gutter);
    overflow: hidden;
}
.footer-pattern {
    position: absolute;
    inset: 0;
    /* Pattern E — interlocking squares, a quiet tessellation */
    background-image:
        linear-gradient(45deg, var(--line-d) 25%, transparent 25%, transparent 75%, var(--line-d) 75%),
        linear-gradient(45deg, var(--line-d) 25%, transparent 25%, transparent 75%, var(--line-d) 75%);
    background-size: 56px 56px;
    background-position: 0 0, 28px 28px;
    opacity: 0.2;
    pointer-events: none;
}
.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2.3fr 1fr 1fr 1.5fr;
    gap: clamp(2rem, 4.5vw, 4.5rem);
    max-width: var(--max-w);
    margin-inline: auto;
    padding-block: clamp(3.6rem, 8vw, 6.5rem) clamp(2.8rem, 5vw, 4rem);
}
.footer-mark {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--cream);
    stroke-width: 1.4;
    margin-bottom: 1.2rem;
}
.footer-mark circle { fill: var(--accent); stroke: none; }
.footer-wordmark {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    line-height: 1;
    margin-bottom: 0.9rem;
}
.footer-tagline {
    max-width: 30ch;
    color: var(--cream-2);
    font-weight: 300;
    font-size: 0.92rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}
.footer-col-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}
.footer-col a {
    position: relative;
    color: var(--cream-2);
    font-size: 0.92rem;
    font-weight: 300;
    transition: color var(--t-mid), transform var(--t-mid);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}
.footer-link-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-col a::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    width: 7px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-mid);
}
.footer-col a:hover { color: var(--cream); transform: translateX(10px); }
.footer-col a:hover::before { transform: scaleX(1); }
.footer-hours {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--cream-3);
    margin-top: 0.4rem;
}
.footer-note {
    color: var(--cream-2);
    font-weight: 300;
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
    max-width: 26ch;
}

.footer-base {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-block: 1.4rem 1.6rem;
    border-top: 1px solid var(--line-d);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    color: var(--cream-3);
    text-transform: uppercase;
}
.footer-base-mono { color: var(--accent); }
.footer-top-link { transition: color var(--t-mid); }
.footer-top-link:hover { color: var(--cream); }

/* --------------------------------------------------------------------------
   21. BOOKING MODAL — the drawing sheet
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: grid;
    place-items: center;
    padding: var(--gutter);
    visibility: hidden;
    transition: visibility 0s 600ms;
}
.modal.open { visibility: visible; transition: none; }

.modal-veil {
    position: absolute;
    inset: 0;
    background: rgba(23, 17, 12, 0.62);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 500ms var(--ease-out);
}
.modal.open .modal-veil { opacity: 1; }

.modal-panel {
    position: relative;
    width: min(920px, 100%);
    max-height: min(88svh, 780px);
    overflow-y: auto;
    background: var(--bg);
    padding: clamp(1.6rem, 4vw, 3rem);
    transform: translateY(34px) scale(0.985);
    opacity: 0;
    transition: transform 600ms var(--ease-out), opacity 500ms var(--ease-out);
}
.modal.open .modal-panel { transform: none; opacity: 1; }

/* measured corner brackets */
.modal-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 0 solid var(--accent);
    pointer-events: none;
}
.mc-tl { top: 8px; left: 8px; border-top-width: 1.5px; border-left-width: 1.5px; }
.mc-tr { top: 8px; right: 8px; border-top-width: 1.5px; border-right-width: 1.5px; }
.mc-bl { bottom: 8px; left: 8px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.mc-br { bottom: 8px; right: 8px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.modal-close {
    position: absolute;
    top: clamp(0.9rem, 2vw, 1.4rem);
    right: clamp(0.9rem, 2vw, 1.4rem);
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    transition: transform 480ms var(--ease-io), border-color var(--t-mid), background var(--t-mid);
    z-index: 2;
}
.modal-close svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}
.modal-close:hover { transform: rotate(90deg); border-color: var(--accent); background: rgba(142, 47, 37, 0.06); }

.modal-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.55rem;
}
.modal-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.05;
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
    padding-right: 3rem;
}
.modal-title em { color: var(--accent); font-weight: 300; }

.modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(1.4rem, 3vw, 2.4rem);
    align-items: start;
}

.modal-summary {
    background: var(--bg-2);
    padding: clamp(1.2rem, 2.4vw, 1.8rem);
    position: relative;
}
.modal-summary::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--line);
    pointer-events: none;
}
.ms-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 1rem;
}
.ms-rows { display: flex; flex-direction: column; }
.ms-rows > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
}
.ms-rows dt {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.ms-rows dd {
    font-size: 0.88rem;
    font-weight: 500;
    text-align: right;
}
.ms-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line-2);
}
.ms-total span {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.ms-total strong {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
}
.ms-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--ink-2);
}

.modal-form .field { margin-bottom: 1.05rem; }
.modal-form .field input,
.modal-form .field textarea {
    width: 100%;
    border: 1px solid var(--line-2);
    background: transparent;
    padding: 0.75rem 0.9rem;
    font-size: 0.92rem;
    border-radius: 0;
    transition: border-color var(--t-mid), background var(--t-mid);
}
.modal-form .field input:focus,
.modal-form .field textarea:focus {
    outline: none;
    border-color: var(--ink);
}
.modal-form .field.error input,
.modal-form .field.error textarea { border-color: var(--accent); background: rgba(142, 47, 37, 0.05); }

/* --------------------------------------------------------------------------
   22. LIGHTBOX — the full-screen frame
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-lb);
    display: grid;
    place-items: center;
    visibility: hidden;
    transition: visibility 0s 500ms;
}
.lightbox.open { visibility: visible; transition: none; }

.lightbox-veil {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 10, 0.94);
    opacity: 0;
    transition: opacity 450ms var(--ease-out);
}
.lightbox.open .lightbox-veil { opacity: 1; }

.lightbox-stage {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 1200px);
}
.lightbox-stage img {
    display: block;
    max-width: 100%;
    max-height: 80svh;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.965);
    transition: opacity 500ms var(--ease-out), transform 550ms var(--ease-out);
}
.lightbox.open .lightbox-stage img { opacity: 1; transform: none; }

.lightbox-cap {
    position: absolute;
    z-index: 2;
    bottom: clamp(1.2rem, 4vh, 2.2rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-2);
    opacity: 0;
    transition: opacity 500ms 200ms var(--ease-out);
    white-space: nowrap;
}
.lightbox.open .lightbox-cap { opacity: 1; }
.lb-count { color: var(--accent); }
.lightbox-cap::before, .lightbox-cap::after {
    content: '';
    width: clamp(20px, 4vw, 44px);
    height: 1px;
    background: var(--line-d2);
}

.lb-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid var(--line-d2);
    display: grid;
    place-items: center;
    color: var(--cream);
    transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
    opacity: 0;
}
.lightbox.open .lb-btn { opacity: 1; }
.lb-btn svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}
.lb-btn:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.lb-prev { left: clamp(0.8rem, 3vw, 2.4rem); }
.lb-next { right: clamp(0.8rem, 3vw, 2.4rem); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

.lb-close {
    position: absolute;
    z-index: 2;
    top: clamp(1rem, 3vh, 1.8rem);
    right: clamp(1rem, 3vw, 1.8rem);
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-d2);
    display: grid;
    place-items: center;
    color: var(--cream);
    transition: transform 480ms var(--ease-io), background var(--t-mid), border-color var(--t-mid);
    opacity: 0;
}
.lightbox.open .lb-close { opacity: 1; }
.lb-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}
.lb-close:hover { transform: rotate(90deg); background: var(--accent); border-color: var(--accent); }

/* --------------------------------------------------------------------------
   23. TOAST — a quiet correction
   -------------------------------------------------------------------------- */
.toast {
    position: fixed;
    z-index: var(--z-toast);
    left: 50%;
    bottom: 1.6rem;
    transform: translate(-50%, 140%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--ink);
    color: var(--cream);
    padding: 0.9rem 1.4rem;
    font-size: 0.85rem;
    max-width: min(92vw, 460px);
    transition: transform 550ms var(--ease-out);
    box-shadow: 0 18px 44px rgba(23, 17, 12, 0.35);
}
.toast.show { transform: translate(-50%, 0); }
.toast-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   24. RESPONSIVE — recomposed, not merely scaled
   -------------------------------------------------------------------------- */

/* ---- large tablet ---- */
@media (max-width: 1180px) {
    .nav-phone { display: none; }
    .m4 { display: none; }
    .hero-orbit { width: min(78vh, 700px); right: -12vw; }
}

/* ---- short viewports: tighten the composition ---- */
@media (max-height: 780px) and (min-width: 1025px) {
    .hero-content { padding-top: calc(76px + 2vh); padding-bottom: calc(88px + 5vh); }
    .hero-eyebrow { margin-bottom: clamp(1rem, 2.4vh, 1.8rem); }
    .hero-sub { margin-top: clamp(1.1rem, 2.6vh, 1.8rem); }
    .hero-cta { margin-top: clamp(1.3rem, 3.2vh, 2.2rem); }
}

/* ---- tablet ---- */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav { height: 72px; }
    .nav.scrolled { height: 62px; }

    /* hero recomposed — circle behind, centered composition */
    .hero-content { padding-bottom: calc(150px + 6vh); }
    .hero-orbit {
        top: auto;
        bottom: 24vh;
        right: -30vw;
        width: 92vw;
        transform: none;
    }
    .m1 { top: 20vh; right: 6vw; }
    .m2 { display: none; }
    .m3 { bottom: 32vh; right: 6vw; }

    /* bookbar becomes a 2-column module + full-width button */
    .bookbar {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr 1fr;
        border-radius: 18px;
    }
    .hero { display: block; }
    .hero-media { position: absolute; }
    .bookbar-submit { grid-column: 1 / -1; padding-block: 1.15rem; }

    .intro-grid { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4rem); }
    .intro-figure { max-width: 560px; }
    .intro::before { display: none; }

    .room, .room--flip { grid-template-columns: 1fr; }
    .room-media, .room--flip .room-media,
    .room-info, .room--flip .room-info { grid-column: 1 / -1; grid-row: auto; }
    .room-media { max-width: 720px; }
    .room-num {
        top: -0.42em;
        bottom: auto;
        left: -0.25rem;
        font-size: clamp(3.2rem, 9vw, 4.6rem);
        z-index: 4;
        -webkit-text-stroke-color: rgba(243, 238, 229, 0.85);
    }
    @supports not (-webkit-text-stroke: 1px black) {
        .room-num { color: rgba(243, 238, 229, 0.55); }
    }
    .room--flip .room-num { right: auto; left: -0.25rem; text-align: left; }
    .room-info { margin-top: 1.6rem; }

    /* the diagonal rule rests on smaller canvases */
    .rooms::before { display: none; }

    .exp-grid { grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); }
    .exp-visual { position: relative; top: 0; max-width: 460px; }

    /* gallery: 2 columns, dense mosaic */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
    .g-a { grid-column: span 2; grid-row: span 2; }
    .g-b { grid-row: span 2; }
    .g-c, .g-d, .g-e,
    .g-f, .g-g, .g-h,
    .g-i, .g-j, .g-k, .g-l { grid-column: auto; grid-row: auto; }

    .loc-grid { grid-template-columns: 1fr; }
    .loc-map { max-width: 640px; }

    .footer-top { grid-template-columns: 1fr 1fr; row-gap: clamp(2.4rem, 5vw, 3.4rem); }
}

/* ---- mobile ---- */
@media (max-width: 640px) {
    :root { --sec-y: clamp(3.6rem, 16vw, 5.4rem); }

    .hero-title { font-size: clamp(2.7rem, 13.5vw, 4.2rem); }
    .hero-cta .btn { flex: 1 1 auto; }
    .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.26em; }
    .m3 { bottom: 38vh; }
    .m1 { top: 16vh; }
    .bookbar {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0.8rem;
        border-radius: 16px;
    }
    .bookbar-field { padding: 0.9rem 1.1rem; }
    .bookbar-field input, .bookbar-field select { font-size: 0.92rem; }
    .bookbar-submit { padding-block: 1.15rem; }

    .shead { grid-template-columns: 1fr; gap: 1.1rem; align-items: start; }
    .shead-num { font-size: clamp(2.6rem, 10vw, 3.4rem); }
    .shead-rule { margin-top: 0.6rem; }

    .intro-stats { grid-template-columns: 1fr; }
    .stat { flex-direction: row; align-items: baseline; justify-content: space-between; padding: 1rem 1.1rem; }

    .room-media-clip { aspect-ratio: 4 / 3; }
    .room-tag { display: none; }
    .room-foot { flex-direction: column; align-items: flex-start; gap: 1.1rem; }

    .exp-item { grid-template-columns: 2.6rem 1fr; gap: 0.8rem; }
    .exp-arch { aspect-ratio: 1 / 1.05; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
    .g-a { grid-column: span 2; grid-row: span 2; }
    .g-b { grid-row: span 2; }
    .g-c, .g-d, .g-e,
    .g-f, .g-g, .g-h,
    .g-i, .g-j, .g-k, .g-l { grid-column: auto; grid-row: auto; }
    .gitem figcaption { font-size: 0.5rem; }

    .loc-hours { flex-direction: column; gap: 0; }
    .loc-hour-sep { width: auto; height: 1px; margin: 0.1rem 0; margin-inline: 0; }
    .loc-form-grid { grid-template-columns: 1fr; }

    .modal-grid { grid-template-columns: 1fr; }
    .modal { padding: 0.8rem; }
    .modal-title { padding-right: 2.6rem; }

    .lb-btn { width: 44px; height: 44px; }
    .lb-prev { left: 0.5rem; }
    .lb-next { right: 0.5rem; }
    .lightbox-cap { font-size: 0.56rem; gap: 0.7rem; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-base { justify-content: center; text-align: center; }
    .footer-base-mono { display: none; }

    .mmenu-foot { flex-direction: column; align-items: flex-start; }
}

/* ---- very small ---- */
@media (max-width: 400px) {
    .nav-brand-text { font-size: 1.05rem; }
    .btn-nav { padding: 0.7rem 1.05rem; font-size: 0.64rem; }
    .hero-title { font-size: 2.45rem; }
}

/* --------------------------------------------------------------------------
   25. REDUCED MOTION — the architecture remains, the motion rests
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
    }

    /* everything simply appears, composed */
    [data-reveal] { opacity: 1; transform: none; }
    .room-media-clip, .room--flip .room-media-clip { clip-path: none; }
    .room-media-clip img { transform: none; }
    .hero-video { opacity: 1; transform: none; }
    .hero-grid, .hero-orbit, .orbit-ticks, .orbit-core, .orbit-node { opacity: 1; }
    .orbit-ring, .orbit-inner, .orbit-chord { stroke-dashoffset: 0; }
    .hero-eyebrow, .hero-line-inner, .hero-sub, .hero-cta, .bookbar,
    .hero-meta-item { opacity: 1; transform: none; }
    .m2 { transform: translateY(-50%); }
    .exp-item { opacity: 1; transform: none; }
    .exp-line i { transform: scaleY(1); }
    .cta-orbit { transform: translate(-50%, -50%); opacity: 0.5; }
    .cta-media img { transform: none; }
    .loader { display: none; }
}


/* ==========================================================================
   NEW SHAHEEN HOTEL — HERO V2
   Editorial Luxury / Architectural
   ========================================================================== */

.hero-v2 {
    position: relative;
    min-height: 100svh;
    height: 100svh;
    overflow: hidden;

    background: #171512;
    color: #f3eee5;

    isolation: isolate;
}


/* ---------------------------------------------------------------
   BACKGROUND IMAGE
--------------------------------------------------------------- */
.hero-v2-media {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.hero-v2-image {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /* Keep the room on the right so the bed/headboard stays visible. */
    object-position: 68% center;

    transform: scale(1.045);

    filter:
        saturate(.86)
        contrast(1.04)
        brightness(.88);

    opacity: 0;
    transition: opacity 900ms var(--ease-out);
}

.hero-v2-image.is-active {
    opacity: 1;

    animation: heroV2ImageIn 1800ms
        cubic-bezier(.22,1,.36,1)
        forwards;
}

@keyframes heroV2ImageIn {

    from {
        transform: scale(1.09);
        opacity: .65;
    }

    to {
        transform: scale(1.045);
        opacity: 1;
    }

}


/* ---------------------------------------------------------------
   CINEMATIC OVERLAY — dark on the left, transparent on the right
--------------------------------------------------------------- */
.hero-v2-overlay {
    position: absolute;
    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(13, 12, 10, .97) 0%,
            rgba(13, 12, 10, .91) 20%,
            rgba(13, 12, 10, .68) 38%,
            rgba(13, 12, 10, .24) 61%,
            rgba(13, 12, 10, .18) 100%
        ),

        linear-gradient(
            180deg,
            rgba(10, 9, 8, .40) 0%,
            transparent 24%,
            transparent 70%,
            rgba(10, 9, 8, .48) 100%
        );
}


/* ---------------------------------------------------------------
   ARCHITECTURAL PATTERN
--------------------------------------------------------------- */
.hero-v2-pattern {
    position: absolute;
    inset: 0;

    opacity: .28;

    background-image:

        linear-gradient(
            135deg,
            transparent 0 48%,
            rgba(197, 157, 74, .14) 49%,
            transparent 50%
        ),

        linear-gradient(
            45deg,
            transparent 0 48%,
            rgba(197, 157, 74, .10) 49%,
            transparent 50%
        );

    background-size:
        150px 150px,
        150px 150px;

    mask-image:
        linear-gradient(
            90deg,
            black 0%,
            rgba(0,0,0,.75) 35%,
            transparent 70%
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            black 0%,
            rgba(0,0,0,.75) 35%,
            transparent 70%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------------
   NAVIGATION
--------------------------------------------------------------- */
.hero-v2-nav {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 112px;

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

    padding:
        0
        clamp(1.5rem, 5vw, 5rem);

    z-index: 20;

    border-bottom:
        1px solid rgba(243,238,229,.09);
}


/* BRAND */
.hero-v2-brand {
    display: flex;
    align-items: center;
    gap: 1rem;

    color: #f3eee5;
}

.hero-v2-logo {
    width: 42px;
    height: 52px;

    fill: none;
    stroke: #c59d4a;
    stroke-width: 1.15;

    transition:
        transform 600ms cubic-bezier(.22,1,.36,1);
}

.hero-v2-brand:hover .hero-v2-logo {
    transform: rotate(90deg);
}


.hero-v2-brand-text {
    display: flex;
    flex-direction: column;
    gap: .18rem;
}

.hero-v2-brand-text strong {
    font-family: var(--font-sans);
    font-size: .85rem;
    font-weight: 600;

    letter-spacing: .28em;
}

.hero-v2-brand-text small {
    font-family: var(--font-mono);

    font-size: .58rem;
    letter-spacing: .42em;

    color: #cfc6b4;
}


/* NAV LINKS */
.hero-v2-links {
    display: flex;
    align-items: center;

    gap: clamp(1.5rem, 3vw, 3.3rem);

    margin-left: auto;
    margin-right: clamp(1.5rem, 3vw, 3rem);
}

.hero-v2-links a {
    position: relative;

    padding: .5rem 0;

    font-family: var(--font-mono);
    font-size: .68rem;

    font-weight: 500;
    letter-spacing: .19em;

    text-transform: uppercase;

    color: rgba(243,238,229,.9);
}

.hero-v2-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #c59d4a;

    transform:
        scaleX(0);

    transform-origin: right;

    transition:
        transform 400ms cubic-bezier(.22,1,.36,1);
}

.hero-v2-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* ACTIONS */
.hero-v2-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}


/* BOOK NOW */
.hero-v2-book {
    position: relative;

    min-width: 155px;
    height: 50px;

    border:
        1px solid rgba(197,157,74,.75);

    color: #c59d4a;

    font-family: var(--font-mono);
    font-size: .68rem;

    letter-spacing: .2em;
    text-transform: uppercase;

    overflow: hidden;

    transition:
        color 400ms ease,
        background 400ms ease;
}

.hero-v2-book::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #c59d4a;

    transform: translateX(-101%);

    transition:
        transform 450ms cubic-bezier(.22,1,.36,1);
}

.hero-v2-book span {
    position: relative;
    z-index: 1;
}

.hero-v2-book:hover {
    color: #171512;
}

.hero-v2-book:hover::before {
    transform: translateX(0);
}


/* HAMBURGER */
.hero-v2-menu {
    display: none;

    width: 46px;
    height: 46px;

    border:
        1px solid rgba(243,238,229,.45);
}

.hero-v2-menu span {
    display: block;

    width: 20px;
    height: 1px;

    margin: 5px auto;

    background: #f3eee5;
}


/* ---------------------------------------------------------------
   TOP LABEL
--------------------------------------------------------------- */
.hero-v2-top-label {
    position: absolute;

    top: 145px;
    right: 6vw;

    display: flex;
    align-items: center;
    gap: .8rem;

    font-family: var(--font-mono);
    font-size: .57rem;

    letter-spacing: .25em;
    text-transform: uppercase;

    color: rgba(243,238,229,.65);

    z-index: 5;
}

.hero-v2-top-label span {
    width: 7px;
    height: 7px;

    background: #c59d4a;

    transform: rotate(45deg);
}


/* ---------------------------------------------------------------
   MAIN CONTENT
--------------------------------------------------------------- */
.hero-v2-content {
    position: relative;
    z-index: 10;

    width: min(100%, 1500px);

    margin: 0 auto;

    padding:
        100px
        clamp(1.5rem, 8.5vw, 8rem)
        230px;
}


/* KICKER */
.hero-v2-kicker {
    display: flex;
    align-items: center;
    gap: .9rem;

    margin-bottom: 1.6rem;

    font-family: var(--font-mono);

    font-size: .68rem;
    letter-spacing: .31em;

    text-transform: uppercase;

    color: #c59d4a;

    animation:
        heroV2FadeUp
        800ms
        300ms
        cubic-bezier(.22,1,.36,1)
        both;
}

.hero-v2-kicker-line {
    display: block;

    width: 34px;
    height: 1px;

    background: #c59d4a;
}


/* TITLE */
.hero-v2-title {
    display: flex;
    flex-direction: column;

    width: max-content;
    max-width: 700px;

    font-family: var(--font-serif);

    font-size:
        clamp(
            4rem,
            6.8vw,
            7.2rem
        );

    font-weight: 400;

    line-height: .91;

    letter-spacing: -.025em;

    color: #f5f0e8;

    text-shadow:
        0 4px 25px rgba(0,0,0,.28);
}


.hero-v2-title-line {
    display: block;

    animation:
        heroV2TitleIn
        1100ms
        cubic-bezier(.22,1,.36,1)
        both;
}

.hero-v2-title-line:nth-child(1) {
    animation-delay: 400ms;
}

.hero-v2-title-line:nth-child(2) {
    animation-delay: 500ms;
}

.hero-v2-title-line:nth-child(3) {
    animation-delay: 600ms;
}


.hero-v2-title-italic {
    font-weight: 300;

    font-style: italic;

    color: #cfc0a5;

    margin-left: -.02em;
}


@keyframes heroV2TitleIn {

    from {
        opacity: 0;
        transform: translateY(45px);
        clip-path: inset(100% 0 0 0);
    }

    to {
        opacity: 1;
        transform: none;
        clip-path: inset(0);
    }

}


/* DESCRIPTION */
.hero-v2-description {
    max-width: 470px;

    margin-top: 2.1rem;

    font-family: var(--font-sans);

    font-size:
        clamp(.88rem, 1.1vw, 1rem);

    line-height: 1.8;

    font-weight: 300;

    color: rgba(243,238,229,.78);

    animation:
        heroV2FadeUp
        900ms
        800ms
        cubic-bezier(.22,1,.36,1)
        both;
}


/* BUTTONS */
.hero-v2-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: .9rem;

    margin-top: 2.4rem;

    animation:
        heroV2FadeUp
        900ms
        950ms
        cubic-bezier(.22,1,.36,1)
        both;
}


.hero-v2-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 1rem;

    min-width: 190px;
    height: 58px;

    padding: 0 1.7rem;

    font-family: var(--font-mono);

    font-size: .68rem;
    font-weight: 500;

    letter-spacing: .19em;

    text-transform: uppercase;

    transition:
        background 400ms ease,
        color 400ms ease,
        border-color 400ms ease;
}


.hero-v2-btn svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.5;

    transition:
        transform 400ms cubic-bezier(.22,1,.36,1);
}

.hero-v2-btn:hover svg {
    transform: translateX(5px);
}


/* PRIMARY */
.hero-v2-btn-primary {
    background: #c59d4a;

    color: #171512;

    border:
        1px solid #c59d4a;
}

.hero-v2-btn-primary:hover {
    background: #f0d99e;

    border-color: #f0d99e;
}


/* SECONDARY */
.hero-v2-btn-secondary {
    color: #f3eee5;

    border:
        1px solid rgba(243,238,229,.4);
}

.hero-v2-btn-secondary:hover {
    color: #171512;

    background: #f3eee5;

    border-color: #f3eee5;
}


/* ---------------------------------------------------------------
   FEATURES CARD
--------------------------------------------------------------- */
.hero-v2-features {
    position: absolute;

    left: clamp(1.5rem, 8.5vw, 8rem);
    bottom: 42px;

    z-index: 15;

    display: grid;

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

    width: min(640px, 48vw);

    min-height: 112px;

    padding: 1.2rem 1.5rem;

    border:
        1px solid rgba(243,238,229,.2);

    border-radius: 22px;

    background:
        rgba(24,21,17,.68);

    backdrop-filter:
        blur(14px)
        saturate(1.1);

    -webkit-backdrop-filter:
        blur(14px)
        saturate(1.1);

    box-shadow:
        0 25px 60px rgba(0,0,0,.22);

    animation:
        heroV2FadeUp
        1000ms
        1150ms
        cubic-bezier(.22,1,.36,1)
        both;
}


.hero-v2-feature {
    display: flex;

    align-items: center;

    gap: .85rem;

    padding: 0 1rem;

    border-right:
        1px solid rgba(243,238,229,.14);
}

.hero-v2-feature:last-child {
    border-right: 0;
}


.hero-v2-feature-icon {
    flex: 0 0 auto;

    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;
}

.hero-v2-feature-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: #c59d4a;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.hero-v2-feature strong {
    display: block;

    font-family: var(--font-mono);

    font-size: .62rem;

    letter-spacing: .14em;

    color: #f3eee5;
}

.hero-v2-feature span {
    display: block;

    margin-top: .3rem;

    font-family: var(--font-sans);

    font-size: .78rem;

    color: rgba(243,238,229,.55);
}


/* ---------------------------------------------------------------
   SLIDER
--------------------------------------------------------------- */
.hero-v2-slider {
    position: absolute;

    right: clamp(1.5rem, 5vw, 5rem);
    bottom: 100px;

    z-index: 15;

    display: flex;

    align-items: center;

    gap: 1.2rem;

    min-width: 290px;
    height: 82px;

    padding:
        0
        1.7rem;

    border:
        1px solid rgba(243,238,229,.22);

    border-radius: 42px;

    background:
        rgba(24,21,17,.56);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    animation:
        heroV2FadeUp
        1000ms
        1300ms
        cubic-bezier(.22,1,.36,1)
        both;
}


.hero-v2-slide-number {
    display: flex;

    align-items: baseline;

    gap: .4rem;

    white-space: nowrap;
}

.hero-v2-slide-number strong {
    font-family: var(--font-mono);

    font-size: 1.6rem;

    font-weight: 500;

    color: #c59d4a;
}

.hero-v2-slide-number span {
    font-family: var(--font-mono);

    font-size: .68rem;

    color: rgba(243,238,229,.5);
}


.hero-v2-slider-line {
    width: 45px;
    height: 1px;

    background:
        rgba(243,238,229,.2);
}


.hero-v2-arrow {
    display: grid;
    place-items: center;

    width: 32px;
    height: 32px;

    color: #f3eee5;

    transition:
        color 300ms ease,
        transform 300ms ease;
}

.hero-v2-arrow svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.3;
}

.hero-v2-arrow:hover {
    color: #c59d4a;
}

.hero-v2-arrow:first-of-type:hover {
    transform: translateX(-3px);
}

.hero-v2-arrow:last-of-type:hover {
    transform: translateX(3px);
}


/* ---------------------------------------------------------------
   DECORATIVE MARKS
--------------------------------------------------------------- */
.hero-v2-mark {
    position: absolute;

    z-index: 8;

    width: 10px;
    height: 10px;

    border:
        1px solid #c59d4a;

    transform: rotate(45deg);

    opacity: .7;
}

.hero-v2-mark-1 {
    top: 31%;
    right: 6%;
}

.hero-v2-mark-2 {
    top: 58%;
    right: 4%;
}

.hero-v2-mark-3 {
    top: 73%;
    right: 14%;
}


/* ---------------------------------------------------------------
   ANIMATION
--------------------------------------------------------------- */
@keyframes heroV2FadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}


/* ---------------------------------------------------------------
   TABLET
--------------------------------------------------------------- */
@media (max-width: 1100px) {

    .hero-v2-links {
        gap: 1.3rem;
    }

    .hero-v2-links a {
        font-size: .61rem;
    }

    .hero-v2-content {
        padding-left: 6vw;
    }

    .hero-v2-features {
        width: 580px;
    }

}


/* ---------------------------------------------------------------
   MOBILE
--------------------------------------------------------------- */
@media (max-width: 800px) {

    .hero-v2 {
        min-height: 100svh;
        height: auto;
    }


    .hero-v2-nav {
        height: 78px;

        padding:
            0
            1.25rem;
    }


    .hero-v2-logo {
        width: 32px;
        height: 40px;
    }


    .hero-v2-brand-text strong {
        font-size: .7rem;
        letter-spacing: .2em;
    }

    .hero-v2-brand-text small {
        font-size: .48rem;
    }


    .hero-v2-links {
        display: none;
    }


    .hero-v2-book {
        display: none;
    }


    .hero-v2-menu {
        display: block;
    }


    .hero-v2-content {

        padding:
            150px
            1.5rem
            310px;
    }


    .hero-v2-title {

        font-size:
            clamp(
                3.5rem,
                14vw,
                5rem
            );

        line-height: .93;

        max-width: 100%;
    }


    .hero-v2-description {
        max-width: 390px;

        font-size: .88rem;
    }


    .hero-v2-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .hero-v2-btn {
        min-width: 190px;
    }


    .hero-v2-features {

        left: 1.25rem;
        right: 1.25rem;

        bottom: 24px;

        width: auto;

        min-height: 92px;

        padding: .8rem;

        border-radius: 17px;
    }


    .hero-v2-feature {

        padding: 0 .5rem;

        gap: .5rem;
    }


    .hero-v2-feature-icon {
        width: 27px;
    }


    .hero-v2-feature-icon svg {
        width: 22px;
        height: 22px;
    }


    .hero-v2-feature strong {
        font-size: .48rem;

        letter-spacing: .1em;
    }


    .hero-v2-feature span {
        font-size: .62rem;
    }


    .hero-v2-slider {
        display: none;
    }


    .hero-v2-top-label {
        display: none;
    }


    .hero-v2-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(13,12,10,.9),
                rgba(13,12,10,.5)
            ),

            linear-gradient(
                180deg,
                rgba(10,9,8,.4),
                transparent 45%,
                rgba(10,9,8,.7)
            );
    }


    .hero-v2-image {
        object-position: 62% center;
    }

}


/* ---------------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------------- */
@media (max-width: 480px) {

    .hero-v2-content {
        padding:
            130px
            1.25rem
            285px;
    }


    .hero-v2-title {
        font-size: 3.2rem;
    }


    .hero-v2-kicker {
        font-size: .55rem;
        letter-spacing: .23em;
    }


    .hero-v2-description {
        font-size: .8rem;

        line-height: 1.7;
    }


    .hero-v2-feature {
        flex-direction: column;

        align-items: flex-start;
        justify-content: center;
    }


    .hero-v2-feature span {
        display: none;
    }


    .hero-v2-feature strong {
        font-size: .46rem;
    }

}


/* ---------------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    .hero-v2-image,
    .hero-v2-title-line,
    .hero-v2-kicker,
    .hero-v2-description,
    .hero-v2-buttons,
    .hero-v2-features,
    .hero-v2-slider {
        animation: none;
    }

}




