/* ─────────────────────────────────────────────────────────────
   Camping Thobias — shared styles
   Design system: Rye + EB Garamond + Caveat + DM Sans + Special Elite
   Palette: cream paper, honey wood, deep forest, sage, sunset
   ───────────────────────────────────────────────────────────── */

:root {
  --cream: #F2E7CC;
  --paper: #EBDDB8;
  --bone:  #E1D0A6;
  --wood:  #B07636;
  --wood-deep: #6E3F1A;
  --wood-dark: #4A2A12;
  --ink:   #2A2014;
  --ink-soft: #564636;
  --forest: #2E4029;
  --moss: #4F6841;
  --sage: #8E9F70;
  --sunset: #C4623F;
  --ember: #D88A3E;
  --chain: #3A3328;

  --maxw: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);

  --shadow-card: 0 24px 48px -28px rgba(0, 0, 0, 0.4);
  --shadow-btn:  0 12px 24px -14px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

/* ─────────────── Typography helpers ─────────────── */
.display { font-family: 'Fraunces', serif; letter-spacing: -0.015em; line-height: 1.1; }
.hand    { font-family: 'Caveat', cursive; }
.ui      { font-family: 'Inter', sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.serif   { font-family: 'Inter', sans-serif; }
.type    { font-family: 'Inter', sans-serif; }

/* Cream-with-forest-outline letters, miming the wooden sign */
.signed {
  color: var(--cream);
  -webkit-text-stroke: 1.5px var(--forest);
  text-shadow: 1px 1.5px 0 rgba(46, 64, 41, 0.35);
}

/* ─────────────── Layout helpers ─────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.paper-noise {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.1  0 0 0 0 0.05  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.45;
  z-index: 0;
}

.frame {
  border: 1px solid rgba(46, 64, 41, 0.35);
  background: var(--cream);
}

.rule {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-soft);
}
.rule::before, .rule::after {
  content: ""; height: 1px; flex: 1;
  background: currentColor; opacity: .4;
}

/* ─────────────── Image placeholders ─────────────── */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(46, 64, 41, 0.07) 0 12px,
      rgba(46, 64, 41, 0.02) 12px 24px),
    var(--bone);
  border: 1px solid rgba(46, 64, 41, 0.22);
  color: var(--ink-soft);
  overflow: hidden;
}
.ph-label {
  position: absolute; left: 10px; top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .06em;
  color: var(--ink-soft);
  background: rgba(242, 231, 204, 0.78);
  padding: 3px 7px;
  border: 1px solid rgba(46, 64, 41, 0.25);
}
.ph-dim {
  position: absolute; right: 10px; bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; color: rgba(42, 32, 20, 0.5);
}
.ph > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ─────────────── Chips ─────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(46, 64, 41, 0.4);
  color: var(--forest);
  background: rgba(242, 231, 204, 0.5);
  border-radius: 999px;
}
.chip--filled {
  background: var(--forest); color: var(--cream); border-color: var(--forest);
}

/* ─────────────── Buttons ─────────────── */
.btn {
  font-family: 'Inter', sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  font-size: 11px; font-weight: 600;
  padding: 10px 16px;
  border: 1px solid;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { font-size: 13px; padding: 14px 22px; }
.btn--primary {
  background: var(--forest); color: var(--cream); border-color: var(--forest);
}
.btn--primary:hover { background: #243522; }
.btn--wood {
  background: var(--wood-deep); color: var(--cream); border-color: var(--wood-deep);
}
.btn--wood:hover { background: #58300f; }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: rgba(42, 32, 20, 0.5);
}
.btn--ghost:hover { background: rgba(42, 32, 20, 0.05); }
.btn--cream {
  background: var(--cream); color: var(--forest); border-color: var(--cream);
}
.btn--cream:hover { background: #e8d9b3; }
.btn--block { width: 100%; justify-content: center; }

/* ─────────────── Top bar / navigation ─────────────── */
.menu-open { overflow: hidden; }
.topbar {
  position: relative; z-index: 10;
  background: var(--cream);
  border-bottom: 1px solid rgba(42, 32, 20, 0.18);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  max-width: var(--maxw); margin: 0 auto;
}
.topbar__brand {
  display: flex; align-items: center; gap: 14px;
}
.topbar__logo {
  height: 46px; width: auto; display: block;
}
.topbar__mark {
  width: 38px; height: 38px; border-radius: 38px;
  background: var(--wood-deep); color: var(--cream);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 18px;
}
.topbar__name {
  font-family: 'Fraunces', serif;
  font-size: 15px; color: var(--wood-deep); line-height: 1;
}
.topbar__sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px; color: var(--ink-soft);
  margin-top: 3px; letter-spacing: .14em; text-transform: uppercase;
}
.topbar__nav {
  display: flex; gap: 28px;
}
.topbar__nav a {
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.topbar__nav a:hover { color: var(--forest); }
.topbar__nav a.is-active {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.topbar__right {
  display: flex; gap: 14px; align-items: center;
}
.topbar__phone {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase;
}

/* Mobile nav toggle — minimalist hamburger / X */
.topbar__toggle {
  display: none;
  position: relative;
  width: 40px; height: 40px;
  padding: 0;
  background: transparent; border: none;
  color: transparent; font-size: 0;       /* hide "Meniu" label */
  cursor: pointer;
  z-index: 21;
}
.topbar__toggle::before,
.topbar__toggle::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.topbar__toggle::before { transform: translate(-50%, -6px); }
.topbar__toggle::after  { transform: translate(-50%,  6px); }
/* Middle bar drawn as a centered background line */
.topbar__toggle {
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 24px 2px;
  background-position: center;
  background-repeat: no-repeat;
}
/* Open state → X */
.topbar.is-open .topbar__toggle { background-image: none; }
.topbar.is-open .topbar__toggle::before { transform: translate(-50%, 0) rotate(45deg); }
.topbar.is-open .topbar__toggle::after  { transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 960px) {
  .topbar__phone { display: none; }

  /* Mobile layout: hamburger left | logo center | rezerva right */
  .topbar__inner { position: relative; }
  .topbar__toggle {
    display: inline-flex;
    order: 1;
    flex-shrink: 0;
  }
  .topbar__brand {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .topbar__right {
    order: 3;
    margin-left: auto;
  }

  /* Compact floating dropdown instead of a full-width block */
  .topbar__nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--pad-x);
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    min-width: 180px;
    padding: 8px;
    background: var(--cream);
    border: 1px solid rgba(42, 32, 20, 0.18);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(42, 32, 20, 0.22);
  }
  .topbar.is-open .topbar__nav {
    display: flex;
    animation: navDrop .16s ease-out;
  }
  .topbar__nav a {
    padding: 10px 14px;
    border-bottom: none;
    border-radius: 8px;
    font-size: 12px;
  }
  .topbar__nav a:hover { background: rgba(42, 32, 20, 0.05); }
  .topbar__nav a.is-active {
    border-bottom: none;
    background: rgba(42, 32, 20, 0.06);
  }
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────── Page sections ─────────────── */
.section { padding: 64px 0; position: relative; }
.section--tight { padding: 36px 0; }
.section--wood {
  background: var(--wood-deep); color: var(--cream);
}
.section__eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 14px;
}
.section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  color: var(--wood-deep);
  letter-spacing: .02em;
  margin: 0 0 18px;
}
.section__lead {
  font-family: 'Inter', sans-serif;
  font-size: 17px; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
}

/* ─────────────── Hero (static image) ─────────────── */
.hero {
  position: relative;
  background: var(--cream);
}
.hero__stage {
  position: relative;
  width: 100%;
  height: clamp(520px, 70vh, 820px);
  background: var(--bone);
  overflow: hidden;
}
.hero__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero__sign {
  position: absolute; left: 50%; bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 6;
  width: clamp(240px, 28vw, 380px);
  pointer-events: none;
}
.hero__logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.5));
}
.hero__caption {
  position: absolute; left: 0; right: 0; bottom: 80px;
  z-index: 3;
  padding: 0 var(--pad-x);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
}
.hero__caption-box {
  max-width: 480px;
  background: rgba(242, 231, 204, 0.92);
  padding: 22px 26px;
  border: 1px solid rgba(46, 64, 41, 0.3);
}
.hero__caption-box .ui { font-size: 11px; color: var(--moss); }
.hero__caption-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--wood-deep);
  line-height: 1.1;
  margin-top: 10px;
}
.hero__caption-card {
  background: rgba(46, 64, 41, 0.92);
  color: var(--cream);
  padding: 20px 24px;
}
.hero__caption-card .ui { opacity: .8; font-size: 11px; }
.hero__caption-card .display {
  font-size: 22px; margin-top: 6px;
}

/* Booking strip beneath hero */
.booking-strip {
  margin: 130px auto 0;
  max-width: var(--maxw);
  width: calc(100% - 2 * var(--pad-x));
  position: relative;
  z-index: 5;
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.3);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
}
.booking-strip__col {
  padding: 18px 22px;
  border-right: 1px solid rgba(46, 64, 41, 0.18);
}
.booking-strip__col:last-of-type { border-right: none; }
.booking-strip__col .ui { font-size: 10px; color: var(--ink-soft); }
.booking-strip__col .val {
  font-family: 'Inter', sans-serif; font-size: 16px;
  color: var(--ink); margin-top: 6px;
}
.booking-strip__cta {
  display: grid; place-items: center; padding: 0 14px;
}

@media (max-width: 800px) {
  .booking-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: -46px;
  }
  .booking-strip__col { border-right: none; border-bottom: 1px solid rgba(46, 64, 41, 0.18); }
  .booking-strip__cta { grid-column: 1 / -1; padding: 14px; }
  .hero__caption {
    flex-direction: column;
    align-items: stretch;
    bottom: 32px;
  }
  .hero__caption-card { display: none; }
  .hero__sign {
    top: 16px;
    bottom: auto;
    transform: translateX(-50%);
    width: clamp(220px, 60vw, 320px);
  }
}

/* ─────────────── Pillars (intro tiles) ─────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.pillars__num {
  font-family: 'Fraunces', serif; font-size: 22px; color: var(--wood-deep);
}
.pillars__title {
  font-family: 'Fraunces', serif; font-size: 20px; margin-top: 8px; color: var(--ink);
}
.pillars__body {
  font-family: 'Inter', sans-serif; font-size: 15px;
  line-height: 1.55; color: var(--ink-soft); margin-top: 10px;
}
@media (max-width: 740px) { .pillars { grid-template-columns: 1fr; gap: 28px; } }

/* ─────────────── Featured strip ─────────────── */
.featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.featured .ph { width: 100%; height: 360px; }
@media (max-width: 800px) {
  .featured { grid-template-columns: 1fr; }
  .featured .ph { height: 280px; }
}

/* ─────────────── Cabin grid / cards ─────────────── */
.cabin-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.cabin-grid--small {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 28px;
}
.cabin-grid__col { display: grid; gap: 28px; }
@media (max-width: 900px) {
  .cabin-grid, .cabin-grid--small { grid-template-columns: 1fr; }
}

.cabin-card {
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.cabin-card__media { position: relative; height: 260px; }
.cabin-card--big .cabin-card__media { height: 360px; }
.cabin-card__media .ph { width: 100%; height: 100%; border: none; }
.cabin-card__name {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--cream); padding: 6px 10px;
  border: 1px solid rgba(46, 64, 41, 0.3);
  font-family: 'Fraunces', serif; font-size: 16px;
}
.cabin-card__tag {
  position: absolute; right: 14px; bottom: 14px;
  color: var(--cream); padding: 6px 10px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
}
.cabin-card__body { padding: 18px 20px; }
.cabin-card__head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.cabin-card__title {
  font-family: 'Fraunces', serif; color: var(--wood-deep);
  font-size: 20px;
}
.cabin-card--big .cabin-card__title { font-size: 28px; }
.cabin-card__cap {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase;
}
.cabin-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--ink-soft); line-height: 1.55;
  margin-top: 8px;
}
.cabin-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px dotted rgba(42, 32, 20, 0.3);
}
.cabin-card__price {
  font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink);
}
.cabin-card__per {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--ink-soft); margin-left: 8px;
  letter-spacing: .08em; text-transform: uppercase;
}
.cabin-card__cta {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--forest); letter-spacing: .14em; text-transform: uppercase;
}

/* ─────────────── Cabin detail ─────────────── */
.cabin-detail__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
}
.cabin-detail__title {
  font-family: 'Fraunces', serif; font-size: clamp(40px, 6vw, 60px);
  color: var(--wood-deep); line-height: 1; margin: 0;
}
.cabin-detail__sub {
  font-style: italic; font-size: 17px; color: var(--ink-soft); margin-top: 10px;
}
.cabin-detail__price {
  font-family: 'Fraunces', serif; font-size: 36px; color: var(--ink);
}
.cabin-detail__price-per {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-top: 24px;
}
.gallery .ph { width: 100%; height: 100%; }
.gallery .ph:first-child { grid-row: span 2; }
@media (max-width: 780px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 160px 160px; }
  .gallery .ph:first-child { grid-row: span 1; grid-column: span 2; }
}

.detail-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  margin-top: 32px;
}
@media (max-width: 900px) { .detail-body { grid-template-columns: 1fr; } }

.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.amenities__item {
  display: flex; align-items: baseline; gap: 10px;
  border-bottom: 1px dotted rgba(42, 32, 20, 0.25);
  padding-bottom: 8px;
}
.amenities__item::before { content: '✦'; color: var(--moss); }
.amenities__item strong {
  font-family: 'Fraunces', serif; font-size: 15px; color: var(--ink);
  font-weight: normal; display: block;
}
.amenities__item span {
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-soft);
}

/* Booking sidebar card */
.book-card {
  background: var(--bone);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 24px;
}
.book-card__title {
  font-family: 'Fraunces', serif; font-size: 22px; color: var(--wood-deep);
}
.book-card__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 16px;
  border: 1px solid rgba(42, 32, 20, 0.3);
}
.book-card__cell {
  padding: 12px;
  border-right: 1px solid rgba(42, 32, 20, 0.3);
  border-bottom: 1px solid rgba(42, 32, 20, 0.3);
}
.book-card__cell:nth-child(2n) { border-right: none; }
.book-card__cell:nth-last-child(-n+2) { border-bottom: none; }
.book-card__cell .ui { font-size: 10px; color: var(--ink-soft); }
.book-card__cell .val { font-family: 'Inter', sans-serif; font-size: 16px; margin-top: 4px; }

.book-card__lines { margin-top: 18px; padding-top: 16px; border-top: 1px dotted rgba(42, 32, 20, 0.3); }
.book-card__lines div {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink-soft);
}
.book-card__total {
  display: flex; justify-content: space-between;
  margin-top: 14px; padding-top: 14px;
  border-top: 1.5px solid var(--ink);
}
.book-card__total .label { font-family: 'Fraunces', serif; font-size: 20px; color: var(--ink); }
.book-card__total .amount { font-family: 'Fraunces', serif; font-size: 22px; color: var(--wood-deep); }

.book-card__note {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: var(--ink-soft); text-align: center;
  margin-top: 10px; font-style: italic;
}

.host-note {
  margin-top: 18px;
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 18px;
}
.host-note__title { font-family: 'Inter', sans-serif; font-size: 22px; color: var(--wood-deep); }
.host-note__body {
  font-family: 'Inter', sans-serif; font-size: 15px;
  line-height: 1.6; color: var(--ink-soft);
  margin-top: 8px; font-style: italic;
}
.host-note__sig {
  font-family: 'Inter', sans-serif; font-size: 26px; color: var(--ink);
  margin-top: 6px;
}

/* ─────────────── Stars (reviews) ─────────────── */
.stars { display: inline-flex; gap: 3px; }
.star { width: 14px; height: 14px; display: inline-block; }

/* ─────────────── Booking page ─────────────── */
.stepper {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 18px;
}
.stepper__step {
  display: flex; align-items: center; gap: 10px;
}
.stepper__num {
  width: 30px; height: 30px; border-radius: 30px;
  border: 1.5px solid var(--forest);
  display: grid; place-items: center;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--ink); background: transparent;
}
.stepper__step.is-active .stepper__num {
  background: var(--forest); color: var(--cream);
}
.stepper__step:not(.is-active) { opacity: .45; }
.stepper__title { font-family: 'Fraunces', serif; font-size: 15px; color: var(--ink); }
.stepper__sub {
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}

.calendar-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  margin-top: 32px;
}
@media (max-width: 900px) { .calendar-block { grid-template-columns: 1fr; } }

.calendar {
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 28px;
}
.calendar__head {
  display: flex; justify-content: space-between; align-items: center;
}
.calendar__months {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 18px;
}
@media (max-width: 600px) { .calendar__months { grid-template-columns: 1fr; } }
.cal-month__head {
  display: flex; justify-content: space-between;
  margin-bottom: 8px;
}
.cal-month__title { font-family: 'Fraunces', serif; font-size: 15px; color: var(--wood-deep); }
.cal-month__year {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--ink-soft); letter-spacing: .14em; text-transform: uppercase;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.cal-grid__dow {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--ink-soft); text-align: center; padding-bottom: 4px;
  letter-spacing: .08em; text-transform: uppercase;
}
.cal-grid__day {
  height: 28px; display: grid; place-items: center;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink);
}
.cal-grid__day.is-today { border-color: var(--forest); border-style: dashed; }
.cal-grid__day.is-occupied {
  background: rgba(46, 64, 41, 0.18); color: rgba(42, 32, 20, 0.4);
}
.cal-grid__day.is-festival { background: rgba(196, 98, 63, 0.25); }
.cal-grid__day.is-selected { background: var(--forest); color: var(--cream); }

.legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px dotted rgba(42, 32, 20, 0.3);
}
.legend__item { display: flex; align-items: center; gap: 8px; }
.legend__sw {
  width: 14px; height: 14px;
  border: 1px solid rgba(42, 32, 20, 0.35);
}
.legend__label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase;
}

.guests {
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 24px; margin-top: 16px;
}
.guests__title { font-family: 'Fraunces', serif; font-size: 18px; color: var(--wood-deep); }
.guests__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(42, 32, 20, 0.25);
}
.guests__row:last-child { border-bottom: none; }
.guests__row strong {
  font-family: 'Fraunces', serif; font-size: 15px; color: var(--ink); font-weight: normal;
}
.guests__controls {
  display: flex; align-items: center; gap: 14px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 28px;
  border: 1px solid rgba(42, 32, 20, 0.4);
  background: transparent;
  font-family: 'Inter', sans-serif; font-size: 16px;
  color: var(--ink);
}
.qty-val { width: 18px; text-align: center; font-family: 'Inter', sans-serif; font-size: 16px; }

.summary-card {
  background: var(--wood-deep); color: var(--cream);
  border: 1px solid var(--wood-deep);
  padding: 24px; margin-top: 16px;
}
.summary-card__row {
  display: flex; justify-content: space-between;
}
.summary-card__row .ui { font-size: 11px; opacity: .7; }
.summary-card__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(242, 231, 204, 0.3);
}
.summary-card__total .label { font-family: 'Fraunces', serif; font-size: 18px; }
.summary-card__total .amount { font-family: 'Fraunces', serif; font-size: 30px; }

/* ─────────────── Activities ─────────────── */
.activities {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 900px) { .activities { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .activities { grid-template-columns: 1fr; } }

.activity-card {
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 24px 22px;
}
.activity-card__image {
  display: block;
  max-width: none;
  width: calc(100% + 46px);
  height: 200px;
  margin: -25px -23px 20px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px 12px 0 0;
}
.activity-card__icon {
  font-size: 30px; line-height: 1; color: var(--wood-deep);
}
.activity-card__title {
  font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink);
  margin-top: 14px;
}
.activity-card__body {
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--ink-soft); line-height: 1.6; margin-top: 10px;
}
.activity-card__meta {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--moss); letter-spacing: .14em; text-transform: uppercase;
  margin-top: 16px; padding-top: 12px;
  border-top: 1px dotted rgba(42, 32, 20, 0.25);
}

.events {
  background: var(--wood-deep); color: var(--cream);
  border: 1px solid var(--wood-deep);
  padding: 40px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: center;
}
.events__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05; color: var(--cream); margin-top: 14px;
}
.events__lead {
  font-family: 'Inter', sans-serif; font-size: 16px;
  line-height: 1.65; color: rgba(242, 231, 204, 0.85);
  margin-top: 14px; max-width: 540px;
}
.events__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.events__stat {
  border-top: 1px solid rgba(242, 231, 204, 0.35);
  padding-top: 14px;
}
.events__stat .num {
  font-family: 'Fraunces', serif; font-size: 32px; color: var(--cream);
}
.events__stat .lbl {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  opacity: .7; margin-top: 4px;
}
@media (max-width: 800px) { .events { grid-template-columns: 1fr; padding: 32px; gap: 28px; } }

/* ─────────────── Map page ─────────────── */
.map-layout {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
@media (max-width: 900px) { .map-layout { grid-template-columns: 1fr; } }

.map-frame {
  background: #EEDEB6;
  border: 1px solid rgba(46, 64, 41, 0.35);
  position: relative;
  height: 780px;
  overflow: hidden;
}
@media (max-width: 600px) { .map-frame { height: 520px; } }

.legend-list {
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 22px;
}
.legend-list__title { font-family: 'Fraunces', serif; font-size: 18px; color: var(--wood-deep); }
.legend-list__row {
  display: flex; gap: 10px; align-items: center;
  border-bottom: 1px dotted rgba(42, 32, 20, 0.25);
  padding: 10px 0;
}
.legend-list__row:last-child { border-bottom: none; }
.legend-list__sw {
  width: 22px; height: 22px;
  border: 1px solid var(--ink);
  flex-shrink: 0;
}
.legend-list__name { font-family: 'Fraunces', serif; font-size: 14px; color: var(--ink); }
.legend-list__desc { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--ink-soft); }

.trails {
  background: var(--bone);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 22px;
  margin-top: 18px;
}
.trails__title { font-family: 'Fraunces', serif; font-size: 16px; color: var(--wood-deep); }
.trails__row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(42, 32, 20, 0.25);
}
.trails__row:last-child { border-bottom: none; }

/* ─────────────── Story / timeline / reviews ─────────────── */
.story-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
@media (max-width: 800px) { .story-head { grid-template-columns: 1fr; gap: 24px; } }

.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 36px;
}
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .timeline { grid-template-columns: 1fr; } }
.timeline__item { border-top: 2px solid var(--wood-deep); padding-top: 14px; }
.timeline__year { font-family: 'Fraunces', serif; font-size: 28px; color: var(--wood-deep); }
.timeline__title { font-family: 'Fraunces', serif; font-size: 16px; color: var(--ink); margin-top: 6px; }
.timeline__desc {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--ink-soft); margin-top: 8px; line-height: 1.55;
}

.reviews-head {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: flex-end;
}
@media (max-width: 800px) { .reviews-head { grid-template-columns: 1fr; } }

.reviews-score {
  background: var(--bone);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 20px 24px;
}
.reviews-score__big {
  font-family: 'Fraunces', serif; font-size: 48px; color: var(--wood-deep);
}
.reviews-score__row {
  display: flex; justify-content: space-between;
  border-bottom: 1px dotted rgba(42, 32, 20, 0.25);
  padding: 4px 0;
}

.review-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; margin-top: 24px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 22px;
}
.review-card__title {
  font-family: 'Fraunces', serif; font-size: 18px; color: var(--wood-deep);
  margin-top: 10px; line-height: 1.2;
}
.review-card__body {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--ink-soft); line-height: 1.55;
  margin-top: 8px; font-style: italic;
}
.review-card__author {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px dotted rgba(42, 32, 20, 0.3);
}
.review-card__avatar {
  width: 32px; height: 32px; border-radius: 32px;
  background: var(--wood-deep); color: var(--cream);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 13px;
}
.review-card__name { font-family: 'Fraunces', serif; font-size: 13px; color: var(--ink); }
.review-card__from {
  font-family: 'Inter', sans-serif; font-size: 9px;
  color: var(--ink-soft); letter-spacing: .14em; text-transform: uppercase;
}

/* ─────────────── Contact ─────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-block {
  border-top: 1.5px solid var(--wood-deep);
  padding-top: 14px;
}
.contact-block__label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--ink-soft); letter-spacing: .14em; text-transform: uppercase;
}
.contact-block__big {
  font-family: 'Fraunces', serif; font-size: 20px;
  color: var(--ink); margin-top: 6px; line-height: 1.25;
}
.contact-block__sub {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: var(--ink-soft); margin-top: 4px; font-style: italic;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 36px;
}
@media (max-width: 500px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-events {
  margin-top: 28px;
  background: var(--wood-deep); color: var(--cream);
  border: 1px solid var(--wood-deep);
  padding: 24px 28px;
}
.contact-events__title { font-family: 'Fraunces', serif; font-size: 24px; }
.contact-events__body {
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: rgba(242, 231, 204, 0.85);
  line-height: 1.6; margin-top: 8px;
}

.mini-map {
  background: #EEDEB6;
  border: 1px solid rgba(46, 64, 41, 0.35);
  height: 340px; position: relative; overflow: hidden;
}
.mini-map__open {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--cream); padding: 5px 10px;
  border: 1px solid rgba(46, 64, 41, 0.3);
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
}

.contact-form {
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 24px; margin-top: 18px;
}
.field { margin-top: 12px; }
.field__label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--ink-soft); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(42, 32, 20, 0.3);
  background: var(--bone);
  padding: 10px 12px;
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--forest); outline-offset: -1px;
}
.contact-form__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; gap: 14px; flex-wrap: wrap;
}

/* ─────────────── Footer ─────────────── */
.footer {
  background: #1F2E24; color: var(--cream);
  padding: 56px var(--pad-x);
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__brand .display { font-family: 'Fraunces', serif; font-size: 22px; color: #FBF7EE; }
.footer__sub {
  font-family: 'Inter', sans-serif; font-size: 12px;
  opacity: .6;
}
.footer__hand { font-family: 'Caveat', cursive; font-size: 22px; opacity: .9; }
.footer__right { display: flex; flex-direction: column; gap: 4px; text-align: right; }

/* ─────────────── Two-column intro section ─────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 24px; } }

/* Story portrait — responsive */
@media (max-width: 800px) {
  .story-portrait {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .story-portrait .ph { height: 320px !important; }
}

/* Stepper — wrap nicely on mobile */
@media (max-width: 700px) {
  .stepper { gap: 14px; }
  .stepper__step > div[style*="width: 60px"] { display: none; }
}

/* ─────────────── Booking modal ─────────────── */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 14, 6, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn .25s ease;
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 1040px;
  max-height: calc(100vh - 40px);
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.35);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
  display: flex; flex-direction: column;
  animation: dialogIn .3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes dialogIn {
  from { opacity: 0; transform: translateY(12px) scale(.98) }
  to   { opacity: 1; transform: translateY(0) scale(1) }
}

.modal__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(46, 64, 41, 0.2);
  background: var(--cream);
  flex-shrink: 0;
}
.modal__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--wood-deep);
  margin: 0;
  letter-spacing: .02em;
}
.modal__sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--ink-soft);
  font-style: italic;
  margin-top: 4px;
}
.modal__close {
  background: transparent;
  border: 1px solid rgba(42, 32, 20, 0.4);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  font-size: 22px; line-height: 1;
  color: var(--ink);
  transition: background .15s ease, border-color .15s ease;
}
.modal__close:hover {
  background: rgba(42, 32, 20, 0.08);
  border-color: rgba(42, 32, 20, 0.7);
}

.modal__tabs {
  display: flex;
  padding: 0 28px;
  border-bottom: 1px solid rgba(46, 64, 41, 0.2);
  background: var(--cream);
  flex-shrink: 0;
  overflow-x: auto;
}
.modal__tab {
  background: transparent;
  border: none;
  padding: 16px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.modal__tab:hover { color: var(--ink); }
.modal__tab.is-active {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.modal__tab-count {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(46, 64, 41, 0.12);
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: .04em;
}
.modal__tab.is-active .modal__tab-count {
  background: var(--forest);
  color: var(--cream);
}

.modal__body {
  padding: 28px;
  overflow-y: auto;
  background: var(--cream);
}
.modal__panel { display: none; }
.modal__panel.is-active { display: block; }
.modal__panel-intro {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 640px;
  font-style: italic;
}

.modal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.modal-cards--one { grid-template-columns: 1fr; max-width: 540px; }
@media (max-width: 720px) {
  .modal-cards { grid-template-columns: 1fr; }
}

.modal-card {
  background: var(--cream);
  border: 1px solid rgba(46, 64, 41, 0.3);
  display: flex;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.modal-card:hover {
  transform: translateY(-2px);
  border-color: var(--forest);
  box-shadow: 0 14px 28px -18px rgba(0, 0, 0, 0.3);
}
.modal-card.is-selected {
  border-color: var(--forest);
  border-width: 2px;
  box-shadow: 0 0 0 1px var(--forest);
}
.modal-card.is-selected::after {
  content: '✓';
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  border-radius: 26px;
  background: var(--forest);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 14px;
  z-index: 2;
}
.modal-card__media {
  position: relative;
  width: 140px;
  flex-shrink: 0;
}
.modal-card__media .ph {
  width: 100%; height: 100%;
  border: none;
}
.modal-card__tag {
  position: absolute;
  left: 8px; bottom: 8px;
  color: var(--cream);
  padding: 4px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.modal-card__body {
  padding: 16px 18px;
  flex: 1;
  display: flex; flex-direction: column;
  min-width: 0;
}
.modal-card__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.modal-card__name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.1;
}
.modal-card__cap {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.modal-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 6px 0 0;
}
.modal-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dotted rgba(42, 32, 20, 0.3);
}
.modal-card__price {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ink);
}
.modal-card__price span {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: 6px;
}
.modal-card__cta {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
}

@media (max-width: 500px) {
  .modal__head { padding: 18px 20px; }
  .modal__tabs { padding: 0 20px; }
  .modal__tab { padding: 14px 16px; font-size: 11px; }
  .modal__body { padding: 20px; }
  .modal-card { flex-direction: column; }
  .modal-card__media { width: 100%; height: 140px; }
}

/* Trigger button (selector card on booking page) */
.selector-card {
  background: var(--bone);
  border: 1px solid rgba(46, 64, 41, 0.35);
  padding: 22px 24px;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
  font: inherit;
  color: inherit;
}
.selector-card:hover {
  border-color: var(--forest);
  background: #DCC79A;
}
.selector-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.selector-card__label {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--wood-deep);
}
.selector-card__change {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex; align-items: center; gap: 6px;
}
.selector-card__body {
  display: flex; gap: 14px; align-items: center;
}
.selector-card__media {
  width: 90px; height: 70px;
  flex-shrink: 0;
  position: relative;
}
.selector-card__media .ph { width: 100%; height: 100%; border: none; }
.selector-card__name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
}
.selector-card__meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

body.modal-open { overflow: hidden; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .modal__backdrop, .modal__dialog { animation: none; }
}

/* ─────────────── Rooms gallery (home) ─────────────── */
.rooms-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.rooms-gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 64, 41, 0.22);
  display: block;
}
.rooms-gallery__item--big { grid-column: span 2; grid-row: span 2; }
.rooms-gallery__item .ph { width: 100%; height: 100%; border: none; }
.rooms-gallery__item img { transition: transform 1s ease; }
.rooms-gallery__item:hover img { transform: scale(1.05); }
.rooms-gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 16, 11, 0.7) 100%);
  pointer-events: none;
}
.rooms-gallery__cap {
  position: absolute; left: 12px; bottom: 12px; z-index: 1;
  font-family: 'Fraunces', serif; font-size: 14px; color: var(--cream);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.rooms-gallery__item--big .rooms-gallery__cap { font-size: 18px; }
@media (max-width: 820px) {
  .rooms-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .rooms-gallery__item--big { grid-column: span 2; grid-row: span 1; height: auto; }
}
@media (max-width: 480px) {
  .rooms-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
}

/* ─────────────── Booking section — calendar + WhatsApp ─────────────── */
.book {
  background: var(--wood-deep);
  color: var(--cream);
  padding: 72px 0;
}
.book__intro { max-width: 680px; }
.book__eyebrow { font-size: 11px; color: var(--ember); }
.book__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1; color: var(--cream);
  margin: 12px 0 0; letter-spacing: .01em;
}
.book__title-em { color: var(--ember); }
.book__lead {
  font-family: 'Inter', sans-serif;
  font-size: 17px; line-height: 1.6;
  color: rgba(242, 231, 204, 0.82);
  margin-top: 16px; max-width: 56ch;
}
.book__alt {
  text-align: center; margin-top: 22px;
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: rgba(242, 231, 204, 0.78); font-style: italic;
}
.book__alt a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }

.booking-card {
  max-width: 920px;
  margin: 40px auto 0;
  background: linear-gradient(160deg, rgba(42, 26, 14, 0.5) 0%, rgba(74, 42, 18, 0.34) 100%);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(242, 231, 204, 0.2);
  padding: 30px 32px 32px;
}
.booking-title {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ember);
}
.booking-title::before { content: ""; width: 26px; height: 1px; background: var(--ember); }
.booking-title em {
  font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 18px; color: rgba(242, 231, 204, 0.7);
  letter-spacing: 0; margin-left: auto;
}

.booking-summary {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid rgba(242, 231, 204, 0.2);
  margin-bottom: 20px;
}
.bs-cell {
  padding: 16px 20px; min-height: 80px;
  border-right: 1px solid rgba(242, 231, 204, 0.16);
  cursor: pointer; transition: background .25s;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.bs-cell:last-child { border-right: none; cursor: default; }
.bs-cell:not(:last-child):hover { background: rgba(216, 138, 62, 0.08); }
.bs-cell.active { background: rgba(216, 138, 62, 0.12); }
.bs-cell.active::before {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--ember);
}
.bs-cell.filled .bs-label::after { content: "✓"; color: var(--ember); margin-left: 8px; }
.bs-label {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 8px;
  display: flex; align-items: center;
}
.bs-value {
  font-family: 'Fraunces', serif; font-size: 17px;
  color: var(--cream); line-height: 1.2;
}
.bs-value.placeholder { color: rgba(242, 231, 204, 0.4); font-family: 'Inter', sans-serif; font-style: italic; }
.bs-select {
  width: 100%; background: transparent; border: none;
  color: var(--cream); font-family: 'Fraunces', serif; font-size: 16px;
  padding: 0 22px 0 0; cursor: pointer;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23D88A3E' stroke-width='1.4' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right center;
}
.bs-select:focus { outline: none; }
.bs-select option { background: var(--wood-dark); color: var(--cream); }

.cal-wrap {
  padding: 22px 24px 24px;
  background: rgba(24, 17, 11, 0.4);
  border: 1px solid rgba(242, 231, 204, 0.16);
  margin-bottom: 18px;
}
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-nav-title {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ember);
}
.cal-nav-btn {
  background: transparent; border: 1px solid rgba(216, 138, 62, 0.4);
  color: var(--ember); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s; padding: 0;
}
.cal-nav-btn:hover:not(:disabled) { border-color: var(--ember); background: rgba(216, 138, 62, 0.16); color: var(--cream); }
.cal-nav-btn:disabled { opacity: .25; cursor: not-allowed; }
.cal-nav-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cal-month-title {
  font-family: 'Fraunces', serif; font-size: 16px; color: var(--cream);
  text-align: center; margin-bottom: 12px;
}
.cal-month-title em { font-style: italic; color: var(--ember); margin-left: 6px; }
.booking-card .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(242, 231, 204, 0.6); text-align: center; padding: 6px 0 8px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--cream);
  cursor: pointer; transition: background .15s, color .15s;
  position: relative; user-select: none;
}
.cal-day.empty { cursor: default; }
.cal-day.disabled { color: rgba(242, 231, 204, 0.18); cursor: not-allowed; }
.cal-day:not(.disabled):not(.empty):hover { background: rgba(216, 138, 62, 0.22); color: var(--cream); }
.cal-day.in-range { background: rgba(216, 138, 62, 0.18); }
.cal-day.range-start, .cal-day.range-end {
  background: linear-gradient(135deg, var(--ember), var(--sunset));
  color: #fff; font-weight: 600;
}
.cal-day.today::after {
  content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--ember);
}
.cal-day.range-start.today::after, .cal-day.range-end.today::after { background: #fff; }
.cal-hint {
  font-family: 'Inter', sans-serif; font-style: italic;
  font-size: 14px; color: rgba(242, 231, 204, 0.55);
  text-align: center; margin-top: 14px;
}
.cal-hint strong {
  font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ember); margin-right: 10px;
}
.bf-error {
  font-family: 'Inter', sans-serif; font-style: italic;
  font-size: 14px; color: #f0b48c;
  min-height: 20px; text-align: center; margin-bottom: 6px;
}
.book-actions { display: flex; justify-content: center; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(120deg, #25D366 0%, #1ebe5a 100%);
  color: #fff; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: .04em;
  padding: 16px 36px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(37, 211, 102, 0.4); }
.btn-wa svg { width: 18px; height: 18px; fill: #fff; }

@media (max-width: 880px) { .cal-months { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 640px) {
  .booking-card { padding: 22px 18px 24px; }
  .booking-summary { grid-template-columns: 1fr; }
  .bs-cell { border-right: none; border-bottom: 1px solid rgba(242, 231, 204, 0.16); min-height: auto; }
  .bs-cell:last-child { border-bottom: none; }
  .bs-cell.active::before { bottom: auto; top: 0; }
  .cal-wrap { padding: 16px 12px 20px; }
}

/* ─────────────── Gallery page ─────────────── */
.gallery-page { columns: 3 280px; column-gap: 14px; margin-top: 28px; }
.gallery-page__item {
  break-inside: avoid; margin: 0 0 14px;
  position: relative; display: block;
  border: 1px solid rgba(46, 64, 41, 0.22);
  overflow: hidden; cursor: zoom-in;
  background: var(--bone);
}
.gallery-page__item img { width: 100%; height: auto; display: block; transition: transform 1s ease; }
.gallery-page__item:hover img { transform: scale(1.04); }
.gallery-page__cap {
  position: absolute; left: 10px; bottom: 10px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: .04em; color: var(--cream);
  background: rgba(46, 64, 41, 0.7); padding: 3px 8px;
}

/* ─────────────── Gallery pagination ─────────────── */
.gallery-pager {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 28px; flex-wrap: wrap;
}
.pager__btn {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; cursor: pointer;
  border: 1px solid rgba(46, 64, 41, 0.35);
  background: var(--cream); color: var(--forest);
  transition: background .15s, transform .1s, opacity .15s;
}
.pager__btn:hover:not(:disabled) { background: var(--bone); transform: translateY(-1px); }
.pager__btn.is-active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.pager__btn.is-disabled, .pager__btn:disabled { opacity: 0.38; cursor: default; }
.pager__num { min-width: 38px; text-align: center; padding: 8px 10px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(20, 14, 6, 0.88);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6); }
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(242, 231, 204, 0.12); border: 1px solid rgba(242, 231, 204, 0.4);
  color: var(--cream); font-size: 24px; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 999px;
  background: rgba(242, 231, 204, 0.12); border: 1px solid rgba(242, 231, 204, 0.4);
  color: var(--cream); font-size: 22px; cursor: pointer;
  display: grid; place-items: center;
}
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
@media (max-width: 600px) { .lightbox__nav { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   MODERNIZATION LAYER — depth, texture & motion
   Keeps the cream/wood palette + fonts; adds atmosphere so the
   page reads less like flat paper and more like a living scene.
   ═══════════════════════════════════════════════════════════════ */

/* ── Living background: warm vertical wash + soft ambient glows ── */
html, body { background: #F4EBD2; }
body {
  background:
    radial-gradient(900px 520px at 12% -4%, rgba(142, 159, 112, 0.16), transparent 60%),
    radial-gradient(820px 540px at 92% 8%, rgba(196, 98, 63, 0.10), transparent 62%),
    linear-gradient(180deg, #F6EFDA 0%, var(--cream) 34%, #EFE3C2 100%);
  background-attachment: fixed;
}

/* Faint topographic contour texture — the camping/mountain motif.
   Sits behind everything, fixed, barely-there. */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='480' height='480'><g fill='none' stroke='%232E4029' stroke-width='1' opacity='0.06'><path d='M-20 80 C 120 30 240 130 480 70'/><path d='M-20 140 C 120 92 240 192 480 132'/><path d='M-20 210 C 140 160 260 250 480 196'/><path d='M-20 290 C 120 232 280 332 480 270'/><path d='M-20 360 C 140 312 250 402 480 350'/><path d='M-20 430 C 120 384 280 470 480 420'/></g></svg>");
  background-size: 480px 480px;
}
/* Keep real content above the texture layer (modals/lightbox keep their
   own high z-index and are intentionally left out of this rule) */
.section, .book, .footer { position: relative; z-index: 1; }
.hero { position: relative; z-index: 2; }  /* keep the hanging logo above the next section */

/* ── Sticky, glassy top bar that lifts on scroll ── */
.topbar {
  position: sticky; top: 0;
  z-index: 40;
  background: rgba(244, 235, 210, 0.82);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.topbar.is-stuck {
  box-shadow: 0 10px 30px -18px rgba(42, 32, 20, 0.55);
  border-bottom-color: rgba(42, 32, 20, 0.12);
}
.topbar__mark {
  box-shadow: 0 6px 14px -6px rgba(74, 42, 18, 0.7);
  transition: transform .25s ease;
}
.topbar__brand:hover .topbar__mark { transform: rotate(-6deg) scale(1.04); }
.topbar__logo { transition: transform .25s ease; }
.topbar__brand:hover .topbar__logo { transform: scale(1.04); }

/* ── Section rhythm: hairline separators + soft accent glow ── */
.section + .section::before {
  content: "";
  position: absolute; top: 0; left: var(--pad-x); right: var(--pad-x);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 64, 41, 0.22), transparent);
}
.section__title { text-wrap: balance; }
.section__eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.section__eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: currentColor; opacity: .7;
}

/* ── Lift the flat tiles off the page: soft shadows + rounded edges
      + gentle hover. Applied broadly so every page benefits. ── */
.activity-card, .cabin-card, .review-card, .reviews-score,
.book-card, .host-note, .guests, .calendar, .legend-list,
.trails, .contact-form, .selector-card, .modal-card {
  border-radius: 12px;
  box-shadow: 0 18px 40px -30px rgba(42, 32, 20, 0.6);
  transition: transform .28s cubic-bezier(.16,1,.3,1),
              box-shadow .28s ease, border-color .28s ease;
}
.activity-card:hover, .cabin-card:hover, .review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -28px rgba(42, 32, 20, 0.55);
  border-color: rgba(46, 64, 41, 0.55);
}

/* Image frames: soften corners + a faint inner edge for depth */
.ph, .rooms-gallery__item, .gallery-page__item,
.cabin-card, .activity-card, .review-card { overflow: hidden; }
.ph, .rooms-gallery__item, .gallery-page__item { border-radius: 12px; }
.cabin-card__media .ph, .rooms-gallery__item .ph { border-radius: 0; }
.ph::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(46, 64, 41, 0.10);
  border-radius: inherit;
}

/* Pillars — give the roman numerals a quiet medallion + hover */
.pillars > div {
  padding: 26px 24px;
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  border: 1px solid rgba(46, 64, 41, 0.14);
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.pillars > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -30px rgba(42, 32, 20, 0.55);
  border-color: rgba(46, 64, 41, 0.3);
}
.pillars__num {
  display: inline-grid; place-items: center;
  width: 50px; height: 50px; margin-bottom: 4px;
  border-radius: 50%;
  color: var(--cream);
  background: radial-gradient(circle at 30% 28%, var(--wood) 0%, var(--wood-deep) 78%);
  box-shadow: 0 10px 20px -12px rgba(74, 42, 18, 0.9);
}

/* ── Buttons: add the depth the design system already declared ── */
.btn--primary, .btn--wood { box-shadow: var(--shadow-btn); }
.btn--primary {
  background: linear-gradient(160deg, #35492f, var(--forest));
}
.btn--wood {
  background: linear-gradient(160deg, #8a5526, var(--wood-deep));
}
.btn--primary:hover, .btn--wood:hover {
  box-shadow: 0 18px 30px -16px rgba(0,0,0,.5);
}

/* ── Events & deep-wood panels: add inner warmth + a hairline frame ── */
.events, .contact-events, .summary-card, .section--wood {
  border-radius: 16px;
  position: relative;
  box-shadow: 0 30px 60px -36px rgba(42, 24, 10, 0.85),
              inset 0 1px 0 rgba(242, 231, 204, 0.12);
}
.events {
  background:
    radial-gradient(620px 320px at 88% -10%, rgba(216, 138, 62, 0.22), transparent 60%),
    var(--wood-deep);
}

/* ── Hero: gentle slow zoom + softer caption cards ── */
.hero__image { animation: heroDrift 26s ease-in-out infinite alternate; }
@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.5%); }
}
.hero__caption-box, .hero__caption-card {
  border-radius: 14px;
  box-shadow: 0 26px 50px -26px rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}

/* ── Booking card: a touch more glass + glow ── */
.booking-card {
  border-radius: 18px;
  box-shadow: 0 40px 80px -44px rgba(0,0,0,0.7),
              inset 0 1px 0 rgba(242, 231, 204, 0.12);
}

/* ── Scroll-reveal (progressive enhancement; .js gate keeps
      content visible when JS is off) ── */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  body, body::before { background-attachment: scroll; }
  .hero__image { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .activity-card, .cabin-card, .review-card, .pillars > div { transition: none; }
}

/* ─────────────── Floating WhatsApp button ─────────────── */
.wa-float {
  position: fixed;
  right: clamp(16px, 4vw, 30px);
  bottom: clamp(16px, 4vw, 30px);
  z-index: 90;                 /* above content, below lightbox (120) & mobile nav (100) */
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.wa-float__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  background: var(--wood-deep);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
  /* tucked away until hover/focus */
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label { opacity: 1; transform: translateX(0); }

.wa-float__btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5a 100%);
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55), 0 6px 14px rgba(0, 0, 0, 0.2);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.wa-float:hover .wa-float__btn,
.wa-float:focus-visible .wa-float__btn {
  transform: scale(1.06);
  box-shadow: 0 20px 44px -8px rgba(37, 211, 102, 0.6), 0 8px 18px rgba(0, 0, 0, 0.24);
}
.wa-float__icon { position: relative; z-index: 1; width: 32px; height: 32px; fill: #fff; }
.wa-float__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.6s cubic-bezier(.4, 0, .2, 1) infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .5; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
.wa-float:focus-visible { outline: none; }
.wa-float:focus-visible .wa-float__btn {
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 6px #1ebe5a, 0 14px 30px -8px rgba(37, 211, 102, 0.55);
}

@media (max-width: 640px) {
  .wa-float__btn { width: 54px; height: 54px; }
  .wa-float__icon { width: 28px; height: 28px; }
  .wa-float__label { display: none; }   /* keep mobile tidy — tap the circle to chat */
}

@media (prefers-reduced-motion: reduce) {
  .wa-float__pulse { animation: none; opacity: 0; }
  .wa-float__btn, .wa-float__label { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   AMBIENCE & SCENERY LAYER — break up the uniform cream scroll
   Adds section rhythm (tinted paper panels), themed scenery
   (a pine treeline), and atmosphere (drifting campfire embers).
   All on-palette, subtle, and motion-reduce safe.
   ═══════════════════════════════════════════════════════════════ */

/* ── Section rhythm: opt-in tinted "paper" panels ──
   Transparent and tinted sections alternate down the page so the
   long scroll reads as banded scenery rather than one flat wash. */
.section--surface {
  background:
    radial-gradient(1100px 460px at 50% -8%, rgba(142, 159, 112, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(225, 208, 166, 0.50) 0%, rgba(232, 218, 180, 0.30) 100%);
  box-shadow:
    inset 0 1px 0 rgba(46, 64, 41, 0.10),
    inset 0 -1px 0 rgba(46, 64, 41, 0.10);
}
/* Faint dotted weave — felt more than seen (sits above the tint,
   below the content; the section is its own stacking context). */
.section--surface::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1; pointer-events: none;
  opacity: 0.55;
  background-image: radial-gradient(rgba(46, 64, 41, 0.07) 1px, transparent 1.7px);
  background-size: 24px 24px;
}

/* ── Themed scenery: a pine treeline along a section's base ── */
.section--forest::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: clamp(72px, 9vw, 120px);
  z-index: -1; pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='110'><g fill='%232E4029'><polygon points='35,46 10,110 60,110'/><polygon points='95,18 62,110 128,110'/><polygon points='150,54 128,110 172,110'/><polygon points='205,30 170,110 240,110'/><polygon points='248,60 228,110 268,110'/></g></svg>");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 260px 110px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 70%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 70%);
}

/* ── Booking section: a warmer night sky to host the embers ── */
.book {
  position: relative;
  overflow: hidden;                 /* clip the rising embers */
  background:
    radial-gradient(820px 440px at 78% 4%, rgba(216, 138, 62, 0.20), transparent 60%),
    radial-gradient(640px 380px at 10% 98%, rgba(196, 98, 63, 0.16), transparent 62%),
    var(--wood-deep);
}
.book > .container { position: relative; z-index: 1; }  /* content above embers */

/* ── Drifting campfire embers (injected by scripts.js) ── */
.ember-field {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}
.ember {
  position: absolute; bottom: -12px; left: var(--x, 50%);
  width: var(--s, 4px); height: var(--s, 4px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 150, 0.95), rgba(216, 138, 62, 0.55) 55%, rgba(216, 138, 62, 0) 72%);
  box-shadow: 0 0 6px rgba(216, 138, 62, 0.5);
  opacity: 0;
  animation: emberRise var(--d, 10s) ease-in var(--delay, 0s) infinite;
  will-change: transform, opacity;
}
@keyframes emberRise {
  0%   { transform: translate(0, 0) scale(.5);                 opacity: 0; }
  8%   { opacity: .85; }
  70%  { opacity: .6; }
  100% { transform: translate(var(--drift, 0), -460px) scale(1.05); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ember-field { display: none; }
}


/* --------------- Heading display refinements (Fraunces) --------------- */
.section__title,
.hero__caption-title,
.book__title,
.cabin-detail__title,
.cabin-card__title,
.cabin-card__price,
.cabin-card__name,
.activity-card__title,
.events__title,
.review-card__title,
.reviews-score__big,
.timeline__year,
.timeline__title,
.contact-block__big,
.contact-events__title,
.legend-list__title,
.legend-list__name,
.trails__title,
.book-card__title,
.book-card__total .label,
.book-card__total .amount,
.modal__title,
.guests__title,
.guests__row strong,
.pillars__num,
.pillars__title,
.stepper__title,
.cal-month__title,
.selector-card__label,
.selector-card__name,
.rooms-gallery__cap,
.summary-card__total .label,
.summary-card__total .amount,
.bs-value,
.cabin-detail__price {
  letter-spacing: -0.015em;
  line-height: 1.1;
}

/* --------------- Logo wordmark � preserve Rye --------------- */
.footer__brand .display {
  font-family: 'Rye', serif;
  letter-spacing: 0.02em;
  line-height: inherit;
}