/* =========================================================
   MEHTAB LODGES, MURREE — hotel site design system
   Palette: parchment + pine + ember, mono for data/rates
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:root {
  /* --- color tokens --- */
  --ink: #16241C;          /* deep pine-charcoal, dark sections */
  --ink-2: #1E3327;
  --pine: #24422F;         /* primary brand green */
  --pine-deep: #17281C;
  --pine-soft: #4C6E56;
  --cream: #F5EFE1;        /* main light background */
  --cream-2: #ECE1CB;      /* alternate section bg */
  --paper: #FBF7EE;        /* card surface, lighter than cream */
  --ember: #BE7A3D;        /* warm accent, used sparingly */
  --ember-dim: #8F5C2C;
  --mist: #74897E;         /* muted sage text */
  --ink-text: #202A21;     /* body text on cream */
  --line: rgba(32, 42, 33, 0.14);
  --line-soft: rgba(32, 42, 33, 0.08);
  --cream-line: rgba(245, 239, 225, 0.16);

  /* --- type --- */
  --f-display: "Newsreader", "Georgia", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "Space Mono", ui-monospace, SFMono-Regular, monospace;

  --fs-display: clamp(2.5rem, 5vw + 1rem, 4.75rem);
  --fs-h1: clamp(2rem, 3.2vw + 1rem, 3rem);
  --fs-h2: clamp(1.5rem, 1.6vw + 1rem, 2.1rem);
  --fs-lead: clamp(1.05rem, 0.5vw + 0.9rem, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.92rem;
  --fs-mono: 0.78rem;

  /* --- spacing --- */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;

  --container: 1180px;
  --radius: 16px;
  --radius-sm: 9px;
}

html, body { background: var(--cream); }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink-text);
  background: var(--cream);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--f-display); margin: 0; font-weight: 500; letter-spacing: -0.005em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--ember); color: var(--cream); }
:focus-visible { outline: 2px solid var(--pine); outline-offset: 3px; border-radius: 4px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
}
.on-dark .eyebrow { color: rgba(245,239,225,0.65); }
.on-dark .eyebrow::before { background: var(--ember); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 0.65rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(245, 239, 225, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 108px;
  width: auto;
  display: block;
}
.logo-tag {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--ember-dim);
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.2em 0.5em;
  border-radius: 999px;
}
.nav-links {
  display: flex;
  gap: var(--sp-4);
  margin-left: var(--sp-2);
  font-size: var(--fs-small);
  color: var(--ink-text);
}
.nav-links a:not(.nav-link-cta) { position: relative; padding: 4px 0; transition: color 0.2s ease; }
.nav-links a:not(.nav-link-cta):hover, .nav-links a.active { color: var(--pine); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--ember);
}
.nav-cta { display: none; margin-left: auto; }
.nav-link-cta { display: none; }
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-text);
  cursor: pointer;
  padding: 0;
}
.nav-toggle svg { width: 16px; height: 16px; }

@media (min-width: 760px) { .nav-cta { display: inline-flex; } }
@media (max-width: 759px) {
  .logo img { height: 78px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0.9rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-link-cta { display: block; color: var(--pine); font-weight: 600; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn-solid { background: var(--pine); color: var(--cream); }
.btn-solid:hover { transform: translateY(-1px); background: var(--pine-deep); box-shadow: 0 8px 20px -8px rgba(23,40,28,0.5); }
.btn-ghost { background: transparent; color: var(--ink-text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--pine); color: var(--pine); transform: translateY(-1px); }
.on-dark .btn-ghost { color: var(--cream); border-color: var(--cream-line); }
.on-dark .btn-ghost:hover { border-color: var(--ember); color: var(--ember); }
.btn-arrow { transition: transform 0.18s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =========================================================
   HERO — layered mountain / mist SVG signature
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 55%, var(--pine-deep) 100%);
  color: var(--cream);
  overflow: hidden;
  padding-bottom: var(--sp-6);
}
.photo-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(560px 320px at 50% 82%, rgba(190,122,61,0.20), transparent 72%),
    linear-gradient(180deg, rgba(20,32,25,0.45) 0%, rgba(20,32,25,0.25) 40%, rgba(23,40,28,0.82) 100%);
}
.hero-svg {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 62%;
  min-height: 340px;
}
.mist-band { animation: drift 22s ease-in-out infinite; }
.mist-2 { animation-duration: 28s; animation-delay: -6s; }
@keyframes drift {
  0%, 100% { transform: translateX(-3%); }
  50% { transform: translateX(3%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(3rem, 6vw, 5.5rem);
}
.hero-content .eyebrow { margin-bottom: var(--sp-3); }
.hero-content h1 {
  font-size: var(--fs-display);
  line-height: 1.06;
  max-width: 14ch;
}
.hero-content h1 em { font-style: italic; color: var(--ember); }
.hero-lead {
  margin-top: var(--sp-3);
  font-size: var(--fs-lead);
  color: rgba(245,239,225,0.78);
  max-width: 46ch;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: var(--sp-2); margin-top: var(--sp-5); flex-wrap: wrap; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: var(--sp-5);
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(245,239,225,0.6);
}
.hero-chip strong { color: var(--cream); font-weight: 600; }

/* =========================================================
   CLIMATE STRIP (signature module)
   ========================================================= */
.climate-strip { padding: var(--sp-2) 0 var(--sp-5); }
.climate-strip .eyebrow { margin-bottom: var(--sp-3); }
.climate-row {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.climate-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-sm);
  font-family: var(--f-mono);
  min-width: 92px;
}
.c-city { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,239,225,0.55); }
.c-temp { font-size: 1.05rem; color: rgba(245,239,225,0.85); }
.climate-arrow { align-self: center; color: rgba(245,239,225,0.4); font-size: 1.1rem; padding: 0 0.2rem; }

/* Once real weather data has loaded, turn the eyebrow dot green and give it
   a gentle pulse so "Right now" reads as live rather than just relabelled. */
.climate-strip .eyebrow#climate-eyebrow::before { transition: background 0.3s ease, box-shadow 0.3s ease; }
.climate-strip:has(.climate-row.is-live) #climate-eyebrow::before {
  background: #7CB88F;
  animation: climate-live-pulse 2.4s ease-in-out infinite;
}
@keyframes climate-live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(124,184,143,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(124,184,143,0.12); }
}
.climate-chip.is-murree {
  border-color: var(--ember);
  background: rgba(190,122,61,0.12);
}
.climate-chip.is-murree .c-city { color: var(--ember); }
.climate-chip.is-murree .c-temp { color: var(--cream); font-size: 1.2rem; }

/* =========================================================
   SECTIONS (light theme)
   ========================================================= */
section { position: relative; }
.section { padding: var(--sp-7) 0; }
.section.alt { background: var(--cream-2); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.section-head h2 { font-size: var(--fs-h1); color: var(--pine); margin-top: var(--sp-2); max-width: 22ch; }
.section-head .lead { color: var(--mist); max-width: 42ch; font-size: var(--fs-small); padding-bottom: 0.3rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================
   INTRO / ABOUT BLOCK
   ========================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: var(--sp-4); } }
.intro-figure {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, var(--pine-soft), var(--pine-deep) 70%);
}
.intro-figure .ridge-mark {
  position: absolute; inset: auto 0 0 0;
  height: 46%;
}
.intro-copy p { color: var(--mist); font-size: 1rem; line-height: 1.75; margin-bottom: var(--sp-2); }
.intro-copy p:last-child { margin-bottom: 0; }

/* =========================================================
   ROOM PREVIEW / ROOM CARDS
   ========================================================= */
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-4); }
@media (max-width: 980px) { .room-grid { grid-template-columns: 1fr; } }
.room-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(23,40,28,0.35); }
.room-cover { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.room-cover .ridge-mark { position: absolute; inset: auto 0 0 0; height: 55%; }
.room-cover .cover-tag {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(22,36,28,0.55); color: var(--cream);
  padding: 0.3em 0.6em; border-radius: 5px; backdrop-filter: blur(3px);
}
.tone-1 { background: linear-gradient(155deg, #3E5C48, #17281C 75%); }
.tone-2 { background: linear-gradient(155deg, #4C6E56, #1E3327 75%); }
.tone-3 { background: linear-gradient(155deg, #2E4A38, #16241C 75%); }
.tone-4 { background: linear-gradient(155deg, #5A7A63, #24422F 75%); }

.room-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.room-body h3 { font-size: 1.2rem; color: var(--pine); }
.room-body p { color: var(--mist); font-size: 0.92rem; line-height: 1.55; }
.room-rate {
  margin-top: auto; padding-top: 0.8rem; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-mono);
}
.room-rate .amt { color: var(--pine); font-size: 1.05rem; }
.room-rate .per { color: var(--mist); font-size: 0.7rem; }

/* =========================================================
   SEASONS
   ========================================================= */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
@media (max-width: 900px) { .season-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .season-grid { grid-template-columns: 1fr; } }
.season-card { padding: var(--sp-3); border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--paper); }
.season-tag { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--ember-dim); text-transform: uppercase; }
.season-card h4 { font-size: 1.1rem; color: var(--pine); margin: 0.5rem 0 0.5rem; }
.season-card p { font-size: 0.88rem; color: var(--mist); line-height: 1.55; }

/* =========================================================
   GUEST NOTES
   ========================================================= */
.note-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
@media (max-width: 900px) { .note-grid { grid-template-columns: 1fr; } }
.note-card {
  padding: var(--sp-4);
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line-soft);
}
.note-card p.quote { font-size: 1rem; color: var(--ink-text); line-height: 1.65; font-family: var(--f-display); font-style: italic; }
.note-card .who { margin-top: var(--sp-2); font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--mist); text-transform: uppercase; }

/* =========================================================
   CTA BAND (dark, bookend with hero)
   ========================================================= */
.cta-band {
  border-radius: 20px;
  padding: var(--sp-6) var(--sp-5);
  background: linear-gradient(160deg, var(--ink-2), var(--pine-deep));
  color: var(--cream);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4); flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(480px 260px at 88% 0%, rgba(190,122,61,0.14), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: var(--fs-h1); max-width: 18ch; position: relative; color: var(--cream); }
.cta-actions { display: flex; gap: var(--sp-2); position: relative; flex-wrap: wrap; }
.cta-sub { font-family: var(--f-mono); font-size: 0.78rem; color: rgba(245,239,225,0.55); margin-top: 0.6rem; position: relative; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: var(--cream); padding: var(--sp-6) 0 var(--sp-4); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: var(--sp-4); padding-bottom: var(--sp-5); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .logo {
  font-family: var(--f-display);
  font-size: 1.35rem;
  align-items: baseline;
  gap: 0.55em;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.footer-brand .logo-tag { border-color: var(--cream-line); color: rgba(245,239,225,0.6); }
.footer-brand p { color: rgba(245,239,225,0.55); font-size: 0.88rem; max-width: 32ch; line-height: 1.6; }
.footer-col h5 { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,239,225,0.45); margin-bottom: 0.9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(245,239,225,0.75); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--ember); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--sp-3); border-top: 1px solid var(--cream-line);
  font-family: var(--f-mono); font-size: 0.74rem; color: rgba(245,239,225,0.45);
  flex-wrap: wrap; gap: 0.6rem;
}

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero { padding: var(--sp-6) 0 var(--sp-4); background: var(--cream-2); }
.page-hero h1 { font-size: var(--fs-h1); margin-top: var(--sp-2); max-width: 26ch; color: var(--pine); }
.page-hero .lead { margin-top: var(--sp-3); color: var(--mist); max-width: 58ch; font-size: var(--fs-lead); }

/* =========================================================
   ROOMS PAGE — full room list
   ========================================================= */
.room-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.room-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-4);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.room-row:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
.room-row:nth-child(even) .room-row-figure { order: 2; }
@media (max-width: 820px) {
  .room-row, .room-row:nth-child(even) { grid-template-columns: 1fr; }
  .room-row:nth-child(even) .room-row-figure { order: 0; }
}
.room-row-figure { position: relative; min-height: 240px; overflow: hidden; }
.room-row-figure .ridge-mark { position: absolute; inset: auto 0 0 0; height: 50%; }
.room-row-body { padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }
.room-row-body .price-tier { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ember-dim); }
.room-row-body h3 { font-size: 1.5rem; color: var(--pine); margin: 0.3rem 0 0.2rem; }
.room-row-body .desc { color: var(--mist); font-size: 0.95rem; line-height: 1.65; }
.feature-list { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.4rem 0; }
.feature-list li { display: flex; gap: 0.6em; font-size: 0.88rem; color: var(--ink-text); align-items: flex-start; }
.feature-list li::before { content: "—"; color: var(--ember); flex-shrink: 0; }
.room-row-foot {
  margin-top: auto; padding-top: var(--sp-2); border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem;
}
.room-row-foot .rate { font-family: var(--f-mono); }
.room-row-foot .rate .amt { font-size: 1.3rem; color: var(--pine); }
.room-row-foot .rate .per { font-size: 0.72rem; color: var(--mist); display: block; }

.included-strip {
  margin-top: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  padding: var(--sp-3);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.included-strip .tag {
  font-family: var(--f-mono); font-size: 0.72rem; color: var(--pine);
  border: 1px solid var(--line); padding: 0.35em 0.7em; border-radius: 999px;
  background: var(--cream);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line-soft); padding: var(--sp-3) 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3);
  cursor: pointer; font-family: var(--f-mono); font-size: 0.96rem; color: var(--ink-text); padding: 0.3rem 0;
}
.faq-q .plus { color: var(--ember); font-family: var(--f-mono); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { color: var(--mist); font-size: 0.92rem; padding: 0.6rem 0 0.3rem; max-width: 65ch; line-height: 1.65; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* =========================================================
   EXPLORE / DINING (experience page)
   ========================================================= */
.explore-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
@media (max-width: 780px) { .explore-grid { grid-template-columns: 1fr; } }
.explore-card { display: flex; gap: var(--sp-3); padding: var(--sp-3); border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line-soft); }
.explore-mark { font-family: var(--f-mono); font-size: 0.72rem; color: var(--ember-dim); flex-shrink: 0; padding-top: 0.2rem; }
.explore-card h4 { font-size: 1.05rem; color: var(--pine); margin-bottom: 0.35rem; }
.explore-card p { font-size: 0.9rem; color: var(--mist); line-height: 1.6; }

.dine-panel { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
@media (max-width: 900px) { .dine-panel { grid-template-columns: 1fr; } }
.dine-figure { aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; position: relative; background: linear-gradient(155deg, #5A7A63, #17281C 75%); }
.dine-figure .ridge-mark { position: absolute; inset: auto 0 0 0; height: 50%; }
.dine-copy p { color: var(--mist); font-size: 1rem; line-height: 1.75; margin-bottom: var(--sp-2); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-figure {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 0;
  background: linear-gradient(160deg, var(--pine-soft), var(--pine-deep) 70%);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { padding: var(--sp-4); border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line-soft); }
.contact-card h4 { font-size: 1rem; color: var(--pine); margin-bottom: 0.6rem; }
.contact-card p, .contact-card a { color: var(--mist); font-size: 0.95rem; line-height: 1.7; }
.contact-card a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }

.center-note { text-align: center; color: var(--mist); font-family: var(--f-mono); font-size: 0.78rem; margin-top: var(--sp-4); }
.mt-0 { margin-top: 0 !important; }

/* =========================================================
   BOOKING MODAL
   ========================================================= */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 36, 28, 0.6);
  backdrop-filter: blur(3px);
  z-index: 200;
  padding: var(--sp-3);
  align-items: center;
  justify-content: center;
}
.booking-overlay.is-open { display: flex; }
body.modal-open { overflow: hidden; }

.booking-modal {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  max-height: min(88vh, 780px);
  overflow-y: auto;
  padding: var(--sp-4);
  box-shadow: 0 30px 70px -20px rgba(15, 24, 18, 0.55);
  animation: bookingIn 0.22s cubic-bezier(.2,.7,.3,1);
}
@keyframes bookingIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .booking-modal { animation: none; } }

.booking-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.booking-close:hover { background: var(--pine); border-color: var(--pine); color: var(--cream); }

.booking-modal .eyebrow { display: block; margin-bottom: var(--sp-1); }
.booking-modal h3 { font-size: 1.5rem; margin-bottom: 0.3rem; padding-right: var(--sp-5); }
.booking-sub { color: var(--mist); font-size: 0.9rem; margin-bottom: var(--sp-3); }

.booking-form { display: flex; flex-direction: column; gap: var(--sp-3); }
.b-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
@media (max-width: 460px) { .b-row { grid-template-columns: 1fr; } }

.b-field { display: flex; flex-direction: column; gap: 0.4rem; }
.b-field label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}
.b-field input, .b-field select {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--ink-text);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  width: 100%;
}
.b-field input:focus, .b-field select:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(36, 66, 47, 0.12);
}
.b-field input:invalid { box-shadow: none; }
.b-field select { cursor: pointer; }

.booking-summary {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-2) 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--ink-text);
  gap: var(--sp-2);
}
.booking-summary .b-nights { color: var(--mist); }
.booking-summary .b-total { color: var(--pine); font-weight: 700; text-align: right; }
.booking-summary .b-total .b-note { display: block; font-family: var(--f-body); font-weight: 400; font-size: 0.72rem; color: var(--mist); margin-top: 0.2rem; }

.booking-error {
  display: none;
  font-size: 0.85rem;
  color: #A03D2C;
  background: rgba(160, 61, 44, 0.08);
  border: 1px solid rgba(160, 61, 44, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
}
.booking-error.is-visible { display: block; }

.booking-form .btn { justify-content: center; width: 100%; padding: 0.9rem 1.4rem; font-size: 0.85rem; }
.booking-note { font-size: 0.78rem; color: var(--mist); text-align: center; }

/* =========================================================
   BOOKING FORM — date-range picker + guest stepper
   ========================================================= */

/* -- shared trigger button look (mimics .b-field input) -- */
.b-dates-trigger, .b-guests-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-family: var(--f-body);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.b-dates-trigger:hover, .b-guests-trigger:hover { border-color: var(--pine); }
.b-dates-trigger.is-open, .b-guests-trigger.is-open,
.b-dates-trigger:focus-visible, .b-guests-trigger:focus-visible {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(36, 66, 47, 0.12);
}

/* -- dates trigger -- */
.b-dates-trigger { gap: 0.6rem; }
.b-dates-part { display: flex; flex-direction: column; flex: 1; min-width: 0; gap: 0.15rem; }
.b-dates-tag {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}
.b-dates-val {
  font-size: 0.9rem;
  color: var(--ink-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.b-dates-arrow { color: var(--mist); flex-shrink: 0; font-size: 0.85rem; }

/* -- guests trigger -- */
.b-guests-trigger { justify-content: space-between; font-size: 0.9rem; color: var(--ink-text); }
.b-caret { color: var(--mist); flex-shrink: 0; transition: transform 0.18s ease; }
.b-guests-trigger.is-open .b-caret { transform: rotate(180deg); }

/* -- calendar panel -- */
.b-cal-panel {
  display: none;
  margin-top: 0.7rem;
  padding: var(--sp-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}
.b-cal-panel.is-open { display: block; }

.b-cal-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: var(--sp-2); }
.b-cal-nav {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.b-cal-nav:hover:not(:disabled) { border-color: var(--pine); color: var(--pine); }
.b-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.b-cal-hint {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mist);
  text-align: center;
}

.b-cal-grids { display: flex; flex-direction: column; gap: var(--sp-3); }
.b-cal-month-title {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--pine);
  text-align: center;
  margin-bottom: 0.6rem;
}
.b-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.3rem;
}
.b-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.b-cal-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--ink-text);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease, color 0.12s ease;
}
.b-cal-day.is-empty { visibility: hidden; cursor: default; }
.b-cal-day:hover:not(:disabled):not(.is-empty) { background: rgba(36, 66, 47, 0.12); }
.b-cal-day:disabled { color: rgba(32, 42, 33, 0.25); cursor: not-allowed; }
.b-cal-day.is-today { box-shadow: inset 0 0 0 1px var(--pine); }
.b-cal-day.is-in-range, .b-cal-day.is-hover-range { background: rgba(36, 66, 47, 0.12); border-radius: 4px; }
.b-cal-day.is-selected { background: var(--pine); color: var(--cream); border-radius: 50%; }
.b-cal-day.is-selected:hover { background: var(--pine-deep); }

.b-cal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
}
.b-cal-nights { font-family: var(--f-mono); font-size: 0.8rem; color: var(--pine); font-weight: 700; }
.b-cal-clear {
  background: none; border: none; padding: 0;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.b-cal-clear:hover { color: var(--pine); }

/* -- guests panel -- */
.b-guests-panel {
  display: none;
  margin-top: 0.7rem;
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}
.b-guests-panel.is-open { display: block; }
.b-stepper-row { display: flex; align-items: center; justify-content: space-between; padding: 0.2rem 0; }
.b-stepper-title { display: block; font-size: 0.92rem; color: var(--ink-text); font-weight: 600; }
.b-stepper-sub { display: block; font-family: var(--f-mono); font-size: 0.66rem; color: var(--mist); margin-top: 0.15rem; }
.b-stepper-control { display: flex; align-items: center; gap: 0.75rem; }
.b-stepper-btn {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--pine);
  font-family: var(--f-body);
  font-size: 1.15rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.b-stepper-btn:hover:not(:disabled) { background: var(--pine); border-color: var(--pine); color: var(--cream); }
.b-stepper-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.b-stepper-count { min-width: 1.6em; text-align: center; font-family: var(--f-mono); font-size: 1rem; color: var(--ink-text); }
.b-guests-done { margin-top: var(--sp-2) !important; padding: 0.6rem 1rem !important; font-size: 0.78rem !important; }
