/* ============================================================
   SoMa Boho Bungalow — warm boho / craftsman-historic
   ============================================================ */

:root {
  /* palette */
  --cream:      #FAF6EF;
  --oat:        #F3EBDE;
  --sand:       #E8DDC9;
  --sand-line:  #D9CCB4;
  --clay:       #A8492A;
  --clay-deep:  #8C3B20;
  --clay-soft:  #C9744F;
  --olive:      #63704B;
  --olive-deep: #4C5739;
  --ink:        #2C2620;
  --ink-soft:   #5A4F45;
  --ink-faint:  #857A6E;

  /* type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Karla", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  --step--1: clamp(.82rem, .8rem + .1vw, .875rem);
  --step-0:  clamp(1rem, .97rem + .15vw, 1.075rem);
  --step-1:  clamp(1.12rem, 1.05rem + .35vw, 1.3rem);
  --step-2:  clamp(1.35rem, 1.2rem + .7vw, 1.7rem);
  --step-3:  clamp(1.7rem, 1.45rem + 1.3vw, 2.5rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.6vw, 3.9rem);

  --wrap: 1200px;
  --gap: clamp(1.1rem, 2.5vw, 2rem);
  --sect-y: clamp(3.6rem, 7vw, 7rem);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(44,38,32,.06), 0 6px 16px -8px rgba(44,38,32,.12);
  --shadow: 0 2px 4px rgba(44,38,32,.05), 0 18px 40px -18px rgba(44,38,32,.22);
  --header-h: 68px;

  /* themed surfaces — overridden in dark mode */
  color-scheme: light;
  --accent-ink:    var(--clay);   /* accent used as TEXT / icon colour */
  --header-bg:     rgba(250,246,239,.86);
  --chip-bg:       rgba(250,246,239,.94);
  --card-bg:       rgba(243,235,222,.75);
  --card-bg-2:     rgba(243,235,222,.7);
  --gallery-band:  rgba(232,221,201,.4);
  --cta-bg:        rgba(250,246,239,.96);
  --track-bg:      rgba(140,59,32,.16);
  --hairline:      rgba(217,204,180,.55);
  --dark-panel:    var(--ink);
  --dark-panel-2:  var(--ink);
  --avatar-bg:     var(--olive);  /* filled swatch carrying light text */
}

/* ============================================================
   Dark theme — set via data-theme="dark" on <html>
   ============================================================ */
[data-theme="dark"] {
  color-scheme: dark;

  --cream:      #17130F;
  --oat:        #201A15;
  --sand:       #2B231C;
  --sand-line:  #3B322A;
  --clay:       #B4552F;
  --clay-deep:  #E9A47B;
  --clay-soft:  #C4703F;
  --olive:      #7E9059;
  --olive-deep: #6A7A4A;
  --ink:        #F1E9DC;
  --ink-soft:   #C1B4A3;
  --ink-faint:  #948878;

  --accent-ink:    #E9A47B;
  --header-bg:     rgba(23,19,15,.88);
  --chip-bg:       rgba(32,26,21,.94);
  --card-bg:       rgba(32,26,21,.72);
  --card-bg-2:     rgba(32,26,21,.68);
  --gallery-band:  rgba(43,35,28,.5);
  --cta-bg:        rgba(23,19,15,.96);
  --track-bg:      rgba(241,233,220,.14);
  --hairline:      rgba(59,50,42,.9);
  --dark-panel:    #100D0A;
  --dark-panel-2:  #1C1712;
  /* olive is lightened for icons, so filled swatches need their own darker value */
  --avatar-bg:     #4E5A3A;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.5), 0 6px 16px -8px rgba(0,0,0,.62);
  --shadow: 0 2px 4px rgba(0,0,0,.45), 0 18px 40px -18px rgba(0,0,0,.78);
}

/* ease the switch without animating every element */
body, .site-header, .mobile-cta, .know-card, .highlights li, .chip {
  transition: background-color .28s ease, border-color .28s ease, color .28s ease;
}
@media (prefers-reduced-motion: reduce) {
  body, .site-header, .mobile-cta, .know-card, .highlights li, .chip { transition: none; }
}

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

[hidden] { display: none !important; }

section[id], span[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

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

html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--cream);
  /* subtle paper grain */
  background-image:
    radial-gradient(circle at 12% 18%, rgba(168,73,42,.045), transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(99,112,75,.05), transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  background-attachment: fixed, fixed, fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .6em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: var(--step-4); }
/* Fraunces' default ampersand is a swash form; use the sans for clarity */
.amp { font-family: var(--sans); font-weight: 400; font-style: normal; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--clay-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-ink); }

ul { margin: 0; padding: 0; }

::selection { background: var(--clay-soft); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--accent-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -3.5rem; z-index: 200;
  background: var(--ink); color: var(--cream); padding: .6rem 1rem;
  border-radius: var(--r-sm); text-decoration: none; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; color: var(--cream); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.section { padding-block: var(--sect-y); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: .8rem;
}

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-intro { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.6; }

/* ───────── buttons ───────── */
.btn {
  --btn-bg: var(--clay);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: var(--step-0);
  line-height: 1.1; letter-spacing: .01em;
  padding: .95rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--btn-bg); color: #FFF9F2; box-shadow: 0 8px 20px -10px rgba(140,59,32,.7); }
.btn-primary:hover { background: var(--clay-deep); color: #FFF9F2; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--sand-line); }
.btn-outline:hover { background: var(--oat); color: var(--ink); border-color: var(--ink-faint); }
.btn-ghost {
  background: rgba(26,20,15,.42); color: #FFF9F2;
  border-color: rgba(255,249,242,.72); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(26,20,15,.62); color: #fff; border-color: #FFF9F2; }
.btn-sm { padding: .62rem 1.15rem; font-size: var(--step--1); }
.btn-lg { padding: 1.05rem 2rem; }

/* ───────── theme toggle ───────── */
.theme-toggle {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0;
  margin-inline-start: .1rem;
  background: transparent;
  border: 1px solid var(--sand-line);
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.theme-toggle:hover { background: var(--oat); color: var(--ink); border-color: var(--ink-faint); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ico-sun { display: none; }
.theme-toggle .ico-moon { display: block; }
[data-theme="dark"] .theme-toggle .ico-sun { display: block; }
[data-theme="dark"] .theme-toggle .ico-moon { display: none; }

/* on mobile the toggle sits just left of the hamburger; it takes over the
   auto margin so the two stay adjacent. The .site-header prefix is needed
   because .nav-toggle's own margin rule is declared later in this file. */
@media (max-width: 899px) {
  .theme-toggle { margin-inline-start: auto; }
  .site-header .nav-toggle { margin-inline-start: 0; }
}

/* ───────── header ───────── */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--header-bg);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.site-header.is-stuck { border-bottom-color: var(--sand-line); box-shadow: 0 8px 24px -20px rgba(44,38,32,.7); }
.header-inner {
  display: flex; align-items: center; gap: clamp(.75rem, 2vw, 2rem);
  min-height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--accent-ink); flex: 0 0 auto;
}
/* keep the logo tile saturated in both themes (its glyph strokes are cream) */
.brand-mark { width: 34px; height: 34px; flex: 0 0 auto; color: var(--clay); }
.brand-text {
  font-family: var(--serif); font-size: 1.02rem; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em; line-height: 1.1; white-space: nowrap;
}
.brand-text em { font-style: italic; font-weight: 400; color: var(--accent-ink); }

.site-nav { display: none; margin-inline-start: auto; gap: clamp(.9rem, 1.8vw, 1.75rem); }
.site-nav a {
  font-size: var(--step--1); font-weight: 500; color: var(--ink-soft);
  text-decoration: none; letter-spacing: .01em; white-space: nowrap;
  padding-block: .35rem; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--accent-ink); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.is-current::after { transform: scaleX(1); }
.site-nav a.is-current { color: var(--clay-deep); }

.header-cta { display: none; flex: 0 0 auto; }

.nav-toggle {
  margin-inline-start: auto; width: 44px; height: 44px;
  display: grid; place-content: center; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--sand-line);
  background: var(--cream);
  padding: .5rem clamp(1.15rem, 4vw, 2.5rem) 1.1rem;
  display: grid;
}
.mobile-nav a {
  padding: .7rem .1rem; text-decoration: none; color: var(--ink);
  font-weight: 500; border-bottom: 1px solid var(--hairline);
}
.mobile-nav a:last-child { border-bottom: 0; }

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ───────── hero ───────── */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: grid; align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(30,24,19,.44) 0%, rgba(30,24,19,.14) 24%, rgba(30,24,19,.5) 58%, rgba(26,20,15,.88) 100%);
}
.hero-content { padding-block: clamp(2.5rem, 6vw, 4.5rem); max-width: 900px; }
.hero h1 {
  color: #FFF9F1; font-size: var(--step-4); margin: 0 0 .35rem;
  text-shadow: 0 2px 30px rgba(24,18,14,.45);
  font-weight: 500;
}
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--chip-bg); color: var(--ink);
  padding: .45rem .95rem .45rem .8rem; border-radius: var(--r-pill);
  font-size: var(--step--1); font-weight: 600; letter-spacing: .01em;
  margin: 0 0 1.2rem; box-shadow: var(--shadow-sm);
}
.badge-ico { width: 16px; height: 16px; color: var(--accent-ink); flex: 0 0 auto; }
.hero-sub {
  color: #F3E7D8; font-size: var(--step-1); margin: 0 0 .5rem; font-weight: 400;
  text-shadow: 0 1px 14px rgba(24,18,14,.5);
}
.hero-rating {
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
  color: #FFF9F1; margin: 0 0 1.9rem; font-size: var(--step-0);
  text-shadow: 0 1px 14px rgba(24,18,14,.5);
}
.hero-rating .stars { color: #F0C27C; font-size: 1.05em; }
.hero-rating .dot { opacity: .7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 0; }
.hero-scroll {
  position: absolute; right: clamp(1.15rem, 4vw, 2.5rem); bottom: 1.4rem;
  width: 42px; height: 42px; display: none; place-content: center;
  border: 1px solid rgba(255,249,242,.5); border-radius: 50%;
  color: #FFF9F1; animation: bob 2.6s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (min-width: 900px) { .hero-scroll { display: grid; } }

/* ───────── quick facts ───────── */
.facts {
  background: var(--oat);
  border-block: 1px solid var(--sand-line);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
}
.facts-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}
.facts-grid li {
  display: flex; align-items: center; gap: .65rem;
  font-size: var(--step--1); color: var(--ink-soft); line-height: 1.35;
}
.facts-grid svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--olive); }
.facts-grid strong { color: var(--ink); font-weight: 600; }
@media (min-width: 560px) { .facts-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (min-width: 1040px) { .facts-grid { grid-template-columns: repeat(8, minmax(0,1fr)); gap: 1.4rem; } }

/* ───────── about ───────── */
.about-grid { display: grid; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: start; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.05fr .95fr; } }
.about-copy .lede {
  font-family: var(--serif); font-size: var(--step-2); line-height: 1.35;
  color: var(--clay-deep); font-weight: 400; font-style: italic;
  margin-bottom: 1.1rem;
}
.about-copy p { color: var(--ink-soft); max-width: 62ch; }
.about-copy h3 { font-size: var(--step-2); margin-top: 2.2rem; }
.highlights { list-style: none; margin-top: 2.2rem; display: grid; gap: 1rem; }
.highlights li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--card-bg);
  border: 1px solid var(--sand-line);
  border-radius: var(--r);
  color: var(--ink); font-size: var(--step--1); line-height: 1.55;
}
.hl-ico { flex: 0 0 auto; color: var(--accent-ink); }
.hl-ico svg { width: 22px; height: 22px; }

.about-media { display: grid; gap: 1rem; }
.about-media figure { margin: 0; }
.about-media img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow);
  object-fit: cover;
}
.stack-a img { aspect-ratio: 4/3; }
.stack-b img { aspect-ratio: 4/3; }
@media (min-width: 700px) {
  .about-media { grid-template-columns: repeat(6, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
  .stack-a { grid-column: 1 / 6; }
  .stack-b { grid-column: 3 / 7; }
  .stack-a img { aspect-ratio: 5/4; }
  .stack-b img { aspect-ratio: 1/1; }
}

/* ───────── gallery ───────── */
.gallery-section { background: linear-gradient(180deg, transparent, var(--gallery-band) 40%, transparent); }
.filters {
  display: flex; gap: .5rem; flex-wrap: nowrap; overflow-x: auto;
  padding-bottom: .6rem; margin-bottom: 1.6rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 780px) { .filters { flex-wrap: wrap; overflow: visible; } }
.chip {
  flex: 0 0 auto;
  font-family: var(--sans); font-size: var(--step--1); font-weight: 500;
  padding: .5rem 1rem; border-radius: var(--r-pill);
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--sand-line); cursor: pointer;
  transition: all .2s ease;
}
.chip:hover { background: var(--oat); color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.gallery {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row dense;
  gap: .6rem;
}
@media (min-width: 680px) { .gallery { grid-template-columns: repeat(3, minmax(0,1fr)); gap: .9rem; } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; } }

.g-item { min-width: 0; }
.g-btn {
  display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  background: var(--sand); border-radius: var(--r);
  overflow: hidden; position: relative; line-height: 0;
  box-shadow: var(--shadow-sm);
}
.g-btn img {
  width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.3,1), filter .3s ease;
}
.g-wide .g-btn img { aspect-ratio: 4/5; }
@media (min-width: 680px) {
  .g-wide { grid-column: span 2; }
  .g-wide .g-btn img { aspect-ratio: 8/5; }
}
.g-btn:hover img { transform: scale(1.045); }
.g-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem .8rem .65rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: #FFF9F1;
  text-align: left; line-height: 1.2;
  background: linear-gradient(transparent, rgba(28,22,17,.72));
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.g-btn:hover .g-cap, .g-btn:focus-visible .g-cap { opacity: 1; transform: none; }
@media (hover: none) { .g-cap { opacity: 1; transform: none; } }
.gallery-empty { margin-top: 1.5rem; color: var(--ink-soft); }

/* ───────── sleep ───────── */
.sleep { background: var(--oat); border-block: 1px solid var(--sand-line); }
.sleep-grid { list-style: none; display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
@media (min-width: 720px) { .sleep-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.sleep-card {
  background: var(--cream); border: 1px solid var(--sand-line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.sleep-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sleep-body { padding: 1.4rem 1.5rem 1.6rem; }
.sleep-body h3 { font-size: var(--step-2); margin-bottom: .25rem; }
.sleep-bed {
  font-size: var(--step--1); font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: .7rem;
}
.sleep-body p:last-child { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; }

/* ───────── amenities ───────── */
.amen-grid { column-count: 1; column-gap: clamp(1.6rem, 4vw, 3.5rem); }
@media (min-width: 640px) { .amen-grid { column-count: 2; } }
@media (min-width: 1000px) { .amen-grid { column-count: 3; } }
.amen-cat { break-inside: avoid; margin-bottom: clamp(1.7rem, 3.5vw, 2.6rem); }
.amen-cat h3 {
  display: flex; align-items: center; gap: .6rem;
  font-size: var(--step-1); margin-bottom: .9rem;
  padding-bottom: .7rem; border-bottom: 1px solid var(--sand-line);
}
.amen-ico { color: var(--olive); flex: 0 0 auto; }
.amen-ico svg { width: 22px; height: 22px; }
.amen-cat ul { list-style: none; display: grid; gap: .42rem; }
.amen-cat li {
  color: var(--ink-soft); font-size: var(--step--1); line-height: 1.5;
  padding-left: 1.1rem; position: relative;
}
.amen-cat li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--clay-soft);
}
.amen-more { margin-top: clamp(1.8rem, 4vw, 2.8rem); }

/* ───────── neighborhood ───────── */
.hood { background: var(--dark-panel); color: #EDE3D6; }
.hood h2, .hood h3 { color: #FFF9F1; }
.hood .eyebrow { color: var(--clay-soft); }
.hood .section-intro { color: #D6C9B8; }
.hood-grid {
  list-style: none; display: grid; gap: 1px;
  background: rgba(237,227,214,.16);
  border: 1px solid rgba(237,227,214,.16);
  border-radius: var(--r-lg); overflow: hidden;
}
@media (min-width: 640px) { .hood-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .hood-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.hood-card { background: var(--dark-panel-2); padding: clamp(1.4rem, 3vw, 2rem); }
.hood-dist {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: #E9B98E;
  margin-bottom: .7rem;
}
.hood-card h3 { font-size: var(--step-1); margin-bottom: .5rem; line-height: 1.2; }
.hood-card p { color: #CBBFAE; font-size: var(--step--1); line-height: 1.6; margin: 0; }

.acts { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); margin-top: clamp(2.4rem, 5vw, 4rem); }
@media (min-width: 780px) { .acts { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.act h3 { display: flex; align-items: center; gap: .6rem; font-size: var(--step-1); margin-bottom: .6rem; }
.act-ico { color: #E9B98E; flex: 0 0 auto; }
.act-ico svg { width: 24px; height: 24px; }
.act p { color: #CBBFAE; font-size: var(--step--1); line-height: 1.65; margin: 0; }

/* ───────── reviews ───────── */
.reviews h2 { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.star-big { color: var(--accent-ink); font-size: .85em; }
.rating-panel {
  display: grid; gap: clamp(1.8rem, 4vw, 3.5rem);
  background: var(--oat); border: 1px solid var(--sand-line);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 3.5vw, 2.4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 820px) { .rating-panel { grid-template-columns: 1fr 1fr; } }
.rating-bars { list-style: none; display: grid; gap: .8rem; }
.rating-bars li {
  display: grid; grid-template-columns: 8.2rem 1fr 2.2rem;
  align-items: center; gap: .8rem; font-size: var(--step--1);
}
.rb-label { color: var(--ink-soft); }
.rb-track { height: 5px; background: var(--track-bg); border-radius: var(--r-pill); overflow: hidden; }
.rb-fill { display: block; height: 100%; width: var(--pct); background: var(--clay); border-radius: var(--r-pill); transform-origin: left; }
.rb-val { font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 420px) { .rating-bars li { grid-template-columns: 6.6rem 1fr 2rem; gap: .55rem; } }

.mentions h3 { font-size: var(--step-1); margin-bottom: .9rem; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; }
.tag-list li {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--cream); border: 1px solid var(--sand-line);
  padding: .35rem .75rem; border-radius: var(--r-pill);
  font-size: .8rem; color: var(--ink);
}
.tag-list span { color: var(--clay-deep); font-weight: 600; font-variant-numeric: tabular-nums; }

.review-grid { list-style: none; display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); }
@media (min-width: 700px) { .review-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1060px) { .review-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.review {
  background: var(--cream); border: 1px solid var(--sand-line);
  border-radius: var(--r-lg); padding: clamp(1.3rem, 2.5vw, 1.7rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review blockquote { margin: 0; flex: 1; }
.review blockquote p {
  margin: 0; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.7;
}
.review blockquote p::before { content: "“"; color: var(--clay-soft); font-family: var(--serif); font-size: 1.4em; line-height: 0; vertical-align: -.1em; margin-right: .1em; }
.review blockquote p::after { content: "”"; color: var(--clay-soft); font-family: var(--serif); font-size: 1.4em; line-height: 0; vertical-align: -.25em; }
.review footer { display: flex; align-items: center; gap: .7rem; }
.r-av {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%;
  background: var(--avatar-bg); color: #FFF9F1;
  display: grid; place-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
}
.r-meta { display: grid; line-height: 1.3; }
.r-meta strong { font-size: var(--step--1); }
.r-meta span { font-size: .78rem; color: var(--ink-soft); }
.reviews-cta { margin-top: clamp(1.8rem, 4vw, 2.6rem); }

/* ───────── host ───────── */
.host { background: var(--oat); border-block: 1px solid var(--sand-line); }
.host-grid { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 820px) { .host-grid { grid-template-columns: minmax(0, 22rem) 1fr; } }
.host-card {
  background: var(--cream); border: 1px solid var(--sand-line);
  border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center; box-shadow: var(--shadow);
}
.host-av {
  width: 76px; height: 76px; margin: 0 auto .9rem; border-radius: 50%;
  background: var(--clay); color: #FFF9F1;
  display: grid; place-content: center;
  font-family: var(--serif); font-size: 2rem; font-weight: 500;
}
.host-card h2 { font-size: var(--step-2); margin-bottom: .3rem; }
.host-role {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: var(--step--1); font-weight: 600; color: var(--clay-deep);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.sh-ico { width: 15px; height: 15px; }
.host-stats {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .6rem; border-top: 1px solid var(--sand-line); padding-top: 1.3rem;
}
.host-stats li { display: grid; gap: .15rem; }
.host-stats strong { font-family: var(--serif); font-size: var(--step-1); font-weight: 600; line-height: 1.1; }
.host-stats span { font-size: .76rem; color: var(--ink-soft); line-height: 1.3; }
.host-copy h3 { font-size: var(--step-3); }
.host-copy p { color: var(--ink-soft); max-width: 60ch; }
.host-cta { margin-top: 1.8rem; }

/* ───────── good to know ───────── */
.know-grid { list-style: none; display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
@media (min-width: 760px) { .know-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.know-card {
  background: var(--card-bg-2); border: 1px solid var(--sand-line);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 1.9rem);
}
.know-card h3 { font-size: var(--step-1); margin-bottom: 1rem; }
.know-card ul { list-style: none; display: grid; gap: .55rem; }
.know-card li {
  position: relative; padding-left: 1.6rem;
  color: var(--ink-soft); font-size: var(--step--1); line-height: 1.55;
}
.know-card li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 12px; height: 7px; border-left: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive); transform: rotate(-45deg);
}
.know-note {
  margin-top: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink-soft);
  font-size: var(--step--1); max-width: 64ch;
}

/* ───────── final CTA ───────── */
.final-cta {
  text-align: center;
  padding-block: clamp(3.4rem, 7vw, 6rem);
  background: linear-gradient(180deg, var(--cream), var(--sand));
  border-top: 1px solid var(--sand-line);
}
.final-cta h2 { font-size: var(--step-3); margin-bottom: .4rem; }
.final-cta p { color: var(--ink-soft); margin-bottom: 1.8rem; font-size: var(--step-0); }

/* ───────── footer ───────── */
.site-footer { background: var(--dark-panel); color: #CBBFAE; padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.footer-inner { display: grid; gap: 1.6rem; }
@media (min-width: 820px) {
  .footer-inner { grid-template-columns: 1fr auto; align-items: start; }
  .footer-legal { grid-column: 1 / -1; }
}
.footer-brand { font-family: var(--serif); font-size: var(--step-1); color: #FFF9F1; margin: 0 0 .2rem; }
.footer-loc { margin: 0; font-size: var(--step--1); }
.footer-nav { display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; }
.footer-nav a { color: #EDE3D6; text-decoration: none; font-size: var(--step--1); border-bottom: 1px solid transparent; }
.footer-nav a:hover { color: #fff; border-bottom-color: var(--clay-soft); }
.footer-legal {
  margin: 0; padding-top: 1.4rem; border-top: 1px solid rgba(237,227,214,.16);
  font-size: .8rem; color: #9C9184;
}

/* ───────── sticky mobile CTA ───────── */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem clamp(1rem, 4vw, 1.5rem) calc(.7rem + env(safe-area-inset-bottom));
  background: var(--cta-bg);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--sand-line);
  box-shadow: 0 -8px 26px -18px rgba(44,38,32,.75);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.mobile-cta.is-visible { transform: none; }
.mc-info { display: grid; line-height: 1.25; min-width: 0; }
.mc-rating { font-size: var(--step--1); font-weight: 600; color: var(--ink); }
.mc-rating span[aria-hidden] { color: var(--accent-ink); }
.mc-count { font-weight: 400; color: var(--ink-soft); }
.mc-sub { font-size: .78rem; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobile-cta .btn { padding: .8rem 1.25rem; font-size: var(--step--1); flex: 0 0 auto; }
@media (max-width: 899px) {
  .site-footer { padding-bottom: calc(5.6rem + env(safe-area-inset-bottom)); }
}
@media (min-width: 900px) { .mobile-cta { display: none !important; } }

/* ───────── lightbox ───────── */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(20,15,11,.975);
  display: grid;
  grid-template-areas: "bar bar bar" "prev fig next";
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  padding: 0 clamp(.4rem, 2vw, 1.5rem) clamp(1rem, 3vw, 2rem);
  opacity: 0; transition: opacity .22s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lb-bar {
  grid-area: bar;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem .4rem; color: #EDE3D6;
}
.lb-count { margin: 0; font-size: var(--step--1); font-variant-numeric: tabular-nums; letter-spacing: .05em; }
.lb-close, .lb-nav {
  background: rgba(250,246,239,.12); border: 1px solid rgba(250,246,239,.28);
  color: #FFF9F1; border-radius: 50%; cursor: pointer;
  width: 44px; height: 44px; display: grid; place-content: center;
  transition: background-color .2s ease, transform .2s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(250,246,239,.26); }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }
.lb-prev { grid-area: prev; }
.lb-next { grid-area: next; }
.lb-figure {
  grid-area: fig; margin: 0; min-width: 0; min-height: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem;
}
.lb-figure img {
  max-width: 100%; max-height: calc(100svh - 11rem);
  width: auto; object-fit: contain;
  border-radius: var(--r); background: #241d17;
}
.lb-figure figcaption {
  color: #C7BBAC; font-size: var(--step--1); text-align: center;
  max-width: 62ch; line-height: 1.5;
}
@media (max-width: 640px) {
  .lightbox { grid-template-areas: "bar" "fig" "nav"; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .lb-prev, .lb-next { grid-area: nav; justify-self: start; margin-top: .8rem; }
  .lb-next { justify-self: end; margin-top: -44px; }
  .lb-figure img { max-height: calc(100svh - 13rem); }
}
body.lb-open { overflow: hidden; }
/* Chromium composites backdrop-filter layers above later overlays — hide them */
body.lb-open .site-header,
body.lb-open .mobile-cta { visibility: hidden; backdrop-filter: none; }

/* ───────── reveal animations ───────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .2s; }
.reveal:nth-child(5) { transition-delay: .26s; }
.reveal:nth-child(6) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .mobile-cta { transition: none; }
}
