:root {
  --ink: #171b18;
  --ink-soft: #2b312c;
  --cream: #f4efe6;
  --paper: #fbf8f2;
  --sand: #d6bea0;
  --rust: #b96138;
  --sage: #889484;
  --line: rgba(23, 27, 24, .18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page: clamp(20px, 4vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 1.6; }
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
section { scroll-margin-top: 92px; }
::selection { background: var(--rust); color: white; }

.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; transform: translateY(-150%); background: white; color: var(--ink); }
.skip-link:focus { transform: none; }
.eyebrow { margin: 0 0 18px; color: var(--rust); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow-light { color: #ead8be; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .92; }
h1 em, h2 em, h3 em { font-weight: 500; }
h2 { margin-bottom: 0; font-size: clamp(55px, 8vw, 118px); letter-spacing: -.045em; }
.section { position: relative; padding: clamp(96px, 12vw, 190px) var(--page); }
.section-dark { color: var(--cream); background: var(--ink); }
.section-index { position: absolute; top: clamp(100px, 12vw, 190px); right: var(--page); color: var(--rust); font-size: 11px; letter-spacing: .18em; }

.demo-bar { position: fixed; z-index: 102; top: 0; left: 0; width: 100%; height: 32px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 0 20px; color: rgba(244,239,230,.74); background: #0d100e; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.demo-bar span { padding: 2px 7px; border: 1px solid rgba(244,239,230,.28); border-radius: 999px; color: var(--cream); font-size: 8px; }
.demo-bar p { margin: 0; }
.demo-bar a { border-bottom: 1px solid rgba(244,239,230,.42); }

.site-header { position: fixed; z-index: 100; top: 32px; left: 0; width: 100%; height: 84px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 var(--page); border-bottom: 1px solid rgba(255,255,255,.22); color: white; transition: color .35s ease, background .35s ease, height .35s ease, box-shadow .35s ease; }
.site-header.is-scrolled { height: 70px; color: var(--ink); background: rgba(251,248,242,.94); box-shadow: 0 8px 30px rgba(23,27,24,.08); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 14px; line-height: 1; letter-spacing: -.05em; }
.brand-mark span { margin: 0 1px; font-size: 9px; }
.brand-name { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.brand-name i { font-weight: 500; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.desktop-nav a { position: relative; font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; transform: scaleX(0); transform-origin: right; background: currentColor; transition: transform .3s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.text-button { padding: 9px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu { position: fixed; z-index: 95; inset: 32px 0 0; display: none; visibility: hidden; opacity: 0; color: var(--cream); background: var(--ink); transition: opacity .3s ease, visibility .3s ease; }
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu-inner { min-height: 100%; display: flex; flex-direction: column; padding: 120px var(--page) 30px; }
.mobile-menu nav { display: grid; margin-bottom: 36px; }
.mobile-menu nav a { display: flex; align-items: center; gap: 18px; padding: 9px 0; font-family: var(--serif); font-size: clamp(34px, 10vw, 58px); line-height: 1; }
.mobile-menu nav span { color: var(--rust); font-family: var(--sans); font-size: 9px; letter-spacing: .14em; }
.mobile-menu .button { align-self: flex-start; }
.menu-note { margin: auto 0 0; color: rgba(244,239,230,.48); font-size: 11px; }

.hero { position: relative; min-height: 100svh; overflow: hidden; color: white; background: var(--ink); }
.hero-media, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; animation: hero-in 1.4s ease both; }
.hero-shade { background: linear-gradient(90deg, rgba(11,14,12,.72) 0%, rgba(11,14,12,.28) 58%, rgba(11,14,12,.08)), linear-gradient(0deg, rgba(11,14,12,.6), transparent 48%); }
.hero-content { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: 170px var(--page) clamp(180px, 16vw, 230px); }
.hero h1 { max-width: 980px; margin: 0; font-size: clamp(68px, 10.4vw, 158px); letter-spacing: -.055em; text-wrap: balance; }
.hero h1 em { margin-left: clamp(24px, 9vw, 140px); }
.hero-copy { width: min(100%, 660px); display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin: 36px 0 0 clamp(24px, 9vw, 140px); }
.hero-copy > p { max-width: 400px; margin: 0; color: rgba(255,255,255,.78); font-size: 14px; }
.circle-link { flex: 0 0 84px; width: 84px; height: 84px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; transition: color .3s, background .3s; }
.circle-link svg { display: none; width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.circle-link:hover { color: var(--ink); background: white; }
.hero-coordinate { position: absolute; z-index: 2; top: 50%; right: 20px; display: flex; align-items: center; gap: 12px; transform: translate(42%, -50%) rotate(90deg); color: rgba(255,255,255,.54); font-size: 8px; letter-spacing: .2em; }
.hero-coordinate i { width: 70px; height: 1px; background: rgba(255,255,255,.38); }
.availability-bar { position: absolute; z-index: 4; right: var(--page); bottom: 0; left: var(--page); min-height: 104px; display: grid; grid-template-columns: 1fr 1fr .8fr 1.05fr; color: var(--ink); background: var(--cream); }
.availability-field, .availability-submit { min-width: 0; padding: 22px clamp(18px, 2.6vw, 42px); border: 0; border-right: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.availability-field span { display: block; margin-bottom: 8px; color: #74776e; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.availability-field strong { font-family: var(--serif); font-size: clamp(18px, 1.7vw, 24px); font-weight: 500; }
.availability-submit { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-right: 0; color: white; background: var(--rust); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: background .3s; }
.availability-submit:hover { background: #974924; }
.availability-submit svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.story { overflow: hidden; background: var(--paper); }
.story-heading { margin-bottom: clamp(60px, 8vw, 120px); }
.story-layout { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(240px, .68fr); gap: clamp(36px, 7vw, 110px); align-items: start; }
.story-image { margin: 0; }
.story-image img { height: 100%; object-fit: cover; }
.story-image-main { grid-row: span 2; }
.story-image-main img { aspect-ratio: 1.12; }
.story-image figcaption { margin-top: 10px; color: #77786f; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.story-copy { padding-top: clamp(10px, 5vw, 72px); }
.story-copy > p { color: #565b56; }
.story-copy .story-lede { margin-bottom: 26px; color: var(--ink); font-family: var(--serif); font-size: clamp(24px, 2.5vw, 39px); line-height: 1.18; letter-spacing: -.025em; }
.story-image-detail { width: 70%; margin: 40px 0 0 auto; }
.story-image-detail img { aspect-ratio: .8; object-fit: cover; }
.arrow-link { display: inline-flex; align-items: center; gap: 34px; margin-top: 20px; padding: 0 0 8px; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.arrow-link span { transition: transform .25s; }
.arrow-link:hover span { transform: translate(3px, -3px); }
.story-facts { max-width: 880px; display: grid; grid-template-columns: repeat(3, 1fr); margin: clamp(70px, 10vw, 150px) 0 0 auto; border-top: 1px solid var(--line); }
.story-facts div { display: grid; gap: 2px; padding: 25px 24px; border-right: 1px solid var(--line); }
.story-facts div:last-child { border-right: 0; }
.story-facts strong { font-family: var(--serif); font-size: clamp(36px, 4vw, 58px); font-weight: 500; line-height: 1; }
.story-facts span { color: #73766f; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.stays { padding: clamp(100px, 12vw, 180px) var(--page); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .5fr); gap: 70px; align-items: end; margin-bottom: clamp(64px, 9vw, 130px); }
.section-heading > p { max-width: 430px; margin: 0 0 10px; color: #656b65; }
.section-dark .section-heading > p { color: rgba(244,239,230,.55); }
.stay-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(24px, 5vw, 80px); row-gap: clamp(70px, 9vw, 130px); }
.stay-card:nth-child(even) { transform: translateY(clamp(50px, 8vw, 110px)); }
.stay-image { position: relative; display: block; overflow: hidden; background: #242a25; }
.stay-image img { aspect-ratio: 1.13; object-fit: cover; transition: transform .75s cubic-bezier(.2,.8,.2,1), filter .4s; }
.stay-card:nth-child(2) .stay-image img, .stay-card:nth-child(3) .stay-image img { aspect-ratio: .94; }
.stay-image:hover img { transform: scale(1.035); filter: brightness(.82); }
.stay-number { position: absolute; top: 16px; left: 16px; min-width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--cream); font-size: 9px; }
.stay-view { position: absolute; right: 18px; bottom: 16px; padding: 8px 12px; transform: translateY(10px); opacity: 0; color: white; background: rgba(23,27,24,.72); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; transition: opacity .3s, transform .3s; }
.stay-image:hover .stay-view { transform: none; opacity: 1; }
.stay-info { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(244,239,230,.2); }
.stay-info p { margin: 0 0 6px; color: rgba(244,239,230,.48); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.stay-info h3 { margin: 0; font-size: clamp(32px, 3.4vw, 50px); }
.stay-price { flex: 0 0 auto; align-self: flex-end; text-align: right; }
.stay-price strong { color: var(--cream); font-family: var(--serif); font-size: 22px; font-weight: 500; }
.stays-cta { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: clamp(130px, 17vw, 250px); }
.stays-cta p { margin: 0; color: rgba(244,239,230,.55); }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 26px; border: 1px solid currentColor; background: transparent; cursor: pointer; font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; transition: color .3s, background .3s, border-color .3s; }
.button-light { color: var(--cream); }
.button-light:hover { color: var(--ink); background: var(--cream); }
.button-dark { color: white; border-color: var(--ink); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; }

.experience { background: var(--cream); }
.experience-editorial { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; gap: clamp(18px, 3vw, 40px); }
.experience-feature { position: relative; grid-row: span 2; overflow: hidden; }
.experience-feature img { height: 100%; min-height: 820px; object-fit: cover; }
.experience-tile { position: relative; overflow: hidden; }
.experience-tile img { aspect-ratio: 1.38; object-fit: cover; }
.experience-tile-tall { display: none; }
.experience-editorial article::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(10,12,10,.78)); }
.image-caption { position: absolute; z-index: 2; right: clamp(20px, 3vw, 42px); bottom: clamp(20px, 3vw, 42px); left: clamp(20px, 3vw, 42px); color: white; }
.image-caption span { font-size: 9px; letter-spacing: .16em; }
.image-caption h3 { margin: 9px 0; font-size: clamp(34px, 4vw, 58px); }
.image-caption p { margin: 0; color: rgba(255,255,255,.72); }
.experience-list { align-self: end; padding: clamp(26px, 4vw, 58px); background: var(--paper); }
.experience-list ul { margin: 0; padding: 0; list-style: none; }
.experience-list li { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.experience-list li span { font-family: var(--serif); font-size: clamp(19px, 2vw, 28px); }
.experience-list li em { align-self: center; color: #7e8179; font-size: 9px; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }

.rituals { padding: clamp(100px, 12vw, 180px) var(--page) 0; color: var(--cream); background: #252b26; }
.rituals-intro { margin-bottom: clamp(60px, 8vw, 110px); }
.ritual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0 calc(-1 * var(--page)); }
.ritual-card { position: relative; min-height: min(76vw, 900px); overflow: hidden; background: var(--ink); }
.ritual-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.ritual-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,16,14,.88), rgba(13,16,14,.05) 70%); }
.ritual-card:hover img { transform: scale(1.03); }
.ritual-overlay { position: absolute; z-index: 2; right: clamp(24px, 4vw, 70px); bottom: clamp(36px, 6vw, 86px); left: clamp(24px, 4vw, 70px); }
.ritual-overlay h3 { margin: 0 0 24px; font-size: clamp(55px, 7vw, 105px); }
.ritual-overlay > p:not(.eyebrow) { max-width: 460px; color: rgba(255,255,255,.72); }
.arrow-link-light { color: white; }

.gallery { background: var(--paper); }
.gallery-heading { display: flex; justify-content: space-between; gap: 60px; align-items: flex-end; margin-bottom: clamp(60px, 8vw, 120px); }
.gallery-heading > p { max-width: 320px; margin-bottom: 10px; color: #686d67; }
.gallery-mosaic { display: grid; grid-template-columns: 1fr .74fr 1fr; grid-template-rows: 32vw 22vw 25vw; gap: clamp(8px, 1.4vw, 22px); }
.gallery-item { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; background: #ddd; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .4s; }
.gallery-item span { position: absolute; right: 12px; bottom: 12px; padding: 6px 9px; opacity: 0; color: white; background: rgba(23,27,24,.7); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; transition: opacity .3s; }
.gallery-item:hover img { transform: scale(1.03); filter: brightness(.8); }
.gallery-item:hover span { opacity: 1; }
.gallery-a { grid-column: 1 / 3; }
.gallery-b { grid-column: 3; grid-row: 1 / 3; }
.gallery-c { grid-column: 1; }
.gallery-d { grid-column: 2; }
.gallery-e { grid-column: 1 / 2; }
.gallery-f { grid-column: 2 / 4; }

.gather { position: relative; min-height: 86svh; display: flex; align-items: flex-end; overflow: hidden; color: white; }
.gather > img, .gather-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.gather > img { object-fit: cover; }
.gather-shade { background: linear-gradient(90deg, rgba(12,15,13,.72), rgba(12,15,13,.12)), linear-gradient(0deg, rgba(12,15,13,.5), transparent 60%); }
.gather-content { position: relative; z-index: 2; max-width: 800px; padding: clamp(90px, 10vw, 160px) var(--page); }
.gather h2 { font-size: clamp(65px, 9vw, 130px); }
.gather-content > p:not(.eyebrow) { max-width: 500px; margin: 30px 0; color: rgba(255,255,255,.76); }

.closing { padding: clamp(120px, 16vw, 240px) var(--page); text-align: center; }
.closing h2 { margin-bottom: 48px; }
.closing-note { margin: 18px 0 0; color: rgba(244,239,230,.38); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.site-footer { padding: clamp(70px, 8vw, 120px) var(--page) 30px; color: var(--cream); background: #0d100e; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 46px; border-bottom: 1px solid rgba(244,239,230,.16); }
.footer-top > p { margin: 0; color: rgba(244,239,230,.48); font-family: var(--serif); font-size: 20px; font-style: italic; }
.footer-grid { display: grid; grid-template-columns: .8fr 1fr 1.5fr 1fr; gap: clamp(30px, 5vw, 80px); padding: 60px 0 90px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a, .footer-grid p:not(.footer-label) { margin: 0 0 8px; color: rgba(244,239,230,.58); font-size: 11px; }
.footer-grid a:hover { color: white; }
.footer-label { margin: 0 0 22px; color: #ead8be; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(244,239,230,.16); color: rgba(244,239,230,.34); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

dialog { color: var(--ink); }
dialog::backdrop { background: rgba(10,12,10,.76); backdrop-filter: blur(5px); }
.booking-dialog { width: min(1120px, calc(100% - 32px)); max-width: none; height: min(760px, calc(100dvh - 32px)); max-height: none; padding: 0; overflow: hidden; border: 0; background: var(--paper); }
.booking-dialog[open] { animation: modal-in .4s ease both; }
.booking-shell { height: 100%; display: grid; grid-template-columns: .82fr 1.18fr; }
.booking-visual { position: relative; min-width: 0; overflow: hidden; color: white; background: var(--ink); }
.booking-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,14,12,.84), transparent 70%); }
.booking-visual img { width: 100%; height: 100%; object-fit: cover; }
.booking-visual > div { position: absolute; z-index: 2; right: 40px; bottom: 40px; left: 40px; }
.booking-visual > div p:last-child { max-width: 350px; margin: 0; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 25px; line-height: 1.25; }
.booking-content { position: relative; height: 100%; padding: clamp(50px, 6vw, 90px); overflow: auto; }
.dialog-close { position: absolute; z-index: 3; top: 20px; right: 20px; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-family: var(--sans); font-size: 23px; font-weight: 300; line-height: 1; }
.booking-content h2, .notice-dialog h2 { margin-bottom: 20px; font-size: clamp(48px, 5vw, 76px); }
.booking-intro, .results-dates, .booking-success > p { color: #676c66; }
.booking-content form { display: grid; gap: 20px; margin-top: 36px; }
.booking-content label { display: grid; gap: 8px; color: #6d716b; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.booking-content input, .booking-content select { width: 100%; height: 54px; padding: 0 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: transparent; font-size: 14px; text-transform: none; }
.booking-date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-error { min-height: 20px; color: #9d321d; font-size: 11px; }
.booking-back { margin: 0 0 34px; padding: 0; border: 0; background: transparent; cursor: pointer; color: #696d67; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.booking-results { display: grid; gap: 10px; margin-top: 28px; }
.booking-result { display: grid; grid-template-columns: 100px 1fr auto; gap: 18px; align-items: center; padding: 10px; border: 1px solid var(--line); }
.booking-result img { width: 100px; height: 80px; object-fit: cover; }
.booking-result h3 { margin: 0 0 3px; font-size: 25px; }
.booking-result p { margin: 0; color: #74776f; font-size: 10px; }
.booking-result button { padding: 10px 13px; border: 0; color: white; background: var(--ink); cursor: pointer; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.booking-success { padding-top: 60px; }
.success-mark { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 50%; color: white; background: var(--rust); font-size: 22px; }
.success-copy { color: var(--ink) !important; font-family: var(--serif); font-size: 25px; }
.notice-dialog { width: min(480px, calc(100% - 32px)); padding: 70px 60px 55px; border: 0; background: var(--paper); }
.notice-dialog[open] { animation: modal-in .35s ease both; }
.notice-dialog > p:not(.eyebrow) { margin-bottom: 28px; color: #656a64; }

.lightbox { position: fixed; z-index: 300; inset: 0; visibility: hidden; opacity: 0; display: grid; grid-template-columns: 80px 1fr 80px; align-items: center; color: white; background: rgba(10,12,10,.96); transition: opacity .3s, visibility .3s; }
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox figure { max-width: min(1100px, 82vw); max-height: 84vh; margin: auto; text-align: center; }
.lightbox-img { max-height: 78vh; object-fit: contain; }
.lightbox-caption { margin-top: 12px; color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.lightbox-close, .lightbox-arrow { border: 0; color: white; background: transparent; cursor: pointer; }
.lightbox-close { position: absolute; top: 30px; right: 34px; font-size: 34px; font-weight: 300; }
.lightbox-arrow { height: 80px; font-size: 24px; }
.mobile-book { display: none; }

.reveal, .reveal-media { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-media { transform: translateY(35px); }
.reveal.is-visible, .reveal-media.is-visible { opacity: 1; transform: none; }
@keyframes hero-in { from { opacity: .4; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.99); } to { opacity: 1; transform: none; } }

/* Room detail pages */
.room-page { background: var(--cream); }
.room-page .site-header { color: white; }
.room-page .site-header.is-scrolled { color: var(--ink); }
.room-hero { position: relative; min-height: 88svh; display: flex; align-items: flex-end; overflow: hidden; color: white; background: var(--ink); }
.room-hero > img, .room-hero::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.room-hero > img { object-fit: cover; }
.room-hero::after { content: ""; background: linear-gradient(0deg, rgba(10,12,10,.85), transparent 70%), linear-gradient(90deg, rgba(10,12,10,.35), transparent); }
.room-hero-content { position: relative; z-index: 2; width: 100%; padding: 190px var(--page) 70px; }
.room-back { display: inline-block; margin-bottom: 55px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.room-hero h1 { max-width: 1050px; margin: 0; font-size: clamp(72px, 11vw, 155px); letter-spacing: -.055em; }
.room-hero-meta { display: flex; gap: 32px; margin-top: 28px; color: rgba(255,255,255,.72); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.room-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 160px); padding: clamp(100px, 12vw, 180px) var(--page); }
.room-intro h2 { font-size: clamp(56px, 7vw, 100px); }
.room-description { max-width: 660px; }
.room-description .lede { color: var(--ink); font-family: var(--serif); font-size: clamp(25px, 2.7vw, 40px); line-height: 1.2; }
.room-description p { color: #636760; }
.room-spec-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.room-spec-row div { padding: 30px var(--page); border-right: 1px solid var(--line); }
.room-spec-row div:last-child { border-right: 0; }
.room-spec-row span { display: block; margin-bottom: 8px; color: #7c8079; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.room-spec-row strong { font-family: var(--serif); font-size: clamp(20px, 2vw, 29px); font-weight: 500; }
.room-gallery-grid { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 36vw 36vw; gap: 10px; padding: 10px; background: var(--paper); }
.room-gallery-grid button { min-width: 0; padding: 0; overflow: hidden; border: 0; background: #ddd; cursor: zoom-in; }
.room-gallery-grid button:first-child { grid-row: span 2; }
.room-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.room-gallery-grid button:hover img { transform: scale(1.025); }
.room-amenities { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; padding: clamp(100px, 12vw, 180px) var(--page); }
.room-amenities h2 { font-size: clamp(55px, 7vw, 95px); }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; align-content: start; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.amenity-list li { padding: 17px 10px 17px 0; border-bottom: 1px solid var(--line); color: #505650; }
.amenity-list li::before { content: "—"; margin-right: 12px; color: var(--rust); }
.room-next { padding: clamp(100px, 13vw, 190px) var(--page); text-align: center; }
.room-next h2 { margin-bottom: 40px; }
.room-next-links { display: flex; justify-content: center; gap: 20px; margin-top: 60px; flex-wrap: wrap; }
.room-next-links a { color: rgba(244,239,230,.55); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.room-next-links a:hover { color: white; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-actions .text-button { display: none; }
  .menu-toggle, .mobile-menu { display: block; }
  .hero-content { padding-bottom: 210px; }
  .hero h1 em { margin-left: 0; }
  .availability-bar { grid-template-columns: 1fr 1fr 1.05fr; }
  .availability-field:nth-child(3) { display: none; }
  .experience-feature img { min-height: 650px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-shell { grid-template-columns: .65fr 1.35fr; }
}

@media (max-width: 720px) {
  :root { --page: 20px; }
  body { font-size: 14px; }
  .demo-bar { justify-content: space-between; height: 30px; padding: 0 12px; }
  .demo-bar span { flex: 0 0 auto; }
  .demo-bar p { min-width: 0; overflow: hidden; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
  .demo-bar p a { display: none; }
  .site-header { top: 30px; height: 68px; }
  .site-header.is-scrolled { height: 62px; }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 32px; height: 32px; }
  .mobile-menu { inset: 30px 0 0; }
  .hero { min-height: 790px; }
  .hero-media { object-position: 58% center; }
  .hero-content { min-height: 790px; padding: 160px 20px 194px; }
  .hero h1 { font-size: clamp(62px, 19vw, 86px); }
  .hero-copy { display: block; margin: 28px 0 0; }
  .hero-copy > p { max-width: 300px; }
  .circle-link { width: auto; height: auto; display: flex; justify-content: flex-start; gap: 14px; margin-top: 24px; border: 0; border-radius: 0; }
  .circle-link svg { display: block; }
  .circle-link:hover { color: white; background: transparent; }
  .hero-coordinate { display: none; }
  .availability-bar { right: 12px; bottom: 14px; left: 12px; min-height: 72px; grid-template-columns: 1fr 72px; }
  .availability-field { padding: 14px 16px; }
  .availability-field:nth-child(2), .availability-field:nth-child(3) { display: none; }
  .availability-field span { margin: 0 0 2px; font-size: 8px; }
  .availability-field strong { font-size: 17px; }
  .availability-submit { justify-content: center; padding: 0; }
  .availability-submit span { display: none; }
  .section { padding-top: 95px; padding-bottom: 95px; }
  .section-index { top: 98px; }
  h2 { font-size: clamp(53px, 16vw, 78px); }
  .story-heading { margin-bottom: 52px; }
  .story-layout { display: flex; flex-direction: column; gap: 34px; }
  .story-image-main { order: 1; }
  .story-copy { order: 2; padding: 0; }
  .story-image-detail { order: 3; width: 66%; margin-top: 8px; }
  .story-facts { grid-template-columns: 1fr; margin-top: 70px; }
  .story-facts div { grid-template-columns: 90px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading { display: block; margin-bottom: 55px; }
  .section-heading > p { margin-top: 28px; }
  .stay-list { display: block; }
  .stay-card, .stay-card:nth-child(even) { margin-bottom: 68px; transform: none; }
  .stay-card:nth-child(2) .stay-image img, .stay-card:nth-child(3) .stay-image img, .stay-image img { aspect-ratio: 1.03; }
  .stay-view { display: none; }
  .stay-info { display: block; }
  .stay-price { margin-top: 14px !important; text-align: left; }
  .stays-cta { display: block; margin-top: 30px; text-align: center; }
  .stays-cta p { margin-bottom: 18px; }
  .experience-editorial { display: block; }
  .experience-feature, .experience-tile, .experience-list { margin-bottom: 14px; }
  .experience-feature img { min-height: 560px; }
  .experience-tile img { aspect-ratio: 1.08; }
  .experience-tile-tall { display: block; }
  .experience-tile-tall img { aspect-ratio: .86; }
  .experience-list { padding: 32px 20px; }
  .ritual-grid { display: block; }
  .ritual-card { min-height: 720px; }
  .gallery-heading { display: block; margin-bottom: 50px; }
  .gallery-heading > p { margin-top: 24px; }
  .gallery-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 230px 320px 230px; }
  .gallery-a { grid-column: 1 / 3; }
  .gallery-b { grid-column: 1; grid-row: 2; }
  .gallery-c { grid-column: 2; grid-row: 2; }
  .gallery-d { grid-column: 1; grid-row: 3; }
  .gallery-e { grid-column: 2; grid-row: 3; }
  .gallery-f { display: none; }
  .gather { min-height: 760px; }
  .gather > img { object-position: 54% center; }
  .footer-top { align-items: flex-start; }
  .footer-top > p { display: none; }
  .footer-grid { grid-template-columns: 1fr; padding: 50px 0 70px; }
  .footer-bottom { display: grid; gap: 8px; }
  .mobile-book { position: fixed; z-index: 90; right: 12px; bottom: 12px; left: 12px; min-height: 52px; display: block; padding: 12px 20px; transform: translateY(90px); border: 0; color: white; background: var(--rust); box-shadow: 0 10px 30px rgba(23,27,24,.25); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; transition: transform .35s ease; }
  .mobile-book.is-visible { transform: none; }
  .booking-dialog { width: 100%; height: 100dvh; }
  .booking-shell { display: block; }
  .booking-visual { display: none; }
  .booking-content { padding: 74px 20px 35px; }
  .booking-content h2 { font-size: 55px; }
  .booking-date-grid { grid-template-columns: 1fr; }
  .booking-result { grid-template-columns: 76px 1fr; }
  .booking-result img { width: 76px; height: 70px; }
  .booking-result button { grid-column: 1 / 3; min-height: 38px; }
  .notice-dialog { padding: 65px 28px 40px; }
  .lightbox { grid-template-columns: 45px 1fr 45px; }
  .lightbox figure { max-width: calc(100vw - 90px); }
  .room-hero { min-height: 780px; }
  .room-hero-content { padding: 150px 20px 55px; }
  .room-hero h1 { font-size: clamp(66px, 19vw, 92px); }
  .room-back { margin-bottom: 38px; }
  .room-hero-meta { flex-wrap: wrap; gap: 12px 22px; }
  .room-intro { display: block; }
  .room-intro h2 { margin-bottom: 42px; }
  .room-spec-row { grid-template-columns: 1fr 1fr; }
  .room-spec-row div { padding: 22px 20px; border-bottom: 1px solid var(--line); }
  .room-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 390px 250px 250px; }
  .room-gallery-grid button:first-child { grid-row: auto; }
  .room-amenities { display: block; }
  .room-amenities h2 { margin-bottom: 48px; }
  .amenity-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-media { opacity: 1; transform: none; }
}
