/* =========================================================================
   Heavens Orchard — design tokens + base styles
   Original editorial vocabulary. Tokens follow brief; ink scale derived.
   ========================================================================= */

:root {
  /* Surfaces */
  --canvas:        #FAFAF7;          /* warm off-white, body background */
  --surface:       #FFFFFF;          /* cards only */
  --surface-warm:  #F3F1EA;          /* secondary blocks (placeholder fill base) */

  /* Brand */
  --forest:        #1A3C2E;          /* primary voltage */
  --forest-700:    #14322A;
  --forest-500:    #4A7C59;          /* ring color */
  --gold:          #B8860B;          /* badge + ★ ONLY */

  /* Ink (warm neutrals, AAA on canvas) */
  --ink:           #161613;          /* primary text */
  --ink-2:         #4D4D47;          /* secondary text */
  --ink-3:         #8A8A82;          /* tertiary / labels */
  --hairline:      rgba(26, 60, 46, 0.14);
  --hairline-soft: rgba(26, 60, 46, 0.08);

  /* Single shadow tier — forest-tinted, do not duplicate */
  --shadow-float:
    rgba(26, 60, 46, 0.04) 0 0 0 1px,
    rgba(26, 60, 46, 0.06) 0 2px 6px,
    rgba(26, 60, 46, 0.10) 0 4px 8px;

  /* Forest-tinted modal scrim */
  --scrim:         rgba(26, 60, 46, 0.50);

  /* Radii */
  --r-button:      8px;
  --r-card:        14px;
  --r-pill:        999px;

  /* Type */
  --serif:  "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Type ramp */
  --t-display:     clamp(34px, 4.6vw, 56px);   /* gallery / about hero only */
  --t-h1:          28px;                       /* HARD CAP per brief */
  --t-h2:          22px;
  --t-h3:          18px;
  --t-body:        16px;
  --t-body-sm:     14px;
  --t-meta:        12px;
  --t-kicker:      11px;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --max:    1400px;
  --reading: 720px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

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

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Focus ring per brief: 3px outer ring, 30% opacity, --forest-500 */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.3);
  border-radius: 4px;
}

/* =========================================================================
   Type
   ========================================================================= */
.kicker {
  font-family: var(--sans);
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.kicker--ink { color: var(--ink-2); }
.kicker--gold { color: var(--gold); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-meta);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

.h1 { font-size: var(--t-h1); font-weight: 700; }       /* 28px hard cap */
.h2 { font-size: var(--t-h2); font-weight: 700; }
.h3 { font-size: var(--t-h3); font-weight: 600; }
.display {
  font-size: var(--t-display);                          /* gallery/about only */
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lede {
  font-size: var(--t-body);
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}

.body-sm { font-size: var(--t-body-sm); color: var(--ink-2); }
.muted   { color: var(--ink-3); }

/* Hairline divider */
.rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}
.rule--soft { background: var(--hairline-soft); }
.rule--vert { width: 1px; height: 100%; background: var(--hairline); }

/* =========================================================================
   Buttons (radius 8px, never gold)
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  height: 44px;                                /* mobile hit target */
  padding: 0 var(--s-5);
  border-radius: var(--r-button);
  font-family: var(--sans);
  font-size: var(--t-body-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  background: transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest);
  color: var(--canvas);
}
.btn--primary:hover { background: var(--forest-700); }
.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--hairline);
}
.btn--ghost:hover { background: rgba(26, 60, 46, 0.04); }
.btn--text {
  height: auto; padding: 0;
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.btn--lg { height: 52px; padding: 0 var(--s-6); font-size: var(--t-body); }

/* Arrow glyph */
.arrow::after {
  content: "→";
  margin-left: 0.4em;
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .arrow::after, a:hover .arrow::after { transform: translateX(3px); }

/* =========================================================================
   Layout helpers
   ========================================================================= */
.shell { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.shell--narrow { max-width: 1100px; }
.section { padding-block: var(--s-9); }
.section--tight { padding-block: var(--s-8); }

@media (max-width: 720px) {
  .section { padding-block: var(--s-8); }
}

/* =========================================================================
   Image placeholders — flat forest-tinted blocks with mono caption
   No gradients (per brief). Subtle hatch via SVG background.
   ========================================================================= */
.ph {
  position: relative;
  background-color: var(--surface-warm);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><path d='M0 8L8 0' stroke='%231A3C2E' stroke-opacity='0.06' stroke-width='1'/></svg>");
  background-size: 8px 8px;
  border-radius: var(--r-card);
  overflow: hidden;
  isolation: isolate;
}
.ph--hero { border-radius: 0; }
.ph__caption {
  position: absolute;
  inset: auto var(--s-3) var(--s-3) var(--s-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--forest);
  background: rgba(250, 250, 247, 0.92);
  padding: 6px 10px;
  border-radius: 4px;
  pointer-events: none;
  display: inline-block;
  width: max-content;
  max-width: calc(100% - var(--s-6));
  white-space: pre;
}
.ph__caption--center {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
.ph--dark { background-color: #2B3D34; }
.ph--dark .ph__caption { color: #DCEAD7; background: rgba(20, 50, 42, 0.85); }

/* Aspect helpers */
.ar-1   { aspect-ratio: 1 / 1; }
.ar-4-5 { aspect-ratio: 4 / 5; }
.ar-3-2 { aspect-ratio: 3 / 2; }
.ar-16-9{ aspect-ratio: 16 / 9; }
.ar-21-9{ aspect-ratio: 21 / 9; }

/* =========================================================================
   whileInView reveals (CSS + IntersectionObserver)
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Top nav — Remote Work Himalayas brand
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: 72px;
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-6);
}
/* Brand wrap: mountain icon + name + property sub-line */
.nav__brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--forest);
  text-decoration: none;
}
.nav__mountain { flex-shrink: 0; }
.nav__brand-text { display: flex; flex-direction: column; gap: 1px; }
.nav__brand-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--forest);
}
.nav__brand-property {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
}
/* kept for stubs compatibility */
.nav__brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.nav__brand-mark {
  width: 20px; height: 20px;
  border: 1.5px solid var(--forest);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nav__brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--forest);
  border-radius: 50%;
}
.nav__links {
  display: flex;
  gap: var(--s-6);
  justify-content: center;
}
.nav__link {
  position: relative;
  font-size: var(--t-body-sm);
  font-weight: 500;
  color: var(--ink);
  padding: 8px 2px;
  letter-spacing: 0.01em;
}
.nav__link[aria-current="page"]::after,
.nav__link:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--forest);
}
.nav__utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s-4);
}
.nav__lang {
  font-size: var(--t-meta);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}
.nav__menu-btn {
  display: none;
  height: 40px; width: 40px;
  border: 1px solid var(--hairline);
  background: transparent;
  border-radius: var(--r-button);
  align-items: center; justify-content: center;
}
.nav__menu-btn span { display: block; width: 16px; height: 1.5px; background: var(--ink); position: relative; }
.nav__menu-btn span::before, .nav__menu-btn span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
}
.nav__menu-btn span::before { top: -5px; }
.nav__menu-btn span::after  { top:  5px; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto auto; }
  .nav__lang { display: none; }
  .nav__menu-btn { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__brand-property { display: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  height: clamp(560px, 92vh, 880px);
  overflow: hidden;
  isolation: isolate;
  background: #2B3D34;
}
.hero__layers { position: absolute; inset: 0; }
.hero__layer {
  position: absolute;
  inset: -8% 0;
  will-change: transform;
}
/* Painterly mountain layers built from flat shapes (no gradients) */
.hero__layer svg { width: 100%; height: 100%; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);   /* legibility scrim, flat */
  pointer-events: none;
}
.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(40px, 8vh, 80px);
  padding-top: 120px;
}
.hero__copy { color: #FAFAF7; max-width: 760px; }
.hero__kicker { color: rgba(250, 250, 247, 0.78); margin-bottom: var(--s-4); }
.hero h1 { color: #FAFAF7; }
.hero__sub {
  margin-top: var(--s-4);
  color: rgba(250, 250, 247, 0.86);
  font-size: var(--t-body);
  max-width: 56ch;
}

/* Plan-stay strip — original primitive (NOT a marketplace search pill) */
.plan {
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  background: var(--canvas);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-float);
  align-items: stretch;
  overflow: hidden;
  max-width: 880px;
}
.plan__field {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 0;
  text-align: left;
  transition: background .15s ease;
  border-right: 1px solid var(--hairline);
}
.plan__field:hover { background: rgba(26, 60, 46, 0.03); }
.plan__field-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-3);
}
.plan__field-value {
  font-size: var(--t-body-sm);
  color: var(--ink);
  font-weight: 500;
}
.plan__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--forest);
  color: var(--canvas);
  padding: 0 var(--s-6);
  font-weight: 600;
  font-size: var(--t-body-sm);
  border: 0;
  border-radius: 0;
}
.plan__cta:hover { background: var(--forest-700); }

@media (max-width: 720px) {
  .plan {
    grid-template-columns: 1fr 1fr;
  }
  .plan__field { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .plan__field:nth-child(2) { border-right: 1px solid var(--hairline); }
  .plan__cta {
    grid-column: 1 / -1;
    height: 52px;
    justify-content: center;
  }
}

/* =========================================================================
   Section header (kicker + numeral + title)
   ========================================================================= */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--hairline);
}
.section-head__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.section-head__title { font-family: var(--serif); font-weight: 700; font-size: var(--t-h1); }
.section-head__aside { color: var(--ink-2); font-size: var(--t-body-sm); }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: var(--s-3); }
  .section-head__aside { justify-self: start; }
}

/* =========================================================================
   Property cards (rooms strip)
   ========================================================================= */
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 960px)  { .rooms { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .rooms { grid-template-columns: 1fr; } }

.room {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
  padding-left: var(--s-5);
}
.room__num {
  position: absolute;
  left: 0; top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.room__photo {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.room:hover .room__photo {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}
.room__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
}
.room__title { font-family: var(--serif); font-weight: 700; font-size: var(--t-h3); }
.room__tier { color: var(--ink-3); font-size: var(--t-meta); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.room__price { font-size: var(--t-body-sm); font-weight: 600; color: var(--ink); white-space: nowrap; }
.room__price small { color: var(--ink-3); font-weight: 500; margin-left: 4px; }
.room__desc { color: var(--ink-2); font-size: var(--t-body-sm); }

/* Rare-stay treatment — gold rule + vertical small caps (NOT a hovering pill) */
.room--rare {
  padding-left: var(--s-6);
}
.room--rare::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
}
.room--rare .room__num { display: none; }
.room--rare .room__rare-label {
  position: absolute;
  left: -2px; top: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateX(-2px);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  padding: 4px 0 4px 4px;
}

/* =========================================================================
   Mountain Office band — editorial split
   ========================================================================= */
.office {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  align-items: stretch;
}
@media (max-width: 880px) { .office { grid-template-columns: 1fr; gap: var(--s-6); } }
.office__art .ph { aspect-ratio: 4 / 5; height: 100%; min-height: 480px; }
.office__copy { display: flex; flex-direction: column; gap: var(--s-5); padding-block: var(--s-4); }
.office__copy h2 { font-size: var(--t-h1); }
.office__copy p { color: var(--ink-2); margin: 0; max-width: 50ch; }
.office__cta { margin-top: var(--s-3); display: inline-flex; align-self: flex-start; }

/* =========================================================================
   Stats strip
   ========================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stats__cell {
  padding: var(--s-7) var(--s-4);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.stats__cell + .stats__cell { border-left: 1px solid var(--hairline); }
.stats__num {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stats__star { color: var(--gold); font-size: 0.7em; }
.stats__label { font-size: var(--t-meta); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.stats__sub   { font-size: var(--t-body-sm); color: var(--ink-2); }

@media (max-width: 880px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats__cell:nth-child(2n+1) { border-left: 0; }
  .stats__cell:nth-child(n+3) { border-top: 1px solid var(--hairline); }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .stats__cell + .stats__cell { border-left: 0; border-top: 1px solid var(--hairline); }
}

/* =========================================================================
   Experience teaser grid
   ========================================================================= */
.exps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1080px) { .exps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .exps { grid-template-columns: 1fr; } }

.exp {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.exp__photo {
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.exp:hover .exp__photo {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}
.exp__kicker { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }
.exp__title  { font-family: var(--serif); font-weight: 700; font-size: var(--t-h3); }
.exp__meta   { color: var(--ink-2); font-size: var(--t-body-sm); }
.exp__cta    { margin-top: var(--s-2); font-size: var(--t-body-sm); }

/* =========================================================================
   Closing band (founder quote → CTA)
   ========================================================================= */
.closer {
  background: var(--forest);
  color: var(--canvas);
  padding-block: var(--s-9);
}
.closer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 880px) { .closer__inner { grid-template-columns: 1fr; gap: var(--s-6); } }
.closer__pull {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--canvas);
  text-wrap: balance;
}
.closer__sig { color: rgba(250, 250, 247, 0.7); font-size: var(--t-body-sm); margin-top: var(--s-4); }
.closer__cta { display: flex; flex-direction: column; gap: var(--s-4); }
.closer__cta-btn {
  background: var(--canvas);
  color: var(--forest);
  align-self: flex-start;
}
.closer__cta-btn:hover { background: #fff; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-8);
  padding-bottom: var(--s-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand .nav__brand { font-size: 22px; }
.footer__brand p { color: var(--ink-2); font-size: var(--t-body-sm); margin-top: var(--s-3); max-width: 38ch; }
.footer__col h4 { font-family: var(--sans); font-size: var(--t-meta); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin: 0 0 var(--s-4) 0; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.footer__col a { color: var(--ink); font-size: var(--t-body-sm); }
.footer__col a:hover { color: var(--forest); }

.legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline);
  font-size: var(--t-meta);
  color: var(--ink-3);
}
.legal__links { display: flex; gap: var(--s-5); }
.legal__links a:hover { color: var(--forest); }

@media (max-width: 560px) {
  .legal { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   Sticky mobile bottom CTA (revealed past hero)
   ========================================================================= */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  background: var(--forest);
  color: var(--canvas);
  border-radius: var(--r-button);
  padding: 14px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  z-index: 40;
  box-shadow: var(--shadow-float);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.mobile-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.mobile-cta__price { font-family: var(--serif); font-weight: 700; font-size: 16px; }
.mobile-cta__price small { font-family: var(--sans); font-weight: 500; font-size: 12px; opacity: 0.8; }
.mobile-cta__btn {
  background: var(--canvas);
  color: var(--forest);
  border-radius: var(--r-button);
  padding: 10px 16px;
  font-weight: 600;
  font-size: var(--t-body-sm);
}

@media (max-width: 720px) { .mobile-cta { display: flex; } }

/* =========================================================================
   Stub-page banner (used on /rooms etc.)
   ========================================================================= */
.stub-hero {
  padding-block: var(--s-9);
  border-bottom: 1px solid var(--hairline);
}
.stub-hero__kicker { margin-bottom: var(--s-3); }
.stub-hero h1 { font-size: var(--t-h1); margin-bottom: var(--s-3); }
.stub-hero p { color: var(--ink-2); max-width: 60ch; }

.stub-banner {
  margin-top: var(--s-7);
  padding: var(--s-5) var(--s-6);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  justify-content: space-between;
  background: var(--surface);
}
.stub-banner__copy { display: flex; flex-direction: column; gap: 4px; }
.stub-banner__copy strong { font-family: var(--serif); font-weight: 700; font-size: var(--t-h3); }
.stub-banner__copy span { color: var(--ink-2); font-size: var(--t-body-sm); }

.stub-skeleton {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s-7);
  margin-top: var(--s-9);
}
@media (max-width: 880px) { .stub-skeleton { grid-template-columns: 1fr; } }
.stub-skeleton .ph { min-height: 360px; }
.stub-list { display: flex; flex-direction: column; gap: var(--s-4); }
.stub-list h3 { font-family: var(--serif); font-weight: 700; font-size: var(--t-h2); }
.stub-list ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.stub-list li {
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--hairline);
  border-radius: var(--r-button);
  font-size: var(--t-body-sm);
  color: var(--ink-2);
  display: flex; justify-content: space-between; gap: var(--s-3);
}
.stub-list li code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}

/* ── LAZY MEDIA SHIMMER ──────────────────────────────────────────
   Applied dynamically by lazy.js.
   .lz-wrap  → the photo container, shows warm shimmer while loading
   .lz       → the img/video element, starts invisible
   .lz--in   → added on load/canplay, fades element in
──────────────────────────────────────────────────────────────── */
@keyframes lz-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.lz-wrap {
  background: linear-gradient(
    90deg,
    #EAE6DC 0%,
    #F5F2EB 40%,
    #FAFAF7 50%,
    #F5F2EB 60%,
    #EAE6DC 100%
  );
  background-size: 1200px 100%;
  animation: lz-shimmer 1.8s ease-in-out infinite;
}
.lz-wrap.lz-done {
  animation: none;
  background: none;
}
.lz {
  opacity: 0;
  transition: opacity .55s ease;
}
.lz.lz--in {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .lz-wrap { animation: none; }
  .lz      { opacity: 1; transition: none; }
}
