/* ============================================================
   Samlaun Chalet & Retreat — Design Tokens & Base
   Palette inspired by aged pine, raw stone, evening sky.
   ============================================================ */

:root {
  /* Colors */
  --bg: #faf6ef;          /* warm cream — paper */
  --bg-alt: #f1ead8;      /* deeper cream */
  --surface: #ffffff;
  --ink: #2a1f15;         /* dark wood */
  --ink-soft: #5a4a3a;    /* muted brown */
  --muted: #8a7864;
  --line: #e6dcc6;

  --accent: #b85c2c;      /* terracotta / wood-fire */
  --accent-dark: #8a3f15;
  --forest: #3a4a2c;      /* pine green */
  --gold: #c89856;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Satoshi', system-ui, -apple-system, Helvetica, Arial, sans-serif;

  /* Sizing */
  --text-xs: clamp(.75rem, .7rem + .2vw, .85rem);
  --text-sm: clamp(.875rem, .82rem + .25vw, .95rem);
  --text-base: clamp(1rem, .95rem + .25vw, 1.075rem);
  --text-lg: clamp(1.125rem, 1rem + .5vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-hero: clamp(2.75rem, 2rem + 4vw, 5.5rem);

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px;
  --space-4: 16px; --space-6: 24px; --space-8: 32px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px;
  --space-24: 96px; --space-32: 128px;

  --radius: 4px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(42,31,21,.08);
  --shadow: 0 8px 30px rgba(42,31,21,.12);
  --shadow-lg: 0 24px 60px rgba(42,31,21,.18);

  --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; letter-spacing: -.01em; line-height: 1.15; color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }

/* Eyebrow / labels */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 var(--space-4);
}
.eyebrow.light { color: var(--gold); }
.eyebrow.center { text-align: center; }

.section-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
  max-width: 22ch;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title.light { color: #faf6ef; }

.lede { font-size: var(--text-lg); color: var(--ink-soft); margin-top: 0; margin-bottom: var(--space-4); }

.section { padding: clamp(var(--space-20), 10vw, var(--space-32)) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3) 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink);
}
.site-header:not(.scrolled) .brand { color: #faf6ef; }
.brand-mark { width: 28px; height: 28px; }
.brand-mark-img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(0,0,0,.18)); }
.brand-footer .brand-mark-img { width: 44px; height: 44px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.05;
  display: inline-flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
  margin-top: 3px;
}
@media (max-width: 640px) {
  .brand-name { font-size: 1.2rem; }
  .brand-sub { font-size: .54rem; letter-spacing: .2em; }
}
.nav-links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
}
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }
.site-header:not(.scrolled) .nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: background .2s ease;
}
.site-header:not(.scrolled) .nav-toggle span { background: #faf6ef; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-block { width: 100%; padding: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #faf6ef;
}
.hero-image { position: absolute; inset: 0; }
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,12,5,.55) 0%, rgba(20,12,5,.25) 35%, rgba(20,12,5,.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-24);
  padding-bottom: var(--space-12);
  max-width: 800px;
}
.hero .eyebrow { color: var(--gold); margin-bottom: var(--space-6); }
.hero-title {
  font-size: var(--text-hero);
  color: #faf6ef;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: var(--space-6);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(250, 246, 239, .9);
  max-width: 580px;
  margin: 0 0 var(--space-8);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ============================================================
   FACTS strip
   ============================================================ */
.facts {
  background: var(--ink);
  color: #faf6ef;
  padding: var(--space-8) 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  font-weight: 500;
  color: var(--gold);
}
.fact-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(250, 246, 239, .7);
}

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--bg); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}
.story-text p { color: var(--ink-soft); margin: 0 0 var(--space-4); }
.story-images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-4);
}
.story-images img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.story-images .img-1 {
  grid-column: 1 / span 6;
  grid-row: 1;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.story-images .img-2 {
  grid-column: 2 / span 5;
  grid-row: 2;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================================
   RIVER
   ============================================================ */
.river { background: var(--bg-alt); }
.river-head {
  max-width: 720px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.river-head .section-title { margin-bottom: var(--space-4); }
.river-lede {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0;
}
.river-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 820px;
  margin: 0 auto;
}
.river-video {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 9 / 16;
  box-shadow: 0 10px 30px rgba(42, 31, 21, 0.15);
}
.river-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .river-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIDEO TOUR
   ============================================================ */
.tour { background: var(--bg-alt); }
.tour-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}
.tour-text .section-title { margin-bottom: var(--space-4); }
.tour-text p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 var(--space-6);
}
.tour-cta { display: inline-flex; }
.tour-video {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 14px 40px rgba(42, 31, 21, 0.18);
  aspect-ratio: 9 / 16;
  max-width: 380px;
  justify-self: center;
  width: 100%;
}
.tour-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 880px) {
  .tour-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .tour-text { text-align: center; }
}

/* ============================================================
   SURKANDA DEVI SPOTLIGHT
   ============================================================ */
.surkanda { background: var(--bg); }
.surkanda-head {
  max-width: 780px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.surkanda-head .section-title { margin-bottom: var(--space-4); }
.surkanda-lede {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0;
}
.surkanda-lede strong {
  color: var(--accent);
  font-weight: 600;
}
.surkanda-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-3);
}
.surkanda-grid .sg {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 8px 24px rgba(42, 31, 21, 0.12);
}
.surkanda-grid .sg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.surkanda-grid .sg:hover img { transform: scale(1.03); }
.sg-1 { grid-column: span 3; grid-row: span 2; }
.sg-2 { grid-column: span 3; grid-row: span 1; }
.sg-3 { grid-column: span 2; grid-row: span 1; }
.sg-4 { grid-column: span 1; grid-row: span 1; }
@media (max-width: 860px) {
  .surkanda-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .sg-1, .sg-2, .sg-3, .sg-4 { grid-column: span 1; grid-row: span 1; }
  .sg-1 { grid-column: span 2; grid-row: span 2; }
}

/* ============================================================
   FULL BLEED
   ============================================================ */
.bleed {
  position: relative;
  height: 65vh;
  min-height: 480px;
  overflow: hidden;
}
.bleed img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.bleed::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,12,5,.6) 100%);
  z-index: 1;
}
.bleed-caption {
  position: absolute;
  bottom: var(--space-12);
  left: 0; right: 0;
  z-index: 2;
  color: #faf6ef;
}
.bleed-title {
  font-size: var(--text-2xl);
  color: #faf6ef;
  max-width: 18ch;
  font-weight: 400;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities { background: var(--bg-alt); }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.amenity {
  text-align: left;
  padding: var(--space-6);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity svg {
  width: 32px; height: 32px;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.amenity h3 {
  font-size: var(--text-lg);
  margin: 0 0 var(--space-2);
}
.amenity p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms { background: var(--bg); }
.rooms .section-title { margin-bottom: var(--space-16); }
.room-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-20);
}
.room-card.reverse {
  grid-template-columns: 1fr 1.3fr;
}
.room-card.reverse .room-images { order: 2; }
.room-card.reverse .room-text { order: 1; }
.room-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.room-text h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.room-meta {
  font-size: var(--text-sm);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 var(--space-4);
  font-weight: 500;
}
.room-text p:last-child { color: var(--ink-soft); margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-alt); }
.gallery .section-title { margin-bottom: var(--space-12); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-4);
}
.g {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.g img, .g video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.g:hover img, .g:hover video { transform: scale(1.05); }
.g-large {
  grid-column: span 2;
  grid-row: span 2;
}
.g-tall {
  grid-row: span 2;
}

/* ============================================================
   NEARBY
   ============================================================ */
.nearby { background: var(--bg); }
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.distances {
  margin-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.distances li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-base);
}
.distances li span:last-child {
  color: var(--accent);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.nearby-map {
  position: sticky;
  top: 100px;
}
.map-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.map-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.map-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
}
.map-visual svg {
  width: 100%; height: 100%;
  display: block;
}
.map-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-6);
  background: var(--accent);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: .02em;
}
.map-cta .arrow {
  transition: transform .25s ease;
}
.map-card:hover .map-cta .arrow { transform: translateX(4px); }

/* ============================================================
   BOOK
   ============================================================ */
.book {
  background: var(--ink);
  color: #faf6ef;
  background-image:
    radial-gradient(ellipse at top right, rgba(200,152,86,.12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(184,92,44,.12), transparent 60%);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.light-muted { color: rgba(250, 246, 239, .75); }
.price {
  margin: var(--space-8) 0;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(250,246,239,.15);
  border-bottom: 1px solid rgba(250,246,239,.15);
}
.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.price-meta {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(250,246,239,.6);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.includes { color: rgba(250,246,239,.85); }
.meals-note {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5, 20px);
  background: rgba(250, 246, 239, .08);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  color: rgba(250, 246, 239, .82);
  font-size: var(--text-sm);
  line-height: 1.65;
  font-style: italic;
}
.includes li {
  padding: var(--space-2) 0;
  font-size: var(--text-base);
}

.book-form {
  background: rgba(250, 246, 239, .04);
  border: 1px solid rgba(250,246,239,.1);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.book-form h3 {
  font-size: var(--text-xl);
  color: #faf6ef;
  margin-bottom: var(--space-6);
}
.book-form label {
  display: block;
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(250,246,239,.85);
  font-weight: 500;
}
.book-form input, .book-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: #faf6ef;
  background: rgba(250,246,239,.06);
  border: 1px solid rgba(250,246,239,.18);
  border-radius: 8px;
  transition: border-color .2s ease, background .2s ease;
}
.book-form input:focus, .book-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(250,246,239,.1);
}
.book-form input::placeholder, .book-form textarea::placeholder { color: rgba(250,246,239,.4); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-row label { margin-bottom: var(--space-4); }
.form-note {
  text-align: center;
  margin: var(--space-4) 0 var(--space-4);
  font-size: var(--text-sm);
  color: rgba(250,246,239,.6);
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(250,246,239,.1);
}
.contact-direct a {
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 500;
}
.contact-direct a:hover { color: #faf6ef; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a1109;
  color: rgba(250,246,239,.7);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.brand-footer { color: #faf6ef; margin-bottom: var(--space-3); }
.footer-tag {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(250,246,239,.55);
  max-width: 28ch;
}
.site-footer h4 {
  color: #faf6ef;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-weight: 600;
}
.site-footer p { margin: 0; font-size: var(--text-sm); line-height: 1.7; }
.site-footer a { color: rgba(250,246,239,.75); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,246,239,.1);
  padding-top: var(--space-6);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(250,246,239,.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .story-grid, .nearby-grid, .book-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .nearby-map { position: static; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card, .room-card.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .room-card.reverse .room-images { order: 1; }
  .room-card.reverse .room-text { order: 2; }
  .facts-grid { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-6); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-large { grid-column: span 2; grid-row: span 2; }
  .g-tall { grid-row: span 1; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .site-header:not(.scrolled) .nav-links.open a { color: var(--ink); }
  .nav-toggle { display: flex; }
  .hero { min-height: 90vh; }
  .hero-title { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .hero-sub { font-size: var(--text-base); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-large, .g-tall { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: var(--space-16) 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
