@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #f4f0e7;
  --sand: #ddd0bc;
  --pine: #203b32;
  --pine-deep: #142820;
  --sage: #8fa596;
  --honey: #c98a43;
  --honey-text: #8b5a22;
  --honey-on-dark: #e1ad72;
  --ink: #1d2924;
  --paper: #fffdf8;
  --muted: #5b6862;
  --line: rgba(29, 41, 36, 0.16);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 78rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(5.5rem, 11vw, 10rem);
  --radius-sm: 0.85rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1.4rem 4rem rgba(20, 40, 32, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
.skip-link { position: fixed; z-index: 2000; top: 0.75rem; left: 0.75rem; padding: 0.8rem 1rem; background: var(--paper); color: var(--pine); border-radius: 0.5rem; transform: translateY(-160%); transition: transform 0.2s; }
.skip-link:focus { transform: translateY(0); }

.eyebrow { margin-bottom: 1.35rem; color: var(--honey-text); font-size: 0.69rem; font-weight: 700; letter-spacing: 0.16em; line-height: 1.3; text-transform: uppercase; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 0.96; letter-spacing: -0.035em; }
h1 { font-size: clamp(3.45rem, 10vw, 7.7rem); }
h2 { margin-bottom: 1.75rem; font-size: clamp(2.75rem, 7vw, 5.6rem); }
h1 em, h2 em { color: var(--honey-text); font-weight: 500; }
h3 { margin-bottom: 0.55rem; font-size: 1.04rem; line-height: 1.35; }
.lead { max-width: 38rem; color: #46554e; font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.75; }
.section-heading { display: flex; flex-direction: column; gap: 1rem; margin-bottom: clamp(2.75rem, 6vw, 5rem); }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 29rem; margin: 0; color: var(--muted); }

.button { display: inline-flex; min-height: 3.5rem; align-items: center; justify-content: center; gap: 0.75rem; padding: 0.85rem 1.45rem; border: 1px solid transparent; border-radius: 100vw; font-size: 0.83rem; font-weight: 700; letter-spacing: 0.02em; cursor: pointer; transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background-color 0.28s, color 0.28s, border-color 0.28s; }
.button span { transition: transform 0.28s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(0.15rem, -0.15rem); }
.button:active { transform: translateY(0) scale(0.98); }
.button-primary { color: var(--pine-deep); background: var(--honey); box-shadow: 0 0.9rem 2rem rgba(201, 138, 67, 0.24); }
.button-primary:hover { background: #d69a56; box-shadow: 0 1.1rem 2.4rem rgba(201, 138, 67, 0.34); }
.button-outline { border-color: rgba(255,255,255,0.35); color: var(--paper); background: transparent; }
.button-outline:hover { border-color: var(--paper); background: rgba(255,255,255,0.08); }
.button-small { min-height: 2.85rem; padding: 0.6rem 1.15rem; font-size: 0.76rem; }
.text-link { display: inline-flex; min-height: 2.75rem; align-items: center; gap: 0.65rem; border-bottom: 1px solid currentColor; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; transition: color 0.25s, gap 0.25s; }
.text-link:hover { gap: 0.9rem; color: var(--honey-text); }
.text-link-light { color: var(--paper); }
.text-link-light:hover { color: #f1c68f; }
:focus-visible { outline: 3px solid var(--honey-text); outline-offset: 4px; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; color: var(--paper); transition: color 0.35s, background 0.35s, box-shadow 0.35s; }
.header-inner { display: flex; min-height: 4.7rem; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header.is-scrolled { color: var(--ink); background: rgba(244, 240, 231, 0.9); box-shadow: 0 0.5rem 2rem rgba(20,40,32,0.08); backdrop-filter: blur(16px); }
.brand { position: relative; z-index: 102; display: inline-flex; min-height: 2.75rem; align-items: center; gap: 0.65rem; }
.brand-mark { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 1.2rem; }
.brand-name { font-family: var(--serif); font-size: 1.34rem; font-weight: 600; letter-spacing: -0.025em; white-space: nowrap; }
.brand-name i { font-weight: 500; }
.menu-toggle { position: relative; z-index: 102; display: grid; width: 3rem; height: 3rem; padding: 0; place-content: center; gap: 0.38rem; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 1.5rem; height: 1px; background: currentColor; transition: transform 0.25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.22rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0.22rem) rotate(-45deg); }
.site-nav { position: fixed; z-index: 101; inset: 0; display: flex; align-items: flex-start; flex-direction: column; justify-content: center; gap: 0.45rem; padding: 7rem var(--gutter) 5rem; color: var(--paper); background: var(--pine-deep); opacity: 0; visibility: hidden; transform: translateY(-1rem); transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease); }
.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.site-nav a { display: flex; min-height: 3.6rem; align-items: center; font-family: var(--serif); font-size: clamp(2.3rem, 10vw, 4rem); line-height: 1; }
.header-cta { display: none; }

.hero { position: relative; display: flex; min-height: 100svh; align-items: flex-end; overflow: hidden; color: var(--paper); background: var(--pine); }
.hero-media, .hero-scrim { position: absolute; inset: 0; }
.hero-media { transform: scale(1.04); will-change: transform; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 58% center; }
.hero-scrim { background: linear-gradient(180deg, rgba(8,22,17,0.16) 5%, rgba(8,22,17,0.24) 40%, rgba(8,22,17,0.82) 100%), linear-gradient(90deg, rgba(8,22,17,0.44), transparent 68%); }
.hero-content { position: relative; z-index: 2; padding-top: 8rem; padding-bottom: clamp(7rem, 14vh, 9.5rem); }
.hero-eyebrow { color: #f4d7b1; }
.hero h1 { max-width: 62rem; margin-bottom: 1.6rem; text-shadow: 0 0.2rem 2rem rgba(0,0,0,0.2); }
.hero h1 em { display: block; color: #f1c68f; }
.hero-copy { max-width: 38rem; margin-bottom: 2.2rem; color: rgba(255,253,248,0.85); font-size: clamp(1.02rem, 2.2vw, 1.25rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 1rem; }
.hero-note { position: absolute; z-index: 2; right: var(--gutter); bottom: 6.2rem; display: none; flex-direction: column; align-items: flex-end; font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-note span:first-child { color: #f1c68f; font-family: var(--serif); font-size: 2.4rem; letter-spacing: 0; line-height: 1; }
.scroll-cue { position: absolute; z-index: 3; bottom: 1.4rem; left: 50%; display: flex; min-height: 2.75rem; align-items: center; flex-direction: column; gap: 0.45rem; color: rgba(255,255,255,0.65); font-size: 0.58rem; letter-spacing: 0.17em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { width: 1px; height: 1.6rem; background: rgba(255,255,255,0.6); animation: pulse-line 2s infinite var(--ease); }
@keyframes pulse-line { 0%,100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.45; } 50% { transform: scaleY(1); opacity: 1; } }

.trust-strip { position: relative; z-index: 4; border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.trust-item { display: flex; min-height: 5.75rem; align-items: center; gap: 0.6rem; padding: 1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #53625b; font-size: 0.75rem; }
.trust-item:nth-child(even) { border-right: 0; }
.trust-item:nth-last-child(-n+2) { border-bottom: 0; }
.trust-item strong { color: var(--pine); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.trust-dot { width: 0.42rem; height: 0.42rem; flex: 0 0 auto; border-radius: 50%; background: var(--honey); box-shadow: 0 0 0 0.28rem rgba(201,138,67,0.15); }

.story { overflow: hidden; background: var(--cream); }
.story-grid { display: grid; gap: 4rem; }
.benefits { margin-top: 3rem; border-top: 1px solid var(--line); }
.benefits article { display: grid; grid-template-columns: 2.3rem 1fr; gap: 1rem; padding-block: 1.35rem; border-bottom: 1px solid var(--line); }
.benefits article > span { color: var(--honey-text); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; }
.benefits h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.benefits p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.story-visual { position: relative; min-height: 33rem; }
.image-card { overflow: hidden; margin: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg); box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.image-card:hover img { transform: scale(1.035); }
.image-card-tall { width: 78%; height: 31rem; margin-left: auto; }
.image-card-float { position: absolute; bottom: 0; left: 0; width: 44%; height: 15.5rem; border: 0.45rem solid var(--cream); border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 0; }
.hand-note { position: absolute; top: 3%; left: 1%; color: var(--pine); font-family: var(--serif); font-size: 1.4rem; font-style: italic; line-height: 1.05; transform: rotate(-8deg); }

.section-green { color: var(--paper); background: var(--pine); }
.section-green .eyebrow, .contact .eyebrow { color: var(--honey-on-dark); }
.section-green h2 em, .contact h2 em { color: var(--honey-on-dark); }
.section-heading-light > p { color: rgba(255,255,255,0.65); }
.stay { overflow: hidden; }
.stay-grid { display: grid; gap: 1.6rem; }
.stay-card { overflow: hidden; color: var(--ink); background: var(--paper); border-radius: var(--radius-md); }
.stay-card picture { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.stay-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.stay-card:hover img { transform: scale(1.035); }
.stay-card-body { padding: clamp(1.4rem, 4vw, 2.4rem); }
.stay-card-body > div { display: flex; align-items: flex-start; gap: 1rem; }
.card-number { padding-top: 0.38rem; color: var(--honey-text); font-size: 0.65rem; font-weight: 700; }
.stay-card h3 { margin-bottom: 1rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; }
.stay-card p { color: var(--muted); }

.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-auto-flow: dense; gap: 0.75rem; }
.gallery-item { position: relative; display: block; min-height: 17rem; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius-sm); background: var(--pine); cursor: zoom-in; }
.gallery-item::after { content: "+"; position: absolute; top: 1rem; right: 1rem; display: grid; width: 2.7rem; height: 2.7rem; place-items: center; border: 1px solid rgba(255,255,255,0.55); border-radius: 50%; color: white; background: rgba(20,40,32,0.22); font-size: 1.3rem; backdrop-filter: blur(8px); transition: transform 0.3s var(--ease), background 0.3s; }
.gallery-item:hover::after { color: var(--pine-deep); background: var(--honey); transform: rotate(90deg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(0.9); }
.gallery-item > span { position: absolute; bottom: 1rem; left: 1rem; color: white; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-shadow: 0 1px 12px rgba(0,0,0,0.55); text-transform: uppercase; }

.amenities { background: var(--cream); }
.amenities-layout { display: grid; gap: 3rem; }
.fine-print { max-width: 31rem; margin-top: 2rem; padding-left: 1rem; border-left: 2px solid var(--honey); color: var(--muted); font-size: 0.78rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity { min-height: 9.2rem; padding: 1.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,248,0.45); transition: background 0.3s, transform 0.3s var(--ease); }
.amenity:hover { position: relative; z-index: 1; background: var(--paper); transform: translateY(-0.2rem); }
.amenity svg { width: 1.8rem; height: 1.8rem; margin-bottom: 1.2rem; fill: none; stroke: var(--honey-text); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.amenity h3 { margin: 0; font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }

.day { background: var(--paper); }
.timeline { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0.25rem; width: 1px; background: var(--line); }
.timeline li { position: relative; display: grid; grid-template-columns: 4.2rem 1fr; gap: 1.2rem; padding: 0 0 2.5rem 1.4rem; }
.timeline li::before { content: ""; position: absolute; top: 0.35rem; left: 0; width: 0.55rem; height: 0.55rem; border: 0.22rem solid var(--paper); border-radius: 50%; background: var(--honey); box-shadow: 0 0 0 1px var(--honey); }
.timeline li > span { color: var(--honey-text); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; }
.timeline h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; }
.timeline p { margin: 0; color: var(--muted); font-size: 0.86rem; }

.interlude { position: relative; display: grid; min-height: 72svh; place-items: center; overflow: hidden; color: var(--paper); }
.interlude > img, .interlude-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.interlude > img { object-fit: cover; object-position: center 62%; }
.interlude-scrim { background: rgba(12,28,22,0.34); }
.interlude blockquote { position: relative; z-index: 1; width: min(100% - (var(--gutter) * 2), 58rem); margin: 0; font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 1.02; text-align: center; text-shadow: 0 0.2rem 2rem rgba(0,0,0,0.25); }
.interlude em { color: #f1c68f; }

.section-sand { background: var(--sand); }
.nearby-layout { display: grid; gap: 3.5rem; }
.nearby-copy { align-self: start; }
.places { border-top: 1px solid rgba(29,41,36,0.22); }
.places article { display: grid; grid-template-columns: 2.5rem 1fr; column-gap: 1rem; padding-block: 1.4rem; border-bottom: 1px solid rgba(29,41,36,0.22); }
.places article > span { grid-row: 1 / 3; color: #8b663e; font-size: 0.66rem; font-weight: 700; }
.places h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 600; }
.places p { margin: 0; color: #5c645f; font-size: 0.86rem; }

.reviews { background: var(--cream); }
.rating-pill { display: inline-flex; width: max-content; min-height: 4.5rem; align-items: center; gap: 0.8rem; padding: 0.6rem 1.1rem; border: 1px solid var(--line); border-radius: 100vw; }
.rating-pill strong { font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.rating-pill span { color: var(--muted); font-size: 0.7rem; }
.reviews-grid { display: grid; gap: 1rem; }
.review { position: relative; min-height: 22rem; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,253,248,0.5); }
.review.featured { color: var(--paper); background: var(--pine); border-color: var(--pine); }
.quote-mark { display: block; height: 3.7rem; color: var(--honey); font-family: var(--serif); font-size: 5.5rem; line-height: 1; }
.review p { font-family: var(--serif); font-size: clamp(1.35rem, 2.7vw, 1.8rem); line-height: 1.35; }
.review footer { position: absolute; right: 2rem; bottom: 1.7rem; left: 2rem; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid currentColor; color: var(--muted); font-size: 0.68rem; opacity: 0.85; }
.featured footer { color: rgba(255,255,255,0.7); }
.review footer strong { color: inherit; }
.review-source { margin: 1.5rem 0 0; color: var(--muted); font-size: 0.68rem; }
.review-source a { text-decoration: underline; text-underline-offset: 0.2rem; }

.contact { display: grid; padding: 0; background: var(--pine-deep); color: var(--paper); }
.contact-photo { min-height: 25rem; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-panel { padding: clamp(4rem, 9vw, 8rem) var(--gutter); }
.contact-panel h2 { max-width: 48rem; }
.contact-panel > p:not(.eyebrow) { max-width: 35rem; color: rgba(255,255,255,0.7); }
.contact-actions { display: flex; align-items: stretch; flex-direction: column; gap: 0.75rem; margin: 2rem 0; }
.phone-link { display: inline-block; margin: 0.7rem 0 1.2rem; font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1; }
.contact address { color: rgba(255,255,255,0.55); font-size: 0.78rem; font-style: normal; }

.site-footer { padding: 4rem 0 6.5rem; color: rgba(255,255,255,0.72); background: #0d1c16; font-size: 0.78rem; }
.footer-top { display: grid; gap: 2rem; }
.brand-footer { color: var(--paper); }
.footer-top p { margin: 0; }
.footer-top nav, .footer-contacts { display: flex; align-items: flex-start; flex-direction: column; gap: 0.55rem; }
.footer-top nav a, .footer-contacts a { min-height: 2rem; transition: color 0.2s; }
.footer-top nav a:hover, .footer-contacts a:hover { color: var(--honey); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); font-size: 0.65rem; }

.mobile-book { position: fixed; z-index: 90; right: 0.75rem; bottom: max(0.75rem, env(safe-area-inset-bottom)); left: 0.75rem; display: flex; min-height: 3.7rem; align-items: center; justify-content: space-between; padding: 0.8rem 1.2rem; border: 1px solid rgba(255,255,255,0.25); border-radius: 100vw; color: var(--paper); background: rgba(32,59,50,0.94); box-shadow: 0 1rem 2rem rgba(20,40,32,0.26); font-size: 0.82rem; font-weight: 700; backdrop-filter: blur(14px); }

.lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; border: 0; color: white; background: rgba(8,18,14,0.96); }
.lightbox::backdrop { background: rgba(8,18,14,0.96); }
.lightbox[open] { display: grid; grid-template-columns: 3.5rem 1fr 3.5rem; align-items: center; }
.lightbox figure { display: grid; max-width: min(76rem, calc(100vw - 7rem)); max-height: calc(100dvh - 7rem); margin: auto; place-items: center; }
.lightbox img { max-width: 100%; max-height: calc(100dvh - 9rem); border-radius: 0.4rem; object-fit: contain; }
.lightbox figcaption { margin-top: 0.75rem; color: rgba(255,255,255,0.7); font-size: 0.75rem; }
.lightbox button { display: grid; width: 3rem; height: 3rem; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; color: white; background: rgba(255,255,255,0.06); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.lightbox button:hover { color: var(--pine-deep); background: var(--honey); transform: scale(1.05); }
.lightbox-close { position: fixed; z-index: 2; top: 1rem; right: 1rem; font-size: 1.8rem; }
.lightbox-nav { margin: auto; font-size: 1.3rem; }
.lightbox-count { position: fixed; bottom: 1rem; left: 50%; color: rgba(255,255,255,0.55); font-size: 0.68rem; letter-spacing: 0.12em; transform: translateX(-50%); }

.js [data-reveal] { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.benefits [data-reveal]:nth-child(2), .stay-grid [data-reveal]:nth-child(2), .amenities-grid [data-reveal]:nth-child(2n), .reviews-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.amenities-grid [data-reveal]:nth-child(3n), .reviews-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }

@media (min-width: 36rem) {
  .hero-actions, .contact-actions { align-items: center; flex-direction: row; }
  .hero-note { display: flex; }
  .trust-item { padding-inline: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 18rem; }
  .gallery-item { min-height: 0; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 2; }
}

@media (min-width: 48rem) {
  .section-heading { align-items: flex-end; flex-direction: row; justify-content: space-between; }
  .section-heading > div { max-width: 52rem; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { min-height: 6.4rem; border-bottom: 0; }
  .trust-item:nth-child(even) { border-right: 1px solid var(--line); }
  .trust-item:last-child { border-right: 0; }
  .stay-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stay-card-offset { margin-top: 4rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item-wide { grid-column: span 2; }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .amenity { min-height: 11rem; padding: 1.5rem; }
  .timeline { grid-template-columns: repeat(4, 1fr); }
  .timeline::before { top: 0.28rem; right: 0; bottom: auto; left: 0; width: auto; height: 1px; }
  .timeline li { display: block; padding: 2.2rem 1.5rem 0 0; }
  .timeline li::before { top: 0; left: 0; }
  .timeline li > span { display: block; margin-bottom: 1.2rem; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .review.featured { transform: translateY(-1.5rem); }
  .footer-top { grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr; }
}

@media (min-width: 64rem) {
  .header-inner { min-height: 5.25rem; }
  .menu-toggle { display: none; }
  .site-nav { position: static; display: flex; align-items: center; flex-direction: row; justify-content: flex-start; gap: clamp(1.1rem, 2.2vw, 2.2rem); padding: 0; color: inherit; background: transparent; opacity: 1; visibility: visible; transform: none; }
  .site-nav a { position: relative; min-height: 2.75rem; align-items: center; font-family: var(--sans); font-size: 0.72rem; font-weight: 600; }
  .site-nav a::after { content: ""; position: absolute; right: 0; bottom: 0.45rem; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease); }
  .site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-cta { display: inline-flex; }
  .site-header:not(.is-scrolled) .header-cta { border-color: rgba(255,255,255,0.35); color: var(--paper); background: rgba(255,255,255,0.06); }
  .site-header.is-scrolled .header-cta { color: var(--paper); background: var(--pine); }
  .hero-content { padding-bottom: 7rem; }
  .hero h1 { max-width: 69rem; }
  .story-grid { grid-template-columns: 0.86fr 1.14fr; gap: clamp(4rem, 8vw, 8rem); align-items: center; }
  .story-visual { min-height: 43rem; }
  .image-card-tall { height: 41rem; }
  .image-card-float { height: 18rem; }
  .amenities-layout { grid-template-columns: 0.75fr 1.25fr; gap: 6rem; align-items: start; }
  .amenities-intro { position: sticky; top: 8rem; }
  .nearby-layout { grid-template-columns: 0.82fr 1.18fr; gap: 7rem; }
  .nearby-copy { position: sticky; top: 8rem; }
  .contact { grid-template-columns: 48% 52%; min-height: 55rem; }
  .contact-panel { align-self: center; padding-left: clamp(4rem, 7vw, 7rem); }
  .mobile-book { display: none; }
  .site-footer { padding-bottom: 3rem; }
}

@media (min-width: 90rem) {
  .hero-media img { object-position: center 57%; }
  .gallery-grid { grid-auto-rows: 22rem; }
}

@media (max-width: 47.99rem) and (orientation: landscape) {
  .hero { min-height: 42rem; }
  .hero-content { padding-top: 7rem; }
  .hero h1 { font-size: clamp(3.2rem, 11vw, 5rem); }
}

@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; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero-media { transform: none !important; }
}

@supports not (backdrop-filter: blur(1rem)) {
  .site-header.is-scrolled { background: rgba(244,240,231,0.98); }
  .mobile-book { background: var(--pine); }
}
