/* ============================================================
   index.css — Cenote La Orquídea — sitio público
   Minimalismo editorial / Apple Store style
   Dark + Light, hairlines, serif + mono + sans
   ============================================================ */

/* ---------- TOKENS ---------- */
:root,
[data-theme="light"]{
  --bg: #fafaf7;
  --bg-elev: #ffffff;
  --bg-soft: #f4f3ef;
  --ink: #0f0f0e;
  --ink-1: #1a1a18;
  --ink-2: #4a4a47;
  --ink-3: #76746e;
  --ink-4: #a8a59e;
  --ink-5: #d5d2cb;
  --hairline: rgba(15,15,14,0.10);
  --hairline-strong: rgba(15,15,14,0.18);
  --accent-2: #c44b35;
  --whatsapp: #128c5e;
  --whatsapp-on: #ffffff;
}
[data-theme="dark"]{
  --bg: #0a0a0a;
  --bg-elev: #111110;
  --bg-soft: #16161a;
  --ink: #f7f5f0;
  --ink-1: #efece6;
  --ink-2: #c8c5bf;
  --ink-3: #8e8c87;
  --ink-4: #5e5d59;
  --ink-5: #2d2d2c;
  --hairline: rgba(247,245,240,0.10);
  --hairline-strong: rgba(247,245,240,0.20);
  --accent-2: #e98a72;
  --whatsapp: #25d366;
  --whatsapp-on: #042f1a;
}
:root{
  --t-xs: clamp(.72rem, .70rem + .08vw, .76rem);
  --t-sm: clamp(.82rem, .80rem + .10vw, .88rem);
  --t-base: clamp(.94rem, .92rem + .12vw, 1.00rem);
  --t-md: clamp(1.05rem, 1.02rem + .18vw, 1.18rem);
  --t-lg: clamp(1.25rem, 1.16rem + .42vw, 1.50rem);
  --t-xl: clamp(1.55rem, 1.32rem + 1.10vw, 2.10rem);
  --t-2xl: clamp(2.00rem, 1.62rem + 1.85vw, 3.10rem);
  --t-3xl: clamp(2.40rem, 1.85rem + 2.60vw, 4.00rem);
  --t-4xl: clamp(2.70rem, 2.00rem + 3.20vw, 4.80rem);
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;
  --s-section: clamp(48px, 5vw, 80px);
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-full: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---------- RESET ---------- */
*,*::before,*::after{ box-sizing: border-box; margin: 0; padding: 0; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body{
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--t-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100dvh;
  transition: background-color .3s var(--ease), color .3s var(--ease);
  position: relative;
}
/* Subtle paper-grain texture overlay across the whole site */
body::before{
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .14 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
[data-theme="dark"] body::before{
  opacity: .55;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .7  0 0 0 0 .68  0 0 0 0 .62  0 0 0 .08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
/* Make sure all content stays above the noise overlay */
.nav, .hero, section, footer, .float-wa{ position: relative; z-index: 2; }
img,svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button{ font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; -webkit-tap-highlight-color: transparent; }

/* ---------- UTILS ---------- */
.serif{ font-family: 'Newsreader', 'Times New Roman', serif; font-weight: 300; letter-spacing: -0.02em; }
.mono{ font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: -0.01em; }
em{ font-family: 'Newsreader', serif; font-style: italic; font-weight: 300; }

.wrap{ width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--s-5); }
@media(min-width: 600px){ .wrap{ padding-inline: var(--s-6); } }
@media(min-width: 768px){ .wrap{ padding-inline: var(--s-7); } }
@media(min-width: 1100px){ .wrap{ padding-inline: var(--s-8); } }

section{ position: relative; padding-block: var(--s-8); }
@media(min-width: 600px){ section{ padding-block: var(--s-9); } }
@media(min-width: 768px){ section{ padding-block: var(--s-10); } }
@media(min-width: 1100px){ section{ padding-block: 140px; } }

/* About section — slightly warm tinted bg for layering */
#cenote{
  background:
    linear-gradient(180deg,
      transparent 0%,
      var(--bg-soft) 30%,
      var(--bg-soft) 70%,
      transparent 100%);
}
/* Activities section — slightly elevated */
.activities{
  background: var(--bg-elev);
}
/* Pricing section — back to bg with subtle accent */
.pricing{
  background: var(--bg);
}
.pricing::before{
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-4), transparent);
  opacity: .4;
}
/* Visit section */
.visit{ background: var(--bg-soft); }
/* Contact section */
.contact{ background: var(--bg-elev); }

.label{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.label-with-line{ display: inline-flex; align-items: center; gap: var(--s-3); }
.label-with-line::before{
  content: '';
  width: 24px; height: 1px;
  background: var(--ink-3);
  display: inline-block;
}
.label-with-line::after{
  content: '·';
  margin-left: var(--s-2);
  color: var(--accent-2);
  font-size: 1.4em;
  line-height: 0;
  position: relative;
  top: -.05em;
}
.center-label{ margin-left: auto; margin-right: auto; display: inline-flex; justify-content: center; }

/* Ornamental separator — a tiny decorative element to break sections */
.ornament{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  margin: 0 auto;
  padding-block: var(--s-6);
  color: var(--ink-4);
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
}
.ornament::before, .ornament::after{
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-4), transparent);
}
.ornament::before{ background: linear-gradient(90deg, transparent, var(--ink-4)); }
.ornament::after{ background: linear-gradient(90deg, var(--ink-4), transparent); }

/* ---------- NAV ---------- */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding-top: var(--safe-top);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled{
  border-bottom-color: var(--hairline);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  box-shadow: 0 1px 24px -8px rgba(0,0,0,.08);
}
[data-theme="dark"] .nav.scrolled{
  box-shadow: 0 1px 24px -8px rgba(0,0,0,.4);
}

/* Scroll progress indicator at top of nav */
.nav-progress{
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--accent-2), color-mix(in srgb, var(--accent-2) 60%, transparent));
  transition: width .15s linear, opacity .3s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.nav.scrolled .nav-progress{ opacity: .9; }

.nav-inner{
  max-width: 1240px; margin-inline: auto;
  padding: 10px var(--s-5);
  display: flex; align-items: center;
  gap: var(--s-3);
}
@media(min-width: 768px){
  .nav-inner{ padding: 12px var(--s-7); gap: var(--s-4); }
}

.brand{
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: var(--t-base); letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: var(--s-3);
  min-height: 36px;
  flex-shrink: 0;
  margin-right: auto;
}
.brand em{ color: var(--ink); font-style: italic; font-weight: 300; }

/* Brand logos — always color logo */
.brand-logo{
  display: inline-block;
  flex-shrink: 0;
  height: 40px;
  width: auto;
  object-fit: contain;
}
.brand-logo[hidden]{ display: none; }
@media(min-width: 768px){
  .brand-logo{ height: 48px; }
}
@media(min-width: 1100px){
  .brand-logo{ height: 52px; }
}
.brand-logo-mono{ display: none !important; }

/* Show brand-text only when no logo */
.brand:has(.brand-logo-color:not([hidden])) .brand-text{ display: none; }

.brand-text{
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
@media(max-width: 480px){
  .brand-text > span:first-child{ display: none; }
}

.nav-controls{
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}
.nav-ctrl{
  height: 30px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  background: var(--bg-elev);
  display: inline-flex; align-items: center;
  padding: 2px; gap: 1px;
  transition: border-color .2s var(--ease);
}
.nav-ctrl:hover{ border-color: var(--hairline-strong); }
.nav-ctrl button{
  height: 24px; min-width: 28px;
  padding: 0 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem; font-weight: 500;
  letter-spacing: .04em; color: var(--ink-3);
  border-radius: var(--r-full);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-ctrl button.active{ background: var(--ink); color: var(--bg); }
.nav-ctrl button:not(.active):hover{ color: var(--ink); }
.theme-toggle svg{ width: 13px; height: 13px; }

/* ---------- HERO ---------- */
.hero{
  display: flex; flex-direction: column;
  padding-top: calc(100px + var(--safe-top));
  padding-bottom: var(--s-9);
  position: relative; overflow: hidden;
}
@media(min-width: 768px){
  .hero{ padding-top: calc(130px + var(--safe-top)); padding-bottom: var(--s-10); }
}
@media(min-width: 1100px){
  .hero{ padding-top: 150px; padding-bottom: 120px; }
}
/* Soft warm gradient + vignette to give the hero depth */
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,
      color-mix(in srgb, var(--accent-2) 6%, transparent) 0%,
      transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 90%,
      color-mix(in srgb, var(--ink) 4%, transparent) 0%,
      transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 50%,
      color-mix(in srgb, var(--accent-2) 4%, transparent) 0%,
      transparent 65%);
}
[data-theme="dark"] .hero::before{
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,
      color-mix(in srgb, var(--accent-2) 10%, transparent) 0%,
      transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 90%,
      color-mix(in srgb, var(--ink) 8%, transparent) 0%,
      transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 50%,
      color-mix(in srgb, var(--accent-2) 6%, transparent) 0%,
      transparent 65%);
}
.hero > *{ position: relative; z-index: 1; }

.hero-art{ position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-art-line{
  position: absolute;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--hairline) 20%,
    var(--hairline) 80%,
    transparent 100%);
}
.hero-art-line.v1{ top: 0; bottom: 0; left: 18%; width: 1px; }
.hero-art-line.v2{ top: 0; bottom: 0; right: 22%; width: 1px; }
@media(max-width: 768px){ .hero-art-line{ display: none; } }

.hero-coords{
  display: flex;
  justify-content: flex-end;
  padding: var(--s-3) 0 var(--s-4);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.hero-coords::before{
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 32px; height: 1px;
  background: var(--accent-2);
}
.hero-coords .mono{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs);
  color: var(--ink-3);
  letter-spacing: .12em;
  font-weight: 500;
}

.hero-content{
  padding-block: var(--s-7) var(--s-3);
  display: grid;
  gap: var(--s-7);
}
@media(min-width: 900px){
  .hero-content{
    grid-template-columns: 1.6fr 1fr;
    gap: var(--s-8);
    align-items: end;
  }
}

h1{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-4xl); line-height: 1.0;
  letter-spacing: -.025em; color: var(--ink);
  font-feature-settings: "ss01", "ss02", "calt", "liga";
  text-wrap: balance;
  max-width: 16ch;
}
h1 em{ color: var(--ink); font-style: italic; font-weight: 250; }
@media(min-width: 768px){
  h1{ line-height: .98; }
}

.hero-aside{ display: flex; flex-direction: column; gap: var(--s-4); align-items: flex-start; }
.hero-lead{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.5;
  color: var(--ink-2); max-width: 38ch;
}

/* Hero discreet link to "Cómo llegar" */
.hero-link{
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  align-self: flex-start;
  padding: 6px 0 8px;
  margin-top: var(--s-2);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--hairline-strong);
  transition: color .2s var(--ease), border-color .2s var(--ease);
  width: fit-content;
}
.hero-link svg{ color: var(--ink-3); transition: color .2s var(--ease); }
.hero-link-arrow{
  margin-left: 2px;
  color: var(--ink-3);
  font-size: 1.1em;
  line-height: 1;
  transition: transform .2s var(--ease), color .2s var(--ease);
  display: inline-block;
}
.hero-link:hover{
  color: var(--ink);
  border-bottom-color: var(--ink-3);
}
.hero-link:hover svg,
.hero-link:hover .hero-link-arrow{ color: var(--ink); }
.hero-link:hover .hero-link-arrow{ transform: translateX(3px); }

/* ---------- BUTTONS ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: var(--s-3); min-height: 54px; padding: 0 var(--s-5);
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: var(--t-base); letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap; user-select: none;
}
.btn:active{ transform: scale(.98); }
.btn-arrow{
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.18); flex-shrink: 0;
}
.btn-primary{ background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-primary:hover{ background: var(--ink-1); }
.btn-secondary{ background: var(--bg-elev); color: var(--ink); border-color: var(--hairline-strong); }
.btn-secondary:hover{ border-color: var(--ink-3); background: var(--bg-soft); }
.btn-secondary .btn-arrow{ background: var(--bg-soft); }
[data-theme="dark"] .btn-secondary .btn-arrow{ background: rgba(247,245,240,.08); }
.btn-wa{ background: var(--whatsapp); color: var(--whatsapp-on); border-color: var(--whatsapp); }
.btn-wa:hover{ filter: brightness(.95); }
.btn-wa .btn-arrow{ background: rgba(0,0,0,.18); }
.btn-sm{ min-height: 44px; padding: 0 var(--s-4); font-size: var(--t-sm); }

/* ---------- STATUS ---------- */
.status{
  padding-block: var(--s-7);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(180deg,
      var(--bg-elev) 0%,
      var(--bg) 100%);
  position: relative;
}
.status::after{
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--hairline-strong) 30%,
    var(--hairline-strong) 70%,
    transparent);
}
.status-inner{ display: grid; gap: var(--s-5); }
@media(min-width: 900px){
  .status-inner{ grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s-7); }
}
.status-left{ display: inline-flex; align-items: center; gap: var(--s-3); }
.status-pill{
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs); letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2);
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  padding: 6px 12px;
  border-radius: var(--r-full);
}
.status-dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); }
.status[data-kind="open"] .status-dot{ background: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,.15); }
.status[data-kind="closed"] .status-dot{ background: #dc2626; box-shadow: 0 0 0 4px rgba(220,38,38,.15); }
.status[data-kind="warn"] .status-dot{ background: #d97706; box-shadow: 0 0 0 4px rgba(217,119,6,.15); }
.status[data-kind="upcoming"] .status-dot{ background: #2563eb; box-shadow: 0 0 0 4px rgba(37,99,235,.15); }
.status-text{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-lg); line-height: 1.2; color: var(--ink);
}
.status-text em{ color: var(--ink); }
.status[data-kind="closed"] .status-text em{ color: var(--accent-2); }
.status-msg{
  font-family: 'Inter', sans-serif;
  font-size: var(--t-sm); color: var(--ink-3);
  margin-top: var(--s-2); line-height: 1.5;
}
.status-countdown{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs); color: var(--ink-2);
  margin-top: var(--s-3);
  letter-spacing: .04em;
  padding: 6px 12px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.status-countdown::before{
  content: ''; width: 4px; height: 4px;
  background: var(--ink-3); border-radius: 50%;
}

/* --- Weather indicator in navbar (integrated, not a chip) --- */
.nav-weather{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  background: transparent;
  border: 0;
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  color: var(--ink-2);
  cursor: default;
  transition: background-color .2s var(--ease);
  position: relative;
  animation: weatherFadeIn .5s var(--ease-out);
}
.nav-weather::before{
  content: '';
  position: absolute;
  left: -8px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 16px;
  background: var(--hairline);
  opacity: 0;
  transition: opacity .2s var(--ease);
}
@media(min-width: 760px){
  .nav-weather::before{ opacity: 1; }
}
.nav-weather:hover{
  background: var(--bg-elev);
}
.nav-weather[hidden]{ display: none }

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

.weather-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  color: var(--accent-2);
  flex-shrink: 0;
}
.weather-icon svg{ width: 18px; height: 18px; stroke-width: 1.5; }

.weather-text{
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
/* Label is hidden visually — only used as semantic helper */
.weather-label{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.weather-condition{
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: -.005em;
}
.weather-temps{
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}
.weather-temps .temp-max{ color: var(--ink); }
.weather-temps .temp-min{ color: var(--ink-3); font-weight: 400; }
.weather-temps .temp-sep{
  color: var(--ink-4);
  margin: 0 2px;
  font-weight: 300;
}

/* Hide on phones */
@media(max-width: 640px){
  .nav-weather{ display: none !important; }
}
/* Tablet: smaller condition text */
@media(max-width: 880px){
  .nav-weather{ gap: 8px; padding: 4px 8px; }
  .weather-condition{ font-size: 11.5px; }
  .weather-icon, .weather-icon svg{ width: 16px; height: 16px; }
  .weather-temps{ font-size: 11.5px; }
}
.status-cta-wrap{ max-width: 240px; }

/* ---------- ABOUT + INFO LIST ---------- */
.about-grid{ display: grid; gap: var(--s-8); }
@media(min-width: 900px){
  .about-grid{ grid-template-columns: 1fr 1fr; gap: var(--s-9); align-items: start; }
}
.about-text h2{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-2xl); line-height: 1.05;
  letter-spacing: -.018em;
  margin-bottom: var(--s-6); max-width: 18ch;
  text-wrap: balance;
}
.about-text h2 em{ color: var(--ink); font-weight: 350; }
.about-text p{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.6;
  color: var(--ink-2); margin-bottom: var(--s-4);
  max-width: 50ch;
}
.about-text p:first-of-type::first-letter{
  font-family: 'Newsreader', serif;
  font-weight: 250; font-style: italic;
  font-size: 4.6em; float: left; line-height: .82;
  padding: 8px 14px 0 0;
  color: var(--accent-2);
  font-feature-settings: "ss01", "calt";
}
.info-list{ display: grid; border-top: 1px solid var(--hairline-strong); }
.info-list .info-row{
  display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s-4);
  padding: var(--s-4) 0; border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.info-list .info-label{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs); letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3);
}
.info-list .info-value{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); color: var(--ink);
}
.info-list .info-value em{ color: var(--ink); }
.info-list .mono-value{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-base);
  letter-spacing: .02em;
}

/* ---------- AMENITIES ---------- */
.amenities{
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.amenities::before{
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--bg), var(--ink-4));
}
.amenities-head{ margin-bottom: var(--s-8); max-width: 720px; }
.amenities-head h2{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-2xl); line-height: 1.05;
  letter-spacing: -.02em; margin-top: var(--s-4);
  margin-bottom: var(--s-4); max-width: 20ch;
  text-wrap: balance;
}
.amenities-head h2 em{ color: var(--ink); font-weight: 350; }
.amenities-lead{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.55;
  color: var(--ink-2); max-width: 50ch;
}
.amenities-grid{
  display: grid; gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media(min-width: 640px){
  .amenities-grid{ grid-template-columns: 1fr 1fr; gap: var(--s-3); }
}
@media(min-width: 960px){
  .amenities-grid{ grid-template-columns: 1fr 1fr 1fr; gap: var(--s-4); }
}
.amenity{
  display: flex; align-items: flex-start; gap: var(--s-4);
  padding: var(--s-5);
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02), 0 0 0 1px rgba(0,0,0,0.01);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
[data-theme="dark"] .amenity{
  box-shadow: 0 1px 0 rgba(255,255,255,0.02);
}
.amenity:hover{
  transform: translateY(-2px);
  border-color: var(--hairline-strong);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.03);
}
[data-theme="dark"] .amenity:hover{
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.amenity-icon{
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--accent-2);
  position: relative;
}
.amenity-icon::after{
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed var(--hairline);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.amenity:hover .amenity-icon::after{ opacity: 1; }
.amenity-icon svg{ width: 20px; height: 20px; }
.amenity-text h3{
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: var(--t-md); line-height: 1.25;
  color: var(--ink); margin-bottom: 4px;
  letter-spacing: -.01em;
}
.amenity-text p{
  font-family: 'Inter', sans-serif;
  font-size: var(--t-sm); line-height: 1.5;
  color: var(--ink-2);
}

.safety-callout{
  margin-top: var(--s-8);
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--accent-2) 8%, var(--bg-elev)) 0%,
      var(--bg-elev) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-2) 40%, transparent);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
  display: flex; align-items: flex-start; gap: var(--s-4);
  max-width: 760px;
  position: relative;
  overflow: hidden;
}
.safety-callout::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent-2);
}
.safety-icon{
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  background: var(--bg-elev);
  border: 1px solid color-mix(in srgb, var(--accent-2) 30%, transparent);
  border-radius: 50%;
}
.safety-icon svg{ width: 20px; height: 20px; }
.safety-callout h4{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: var(--s-2);
}
.safety-callout p{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.5;
  color: var(--ink);
}

/* ---------- ACTIVITIES (list) ---------- */
.activities{ border-top: 1px solid var(--hairline); }
.activities-head{ margin-bottom: var(--s-8); max-width: 720px; }
.activities-head h2{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-2xl); line-height: 1.05;
  letter-spacing: -.025em;
  margin-top: var(--s-4); max-width: 18ch;
}
.activities-head h2 em{ color: var(--ink); }
.activities-list{ display: grid; gap: 0; }
.activity-item{
  display: grid; gap: var(--s-4);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.activity-item:last-child{ border-bottom: 1px solid var(--hairline); }
@media(min-width: 700px){
  .activity-item{ grid-template-columns: 80px 1fr 1.6fr; gap: var(--s-7); }
}
.activity-num{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-sm); font-weight: 500;
  color: var(--ink-3); letter-spacing: .04em;
}
.activity-title{
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: var(--t-lg); color: var(--ink);
  letter-spacing: -.01em;
}
.activity-desc{
  font-family: 'Inter', sans-serif;
  font-size: var(--t-base); color: var(--ink-2);
  line-height: 1.55; max-width: 55ch;
}

/* ---------- PRICING ---------- */
.pricing{ border-top: 1px solid var(--hairline); }
.pricing-head{ display: grid; gap: var(--s-5); margin-bottom: var(--s-8); }
@media(min-width: 900px){
  .pricing-head{ grid-template-columns: 1fr 1fr; gap: var(--s-9); align-items: end; }
}
.pricing-head h2{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-2xl); line-height: 1.05;
  letter-spacing: -.025em; max-width: 18ch;
}
.pricing-head p{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.5;
  color: var(--ink-2); max-width: 44ch;
}

/* ============================================================
   PRICING LAYOUT — 2 columns (mobile-first stacked)
   ============================================================ */
.pricing-layout{
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
  margin-top: var(--s-6);
}
@media(min-width: 900px){
  .pricing-layout{
    grid-template-columns: 1fr minmax(300px, 360px);
    gap: var(--s-7);
    align-items: start;
  }
}
.pricing-layout-table{ min-width: 0; }

/* ============================================================
   PRICING TABLE — compact rows with inline counter
   ============================================================ */
.pricing-table{ border-top: 1px solid var(--hairline-strong); }
.pricing-row{
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: var(--s-3);
  row-gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  transition: background-color .15s;
}
.pricing-row.has-count{
  background: color-mix(in srgb, var(--accent-2) 4%, transparent);
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
}
@media(min-width: 520px){
  .pricing-row{
    grid-template-columns: auto 1fr auto auto;
    column-gap: var(--s-4);
    padding: 16px 0;
  }
  .pricing-row.has-count{
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.pricing-idx{
  display: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: var(--ink-4); letter-spacing: .04em;
  align-self: center;
}
@media(min-width: 520px){
  .pricing-idx{ display: inline; }
}
.pricing-info{ min-width: 0; }
.pricing-cat{
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: var(--t-md); color: var(--ink);
  line-height: 1.15;
}
@media(min-width: 600px){
  .pricing-cat{ font-size: var(--t-lg); }
}
.pricing-cat-sub{
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--ink-3);
  margin-top: 2px;
  line-height: 1.35;
}
.pricing-price{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: 1.25rem; letter-spacing: -.02em;
  color: var(--ink); text-align: right;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
}
@media(min-width: 520px){
  .pricing-price{ font-size: var(--t-lg); }
}
.pricing-row.free .pricing-price{ font-style: italic; color: var(--accent-2); }

/* Inline counter pill */
.pricing-counter{
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-full);
  padding: 2px;
  flex-shrink: 0;
  justify-self: end;
  position: relative;
}
/* Mobile: counter wraps to its own line below the price */
@media(max-width: 519px){
  .pricing-counter{
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: 2px;
  }
}

.pricing-counter-btn{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--ink-2);
  cursor: pointer;
  transition: background-color .15s, color .15s, transform .1s;
}
@media(min-width: 768px){
  .pricing-counter-btn{ width: 28px; height: 28px; }
}
.pricing-counter-btn:hover:not(:disabled){
  background: var(--ink);
  color: var(--bg);
}
.pricing-counter-btn:active:not(:disabled){ transform: scale(.92); }
.pricing-counter-btn:disabled{
  color: var(--ink-4);
  cursor: not-allowed;
  opacity: .45;
}
.pricing-counter-btn:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}
.pricing-counter-count{
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  min-width: 22px;
  text-align: center;
  font-feature-settings: "tnum" 1;
}
.pricing-counter-subtotal{
  position: absolute;
  top: calc(100% + 4px);
  right: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: .02em;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
  animation: subtotalIn .25s var(--ease-out);
}
@keyframes subtotalIn{
  from { opacity: 0; transform: translateY(-3px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* ============================================================
   PRICING QUOTER ASIDE — sticky on desktop, stacked on mobile
   ============================================================ */
.pricing-quoter{
  position: relative;
}
.pricing-quoter[hidden]{ display: none; }

.pricing-quoter-inner{
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
@media(min-width: 900px){
  .pricing-quoter{ position: sticky; top: 90px; }
  .pricing-quoter-inner{ padding: var(--s-5); }
}

/* Rule banner (only visible when violated) */
.pricing-quoter-rule{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--accent-2) 8%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent-2) 30%, transparent);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink);
  animation: ruleIn .3s var(--ease-out);
}
.pricing-quoter-rule svg{
  flex-shrink: 0;
  color: var(--accent-2);
  margin-top: 1px;
}
.pricing-quoter-rule[hidden]{ display: none !important; }
@keyframes ruleIn{
  from { opacity: 0; transform: translateY(-4px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* Total row */
.pricing-quoter-total{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--ink);
  gap: var(--s-3);
}
.pricing-quoter-total-label{
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: var(--t-md);
  letter-spacing: -.01em;
  color: var(--ink);
}
.pricing-quoter-total-value{
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: var(--t-xl);
  letter-spacing: -.02em;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
}

/* Form fields */
.pricing-quoter-fields{
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.pricing-quoter-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-quoter-name-label{
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.pricing-quoter-name-input{
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.pricing-quoter-name-input:focus{
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 12%, transparent);
}
.pricing-quoter-name-input::placeholder{ color: var(--ink-4); }
/* Date input: hide arrow on Safari/Webkit so it doesn't look ugly */
.pricing-quoter-name-input[type="date"]{
  -webkit-appearance: none;
  appearance: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

/* Field-level helper text (under date input) */
.pricing-quoter-field-hint{
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-3);
  margin: 4px 0 0;
  line-height: 1.4;
  letter-spacing: .01em;
}

/* Field-level error (under date input when invalid date selected) */
.pricing-quoter-field-error{
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #d04848;
  margin: 4px 0 0;
  line-height: 1.4;
  animation: subtotalIn .2s var(--ease-out);
}
.pricing-quoter-field.has-error .pricing-quoter-name-input{
  border-color: #d04848;
  box-shadow: 0 0 0 3px color-mix(in srgb, #d04848 12%, transparent);
}
/* Hide the static hint when there's an error to avoid clutter */
.pricing-quoter-field.has-error .pricing-quoter-field-hint{
  display: none;
}

.pricing-quoter-cta{
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-weight: 600;
}
.pricing-quoter-cta .btn-wa-icon{ margin-right: 8px; }

/* Disabled state — keeps clickable to show error */
.btn.is-disabled{
  opacity: .55;
  cursor: not-allowed;
}
.btn.is-disabled:hover{
  filter: none;
  transform: none;
}

.pricing-quoter-hint{
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-3);
  text-align: center;
  margin: 0;
}

/* Error flash */
.pricing-quoter-error{
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #d04848;
  padding: 9px 12px;
  background: color-mix(in srgb, #d04848 8%, var(--bg));
  border: 1px solid color-mix(in srgb, #d04848 25%, transparent);
  border-radius: 4px;
  text-align: center;
}
.pricing-quoter-error.flash{ animation: quoterErrorShake .35s ease; }
@keyframes quoterErrorShake{
  0%, 100% { transform: translateX(0) }
  20% { transform: translateX(-4px) }
  40% { transform: translateX(4px) }
  60% { transform: translateX(-3px) }
  80% { transform: translateX(3px) }
}

.pricing-notes{
  margin-top: var(--s-7); padding-top: var(--s-6);
  border-top: 1px solid var(--hairline);
  display: grid; gap: var(--s-3);
}
.pricing-note{
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-family: 'Newsreader', serif; font-weight: 300;
  font-style: italic; font-size: var(--t-md);
  color: var(--ink-2);
}
.pricing-note::before{
  content: '·'; font-family: 'JetBrains Mono', monospace;
  font-style: normal; font-weight: 400; font-size: 1.2em;
  color: var(--ink-3); flex-shrink: 0; width: 16px; text-align: center;
}

/* ---------- VISIT + MAP ---------- */
.visit{ border-top: 1px solid var(--hairline); }
.visit-grid{ display: grid; gap: var(--s-7); }
@media(min-width: 900px){
  .visit-grid{ grid-template-columns: 1fr 1.2fr; gap: var(--s-9); align-items: start; }
}
.visit-head h2{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-2xl); line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: var(--s-7); max-width: 16ch;
}
.detail{ padding: var(--s-5) 0; border-top: 1px solid var(--hairline); }
.detail:first-of-type{ border-top: 1px solid var(--hairline-strong); }
.detail h4{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: var(--s-3);
}
.detail p{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.5; color: var(--ink);
}
.map{
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md); overflow: hidden;
}
.map-canvas{
  position: relative; aspect-ratio: 4 / 3;
  background: var(--bg-soft); overflow: hidden;
}
.map-canvas svg{ position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin{
  position: absolute; top: 46%; left: 62%;
  transform: translate(-50%, -50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
}
.map-pin-dot{
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px var(--bg-elev), 0 0 0 4px rgba(196,75,53,.2);
  position: relative;
}
.map-pin-dot::after{
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; background: var(--accent-2); opacity: .25;
  animation: pinPulse 2.6s ease-out infinite;
}
@keyframes pinPulse{
  0%{ transform: scale(.8); opacity: .35; }
  70%{ transform: scale(2.2); opacity: 0; }
  100%{ transform: scale(2.2); opacity: 0; }
}
.map-pin-label{
  font-family: 'Newsreader', serif; font-style: italic;
  font-weight: 400; font-size: var(--t-sm); color: var(--ink);
  background: var(--bg-elev); padding: 4px 12px;
  border-radius: var(--r-full); border: 1px solid var(--hairline);
  white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.map-info{ padding: var(--s-5); border-top: 1px solid var(--hairline); }
@media(min-width: 540px){ .map-info{ padding: var(--s-6); } }
.map-info-head{
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3); margin-bottom: var(--s-4); flex-wrap: wrap;
}
.map-coords{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs); letter-spacing: .04em; color: var(--ink-3);
}
.map-address{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.5;
  color: var(--ink); margin-bottom: var(--s-5);
}
.map-actions{ display: grid; grid-template-columns: 1fr; gap: var(--s-2); margin-bottom: var(--s-5); }
@media(min-width: 500px){ .map-actions{ grid-template-columns: 1fr 1fr; } }
.map-action{
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3); padding: 12px 16px; min-height: 52px;
  background: var(--bg); border: 1px solid var(--hairline);
  border-radius: var(--r-md); color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-sm); font-weight: 500;
  transition: border-color .2s var(--ease);
}
.map-action:hover{ border-color: var(--ink-3); }
.map-action-info{ display: flex; flex-direction: column; gap: 2px; }
.map-action-info small{
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; color: var(--ink-3);
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 400;
}
.map-action-arrow{
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-soft); color: var(--ink-2);
  flex-shrink: 0; transition: transform .2s var(--ease);
}
.map-action:hover .map-action-arrow{ transform: translate(2px,-2px); }
.review-bar{
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-5); border: 1px solid var(--hairline);
  border-radius: var(--r-md); background: var(--bg);
  gap: var(--s-3); flex-wrap: wrap;
}
.review-bar-text{ display: inline-flex; align-items: center; gap: var(--s-3); }
.review-stars{ display: inline-flex; gap: 1px; color: var(--ink); }
.review-bar-label{ font-size: var(--t-sm); color: var(--ink-2); }
.review-bar-cta{
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 500; font-size: var(--t-sm); color: var(--ink);
  min-height: 36px;
}

/* ---------- CONTACT ---------- */
.contact{ border-top: 1px solid var(--hairline); text-align: center; position: relative; overflow: hidden; }
.contact::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%,
      color-mix(in srgb, var(--accent-2) 5%, transparent) 0%,
      transparent 70%);
  pointer-events: none;
}
.contact > .wrap{ position: relative; z-index: 1; }
.contact h2{
  font-family: 'Newsreader', serif; font-weight: 250;
  font-size: var(--t-3xl); line-height: 1.0;
  letter-spacing: -.025em;
  max-width: 18ch; margin: 0 auto var(--s-5);
  color: var(--ink);
  text-wrap: balance;
}
.contact h2 em{ color: var(--ink); font-weight: 300; }
.contact p{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-style: italic;
  font-size: var(--t-md); line-height: 1.55;
  color: var(--ink-2); max-width: 50ch;
  margin: 0 auto var(--s-7);
}
.contact-btn{ margin: 0 auto; max-width: 380px; }

/* ---------- FOOTER ---------- */
footer{ border-top: 1px solid var(--hairline); padding: var(--s-8) 0 var(--s-6); }
.footer-top{
  display: grid; gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--hairline);
}
@media(min-width: 720px){
  .footer-top{ grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-7); }
}
.footer-brand .footer-brand-name{
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: var(--t-lg); letter-spacing: -.015em;
  color: var(--ink); margin-bottom: var(--s-3);
}
.footer-brand .footer-brand-name em{ color: var(--ink); }
.footer-brand-logo{
  width: auto;
  height: 64px;
  margin-bottom: var(--s-4);
  object-fit: contain;
}
.footer-brand-logo[hidden]{ display: none; }
@media(min-width: 768px){
  .footer-brand-logo{ height: 80px; }
}
/* Mono variant: never displayed */
.footer-brand-logo-mono{ display: none !important; }
/* Hide brand-name when color logo is visible */
.footer-brand:has(.footer-brand-logo-color:not([hidden])) .footer-brand-name{ display: none; }
.footer-brand p{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-style: italic; font-size: var(--t-sm);
  color: var(--ink-2); max-width: 30ch; line-height: 1.5;
}
.footer-col h5{
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: var(--s-4);
}
.footer-col a{
  display: flex; align-items: center; gap: var(--s-3);
  color: var(--ink); padding: var(--s-2) 0;
  font-size: var(--t-sm); min-height: 36px;
  transition: color .2s var(--ease);
}
.footer-col a:hover{ color: var(--accent-2); }
.footer-col svg{ flex-shrink: 0; color: var(--ink-3); }
.footer-bottom{
  padding-top: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--t-xs); color: var(--ink-3);
  letter-spacing: .04em;
}
@media(min-width: 540px){ .footer-bottom{ flex-direction: row; justify-content: space-between; } }

/* ---------- FLOAT WA ---------- */
.float-wa{
  position: fixed;
  bottom: calc(var(--s-4) + var(--safe-bottom));
  right: var(--s-4);
  width: 52px; height: 52px;
  background: var(--whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(18,140,94,.5), 0 2px 8px rgba(0,0,0,.15);
  z-index: 40;
  transition: transform .2s var(--ease);
  color: var(--whatsapp-on);
}
.float-wa:active{ transform: scale(.92); }
.float-wa:hover{ transform: scale(1.06); }
@media(min-width: 768px){
  .float-wa{ bottom: calc(var(--s-6) + var(--safe-bottom)); right: var(--s-6); width: 56px; height: 56px; }
}

/* --- Scroll-to-top button --- */
.float-up{
  position: fixed;
  bottom: calc(var(--s-4) + var(--safe-bottom) + 64px);
  right: var(--s-4);
  width: 44px; height: 44px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.25), 0 2px 6px rgba(0,0,0,.08);
  z-index: 40;
  opacity: 0;
  transform: translateY(8px) scale(.95);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), background-color .15s, border-color .15s;
}
.float-up.visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-up:hover{
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.float-up:active{ transform: scale(.92); }
.float-up:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
@media(min-width: 768px){
  .float-up{
    bottom: calc(var(--s-6) + var(--safe-bottom) + 68px);
    right: var(--s-6);
    width: 48px; height: 48px;
  }
}

/* ---------- REVEAL ---------- */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in{ opacity: 1; transform: translateY(0); }
@media(prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .map-pin-dot::after, .float-wa{ animation: none; }
}

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

.skel{
  display: inline-block;
  background: linear-gradient(90deg, var(--bg-soft) 0%, var(--ink-5) 50%, var(--bg-soft) 100%);
  background-size: 200% 100%;
  animation: skel 1.4s ease-in-out infinite;
  border-radius: 3px; min-height: 1em; width: 70%;
  color: transparent;
}
@keyframes skel{ 0%{ background-position: 200% 0; } 100%{ background-position: -200% 0; } }

.load-error{
  max-width: 600px;
  margin: var(--s-7) auto;
  padding: var(--s-5);
  border: 1px solid var(--accent-2);
  border-radius: var(--r-md);
  color: var(--accent-2);
  font-size: var(--t-sm);
  text-align: center;
  font-family: 'Newsreader', serif;
  font-style: italic;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section{
  padding: var(--s-section) 0;
  background: var(--bg);
  position: relative;
}

.gallery-section[hidden]{ display: none }

.gallery-head{ margin-bottom: var(--s-8); max-width: 720px; }
.gallery-head h2{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-2xl); line-height: 1.05;
  letter-spacing: -.02em; margin-top: var(--s-4);
  margin-bottom: var(--s-4); max-width: 20ch;
  text-wrap: balance;
}
.gallery-head h2 em{ color: var(--ink); font-weight: 350; }
.gallery-lead{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.55;
  color: var(--ink-2); max-width: 50ch;
}

.gallery-masonry{
  margin-top: var(--s-6);
  column-count: 3;
  column-gap: 14px;
}

@media (max-width: 980px){
  .gallery-masonry{ column-count: 2; column-gap: 12px }
}
@media (max-width: 600px){
  .gallery-masonry{ column-count: 1 }
}

.gallery-item{
  display: block;
  position: relative;
  margin-bottom: 14px;
  break-inside: avoid;
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s;
  opacity: 0;
  transform: translateY(8px);
}

.gallery-item.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.18);
}

@media (max-width: 600px){
  .gallery-item:hover{ transform:none; box-shadow:none }
  .gallery-item{ margin-bottom: 12px }
}

.gallery-item img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}

.gallery-item:hover img{
  transform: scale(1.03);
}

/* Caption overlay */
.gallery-item-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 14px 14px;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  color: #f7f5f0;
  letter-spacing: .005em;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.12) 30%, rgba(0,0,0,.62) 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-item-caption,
.gallery-item:focus-visible .gallery-item-caption{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px){
  .gallery-item-caption{
    opacity: 1;
    transform: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.45) 100%);
    font-size: 13px;
  }
}

.gallery-item:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

/* Skeleton while images load */
.gallery-item.is-loading::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--surface-soft) 30%, rgba(255,255,255,.06) 50%, var(--surface-soft) 70%);
  background-size: 200% 100%;
  animation: galSkeleton 1.4s linear infinite;
  z-index: 1;
}
@keyframes galSkeleton {
  0%   { background-position: 200% 0 }
  100% { background-position: -200% 0 }
}

/* ============================================================
   LIGHTBOX (full-screen image viewer)
   ============================================================ */

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px;
  animation: lbFadeIn .25s ease-out;
  cursor: zoom-out;
}

[data-theme="light"] .lightbox{
  background: rgba(15, 15, 14, .94);
}

.lightbox[hidden]{ display: none }

@keyframes lbFadeIn {
  from { opacity: 0 }
  to   { opacity: 1 }
}

.lightbox-figure{
  margin: 0;
  max-width: min(1400px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: default;
  animation: lbScaleIn .35s cubic-bezier(.2,.7,.3,1);
}

@keyframes lbScaleIn {
  from { opacity: 0; transform: scale(.96) }
  to   { opacity: 1; transform: scale(1) }
}

.lightbox-img{
  max-width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  background: #0a0a0a;
}

.lightbox-caption{
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(247,245,240,.85);
  text-align: center;
  max-width: 600px;
  letter-spacing: .01em;
  min-height: 1.5em;
}

.lightbox-caption:empty{ display: none }

/* Buttons */
.lightbox-close,
.lightbox-nav{
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247,245,240,.18);
  border-radius: 50%;
  background: rgba(247,245,240,.05);
  color: rgba(247,245,240,.9);
  cursor: pointer;
  transition: background-color .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-close:hover,
.lightbox-nav:hover{
  background: rgba(247,245,240,.12);
  border-color: rgba(247,245,240,.3);
}

.lightbox-close:active,
.lightbox-nav:active{
  transform: scale(.94);
}

.lightbox-close{
  top: 24px;
  right: 24px;
}

.lightbox-nav{
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-nav:active{
  transform: translateY(-50%) scale(.94);
}

.lightbox-prev{ left: 24px }
.lightbox-next{ right: 24px }

.lightbox-nav[disabled]{
  opacity: .25;
  cursor: not-allowed;
  pointer-events: none;
}

.lightbox-counter{
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(247,245,240,.55);
  letter-spacing: .08em;
}

@media (max-width: 700px){
  .lightbox{
    padding: 50px 12px;
  }
  .lightbox-close{ top: 14px; right: 14px; width: 42px; height: 42px }
  .lightbox-nav{ width: 42px; height: 42px }
  .lightbox-prev{ left: 8px }
  .lightbox-next{ right: 8px }
  .lightbox-caption{ font-size: 14px; padding: 0 8px }
  .lightbox-counter{ bottom: 14px; font-size: 11px }
  .lightbox-img{ max-height: calc(100vh - 160px) }
}

/* Body lock when lightbox open */
body.lightbox-open{
  overflow: hidden;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section{
  padding: var(--s-section) 0;
  background: var(--bg);
  position: relative;
}
.events-section[hidden]{ display: none }

.events-head{ margin-bottom: var(--s-8); max-width: 720px; }
.events-head h2{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-2xl); line-height: 1.05;
  letter-spacing: -.02em; margin-top: var(--s-4);
  margin-bottom: var(--s-4); max-width: 20ch;
  text-wrap: balance;
}
.events-head h2 em{ color: var(--ink); font-weight: 350; }
.events-lead{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.55;
  color: var(--ink-2); max-width: 50ch;
}

.events-grid{
  margin-top: var(--s-6);
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media(min-width: 760px){
  .events-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 1080px){
  .events-grid{ grid-template-columns: repeat(3, 1fr); }
}

.event-card-public{
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.event-card-public:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,.18);
  border-color: var(--hairline-strong);
}

.event-card-img{
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--surface-soft);
}
.event-card-img-placeholder{
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--surface-soft) 0%, var(--bg) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  opacity: .4;
}
.event-card-img-placeholder svg{ width: 48px; height: 48px; }

.event-card-body{
  padding: var(--s-5) var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.event-card-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.event-date-pill{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 12px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: .04em;
  line-height: 1.3;
}
.event-date-pill .event-date-main{
  color: var(--ink);
  font-weight: 600;
  font-size: 12.5px;
}
.event-time-pill{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.event-card-title{
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: var(--t-lg);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.event-card-desc{
  font-family: 'Inter', sans-serif;
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.event-card-cta{
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================================
   CHECKLIST SECTION — 2-column editorial layout
   ============================================================ */
.checklist-section{
  padding: var(--s-section) 0;
  background: var(--bg);
  position: relative;
}

.checklist-layout{
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  align-items: start;
}
@media(min-width: 900px){
  .checklist-layout{
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: var(--s-8);
  }
}

/* ---- Left aside: title + stats ---- */
.checklist-aside{
  position: relative;
}
@media(min-width: 900px){
  .checklist-aside{
    position: sticky;
    top: 90px;
  }
}

.checklist-title{
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-top: var(--s-4);
  margin-bottom: var(--s-4);
  max-width: 14ch;
  text-wrap: balance;
}
.checklist-title em{ color: var(--ink); font-weight: 350; }

.checklist-lead{
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 38ch;
  margin-bottom: var(--s-6);
}

/* Stats block: big numbers + bar */
.checklist-stats{
  margin-bottom: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline);
}
.checklist-stats-numbers{
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Newsreader', serif;
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: var(--s-1);
}
.checklist-stats-done{
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
  transition: color .3s;
}
.checklist-stats-sep{
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.8rem);
  color: var(--ink-4);
  font-weight: 200;
  margin: 0 4px;
}
.checklist-stats-total{
  font-size: clamp(1.6rem, 1.4rem + 0.8vw, 2.2rem);
  color: var(--ink-3);
  align-self: baseline;
}
.checklist-stats-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.checklist-stats-pct{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.checklist-progress-track{
  height: 3px;
  background: var(--surface-soft);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.checklist-progress-bar{
  height: 100%;
  width: 0%;
  background: var(--accent-2);
  border-radius: 2px;
  transition: width .6s cubic-bezier(.2,.7,.3,1);
}

/* ---- Reset button ---- */
.checklist-reset{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-3);
  cursor: pointer;
  padding: 6px 0;
  margin-top: var(--s-3);
  transition: color .15s;
  letter-spacing: .02em;
}
.checklist-reset svg{ opacity: .7; }
.checklist-reset:hover{ color: var(--ink); }
.checklist-reset:hover svg{ opacity: 1; }

/* ---- Right main: items grid ---- */
.checklist-main{
  position: relative;
  min-height: 200px;
}

.checklist-items{
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
@media(min-width: 560px){
  .checklist-items{ grid-template-columns: 1fr 1fr; gap: 10px; }
}

.checklist-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, background-color .2s, transform .15s;
  position: relative;
}
.checklist-item:hover{
  border-color: var(--hairline-strong);
}
.checklist-item:active{ transform: scale(.985); }
.checklist-item:has(input:checked){
  background: var(--surface-soft);
  border-color: var(--hairline);
}

.checklist-item input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: 50%;
  background: var(--bg);
  cursor: pointer;
  position: relative;
  transition: background-color .2s, border-color .2s, transform .2s;
}
.checklist-item input[type="checkbox"]:checked{
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: scale(1.05);
  animation: checkPop .35s var(--ease-out);
}
@keyframes checkPop{
  0%{ transform: scale(1) }
  40%{ transform: scale(1.18) }
  100%{ transform: scale(1.05) }
}
.checklist-item input[type="checkbox"]:checked::after{
  content: "";
  position: absolute;
  left: 5.5px; top: 2px;
  width: 6px; height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checklist-item input:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.checklist-item-label{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
  transition: color .25s, opacity .25s;
}
.checklist-item:has(input:checked) .checklist-item-label{
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-color: var(--hairline-strong);
  text-decoration-thickness: 1px;
}

/* ---- Complete state ---- */
.checklist-complete{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-6) var(--s-5);
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent-2) 8%, var(--surface)) 0%,
    var(--surface) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-2) 22%, transparent);
  border-radius: 6px;
  position: relative;
  animation: checklistComplete .5s var(--ease-out);
}
@keyframes checklistComplete{
  from{ opacity: 0; transform: translateY(8px) }
  to{ opacity: 1; transform: translateY(0) }
}
.checklist-complete-icon{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent-2);
  border: 1px solid color-mix(in srgb, var(--accent-2) 30%, transparent);
}
.checklist-complete p{
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: var(--t-lg);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  max-width: 24ch;
}
.checklist-complete em{
  color: var(--accent-2);
  font-style: italic;
  font-weight: 400;
}
.checklist-complete .btn{
  align-self: flex-start;
}

/* ---- "Almost there" subtle pulse on stats when >75% ---- */
.checklist-stats.almost .checklist-stats-done{
  color: var(--accent-2);
}

/* ============================================================
   SUBSCRIBE SECTION
   ============================================================ */
.subscribe-section{
  padding: var(--s-section) 0;
  background: var(--bg);
  position: relative;
}

.subscribe-card{
  max-width: 880px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-7);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
}
@media(min-width: 860px){
  .subscribe-card{
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: var(--s-9) var(--s-8);
    gap: var(--s-8);
  }
}
@media(max-width: 600px){
  .subscribe-card{ padding: var(--s-5); }
}

.subscribe-text h2{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-2xl); line-height: 1.05;
  letter-spacing: -.02em; margin-top: var(--s-4);
  margin-bottom: var(--s-4); max-width: 18ch;
  text-wrap: balance;
}
.subscribe-text h2 em{ color: var(--ink); font-weight: 350; }
.subscribe-lead{
  font-family: 'Newsreader', serif; font-weight: 300;
  font-size: var(--t-md); line-height: 1.55;
  color: var(--ink-2); max-width: 42ch;
}

.subscribe-form{
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.subscribe-fields{
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.subscribe-input{
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: var(--t-base);
  color: var(--ink);
  transition: border-color .2s, background-color .2s;
}
.subscribe-input:focus{
  outline: none;
  border-color: var(--accent-2);
  background: var(--surface);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 12%, transparent);
}
.subscribe-input::placeholder{ color: var(--ink-3); }

.subscribe-form .btn{
  width: 100%;
  padding: 13px 24px;
  justify-content: center;
}

.subscribe-message{
  font-family: 'Inter', sans-serif;
  font-size: var(--t-sm);
  min-height: 1.4em;
  margin: 0;
  padding: 0;
  transition: color .2s;
}
.subscribe-message.error{ color: #d04848; }
.subscribe-message.success{ color: #16a34a; }

.subscribe-privacy{
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}

/* Subscribe form: submitting/done states */
.subscribe-form.submitting .subscribe-input,
.subscribe-form.submitting .btn{ opacity: .6; pointer-events: none; }
.subscribe-form.done .subscribe-fields{ display: none; }

