/* Casa Tabacón CR — landing page styles
   Design tokens + layout primitives. Section-specific CSS lives below sections. */

:root {
  /* Palette — Tropical eco-luxe (default) */
  --paper: #faf6ed;       /* cream */
  --paper-2: #f3ecdc;     /* deeper cream */
  --sand: #e8dcc4;        /* warm sand */
  --wood: #a8703f;        /* terracotta wood */
  --wood-dk: #8c5a30;
  --forest: #1f3a2d;      /* deep jungle */
  --forest-dk: #142420;
  --moss: #4a6b3e;        /* sage moss */
  --moss-lt: #c1cdaf;
  --ink: #1a1f1a;
  --ink-2: #404640;
  --ink-3: #6b6f64;

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --pad-x: clamp(20px, 5vw, 60px);
  --section-y: clamp(64px, 9vw, 120px);
  --radius: 4px;
}

/* ── Palette variants (selected via Tweaks) ─────────────────────────── */
:root[data-palette="forest"] {
  --paper: #faf6ed; --paper-2: #f3ecdc; --sand: #e8dcc4;
  --wood: #a8703f; --wood-dk: #8c5a30;
  --forest: #1f3a2d; --forest-dk: #142420;
  --moss: #4a6b3e; --moss-lt: #c1cdaf;
}
:root[data-palette="dusk"] {
  --paper: #f7f1e6; --paper-2: #ede4d1; --sand: #e3cfa9;
  --wood: #c47a3d; --wood-dk: #a35d28;
  --forest: #2a2840; --forest-dk: #18172a;
  --moss: #6d5a8a; --moss-lt: #c8bcd6;
}
:root[data-palette="ocean"] {
  --paper: #f4f6f3; --paper-2: #e6ece2; --sand: #d8e6c6;
  --wood: #d18a45; --wood-dk: #a36728;
  --forest: #103a3a; --forest-dk: #082525;
  --moss: #2f6e69; --moss-lt: #b6d2cf;
}

/* ── Reset / base ───────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Type ───────────────────────────────────────────────────────────── */
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moss);
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0;
  text-wrap: balance;
  /* Cormorant italic has dramatic descenders (j, g, p) that escape the line
     box. Add bottom space proportional to font-size so following content
     never overlaps. */
  padding-bottom: 0.28em;
}
.display-xl { font-size: clamp(40px, 7vw, 104px); }
.display-lg { font-size: clamp(36px, 5.5vw, 72px); line-height: 1.02; }
.display-md { font-size: clamp(30px, 4vw, 50px); line-height: 1.05; }
.display-sm { font-size: clamp(24px, 2.8vw, 36px); line-height: 1.1; }

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.body { font-size: clamp(15px, 1.05vw, 16.5px); line-height: 1.65; color: var(--ink-2); text-wrap: pretty; }
.small { font-size: 13px; color: var(--ink-3); }

/* ── Layout primitives ─────────────────────────────────────────────── */
.section { padding: var(--section-y) var(--pad-x); }
.container { max-width: var(--max-w); margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 24px;
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--wood); color: #fff; border-color: var(--wood);
}
.btn-primary:hover { background: var(--wood-dk); border-color: var(--wood-dk); }
.btn-ghost {
  background: transparent; color: var(--forest); border-color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--paper); }
.btn-on-dark {
  background: transparent; color: var(--paper); border-color: rgba(250,246,237,.6);
}
.btn-on-dark:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

/* ── Photo slots — placeholders the user can drop real images into later ─ */
.slot {
  position: relative;
  display: block;
  background-image:
    linear-gradient(135deg, rgba(31,58,45,.55), rgba(168,112,63,.25)),
    radial-gradient(ellipse at 30% 20%, rgba(193,205,175,.4), transparent 60%);
  background-color: var(--moss);
  border-radius: var(--radius);
  overflow: hidden;
}
.slot-filled {
  background-color: var(--moss);
}
.slot-cap {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,246,237,.85);
  text-align: center;
  padding: 6px 12px;
  background: rgba(20,36,32,.5);
  border-radius: 99px;
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Sticky Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,237,.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: rgba(31,58,45,.1); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad-x);
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 22px; color: var(--forest); line-height: 1;
}
.nav-logo svg { width: 26px; height: 26px; color: var(--moss); }
.nav-links {
  display: flex; gap: 28px; font-size: 13px; font-weight: 500;
  color: var(--ink-2);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--forest); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-lang {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); display: flex; gap: 4px; align-items: center;
  background: transparent; border: none; padding: 6px 0;
}
.nav-lang .active { color: var(--forest); }
.nav-burger { display: none; background: none; border: none; padding: 6px; color: var(--forest); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}

.nav-mobile {
  position: fixed; inset: 0; z-index: 60;
  background: var(--paper);
  display: flex; flex-direction: column;
  padding: 24px var(--pad-x);
  transform: translateY(-100%);
  transition: transform .25s ease;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile-top {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-mobile-links {
  display: flex; flex-direction: column; gap: 24px; margin-top: 60px;
  font-family: var(--serif); font-style: italic; font-size: 32px;
  color: var(--forest);
}
.nav-mobile-cta { margin-top: auto; padding: 24px 0; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--paper);
  overflow: hidden;
}
.hero-text {
  padding: clamp(40px, 6vw, 90px) var(--pad-x);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
  max-width: 720px;
  margin-left: auto;
  width: 100%;
}
.hero-text .kicker { margin-bottom: 22px; }
.hero-text .display { margin-bottom: 44px; line-height: 1.02; padding-bottom: 0.5em; }
.hero-text .display em { font-style: italic; color: var(--wood); font-weight: 500; }
.hero-text .lede { max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px;
  display: flex; gap: 32px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.hero-meta strong { display: block; color: var(--forest); font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 26px; line-height: 1; margin-bottom: 6px; }

.hero-image {
  position: relative;
  min-height: 60vh;
}
.hero-image .slot {
  position: absolute; inset: 0;
  border-radius: 0;
}
.hero-leaf {
  position: absolute; bottom: -2px; left: -2px;
  width: 60%; max-width: 360px; opacity: .12; color: var(--forest);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding-top: 50px; padding-bottom: 40px; order: 2; max-width: none; }
  .hero-image { order: 1; min-height: 60vh; aspect-ratio: 4/5; }
  .hero-meta { gap: 24px; margin-top: 36px; }
  .hero-leaf { display: none; }
}

/* ── Stats band ────────────────────────────────────────────────────── */
.stats {
  background: var(--forest);
  color: var(--paper);
  padding: 28px var(--pad-x);
}
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px); color: var(--paper); line-height: 1;
}
.stat-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--moss-lt); }
@media (max-width: 700px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ── Three pillars ─────────────────────────────────────────────────── */
.pillars-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.pillars-head .kicker { display: block; margin-bottom: 16px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pillar { display: flex; flex-direction: column; }
.pillar .slot { width: 100%; aspect-ratio: 4/5; margin-bottom: 24px; }
.pillar-num {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--wood); margin-bottom: 8px; letter-spacing: .04em;
}
.pillar-title { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 2.8vw, 32px); font-weight: 500; color: var(--forest); margin: 0 0 12px; line-height: 1.1; }
.pillar-body { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; }
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; gap: 50px; } .pillar .slot { aspect-ratio: 5/4; } }

/* ── About / Properties (Elegí tu hospedaje) ──────────────────────── */
.about { background: var(--sand); }
.about-head {
  text-align: center; max-width: 820px; margin: 0 auto 70px;
}
.about-head .kicker { display: inline-block; margin-bottom: 16px; }
.about-head .display { margin: 0 auto; }
.about-head .lede { margin: 18px auto 0; }

.props-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 30px;
}
.prop-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(31,58,45,.08);
}
.prop-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -20px rgba(20,36,32,.25); }
.prop-photo { width: 100%; aspect-ratio: 5/4; border-radius: 0; }
.prop-body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 14px; }
.prop-tag-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.prop-tag {
  font-family: var(--sans); font-weight: 600;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--wood);
  background: rgba(168,112,63,.1);
  padding: 5px 11px; border-radius: 99px;
}
.prop-meta { font-size: 12px; color: var(--ink-3); letter-spacing: .02em; }
.prop-name {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 2.5vw, 30px); color: var(--forest);
  margin: 0; line-height: 1.05;
}
.prop-desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.prop-highlights {
  list-style: none; margin: 6px 0 8px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px 8px;
}
.prop-highlights li {
  font-size: 11.5px; color: var(--forest);
  background: var(--paper-2);
  padding: 5px 10px; border-radius: 3px;
  border: 1px solid rgba(31,58,45,.08);
}
.prop-cta {
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(31,58,45,.3);
  width: fit-content;
  transition: gap .15s, border-color .15s;
}
.prop-cta:hover { gap: 14px; border-bottom-color: var(--wood); color: var(--wood); }

@media (max-width: 880px) {
  .props-grid { grid-template-columns: 1fr; gap: 28px; }
  .prop-body { padding: 22px 22px 26px; }
}

/* ── Gallery ───────────────────────────────────────────────────────── */
.gallery-head {
  display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px;
}
.gallery-head .display { flex: 1; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.gallery-grid .gallery-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-tile:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-grid .gallery-tile:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-grid .gallery-tile:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-grid .gallery-tile:nth-child(5) { grid-column: span 1; grid-row: span 1; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 160px 160px; }
  .gallery-grid .gallery-tile:nth-child(1) { grid-column: span 2; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
}
.gallery-tile {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: inherit;
  min-height: 0;
}
.gallery-tile:disabled { cursor: default; }
.gallery-tile .slot { width: 100%; height: 100%; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(12, 22, 18, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-lightbox-inner {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-lightbox-inner img {
  width: 100%;
  max-height: calc(90vh - 80px);
  object-fit: contain;
  border-radius: var(--radius);
}
.gallery-lightbox-cap {
  text-align: center;
  color: var(--paper);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-lightbox-close {
  position: absolute;
  top: -8px;
  right: 0;
  border: 0;
  background: none;
  color: var(--paper);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--paper);
}
.gallery-lightbox-nav button {
  border: 1px solid rgba(250,246,237,.35);
  background: transparent;
  color: var(--paper);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 24px;
  cursor: pointer;
}

/* ── Nearby / Things to do ─────────────────────────────────────────── */
.nearby { background: var(--forest); color: var(--paper); }
.nearby .kicker { color: var(--moss-lt); }
.nearby .display { color: var(--paper); }
.nearby-head { max-width: 720px; margin-bottom: 60px; }
.nearby-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.nearby-card { display: flex; flex-direction: column; }
.nearby-card .slot {
  width: 100%; aspect-ratio: 4/5; margin-bottom: 18px;
}
.nearby-meta { display: flex; gap: 10px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--moss-lt); margin-bottom: 8px; }
.nearby-title { font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 500; color: var(--paper); margin: 0 0 8px; }
.nearby-body { font-size: 13px; line-height: 1.55; color: rgba(250,246,237,.75); margin: 0; }
@media (max-width: 880px) { .nearby-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* ── Testimonios ──────────────────────────────────────────────────── */
.testimonios { background: var(--paper-2); }
.test-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 60px; flex-wrap: wrap; }
.test-rating {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--serif); font-style: italic;
}
.test-rating-num { font-size: 64px; color: var(--forest); font-weight: 500; line-height: 1; }
.test-rating-label { font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card {
  background: var(--paper);
  padding: 36px 30px;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  position: relative;
}
.test-card::before {
  content: "“";
  position: absolute;
  top: 8px; left: 22px;
  font-family: var(--serif); font-style: italic;
  font-size: 80px; line-height: 1; color: var(--moss-lt);
}
.test-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.45; color: var(--forest);
  margin: 24px 0 24px;
}
.test-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(31,58,45,.12); }
.test-author-avatar { width: 38px; height: 38px; border-radius: 99px; background: var(--sand); color: var(--forest); display: grid; place-items: center; font-weight: 600; font-size: 14px; }
.test-author-info strong { display: block; font-size: 13px; color: var(--forest); font-weight: 600; }
.test-author-info span { font-size: 11px; color: var(--ink-3); letter-spacing: .04em; }
@media (max-width: 880px) { .test-grid { grid-template-columns: 1fr; } .test-head { align-items: flex-start; } }

/* ── Booking / Reservar ───────────────────────────────────────────── */
.booking { background: var(--forest); color: var(--paper); position: relative; overflow: hidden; }
.booking::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(168,112,63,.18), transparent 70%);
  pointer-events: none;
}
.booking-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); position: relative; align-items: center; }
.booking-head .kicker { color: var(--moss-lt); margin-bottom: 16px; display: block; }
.booking-head .display { color: var(--paper); margin-bottom: 24px; }
.booking-head .display em { color: var(--wood); font-weight: 500; }
.booking-head .lede { color: rgba(250,246,237,.78); max-width: 460px; }
.booking-form {
  background: var(--paper);
  color: var(--ink);
  padding: 36px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.4);
}
.booking-form-title { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--forest); margin: 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.field input, .field select {
  height: 46px; border: 1px solid rgba(31,58,45,.18); background: var(--paper);
  padding: 0 14px; font-family: var(--sans); font-size: 14px; color: var(--ink);
  border-radius: var(--radius);
}
.field input:focus, .field select:focus { outline: 2px solid var(--moss); outline-offset: 1px; border-color: var(--moss); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-submit { padding: 16px; font-size: 13px; }
.booking-note { font-size: 12px; color: var(--ink-3); text-align: center; }
@media (max-width: 880px) { .booking-grid { grid-template-columns: 1fr; } .booking-form { padding: 28px 22px; } }

/* ── Ubicación / Map ──────────────────────────────────────────────── */
.location-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 70px); align-items: center; }
.location-info .kicker { display: block; margin-bottom: 16px; }
.location-info .display { margin-bottom: 24px; }
.location-list { margin: 30px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.location-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.location-list svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--wood); margin-top: 3px; }
.location-list strong { display: block; color: var(--forest); font-weight: 600; }

.location-map {
  position: relative; aspect-ratio: 5/4;
  background: #e7e2d2;
  background-image:
    repeating-linear-gradient(0deg, rgba(31,58,45,.05) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(31,58,45,.05) 0 1px, transparent 1px 60px),
    radial-gradient(ellipse 50% 40% at 35% 55%, rgba(74,107,62,.25), transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 35%, rgba(74,107,62,.15), transparent 70%);
  border-radius: var(--radius);
  overflow: hidden;
}
.location-map svg.coast { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.pin-dot {
  width: 32px; height: 32px; border-radius: 99px;
  background: var(--paper); color: var(--forest);
  display: grid; place-items: center; font-weight: 700; font-size: 12px;
  border: 2px solid var(--forest);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.pin.you .pin-dot { background: var(--wood); color: var(--paper); border-color: var(--wood-dk); width: 38px; height: 38px; font-size: 14px; }
.pin-label {
  background: var(--paper); padding: 4px 10px; border-radius: 99px;
  font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest); border: 1px solid rgba(31,58,45,.15);
  white-space: nowrap;
}
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; } .location-map { order: -1; aspect-ratio: 4/3; } }

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer { background: var(--forest-dk); color: var(--moss-lt); padding: 60px var(--pad-x) 30px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(193,205,175,.12); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 24px; color: var(--paper); margin-bottom: 22px; line-height: 1.1; }
.footer-logo svg { width: 24px; height: 24px; color: var(--moss-lt); }
.footer-tag { font-size: 13px; line-height: 1.6; max-width: 320px; color: rgba(193,205,175,.7); }
.footer-h { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--paper); margin: 0 0 16px; }
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-list a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 11px; letter-spacing: .04em; color: rgba(193,205,175,.5); flex-wrap: wrap; gap: 12px; }
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* ── Section divider — a single leaf glyph */
.divider-leaf { display: block; margin: 0 auto; color: var(--moss); opacity: .5; }

/* ── Helpers ───────────────────────────────────────────────────────── */
.eyebrow-row { display: flex; align-items: center; gap: 14px; }
.eyebrow-row::before, .eyebrow-row::after { content: ''; flex: 0 0 28px; height: 1px; background: currentColor; opacity: .4; }
.eyebrow-row.center { justify-content: center; }
