/* ═══════════════════════════════════════════════════════════════
   Casa do Nada — styles.css  (v2 · Airbnb-pattern rebuild)
   Photo gallery → sticky booking → scannable rows.
   Brand soul preserved: cream canvas, terracotta accent,
   Fraunces italics used sparingly as accent.
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Canvas */
  --cream:    #FAF6EE;
  --cream-2:  #F5EEE0;
  --paper:    #FFFFFF;
  --sand:     #ECE0CB;

  /* Ink */
  --ink:      #1A1410;
  --ink-2:    #4A3A2C;
  --ink-3:    #8A7862;
  --ink-mute: #B8A88C;

  /* Accent */
  --terra:      #C8521E;
  --terra-deep: #9E3E14;
  --clay:       #D98A4E;
  --gold:       #B87333;
  --gold-warm:  #D4A263;
  --sage:       #7B9170;

  /* Lines */
  --line:   rgba(184, 115, 51, .18);
  --line-2: rgba(184, 115, 51, .35);
  --line-soft: rgba(26, 20, 16, .08);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:     72px;
  --container: 1200px;
  --pad-x:     clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(26, 20, 16, .06);
  --shadow:    0 6px 24px rgba(26, 20, 16, .08);
  --shadow-lg: 0 24px 60px -16px rgba(26, 20, 16, .25);
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
}

img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--terra); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--terra); color: var(--paper);
  padding: .6rem 1rem; border-radius: var(--radius-sm);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  z-index: 200; transition: top .2s;
}
.skip-link:focus-visible { top: 1rem; }

[id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }

/* Section width */
.listing-head,
.gallery,
.two-col,
.host-bio,
.footer-inner,
.ft-bottom {
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}


/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: .9rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(250, 246, 238, .92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, padding .25s, background .25s;
}
nav#nav.scrolled {
  padding: .55rem clamp(1.25rem, 4vw, 3rem);
  border-bottom-color: var(--line);
  background: rgba(250, 246, 238, .96);
}

.nav-left {
  display: flex; align-items: center; gap: .65rem;
  flex-shrink: 0;
}
.nav-logo-svg { width: 26px; height: 26px; }
.nav-brand {
  font-family: var(--sans);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink);
}

.nav-center {
  display: flex; gap: 1.6rem;
}
.nav-center a {
  font-size: .82rem; font-weight: 500;
  color: var(--ink-2);
  padding: .35rem .25rem;
  position: relative;
  transition: color .15s;
}
.nav-center a:hover { color: var(--ink); }
.nav-center a::after {
  content: ''; position: absolute; left: .25rem; right: .25rem; bottom: .1rem;
  height: 1.5px; background: var(--ink);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s;
}
.nav-center a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 1rem;
  flex-shrink: 0;
}
.nav-status {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; color: var(--ink-3);
}
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(123, 145, 112, .2);
}
.nav-cta {
  display: inline-flex; align-items: center;
  font-size: .78rem; font-weight: 600;
  color: var(--paper); background: var(--terra);
  padding: .65rem 1.3rem;
  border-radius: 999px;
  transition: background .15s, transform .15s;
}
.nav-cta:hover { background: var(--terra-deep); transform: translateY(-1px); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 1.6px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 90;
  background: var(--cream);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 4rem 2rem;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif); font-style: italic;
  font-size: 2rem; color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.mobile-menu a:hover { color: var(--terra); }
.mobile-menu .m-cta {
  position: absolute; bottom: 4rem;
  font-family: var(--sans); font-style: normal;
  font-size: .82rem; font-weight: 600;
  background: var(--terra); color: var(--paper);
  padding: 1rem 3rem;
  border-radius: 999px;
}


/* ═══════════════════════════════════════════════════════════════
   1 · LISTING HEAD
   ═══════════════════════════════════════════════════════════════ */
.listing-head {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem 2rem;
}
.listing-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  font-variation-settings: "opsz" 120;
  letter-spacing: -.01em;
  grid-column: 1 / -1;
  max-width: 36ch;
}
.listing-title em {
  font-style: italic; color: var(--terra); font-weight: 400;
}
.listing-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .5rem .75rem;
  font-size: .9rem; color: var(--ink-2);
}
.meta-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--cream-2);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  color: var(--ink);
}
.meta-sep { color: var(--ink-mute); }
.listing-actions {
  display: flex; gap: .25rem;
}
.lh-action {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 500;
  color: var(--ink);
  transition: background .15s;
}
.lh-action:hover { background: var(--cream-2); }
.lh-action svg { width: 16px; height: 16px; }


/* ═══════════════════════════════════════════════════════════════
   2 · GALLERY (1 + 4 grid · Airbnb pattern)
   ═══════════════════════════════════════════════════════════════ */
.gallery { padding-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: clamp(340px, 50vw, 540px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--sand);
}
.gal-cell {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
  transition: filter .2s;
}
.gal-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gal-cell:hover img { transform: scale(1.03); }
.gal-cell.big { grid-row: 1 / span 2; }
.gal-cell:focus-visible { outline-offset: -3px; }

.gal-show-all {
  position: absolute;
  bottom: 1rem; right: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1rem;
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.gal-show-all:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.gal-show-all svg { width: 16px; height: 16px; }


/* ═══════════════════════════════════════════════════════════════
   3 · TWO-COLUMN BODY
   ═══════════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 5rem;
  padding-bottom: 5rem;
  align-items: start;
}
.left-col { min-width: 0; }


/* Row patterns ─────────────────────────────────────────────── */
.row {
  padding: 2rem 0;
  border-top: 1px solid var(--line-soft);
}
.row:first-child { border-top: 0; padding-top: 0; }
.row-title {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 400;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 96;
  color: var(--ink);
  letter-spacing: -.005em;
}
.row-sub {
  font-size: 1rem; color: var(--ink-2);
  margin-bottom: 1.5rem;
  max-width: 56ch;
}
.row .prose p {
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 1rem;
  max-width: 62ch;
}
.row .prose em {
  font-family: var(--serif); font-style: italic;
  color: var(--terra); font-weight: 400;
}
.collapse[hidden] { display: none; }
.collapse {
  padding-top: 1.25rem;
  margin-top: 1rem;
  border-top: 1px dashed var(--line);
}
.story-sign {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: .5rem;
  font-family: var(--serif); font-size: 1rem;
  color: var(--terra);
}

.link-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  margin-top: .5rem;
  transition: color .15s, border-color .15s;
}
.link-btn:hover { color: var(--terra); border-color: var(--terra); }
.link-btn .arrow { transition: transform .2s; }
.link-btn:hover .arrow { transform: translateX(3px); }


/* Hosted-by — opening row ─────────────────────────────────── */
.hosted-by {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1.5rem;
}
.hosted-by-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  margin-bottom: .35rem;
  letter-spacing: -.005em;
}
.hosted-by-text p {
  color: var(--ink-2);
  max-width: 50ch;
}
.hosted-by-mark {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: var(--cream-2);
}


/* Trust strip ─────────────────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  padding: 1.25rem 0 0;
  margin-top: -.5rem;
}
.trust-strip li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .15s, transform .15s;
}
.trust-strip li:hover { border-color: var(--line); transform: translateY(-2px); }
.trust-strip svg {
  width: 22px; height: 22px;
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-strip strong {
  display: block;
  font-size: .9rem; font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: .15rem;
}
.trust-strip span {
  font-size: .78rem; color: var(--ink-3);
  line-height: 1.35;
}


/* Sleeping — horizontal scroll cards ─────────────────────── */
.bed-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  margin: 0 calc(-1 * var(--pad-x));
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.bed-scroll::-webkit-scrollbar { height: 4px; }
.bed-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.bed-card {
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.bed-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.bed-icon { color: var(--ink-2); margin-bottom: .85rem; }
.bed-icon svg { width: 32px; height: 24px; }
.bed-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 400;
  font-variation-settings: "opsz" 96;
  margin-bottom: .25rem;
  letter-spacing: -.005em;
  color: var(--ink);
}
.bed-card p {
  font-size: .88rem; color: var(--ink-2);
  margin-bottom: .75rem;
}
.bed-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra);
  background: rgba(200, 82, 30, .08);
  padding: .3rem .6rem;
  border-radius: 999px;
}


/* Amenity grid ────────────────────────────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 1.25rem;
  padding-top: .5rem;
}
.am {
  display: flex; align-items: center; gap: .9rem;
  font-size: .98rem;
  color: var(--ink);
  padding: .65rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.am:last-child,
.am:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
.am svg {
  width: 22px; height: 22px;
  color: var(--ink-2);
  flex-shrink: 0;
}


/* Week list (compact) ─────────────────────────────────────── */
.week-list { display: flex; flex-direction: column; }
.week-list li {
  display: grid;
  grid-template-columns: 60px 1fr 2fr;
  gap: 1rem;
  padding: .85rem 0;
  border-top: 1px dashed var(--line);
  align-items: baseline;
}
.week-list li:first-child { border-top: 0; }
.wk-day {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.week-list .featured .wk-day { color: var(--terra); }
.wk-title {
  font-family: var(--serif);
  font-size: 1.05rem; font-style: italic;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.wk-body {
  font-size: .92rem; color: var(--ink-2);
  line-height: 1.5;
}
.wk-tag {
  display: inline-block;
  margin-left: .5rem;
  font-family: var(--sans); font-style: normal;
  font-size: .65rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra);
  background: rgba(200, 82, 30, .08);
  padding: .25rem .55rem;
  border-radius: 999px;
}


/* Map + distances ─────────────────────────────────────────── */
.map-wrap {
  position: relative;
  margin: 1.25rem 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  height: 360px;
  border: 1px solid var(--line-soft);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.85) hue-rotate(-8deg);
}
.map-pin {
  position: absolute;
  left: 1rem; top: 1rem;
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .9rem .65rem .75rem;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(26, 20, 16, .15);
  max-width: calc(100% - 2rem);
}
.map-pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 4px rgba(200, 82, 30, .25);
  flex-shrink: 0;
}
.map-pin-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.map-pin-text strong {
  font-size: .85rem; font-weight: 600;
  color: var(--ink);
}
.map-pin-text span {
  font-size: .72rem; color: var(--ink-3);
  margin-top: 1px;
}
.map-pin-link {
  margin-left: .5rem;
  padding-left: .85rem;
  border-left: 1px solid var(--line);
  font-size: .76rem; font-weight: 500;
  color: var(--terra);
  white-space: nowrap;
}
.map-pin-link:hover { color: var(--terra-deep); }
@media (max-width: 560px) {
  .map-pin { flex-wrap: wrap; gap: .5rem; }
  .map-pin-link { margin-left: 0; padding-left: 0; border-left: 0; flex-basis: 100%; }
}
.dist-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: .5rem;
}
.dist-col h4 {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .85rem;
}
.dist-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .92rem;
}
.dist-list li:last-child { border-bottom: 0; }
.dist-list span:first-child { color: var(--ink-2); }
.dist-list span:last-child {
  color: var(--terra); font-weight: 500;
  white-space: nowrap;
}


/* Seasons row ─────────────────────────────────────────────── */
.season-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.season-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .15s, transform .15s;
}
.season-card:hover { border-color: var(--line); transform: translateY(-2px); }
.season-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-variation-settings: "opsz" 96;
  margin-bottom: .35rem;
  display: flex; align-items: baseline; gap: .65rem;
}
.season-name span {
  font-family: var(--sans);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
}
.season-card p {
  font-size: .92rem; color: var(--ink-2);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.season-rate {
  font-size: .9rem; color: var(--ink-3);
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.season-rate strong {
  font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra);
  margin-right: .35rem;
}
.season-card.peak {
  background: var(--terra); color: var(--paper);
  border-color: var(--terra);
}
.season-card.peak .season-name span { color: rgba(255,255,255,.7); }
.season-card.peak p { color: rgba(255,255,255,.92); }
.season-card.peak .season-rate {
  color: rgba(255,255,255,.85);
  border-top-color: rgba(255,255,255,.25);
}
.season-card.peak .season-rate strong { color: var(--paper); }
.peak-flag {
  position: absolute; top: -10px; left: 1.3rem;
  background: var(--paper); color: var(--terra);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 82, 30, .25);
}


/* FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  font-size: 1rem; font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terra); }
.faq-mark {
  font-family: var(--serif);
  font-size: 1.4rem; color: var(--terra);
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] .faq-mark { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 1.4rem;
  font-size: .98rem;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   STICKY BOOKING CARD
   ═══════════════════════════════════════════════════════════════ */
.book-col {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  align-self: start;
}
.book-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}
.book-price {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.25rem;
}
.bp-amt {
  font-family: var(--serif);
  font-size: 2rem;
  font-variation-settings: "opsz" 120;
  color: var(--ink);
}
.bp-unit {
  font-size: .92rem; color: var(--ink-2);
}
.bp-from {
  width: 100%;
  font-size: .76rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: .15rem;
}

.book-form { display: flex; flex-direction: column; gap: .85rem; }

/* Group price calculator ─────────────────────────────────── */
.calc {
  --pct: 81.8%; /* default = (10-1)/(12-1) */
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1.2rem;
  display: flex; flex-direction: column;
  gap: .6rem;
}
.calc-head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.calc-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
}
.calc-count {
  font-size: .85rem; color: var(--ink-2);
}
.calc-count strong {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
  margin-right: .15em;
}

/* Slider — cross-browser custom track */
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: linear-gradient(to right,
    var(--terra) 0%,
    var(--terra) var(--pct),
    rgba(184,115,51,.18) var(--pct),
    rgba(184,115,51,.18) 100%);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  margin: .25rem 0 .15rem;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--terra);
  box-shadow: 0 2px 6px rgba(200, 82, 30, .35);
  cursor: grab;
  transition: transform .15s, box-shadow .15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.1); box-shadow: 0 3px 10px rgba(200, 82, 30, .5); }
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--terra);
  box-shadow: 0 2px 6px rgba(200, 82, 30, .35);
  cursor: grab;
}
.calc-slider:focus-visible {
  outline: none;
}
.calc-slider:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(200, 82, 30, .25);
}

.calc-ticks {
  display: flex; justify-content: space-between;
  font-size: .65rem; color: var(--ink-3);
  letter-spacing: .08em;
  padding: 0 2px;
  margin-top: -.15rem;
}
.calc-tick-best {
  color: var(--terra); font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .6rem;
}

.calc-result {
  display: flex; align-items: baseline; gap: .5rem;
  margin-top: .35rem;
}
.calc-pp {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.1rem; font-weight: 400;
  color: var(--terra);
  font-variation-settings: "opsz" 144;
  line-height: 1;
  letter-spacing: -.01em;
  transition: color .2s;
}
.calc-pp.thinking { color: var(--ink-3); }
.calc-pp-unit {
  font-size: .85rem; color: var(--ink-2);
}
.calc-note {
  font-size: .78rem;
  color: var(--ink-3);
  line-height: 1.4;
}
.calc-note em {
  font-family: var(--serif); font-style: italic;
  color: var(--terra);
}

.bf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.bf-cell {
  display: flex; flex-direction: column;
  padding: .65rem .85rem;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-width: 0;
  transition: background .15s;
}
.bf-cell:nth-child(2n) { border-right: 0; }
.bf-cell.bf-full {
  grid-column: 1 / -1;
  border-right: 0;
}
.bf-cell:last-child { border-bottom: 0; }
.bf-cell:focus-within { background: var(--cream); }
.bf-label {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .15rem;
}
.bf-cell input,
.bf-cell select {
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink);
  width: 100%;
  padding: 0;
  outline: none;
  appearance: none;
}
.bf-cell input::placeholder { color: var(--ink-3); }
.bf-cell select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%238A7862' stroke-width='1.4'><path d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.2rem;
}

.book-cta {
  background: var(--terra); color: var(--paper);
  font-size: .92rem; font-weight: 600;
  padding: .95rem 1.2rem;
  border-radius: var(--radius-sm);
  width: 100%;
  transition: background .15s, transform .15s;
}
.book-cta:hover { background: var(--terra-deep); transform: translateY(-1px); }
.book-cta:active { transform: translateY(0); }
.book-fine {
  text-align: center;
  font-size: .76rem;
  color: var(--ink-3);
  margin-top: -.2rem;
}

.book-receipt {
  margin-top: .65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: .55rem;
}
.book-receipt > div {
  display: flex; justify-content: space-between;
  font-size: .88rem;
  color: var(--ink-2);
}
.bk-total {
  padding-top: .65rem;
  margin-top: .35rem;
  border-top: 1px solid var(--line-soft);
  font-weight: 600;
  color: var(--ink) !important;
}
.book-promise {
  margin-top: 1rem;
  padding: .85rem;
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  text-align: center;
}
.book-promise:empty { display: none; }

.book-trust {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream-2);
  border-radius: var(--radius);
  border: 1px dashed var(--line-2);
}
.book-trust p {
  font-size: .82rem; color: var(--ink-2);
  text-align: center;
}


/* ═══════════════════════════════════════════════════════════════
   HOST BIO (full-width feature)
   ═══════════════════════════════════════════════════════════════ */
.host-bio {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  border-top: 1px solid var(--line-soft);
}
.host-bio-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center;
}
.hb-mark {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.hb-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 400;
  font-variation-settings: "opsz" 120;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
}
.hb-title em {
  font-style: italic; color: var(--terra);
}
.hb-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-2);
  font-variation-settings: "opsz" 96;
}
.hb-attr {
  margin-top: 1.25rem;
  font-size: .76rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3);
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE BOOKING BAR
   ═══════════════════════════════════════════════════════════════ */
.mbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px) saturate(1.2);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(26, 20, 16, .08);
  align-items: center; justify-content: space-between;
  gap: 1rem;
}
.mbar-price {
  display: flex; flex-direction: column; gap: .1rem;
  line-height: 1.2;
}
.mbar-price strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  font-variation-settings: "opsz" 96;
  color: var(--ink);
}
.mbar-price span {
  font-size: .72rem; color: var(--ink-3);
}
.mbar-cta {
  background: var(--terra); color: var(--paper);
  font-size: .85rem; font-weight: 600;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  transition: background .15s, transform .15s;
}
.mbar-cta:hover { background: var(--terra-deep); }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 162, 99, .18);
}
.ft-brand-top {
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: .65rem;
}
.ft-brand-top span {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--cream);
}
.ft-brand p {
  font-family: var(--serif);
  font-size: .98rem;
  color: var(--gold-warm);
}
.ft-brand p em { font-style: italic; }
.ft-links {
  display: flex; flex-wrap: wrap;
  gap: .5rem 1.5rem;
  max-width: 600px;
  justify-content: flex-end;
}
.ft-links a {
  font-size: .88rem;
  color: var(--cream); opacity: .8;
  transition: opacity .15s, color .15s;
}
.ft-links a:hover { opacity: 1; color: var(--gold-warm); }

.ft-bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: .76rem;
  color: rgba(250, 246, 238, .55);
}


/* ═══════════════════════════════════════════════════════════════
   GALLERY LIGHTBOX
   ═══════════════════════════════════════════════════════════════ */
.lightbox {
  border: 0; padding: 0; margin: 0;
  width: 100vw; height: 100vh;
  max-width: 100vw; max-height: 100vh;
  background: rgba(26, 20, 16, .96);
  color: var(--cream);
  display: none;
}
.lightbox[open] { display: grid; grid-template-rows: auto 1fr auto; }
.lightbox::backdrop { background: rgba(26, 20, 16, .9); }

.lb-close,
.lb-prev,
.lb-next {
  background: rgba(250, 246, 238, .12);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .15s;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover { background: rgba(250, 246, 238, .25); }
.lb-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  z-index: 2;
}
.lb-close svg { width: 22px; height: 22px; }
.lb-counter {
  position: absolute; top: 1.4rem; left: 1.5rem;
  font-size: .85rem; font-weight: 500;
  letter-spacing: .12em;
}
.lb-stage {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 4rem 1rem 1rem;
  min-height: 0;
}
.lb-stage img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  z-index: 2;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev svg,
.lb-next svg { width: 24px; height: 24px; }
.lb-cap {
  text-align: center;
  padding: 1rem 1rem 1.5rem;
  font-size: .88rem;
  color: rgba(250, 246, 238, .8);
  font-style: italic;
  font-family: var(--serif);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* ≤1100px — collapse trust strip 4→2, amenity 2→2 stays */
@media (max-width: 1100px) {
  .two-col { grid-template-columns: minmax(0, 1fr) 340px; gap: 3rem; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ≤960px — drop sticky col, mobile bar shows */
@media (max-width: 960px) {
  .nav-center,
  .nav-status { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .book-col {
    position: static;
    margin-top: 2rem;
  }
  .book-card { max-width: 480px; margin: 0 auto; }
  .book-trust { max-width: 480px; margin-left: auto; margin-right: auto; }

  .mbar { display: flex; }
  body { padding-bottom: 80px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px;
    height: auto;
  }
  .gallery-grid > .gal-cell:not(.big) { display: none; }
  .gal-cell.big { grid-row: 1 / 2; }

  .listing-head { grid-template-columns: 1fr; }
  .listing-actions { justify-content: flex-start; }

  .season-row { grid-template-columns: 1fr; }
  .dist-cols { grid-template-columns: 1fr; gap: 1rem; }

  .ft-links { justify-content: flex-start; }
}

/* ≤640px — phones */
@media (max-width: 640px) {
  .nav-brand { display: none; }
  .nav-cta { padding: .55rem 1.1rem; font-size: .74rem; }

  .listing-title { font-size: 1.6rem; }
  .listing-meta { font-size: .82rem; gap: .35rem .55rem; }
  .meta-pill { font-size: .7rem; padding: .3rem .65rem; }

  .amenity-grid { grid-template-columns: 1fr; }
  .am:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--line-soft); }

  .trust-strip { grid-template-columns: 1fr; }

  .week-list li { grid-template-columns: 50px 1fr; }
  .wk-body { grid-column: 1 / -1; padding-left: 60px; }

  .row { padding: 1.5rem 0; }
  .row-title { font-size: 1.35rem; }

  .footer-inner { flex-direction: column; gap: 1.25rem; }
  .ft-bottom { flex-direction: column; gap: .35rem; }
}

/* Print */
@media print {
  nav#nav, .gallery, .mbar, .mobile-menu, .hamburger, .lightbox,
  .book-col, .lh-action { display: none !important; }
  .two-col { grid-template-columns: 1fr; }
  body { background: white; color: black; padding: 0; }
}
