/* ==========================================================================
   Casa Monticello — Calle 6 Oeste #4 Oeste-511, Cali
   Static listing site. No build step, no dependencies.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:          #FBF8F3;
  --bg-alt:      #F4EEE4;
  --surface:     #FFFFFF;
  --surface-2:   #F7F2EA;
  --ink:         #1B1915;
  --ink-2:       #57514A;
  --ink-3:       #857D72;
  --line:        #E5DCCD;
  --line-soft:   #EFE8DC;
  --accent:      #8A6A1F;
  --accent-2:    #B9922F;
  --accent-soft: #F2E9D4;
  --sage:        #5F6E53;
  --wa:          #128C4A;
  --shadow-sm:   0 1px 2px rgba(27,25,21,.06), 0 2px 8px rgba(27,25,21,.05);
  --shadow-md:   0 4px 12px rgba(27,25,21,.08), 0 12px 32px rgba(27,25,21,.07);
  --shadow-lg:   0 8px 24px rgba(27,25,21,.10), 0 24px 64px rgba(27,25,21,.10);
  --radius:      14px;
  --radius-lg:   22px;
  --maxw:        1200px;
  --ff-display:  "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root:not([data-theme="light"]) {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:          #131110;
    --bg-alt:      #1A1715;
    --surface:     #1E1B18;
    --surface-2:   #242019;
    --ink:         #F4EFE7;
    --ink-2:       #BDB4A8;
    --ink-3:       #948B7F;
    --line:        #322C25;
    --line-soft:   #29241E;
    --accent:      #D9B45E;
    --accent-2:    #E6C778;
    --accent-soft: #2A2318;
    --sage:        #93A383;
    --wa:          #25D366;
    --shadow-sm:   0 1px 2px rgba(0,0,0,.4);
    --shadow-md:   0 4px 12px rgba(0,0,0,.45), 0 12px 32px rgba(0,0,0,.35);
    --shadow-lg:   0 8px 24px rgba(0,0,0,.5), 0 24px 64px rgba(0,0,0,.4);
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg:          #131110;
  --bg-alt:      #1A1715;
  --surface:     #1E1B18;
  --surface-2:   #242019;
  --ink:         #F4EFE7;
  --ink-2:       #BDB4A8;
  --ink-3:       #948B7F;
  --line:        #322C25;
  --line-soft:   #29241E;
  --accent:      #D9B45E;
  --accent-2:    #E6C778;
  --accent-soft: #2A2318;
  --sage:        #93A383;
  --wa:          #25D366;
  --shadow-sm:   0 1px 2px rgba(0,0,0,.4);
  --shadow-md:   0 4px 12px rgba(0,0,0,.45), 0 12px 32px rgba(0,0,0,.35);
  --shadow-lg:   0 8px 24px rgba(0,0,0,.5), 0 24px 64px rgba(0,0,0,.4);
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.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;
}
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .82em 1.5em; border-radius: 999px; border: 1px solid transparent;
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-wa      { background: var(--wa); color: #fff; box-shadow: var(--shadow-sm); }
.btn-wa:hover{ background: #0f7a40; box-shadow: var(--shadow-md); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .btn-wa { color: #06210f; } }
:root[data-theme="dark"] .btn-wa { color: #06210f; }

.btn-solid      { background: var(--ink); color: var(--bg); box-shadow: var(--shadow-sm); }
.btn-solid:hover{ box-shadow: var(--shadow-md); }
.btn-ghost      { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); }
.btn-light      { background: rgba(255,255,255,.94); color: #1B1915; backdrop-filter: blur(8px); }
.btn-light:hover{ background: #fff; }
.btn-outline-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(8px); }
.btn-outline-light:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.btn-sm { padding: .6em 1.1em; font-size: .875rem; }
.btn-lg { padding: .95em 1.9em; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 70px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; flex: none; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--ff-display); font-weight: 600; font-size: 1.06rem; letter-spacing: -.01em; }
.brand-sub { font-size: .69rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: .5em .78em; border-radius: 8px; text-decoration: none;
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  transition: color .16s ease, background-color .16s ease;
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

.lang-switch { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 2px; background: var(--surface); }
.lang-switch a {
  padding: .3em .72em; border-radius: 999px; font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-decoration: none; color: var(--ink-3);
  transition: background-color .16s ease, color .16s ease;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a[aria-current="true"] { background: var(--ink); color: var(--bg); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--surface); cursor: pointer;
  align-items: center; justify-content: center; flex: none;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-x { display: none; }
.nav-toggle[aria-expanded="true"] .icon-x { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }

@media (max-width: 980px) {
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 10px 24px 22px; box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease; max-height: calc(100dvh - 70px); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: .82em .4em; font-size: 1.02rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-wa span { display: none; }
  .header-actions .btn-wa { padding: .7em; }
}
@media (max-width: 420px) {
  .brand-sub { display: none; }
  .wrap { padding-inline: 18px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(92dvh, 860px); display: flex; align-items: flex-end; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,10,8,.58) 0%, rgba(12,10,8,.10) 30%, rgba(12,10,8,.48) 66%, rgba(12,10,8,.88) 100%),
    linear-gradient(96deg, rgba(12,10,8,.66) 0%, rgba(12,10,8,.34) 42%, rgba(12,10,8,0) 72%);
}
@media (max-width: 780px) {
  .hero::after { background: linear-gradient(180deg, rgba(12,10,8,.55) 0%, rgba(12,10,8,.22) 26%, rgba(12,10,8,.62) 62%, rgba(12,10,8,.9) 100%); }
}
.hero-inner { width: 100%; padding-block: 120px 52px; color: #fff; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6em; margin-bottom: 18px;
  padding: .42em 1em; border-radius: 999px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px);
  font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #5FD68B; box-shadow: 0 0 0 3px rgba(95,214,139,.28); }
.hero h1 { font-size: clamp(2.05rem, 5.4vw, 3.85rem); max-width: 16ch; text-wrap: balance; margin-bottom: 14px; }
@media (max-width: 780px) {
  .hero { min-height: min(88dvh, 760px); }
  .hero-inner { padding-block: 92px 40px; }
  .hero-price { margin-bottom: 24px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; }
}
.hero-address {
  display: flex; align-items: center; gap: .55em; font-size: clamp(.95rem, 2vw, 1.08rem);
  color: rgba(255,255,255,.9); margin-bottom: 28px;
}
.hero-address svg { width: 1.1em; height: 1.1em; flex: none; opacity: .85; }
.hero-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; margin-bottom: 30px; }
.hero-price .cop { font-family: var(--ff-display); font-size: clamp(1.75rem, 4.6vw, 2.9rem); font-weight: 600; letter-spacing: -.02em; }
.hero-price .usd { font-size: .95rem; color: rgba(255,255,255,.76); font-weight: 500; flex-basis: 100%; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Stats strip ---------- */
.stats { background: var(--ink); color: var(--bg); }
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-inline: 1px solid rgba(255,255,255,.09);
}
.stat { padding: 30px 18px; text-align: center; border-left: 1px solid rgba(255,255,255,.09); }
.stat:first-child { border-left: none; }
.stat-num { font-family: var(--ff-display); font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 600; line-height: 1.1; display: block; }
.stat-num sup { font-size: .5em; top: -.6em; }
.stat-label { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-top: 7px; display: block; }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-top: 1px solid rgba(255,255,255,.09); border-left: 1px solid rgba(255,255,255,.09); padding: 22px 12px; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:last-child { grid-column: 1 / -1; border-left: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 9vw, 110px); }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: block; font-size: .76rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.section h2 { font-size: clamp(1.85rem, 4.2vw, 2.85rem); text-wrap: balance; margin-bottom: 18px; }
.section-head p { color: var(--ink-2); font-size: 1.06rem; margin: 0; }
.lead { font-size: 1.12rem; color: var(--ink-2); }

/* ---------- Intro split ---------- */
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 68px); align-items: start; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-copy p { color: var(--ink-2); }
.intro-copy p:first-of-type { font-size: 1.14rem; color: var(--ink); }
.intro-copy strong { color: var(--ink); font-weight: 600; }

.facts-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); position: sticky; top: 92px;
}
@media (max-width: 900px) { .facts-card { position: static; } }
.facts-card h3 { font-size: 1.2rem; margin-bottom: 18px; }
.facts-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: .68em 0; border-bottom: 1px solid var(--line-soft); font-size: .94rem;
}
.facts-list li:last-child { border-bottom: none; }
.facts-list dt, .facts-list .k { color: var(--ink-3); }
.facts-list .v { font-weight: 600; text-align: right; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 18px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { font-size: .93rem; color: var(--ink-2); margin: 0; }

/* ---------- Spaces list ---------- */
/* Separators drawn as insets so an incomplete last row leaves no odd empty cells. */
.spaces { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.space { padding: 20px 22px; display: flex; align-items: center; gap: 13px; font-size: .95rem; box-shadow: inset -1px -1px 0 var(--line); }
.space svg { width: 19px; height: 19px; color: var(--accent); flex: none; }

/* ---------- Gallery ---------- */
.gallery-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  padding: .5em 1.05em; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); font-size: .87rem; font-weight: 500; color: var(--ink-2);
  cursor: pointer; transition: all .16s ease;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.gallery figure { margin: 0; }
.shot {
  position: relative; display: block; width: 100%; padding: 0; border: 0; background: var(--surface-2);
  border-radius: var(--radius); overflow: hidden; cursor: zoom-in; aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.shot:hover img { transform: scale(1.045); }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.shot:hover::after, .shot:focus-visible::after { opacity: 1; }
.shot-cap {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2;
  color: #fff; font-size: .86rem; font-weight: 500; text-align: left;
  opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.shot:hover .shot-cap, .shot:focus-visible .shot-cap { opacity: 1; transform: none; }
.badge-ai {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: .28em .68em; border-radius: 999px; font-size: .68rem; font-weight: 600;
  letter-spacing: .03em; background: rgba(12,10,8,.66); color: #fff; backdrop-filter: blur(6px);
}
.gallery figure.is-hidden { display: none; }

.disclosure {
  display: flex; gap: 13px; align-items: flex-start; margin-top: 26px; padding: 16px 18px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 10px; background: var(--surface); font-size: .9rem; color: var(--ink-2);
}
.disclosure svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 2px; }
.disclosure p { margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(10,8,6,.96); padding: 0;
}
.lightbox[open] { display: grid; grid-template-rows: auto 1fr auto; }
.lightbox::backdrop { background: rgba(10,8,6,.96); }
.lb-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; color: rgba(255,255,255,.8); font-size: .87rem; }
.lb-stage { display: grid; place-items: center; padding: 0 60px; min-height: 0; }
.lb-stage img { max-width: 100%; max-height: calc(100dvh - 190px); width: auto; height: auto; object-fit: contain; border-radius: 6px; }
.lb-bottom { padding: 16px 24px 24px; text-align: center; color: rgba(255,255,255,.92); font-size: .95rem; margin: 0; min-height: 1.5em; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center;
  cursor: pointer; backdrop-filter: blur(6px); transition: background-color .16s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-prev { left: 14px; } .lb-next { right: 14px; }
.lb-close {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; cursor: pointer;
}
.lb-close:hover { background: rgba(255,255,255,.24); }
.lb-btn svg, .lb-close svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .lb-stage { padding: 0 8px; }
  .lb-btn { width: 40px; height: 40px; }
  .lb-prev { left: 6px; } .lb-next { right: 6px; }
}

/* ---------- Kitchen feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.appliance-list { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.appliance-list li { background: var(--surface); padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: .93rem; }
.appliance-list li svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.appliance-list li b { font-weight: 600; }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 880px) { .loc-grid { grid-template-columns: 1fr; } }
.walk-list li {
  display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line);
}
.walk-list li:last-child { border-bottom: none; }
.walk-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--surface-2); color: var(--sage); display: grid; place-items: center; flex: none; }
.walk-ico svg { width: 19px; height: 19px; }
.walk-name { font-weight: 500; }
.walk-time { margin-left: auto; font-size: .87rem; color: var(--ink-3); white-space: nowrap; }

.map-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.map-visual {
  position: relative; aspect-ratio: 4/3; background: var(--surface-2);
  display: grid; place-items: center; overflow: hidden;
}
.map-visual img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.map-pin {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  align-content: center; text-align: center; padding: 24px;
  background: linear-gradient(180deg, rgba(251,248,243,.25), rgba(251,248,243,.75));
}
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .map-pin { background: linear-gradient(180deg, rgba(19,17,16,.35), rgba(19,17,16,.8)); } }
:root[data-theme="dark"] .map-pin { background: linear-gradient(180deg, rgba(19,17,16,.35), rgba(19,17,16,.8)); }
.map-pin-dot { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.map-pin-dot svg { width: 26px; height: 26px; }
.map-body { padding: 22px 24px 24px; }
.map-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.map-body p { font-size: .93rem; color: var(--ink-2); margin-bottom: 16px; }

/* ---------- Reassurance ---------- */
.assure {
  background: var(--ink); color: var(--bg); border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start;
}
@media (max-width: 700px) { .assure { grid-template-columns: 1fr; } }
.assure-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: #7FD9A2; }
.assure-icon svg { width: 28px; height: 28px; }
.assure h2 { color: var(--bg); font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 14px; }
.assure p { color: rgba(255,255,255,.75); margin-bottom: 18px; }
:root[data-theme="dark"] .assure p, :root[data-theme="dark"] .assure h2 { color: inherit; }
.assure ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px 26px; }
.assure ul li { display: flex; gap: 10px; align-items: center; font-size: .93rem; color: rgba(255,255,255,.88); }
.assure ul svg { width: 17px; height: 17px; color: #7FD9A2; flex: none; }

/* ---------- Contact ---------- */
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 16px; max-width: 940px; margin-inline: auto;
}
.contact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; padding: 34px 24px 30px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface);
  text-decoration: none; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.contact-card.is-static { background: transparent; box-shadow: none; border-style: dashed; }
.cc-ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; flex: none; margin-bottom: 12px; }
.cc-ico svg { width: 26px; height: 26px; }
.cc-wa { background: rgba(18,140,74,.12); color: var(--wa); }
.cc-mail { background: var(--accent-soft); color: var(--accent); }
.cc-pin { background: var(--surface-2); color: var(--sage); }
.cc-label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.cc-value { font-family: var(--ff-display); font-size: 1.16rem; font-weight: 600; overflow-wrap: anywhere; line-height: 1.3; }
.cc-value-sm { font-size: .98rem; }
.cc-action { margin-top: 8px; font-size: .88rem; font-weight: 600; color: var(--accent); }
.contact-card.is-static .cc-action { color: var(--ink-3); font-weight: 500; }
a.contact-card .cc-action::after { content: " →"; }

.contact-note {
  text-align: center; max-width: 46ch; margin: 32px auto 0;
  font-size: .95rem; color: var(--ink-2);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-block: 52px 34px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }
.footer-grid h4 { font-family: var(--ff-body); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; font-weight: 700; }
.footer-grid ul li { padding: .3em 0; font-size: .93rem; color: var(--ink-2); }
.footer-grid ul a { color: var(--ink-2); text-decoration: none; }
.footer-grid ul a:hover { color: var(--accent); text-decoration: underline; }
.footer-about p { font-size: .93rem; color: var(--ink-2); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .83rem; color: var(--ink-3);
}

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: inline-flex; align-items: center; gap: .5em;
  padding: .8em 1.25em; border-radius: 999px; background: var(--wa); color: #fff;
  text-decoration: none; font-weight: 600; font-size: .93rem;
  box-shadow: 0 6px 20px rgba(18,140,74,.36);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.fab svg { width: 1.25em; height: 1.25em; }
@media (max-width: 520px) { .fab span { display: none; } .fab { padding: .95em; } }

/* ---------- Reveal on scroll ----------
   Scoped to .js so that with JavaScript disabled (or broken) every section
   stays fully visible. Never hide content behind a script. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Print ---------- */
@media print {
  .site-header, .fab, .gallery-bar, .lightbox, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero { min-height: auto; }
  .section { padding-block: 18pt; }
  a { text-decoration: none; }
}
