/* =====================================================================
   DAMU — A Mountain Sanctuary
   Design system inspired by Aman & Six Senses:
   restrained, earthy, generous whitespace, high-contrast serif display.
   ===================================================================== */

:root {
  /* Palette — earthy, muted, natural */
  --ivory:      #f6f2e9;   /* page paper */
  --ivory-soft: #efe9dc;   /* alt sections */
  --cream:      #fbf8f1;
  --ink:        #23261f;   /* warm near-black text */
  --ink-soft:   #4a4d42;
  --pine:       #2c352b;   /* deep forest green */
  --pine-deep:  #1f2620;
  --sage:       #7d8470;   /* muted green */
  --stone:      #9a8f7d;   /* warm taupe */
  --brass:      #9c8456;   /* gold accent */
  --brass-soft: #b39c6e;
  --line:       rgba(35, 38, 31, 0.14);
  --line-light: rgba(255, 255, 255, 0.28);

  /* Type */
  --display: "Cormorant Garamond", "Songti SC", "Noto Serif SC", Georgia, serif;
  --serif:   "EB Garamond", "Songti SC", "Noto Serif SC", Georgia, serif;
  --sans:    "Jost", "PingFang SC", "Helvetica Neue", Arial, sans-serif;

  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--serif);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* lang state — hide the inactive language helper */
:root[lang="zh"] body { font-family: var(--serif); letter-spacing: 0.02em; }

/* ----------------------------------------------------------------- Shared type */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow.light { color: var(--brass-soft); }
:root[lang="zh"] .eyebrow { letter-spacing: 0.18em; }

.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--pine);
}
.display.center { text-align: center; max-width: 16ch; margin-inline: auto; }
.display.light { color: var(--cream); }
:root[lang="zh"] .display { font-weight: 500; letter-spacing: 0.04em; line-height: 1.3; }

.body, .body-lg { font-family: var(--serif); color: var(--ink-soft); }
.body-lg { font-size: 1.125rem; }
:root[lang="zh"] .body, :root[lang="zh"] .body-lg { line-height: 1.95; }

.section { padding: clamp(5rem, 11vh, 9.5rem) 0; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(3rem, 6vw, 5rem); padding: 0 24px; }
.section-head .eyebrow { display: block; margin-bottom: 1.25rem; }
.section-intro { margin-top: 1.5rem; color: var(--ink-soft); font-size: 1.08rem; }

/* ----------------------------------------------------------------- Layout container */
.living-grid, .gardens, .exp-grid, .stay-grid,
.journey-grid, .header-inner, .footer-inner, .footer-base {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
}

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease);
  white-space: nowrap;
}
:root[lang="zh"] .btn { letter-spacing: 0.1em; }

.btn-solid       { background: var(--pine); color: var(--cream); }
.btn-solid:hover { background: var(--pine-deep); }
.btn-solid-light { background: var(--cream); color: var(--pine); }
.btn-solid-light:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(255,255,255,0.55); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn.wide { width: 100%; text-align: center; margin-top: 0.5rem; }

.text-link {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pine);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.text-link:hover { color: var(--brass); border-color: var(--brass); }
:root[lang="zh"] .text-link { letter-spacing: 0.08em; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease), height 0.5s var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: flex; align-items: center; gap: 0.78rem; line-height: 1; }
.brand-text { display: flex; flex-direction: column; }
.brand-emblem { position: relative; width: 44px; height: 44px; flex: none; }
.brand-emblem .emblem {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; transition: opacity 0.6s var(--ease);
}
.brand-emblem .emblem-dark { opacity: 0; }
.site-header.scrolled .emblem-light { opacity: 0; }
.site-header.scrolled .emblem-dark { opacity: 1; }
.brand-mark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  color: var(--cream);
  transition: color 0.6s var(--ease);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-top: 0.55rem;
  padding-left: 0.34em;
  color: rgba(255,255,255,0.75);
  transition: color 0.6s var(--ease);
}

.main-nav { display: flex; gap: 2.2rem; }
.main-nav a {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding: 4px 0;
  transition: color 0.5s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--brass-soft); transition: width 0.45s var(--ease);
}
.main-nav a:hover::after { width: 100%; }
:root[lang="zh"] .main-nav a { letter-spacing: 0.06em; font-size: 0.82rem; }

.header-actions { display: flex; align-items: center; gap: 1.5rem; }

.lang-toggle { display: flex; align-items: center; gap: 0.5rem; }
.lang-btn {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  transition: color 0.4s var(--ease);
}
.lang-btn.is-active { color: var(--cream); }
.lang-btn:hover { color: var(--brass-soft); }
.lang-divider { color: rgba(255,255,255,0.4); font-size: 0.7rem; }

.btn-reserve {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.72rem 1.5rem; color: var(--cream);
  transition: all 0.5s var(--ease);
}
.btn-reserve:hover { background: var(--cream); color: var(--pine); border-color: var(--cream); }
:root[lang="zh"] .btn-reserve { letter-spacing: 0.08em; }

/* Scrolled state — solid paper header */
.site-header.scrolled {
  background: var(--ivory);
  box-shadow: 0 1px 0 var(--line);
  height: 70px;
}
.site-header.scrolled .brand-mark { color: var(--pine); }
.site-header.scrolled .brand-sub  { color: var(--stone); }
.site-header.scrolled .main-nav a { color: var(--ink); }
.site-header.scrolled .lang-btn { color: var(--stone); }
.site-header.scrolled .lang-btn.is-active { color: var(--pine); }
.site-header.scrolled .lang-divider { color: var(--line); }
.site-header.scrolled .btn-reserve { border-color: var(--pine); color: var(--pine); }
.site-header.scrolled .btn-reserve:hover { background: var(--pine); color: var(--cream); }
.site-header.scrolled .menu-toggle span { background: var(--pine); }

/* Hamburger */
.menu-toggle { display: none; flex-direction: column; gap: 6px; width: 28px; padding: 6px 0; }
.menu-toggle span { display: block; height: 1.5px; width: 100%; background: var(--cream); transition: all 0.4s var(--ease); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mobile-menu a {
  font-family: var(--display); font-size: 1.9rem; color: var(--pine);
}
.mobile-menu .mobile-reserve {
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 1rem; color: var(--brass);
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, #3a4536, #20271f); opacity: 0; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(20,24,18,0.78) 0%, rgba(20,24,18,0.18) 42%, rgba(20,24,18,0.32) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(1280px, 100% - 48px);
  margin: 0 auto; padding-bottom: clamp(5rem, 13vh, 9rem);
  max-width: 1280px;
}
.hero .eyebrow { display: block; margin-bottom: 1.6rem; }
.hero-title {
  font-family: var(--display);
  font-weight: 300;
  color: var(--cream);
  font-size: clamp(2.8rem, 8vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
  max-width: 16ch;
}
.hero-title .line { display: block; }
:root[lang="zh"] .hero-title { font-weight: 400; line-height: 1.18; letter-spacing: 0.06em; }

.hero-lede {
  font-family: var(--serif);
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 44ch; margin-top: 1.8rem; line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.scroll-line { width: 1px; height: 52px; background: linear-gradient(var(--brass-soft), transparent); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--cream); animation: scrollDrop 2.4s var(--ease) infinite; }
@keyframes scrollDrop { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* =====================================================================
   LIVING / PHILOSOPHY
   ===================================================================== */
.living { background: var(--ivory); }
.living-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.living-text .eyebrow { display: block; margin-bottom: 1.4rem; }
.living-text .display { margin-bottom: 1.8rem; max-width: 18ch; }
.living-values { list-style: none; margin-top: 2.8rem; display: flex; flex-direction: column; gap: 1rem; }
.living-values li {
  display: flex; align-items: baseline; gap: 1.2rem;
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
  padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.living-values .v-num { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--brass); }
.living-figure { aspect-ratio: 4/5; overflow: hidden; }
.living-figure img { transition: transform 1.4s var(--ease); }
.living-figure:hover img { transform: scale(1.05); }

/* =====================================================================
   GARDENS
   ===================================================================== */
.gardens { background: var(--ivory-soft); padding: clamp(5rem, 11vh, 9.5rem) 0; }
.garden-block {
  width: min(1280px, 100% - 48px); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center; padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.garden-block.reverse .garden-media { order: 2; }
.garden-media { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.garden-media img { transition: transform 1.6s var(--ease); }
.garden-block:hover .garden-media img { transform: scale(1.06); }

.garden-copy { position: relative; padding-left: clamp(0px, 2vw, 2.5rem); }
.garden-index {
  position: absolute; top: -2.4rem; left: clamp(0px, 2vw, 2.5rem);
  font-family: var(--display); font-size: 5rem; font-weight: 300;
  color: rgba(156,132,86,0.18); line-height: 1; pointer-events: none;
}
.garden-copy .eyebrow { display: block; margin-bottom: 0.9rem; font-size: 0.95rem; letter-spacing: 0.18em; color: var(--sage); font-family: var(--display); text-transform: none; }
.garden-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem); color: var(--pine); line-height: 1.1;
}
.garden-tag {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--brass); margin: 0.9rem 0 1.5rem;
}
.garden-copy .body { margin-bottom: 1.8rem; max-width: 42ch; }
:root[lang="zh"] .garden-tag { letter-spacing: 0.12em; }

/* =====================================================================
   EXPERIENCES
   ===================================================================== */
.experiences { background: var(--ivory); }
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.exp-card { background: var(--cream); display: flex; flex-direction: column; }
.exp-media { aspect-ratio: 3/4; overflow: hidden; }
.exp-media img { transition: transform 1.4s var(--ease); }
.exp-card:hover .exp-media img { transform: scale(1.07); }
.exp-body { padding: 1.8rem 1.6rem 2.2rem; }
.exp-body h3 {
  font-family: var(--display); font-weight: 500; font-size: 1.5rem;
  color: var(--pine); margin-bottom: 0.8rem; line-height: 1.15;
}
.exp-body p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.7; }

/* =====================================================================
   QUOTE BAND
   ===================================================================== */
.quote-band, .reserve {
  position: relative; overflow: hidden;
  background-attachment: fixed; background-size: cover; background-position: center;
}
.quote-band {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=2200&q=80");
  padding: clamp(6rem, 16vh, 11rem) 24px; display: flex; justify-content: center;
}
.quote-scrim { position: absolute; inset: 0; background: rgba(22,26,20,0.6); }
.quote-band blockquote { position: relative; z-index: 1; max-width: min(90vw, 880px); text-align: center; }
.quote-band blockquote p {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: clamp(1.6rem, 3.1vw, 2.8rem); line-height: 1.35; color: var(--cream);
  text-wrap: balance;
}
:root[lang="zh"] .quote-band blockquote { max-width: min(90vw, 760px); }
:root[lang="zh"] .quote-band blockquote p { font-style: normal; font-weight: 400; line-height: 1.5; }

/* =====================================================================
   STAY
   ===================================================================== */
.stay { background: var(--ivory-soft); }
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.stay-figure { aspect-ratio: 5/6; overflow: hidden; }
.stay-figure img { transition: transform 1.6s var(--ease); }
.stay-figure:hover img { transform: scale(1.05); }
.stay-text .eyebrow { display: block; margin-bottom: 1.3rem; }
.stay-text .display { margin-bottom: 1.7rem; }
.stay-specs { display: flex; gap: 2.5rem; margin: 2.4rem 0 2.6rem; flex-wrap: wrap; }
.stay-specs div { border-top: 1px solid var(--line); padding-top: 0.9rem; }
.stay-specs dt { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.4rem; }
.stay-specs dd { font-family: var(--display); font-size: 1.7rem; color: var(--pine); }

/* =====================================================================
   JOURNEY
   ===================================================================== */
.journey { background: var(--ivory); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.journey-step { position: relative; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.j-num { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; color: var(--brass); display: block; margin-bottom: 1.6rem; }
.journey-step h3 { font-family: var(--display); font-weight: 500; font-size: 1.7rem; color: var(--pine); margin-bottom: 0.9rem; }
.journey-step p { font-size: 1rem; color: var(--ink-soft); }
.journey-note { text-align: center; margin-top: clamp(3rem, 6vw, 4.5rem); }
.journey-note p {
  font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage);
}
:root[lang="zh"] .journey-note p { letter-spacing: 0.06em; }

/* =====================================================================
   RESERVE
   ===================================================================== */
.reserve {
  background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2200&q=80");
  padding: clamp(5rem, 13vh, 9rem) 24px;
}
.reserve-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(22,26,20,0.72), rgba(22,26,20,0.82)); }
.reserve-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.reserve-inner .eyebrow { display: block; margin-bottom: 1.3rem; }
.reserve-inner .display { margin-bottom: 1.4rem; }
.reserve-lede { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2.8rem; }

.reserve-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.2rem; text-align: left; }
.reserve-form .field:nth-child(3) { grid-column: 1 / -1; }
.reserve-form .btn { grid-column: 1 / -1; }
.field label {
  display: block; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.7rem;
}
.field input {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.35);
  color: var(--cream); font-family: var(--serif); font-size: 1.05rem; padding: 0.6rem 0;
  transition: border-color 0.4s var(--ease);
}
.field input::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus { outline: none; border-color: var(--brass-soft); }
.form-status { grid-column: 1/-1; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--brass-soft); min-height: 1.2em; text-align: center; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--pine-deep); color: rgba(255,255,255,0.78); padding: clamp(4rem, 8vw, 6rem) 0 2.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand .brand-mark { color: var(--cream); font-size: 1.9rem; letter-spacing: 0.4em; padding-left: 0.4em; }
.footer-tagline { font-family: var(--display); font-style: italic; font-size: 1.2rem; margin-top: 1.2rem; max-width: 28ch; color: rgba(255,255,255,0.7); }
:root[lang="zh"] .footer-tagline { font-style: normal; }
.footer-col h4 { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 1.3rem; font-weight: 400; }
.footer-col p { font-size: 1rem; margin-bottom: 0.6rem; }
.footer-col a:hover { color: var(--cream); }
.footer-base { display: flex; justify-content: space-between; align-items: center; padding-top: 2.2rem; gap: 1rem; flex-wrap: wrap; }
.footer-base p { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.footer-lang { display: flex; align-items: center; gap: 0.7rem; }
.footer-lang .lang-btn { font-size: 0.74rem; color: rgba(255,255,255,0.5); }
.footer-lang .lang-btn.is-active { color: var(--cream); }
.footer-lang span { color: rgba(255,255,255,0.3); }

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}

@media (max-width: 920px) {
  .main-nav, .header-actions .lang-toggle, .header-actions .btn-reserve { display: none; }
  .menu-toggle { display: flex; }
  .menu-toggle span { background: var(--cream); }
  .site-header.scrolled .menu-toggle span { background: var(--pine); }

  .living-grid, .stay-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .living-figure { aspect-ratio: 16/11; order: -1; }
  .stay-figure { aspect-ratio: 16/11; order: -1; }

  .garden-block, .garden-block.reverse { grid-template-columns: 1fr; gap: 1.8rem; }
  .garden-block.reverse .garden-media { order: -1; }
  .garden-media { aspect-ratio: 16/11; }
  .garden-index { position: static; font-size: 3.2rem; display: block; margin-bottom: 0.5rem; }
  .garden-copy { padding-left: 0; }

  .journey-grid { grid-template-columns: 1fr; gap: 0; }
  .journey-step { padding: 2rem 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .hero { min-height: 560px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .exp-grid { grid-template-columns: 1fr; }
  .reserve-form { grid-template-columns: 1fr; }
  .reserve-form .field:nth-child(3) { grid-column: auto; }
  .stay-specs { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  /* parallax fixed backgrounds are janky on mobile */
  .quote-band, .reserve { background-attachment: scroll; }
}

/* =====================================================================
   MOTION PREFERENCE
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line::after { animation: none; }
  .quote-band, .reserve { background-attachment: scroll; }
  * { transition-duration: 0.001ms !important; }
}
