/* ══════════════════════════════════════════════════════════════════════════
   MIA TECH — Hoja de estilos de la web pública (home + servicios)
   Diseño editorial claro. Committed a un solo tema: fondo papel, tinta oscura,
   naranja de marca como único acento y una banda nocturna para Verifactu.
   El blog y las páginas legales siguen con style.css.
   ══════════════════════════════════════════════════════════════════════════ */

:root{
  /* Superficies */
  --paper:      #FFFFFF;
  --paper-2:    #F1F3F1;   /* gris con sesgo verde: neutro elegido, no heredado */
  --paper-3:    #E8EBE8;
  --night:      #14171C;
  --night-2:    #1D2229;

  /* Tinta */
  --ink:        #14171C;
  --ink-2:      #474D56;
  --muted:      #767D87;
  --on-night:   #EDEFEC;
  --on-night-2: #A5ADB4;

  /* Líneas */
  --rule:       #E1E4E1;
  --rule-2:     #CFD4CF;
  --rule-night: #2C333B;

  /* Marca */
  --brand:      #F18800;
  --brand-ink:  #A35C00;   /* naranja legible como texto sobre papel */
  --brand-soft: #FEF3E4;

  /* Semánticos */
  --ok:         #2F6B3E;
  --alert:      #B03A2E;

  /* Tipos */
  --ff-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --ff-text:    Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Medidas */
  --wrap:       1160px;
  --wrap-tight: 780px;
  --gut:        clamp(20px, 4vw, 48px);
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto} }

body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--ff-text); font-size:17px; line-height:1.6;
  font-weight:400; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg,video{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
button,input,select,textarea{font:inherit; color:inherit}
::selection{background:var(--brand); color:#fff}
:focus-visible{outline:2px solid var(--brand); outline-offset:3px; border-radius:2px}
.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}
[hidden]{display:none !important}
.hidden{display:none !important}

.container{width:100%; max-width:var(--wrap); margin:0 auto; padding:0 var(--gut)}
.container--tight{max-width:var(--wrap-tight)}

/* ── Tipografía ───────────────────────────────────────────────────────────── */
h1,h2,h3,h4{margin:0; font-weight:400; letter-spacing:-.015em; text-wrap:balance}
h1{font-family:var(--ff-display); font-size:clamp(2.9rem,7.6vw,5.6rem); line-height:.98}
h2{font-family:var(--ff-display); font-size:clamp(2.1rem,4.6vw,3.4rem); line-height:1.06}
h3{font-family:var(--ff-text); font-size:1.22rem; font-weight:600; line-height:1.28; letter-spacing:-.01em}
h4{font-family:var(--ff-text); font-size:1rem; font-weight:600; line-height:1.3}
p{margin:0}
strong,b{font-weight:600}
em{font-style:italic}

.eyebrow{
  font-family:var(--ff-mono); font-size:.72rem; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase; color:var(--brand-ink);
}
.eyebrow--night{color:var(--brand)}
.eyebrow--muted{color:var(--muted)}
.lede{font-size:clamp(1.06rem,2vw,1.28rem); line-height:1.52; color:var(--ink-2); max-width:56ch}
.small{font-size:.9rem; color:var(--muted)}
.mono{font-family:var(--ff-mono); font-variant-numeric:tabular-nums}
.link{
  color:var(--brand-ink); text-decoration:underline; text-decoration-thickness:1px;
  text-underline-offset:.2em; transition:color .15s ease;
}
.link:hover{color:var(--ink)}

/* ── Botones ──────────────────────────────────────────────────────────────── */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  font-family:var(--ff-text); font-size:.98rem; font-weight:600; letter-spacing:-.005em;
  padding:15px 26px; border-radius:2px; border:1.5px solid transparent;
  cursor:pointer; text-align:center; transition:background .16s ease, color .16s ease, border-color .16s ease, transform .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{background:var(--ink); color:var(--paper); border-color:var(--ink)}
.btn--primary:hover{background:var(--brand); border-color:var(--brand); color:#fff}
.btn--ghost{background:transparent; color:var(--ink); border-color:var(--rule-2)}
.btn--ghost:hover{border-color:var(--ink); background:var(--paper-2)}
.btn--night{background:var(--brand); color:#1a1000; border-color:var(--brand)}
.btn--night:hover{background:#fff; border-color:#fff; color:var(--ink)}
.btn--wide{width:100%}
.btn-ghost{ /* usado por el widget de reserva */
  display:inline-flex; align-items:center; gap:.5em; background:transparent;
  border:1.5px solid var(--rule-2); color:var(--ink-2); border-radius:2px;
  padding:14px 22px; font-size:.94rem; font-weight:500; cursor:pointer;
  transition:border-color .16s ease, color .16s ease;
}
.btn-ghost:hover{border-color:var(--ink); color:var(--ink)}
.btn-primary{
  display:inline-flex; align-items:center; gap:.5em; background:var(--ink);
  color:var(--paper); border:1.5px solid var(--ink); border-radius:2px;
  padding:14px 24px; font-size:.96rem; font-weight:600; cursor:pointer;
}
.btn-primary:hover{background:var(--brand); border-color:var(--brand); color:#fff}

/* ── Barra de progreso + volver arriba ────────────────────────────────────── */
.scroll-progress{
  position:fixed; inset:0 auto auto 0; height:2px; width:0; background:var(--brand);
  z-index:120; transition:width .1s linear;
}
.back-top{
  position:fixed; right:20px; bottom:20px; z-index:90;
  width:42px; height:42px; display:grid; place-items:center;
  background:var(--ink); color:var(--paper); border:0; border-radius:50%;
  cursor:pointer; opacity:0; pointer-events:none; transition:opacity .2s ease, background .16s ease;
}
.back-top.visible{opacity:1; pointer-events:auto}
.back-top:hover{background:var(--brand)}

/* ── Navegación ───────────────────────────────────────────────────────────── */
.navbar{
  position:sticky; top:0; z-index:100; background:rgba(255,255,255,.88);
  backdrop-filter:saturate(180%) blur(12px); border-bottom:1px solid transparent;
  transition:border-color .2s ease, background .2s ease;
}
.navbar.scrolled{border-bottom-color:var(--rule)}
.nav-inner{
  max-width:var(--wrap); margin:0 auto; padding:0 var(--gut);
  height:70px; display:flex; align-items:center; gap:28px;
}
.brand{display:flex; align-items:center; gap:10px; margin-right:auto}
.brand__name{font-family:var(--ff-display); font-size:1.5rem; line-height:1; letter-spacing:-.01em}
.brand__dot{color:var(--brand)}
.nav-links{display:none; gap:26px; align-items:center}
.nav-links a{
  font-size:.94rem; color:var(--ink-2); font-weight:500;
  padding:6px 0; border-bottom:1.5px solid transparent; transition:color .15s ease, border-color .15s ease;
}
.nav-links a:hover{color:var(--ink); border-bottom-color:var(--brand)}
.nav-cta{display:none}
@media(min-width:900px){
  .nav-links{display:flex}
  .nav-cta{display:inline-flex}
}
.hamburger{
  display:grid; place-items:center; width:42px; height:42px; margin-left:auto;
  background:transparent; border:1.5px solid var(--rule-2); border-radius:2px; cursor:pointer;
}
.hamburger span{display:block; width:17px; height:1.5px; background:var(--ink); transition:transform .2s ease, opacity .2s ease}
.hamburger span + span{margin-top:4px}
.hamburger.open span:nth-child(1){transform:translateY(5.5px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-5.5px) rotate(-45deg)}
@media(min-width:900px){ .hamburger{display:none} }

.nav-mobile{
  position:fixed; inset:70px 0 auto 0; z-index:99; background:var(--paper);
  border-bottom:1px solid var(--rule); padding:18px var(--gut) 26px;
  display:none; flex-direction:column; gap:2px;
}
.nav-mobile.open{display:flex}
.nav-mobile a{
  padding:13px 0; font-size:1.05rem; font-weight:500; border-bottom:1px solid var(--rule);
}
.nav-mobile a:last-child{border-bottom:0}
@media(min-width:900px){ .nav-mobile{display:none !important} }

/* ── Reveal (solo si hay JS) ──────────────────────────────────────────────── */
/* Red de seguridad: si app.js no llega a cargar, la animacion revela el
   contenido a los 1,5 s igualmente. Nunca puede quedarse una seccion invisible. */
.js [data-reveal]{
  opacity:0; transform:translateY(14px);
  animation:reveal-safety 0s linear 1.5s forwards;
}
@keyframes reveal-safety{ to{opacity:1; transform:none} }
.js [data-reveal].revealed{
  opacity:1; transform:none; animation:none;
  transition:opacity .5s cubic-bezier(.2,.7,.3,1), transform .5s cubic-bezier(.2,.7,.3,1);
}
.js [data-reveal-delay="1"].revealed{transition-delay:.07s}
.js [data-reveal-delay="2"].revealed{transition-delay:.14s}
.js [data-reveal-delay="3"].revealed{transition-delay:.21s}
@media (prefers-reduced-motion: reduce){
  .js [data-reveal]{opacity:1 !important; transform:none !important; transition:none !important}
}

/* ── Ritmo de secciones ───────────────────────────────────────────────────── */
.section{padding:clamp(64px,9vw,120px) 0}
.section--tight{padding:clamp(48px,6vw,80px) 0}
.section--paper2{background:var(--paper-2)}
.section-head{display:flex; flex-direction:column; gap:14px; margin-bottom:clamp(36px,5vw,56px); max-width:64ch}
.rule{height:1px; background:var(--rule); border:0; margin:0}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero{padding:clamp(56px,8vw,104px) 0 clamp(40px,5vw,64px)}
.hero__grid{display:flex; flex-direction:column; gap:34px}
.hero h1{max-width:15ch}
.hero h1 em{font-style:italic; color:var(--brand-ink)}
.hero__lede{max-width:52ch}
.hero__actions{display:flex; flex-wrap:wrap; gap:12px; align-items:center}
.hero__note{font-family:var(--ff-mono); font-size:.78rem; color:var(--muted); letter-spacing:.01em}

/* Tira de datos reales */
.facts{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  border-top:1px solid var(--ink); border-left:1px solid var(--rule);
}
.fact{padding:20px 22px 22px; border-right:1px solid var(--rule); border-bottom:1px solid var(--rule)}
.fact b{
  display:block; font-family:var(--ff-mono); font-size:clamp(1.5rem,3.4vw,2.05rem);
  font-weight:500; font-variant-numeric:tabular-nums; letter-spacing:-.03em; line-height:1;
}
.fact span{display:block; margin-top:8px; font-size:.84rem; line-height:1.38; color:var(--muted)}

/* ── CASOS ────────────────────────────────────────────────────────────────── */
.case{
  display:grid; gap:clamp(24px,4vw,52px); align-items:center;
  padding:clamp(40px,5vw,64px) 0; border-top:1px solid var(--rule);
}
@media(min-width:860px){
  .case{grid-template-columns:minmax(0,1fr) minmax(0,1.12fr)}
  .case--flip .case__media{order:-1}
}
.case__body{display:flex; flex-direction:column; gap:16px}
.case__name{display:flex; align-items:baseline; gap:12px; flex-wrap:wrap}
.case__name h3{font-family:var(--ff-display); font-weight:400; font-size:clamp(1.7rem,3.2vw,2.3rem); letter-spacing:-.02em}
.case__tag{
  font-family:var(--ff-mono); font-size:.68rem; letter-spacing:.13em; text-transform:uppercase;
  color:var(--brand-ink); background:var(--brand-soft); padding:5px 9px; border-radius:2px;
}
.case__tag--live{color:var(--ok); background:#eaf3ec}
.case p{color:var(--ink-2); font-size:1rem; line-height:1.58; max-width:52ch}
.case__data{display:flex; flex-wrap:wrap; gap:8px 26px; padding-top:4px}
.case__data div{display:flex; flex-direction:column; gap:2px}
.case__data b{font-family:var(--ff-mono); font-size:1.16rem; font-weight:500; font-variant-numeric:tabular-nums; letter-spacing:-.02em}
.case__data span{font-size:.76rem; color:var(--muted); line-height:1.3}

.case__media{position:relative}
.shot{
  border:1px solid var(--rule-2); border-radius:3px; overflow:hidden; background:var(--paper-2);
  box-shadow:0 1px 2px rgba(20,23,28,.05), 0 24px 48px -32px rgba(20,23,28,.4);
}
.shot img{width:100%; display:block}
.shot__bar{
  display:flex; align-items:center; gap:6px; padding:9px 12px;
  background:var(--paper-3); border-bottom:1px solid var(--rule-2);
}
.shot__bar i{width:8px; height:8px; border-radius:50%; background:var(--rule-2); display:block}
.shot__bar span{
  margin-left:8px; font-family:var(--ff-mono); font-size:.7rem; color:var(--muted);
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
/* Sustituto mientras no hay captura: no parece un hueco roto */
.shot__placeholder{
  padding:clamp(28px,4vw,44px); display:flex; flex-direction:column; gap:16px;
  background:
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(20,23,28,.028) 11px 22px),
    var(--paper);
  min-height:210px;
}
.shot__placeholder .l{
  font-family:var(--ff-mono); font-size:.82rem; line-height:1.85; color:var(--ink-2);
}
.shot__placeholder .l b{color:var(--ink); font-weight:500}
.shot__placeholder .l i{color:var(--brand-ink); font-style:normal}

/* ── BANDA VERIFACTU (la única sección oscura) ────────────────────────────── */
.night{background:var(--night); color:var(--on-night); padding:clamp(56px,7vw,92px) 0}
.night h2{color:var(--on-night)}
.night p{color:var(--on-night-2)}
.night__grid{display:grid; gap:clamp(28px,4vw,56px); align-items:center}
@media(min-width:900px){ .night__grid{grid-template-columns:1.15fr .85fr} }
.night__body{display:flex; flex-direction:column; gap:18px}
.night__body h2{max-width:18ch}
.night__list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px}
.night__list li{display:flex; gap:12px; font-size:.97rem; line-height:1.5; color:var(--on-night-2)}
.night__list li::before{content:"—"; color:var(--brand); flex:none}
.night__list li b{color:var(--on-night); font-weight:600}

.countdown{
  border:1px solid var(--rule-night); border-radius:3px; padding:clamp(26px,3.4vw,38px);
  background:var(--night-2); display:flex; flex-direction:column; gap:6px; text-align:center;
}
.countdown__num{
  font-family:var(--ff-mono); font-size:clamp(3.4rem,10vw,5.4rem); font-weight:500;
  font-variant-numeric:tabular-nums; letter-spacing:-.045em; line-height:.92; color:var(--brand);
}
.countdown__unit{font-family:var(--ff-mono); font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; color:var(--on-night-2)}
.countdown__for{margin-top:14px; padding-top:16px; border-top:1px solid var(--rule-night); font-size:.9rem; line-height:1.5; color:var(--on-night-2)}
.countdown__for b{color:var(--on-night); display:block; font-weight:600; margin-bottom:3px}
.countdown__src{margin-top:12px; font-family:var(--ff-mono); font-size:.7rem; color:#6C757E; line-height:1.5}

/* ── QUÉ HACEMOS (comprimido) ─────────────────────────────────────────────── */
.offer{display:grid; gap:clamp(28px,4vw,56px)}
@media(min-width:880px){ .offer{grid-template-columns:1fr 1fr} }
.offer__main{display:flex; flex-direction:column; gap:16px}
.offer__list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column}
.offer__list li{
  display:flex; gap:16px; align-items:baseline;
  padding:15px 0; border-bottom:1px solid var(--rule);
}
.offer__list li:first-child{border-top:1px solid var(--rule)}
.offer__list .n{font-family:var(--ff-mono); font-size:.76rem; color:var(--brand-ink); flex:none; width:2.2em}
.offer__list .t{display:flex; flex-direction:column; gap:3px}
.offer__list .t b{font-weight:600; font-size:1rem}
.offer__list .t span{font-size:.9rem; color:var(--muted); line-height:1.45}

/* ── PROCESO ──────────────────────────────────────────────────────────────── */
.steps{display:grid; gap:1px; background:var(--rule); border:1px solid var(--rule)}
@media(min-width:800px){ .steps{grid-template-columns:repeat(3,1fr)} }
.step{background:var(--paper); padding:clamp(24px,3vw,34px); display:flex; flex-direction:column; gap:11px}
.step__n{font-family:var(--ff-mono); font-size:.74rem; letter-spacing:.14em; color:var(--brand-ink)}
.step p{font-size:.95rem; color:var(--ink-2); line-height:1.55}

/* ── OFERTA DE ENTRADA / PRECIO ───────────────────────────────────────────── */
.price{
  border:1.5px solid var(--ink); border-radius:3px; overflow:hidden;
  display:grid; background:var(--paper);
}
@media(min-width:820px){ .price{grid-template-columns:1.25fr .75fr} }
.price__body{padding:clamp(28px,4vw,46px); display:flex; flex-direction:column; gap:16px}
.price__body h2{font-size:clamp(1.7rem,3.2vw,2.5rem)}
.price__inc{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px}
.price__inc li{display:flex; gap:12px; font-size:.96rem; color:var(--ink-2); line-height:1.5}
.price__inc li::before{content:"✓"; color:var(--ok); font-weight:700; flex:none}
.price__aside{
  background:var(--paper-2); border-left:1px solid var(--rule);
  padding:clamp(28px,4vw,46px); display:flex; flex-direction:column; gap:16px; justify-content:center;
}
.price__fig{display:flex; align-items:baseline; gap:4px}
.price__fig b{font-family:var(--ff-mono); font-size:clamp(2.6rem,6.4vw,3.8rem); font-weight:500; letter-spacing:-.045em; line-height:1}
.price__fig span{font-family:var(--ff-mono); font-size:1.4rem; color:var(--muted)}
.price__note{font-size:.9rem; color:var(--ink-2); line-height:1.5}
.price__note b{color:var(--ink)}
.price__free{
  font-family:var(--ff-mono); font-size:.76rem; line-height:1.6; color:var(--muted);
  padding-top:14px; border-top:1px solid var(--rule-2);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESERVA — se conservan las clases que espera app.js
   ══════════════════════════════════════════════════════════════════════════ */
.booking-section{padding:clamp(64px,9vw,110px) 0; background:var(--paper-2)}
.booking-header{display:flex; flex-direction:column; gap:14px; margin-bottom:36px; max-width:60ch}
.booking-header__badge{
  display:inline-flex; align-items:center; gap:9px; align-self:flex-start;
  font-family:var(--ff-mono); font-size:.72rem; letter-spacing:.13em; text-transform:uppercase;
  color:var(--brand-ink); background:var(--brand-soft); padding:7px 12px; border-radius:2px;
}
.booking-badge-pulse{width:6px; height:6px; border-radius:50%; background:var(--brand); flex:none}
@media (prefers-reduced-motion: no-preference){
  .booking-badge-pulse{animation:pulse 2.4s ease-in-out infinite}
  @keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}
}
.booking-header__title{font-family:var(--ff-display); font-size:clamp(2rem,4.4vw,3.1rem); line-height:1.06}
.booking-header__desc{color:var(--ink-2); font-size:1.02rem; line-height:1.55}
.booking-trust{display:flex; flex-wrap:wrap; gap:10px 24px; margin-top:4px}
.booking-trust-item{display:flex; align-items:center; gap:8px; font-size:.88rem; color:var(--ink-2)}
.booking-trust-item svg{color:var(--ok); flex:none}

.booking-widget{
  background:var(--paper); border:1px solid var(--rule-2); border-radius:3px;
  box-shadow:0 1px 2px rgba(20,23,28,.04), 0 30px 60px -44px rgba(20,23,28,.45);
  overflow:hidden;
}
.booking-progress{
  display:flex; align-items:center; gap:10px; padding:16px clamp(18px,3vw,28px);
  border-bottom:1px solid var(--rule); background:var(--paper-2);
}
.booking-progress__step{display:flex; align-items:center; gap:9px; opacity:.42; transition:opacity .2s ease}
.booking-progress__step.active{opacity:1}
.bp-num{
  width:24px; height:24px; flex:none; display:grid; place-items:center; border-radius:50%;
  background:var(--rule-2); color:var(--ink); font-family:var(--ff-mono); font-size:.76rem;
}
.booking-progress__step.active .bp-num{background:var(--ink); color:var(--paper)}
.bp-label{font-size:.84rem; font-weight:500; white-space:nowrap}
.booking-progress__divider{flex:1; height:1px; background:var(--rule-2); min-width:12px}
@media(max-width:640px){ .bp-label{display:none} }

.booking-step{padding:clamp(20px,3.4vw,32px)}
.booking-layout{display:grid; gap:clamp(22px,3vw,38px)}
@media(min-width:820px){ .booking-layout{grid-template-columns:1.15fr .85fr} }

.booking-cal{border:1px solid var(--rule); border-radius:3px; padding:16px}
.bc-header{display:flex; align-items:center; justify-content:space-between; margin-bottom:14px}
.bc-nav-btn{
  width:32px; height:32px; display:grid; place-items:center; cursor:pointer;
  background:transparent; border:1px solid var(--rule-2); border-radius:2px; color:var(--ink-2);
}
.bc-nav-btn:hover{border-color:var(--ink); color:var(--ink)}
.bc-month{font-weight:600; font-size:1rem; text-transform:capitalize}
.bc-weekdays{
  display:grid; grid-template-columns:repeat(7,1fr); gap:4px; margin-bottom:6px;
  font-family:var(--ff-mono); font-size:.68rem; color:var(--muted); text-align:center;
}
.bc-days{display:grid; grid-template-columns:repeat(7,1fr); gap:4px}
.bc-day{
  aspect-ratio:1; display:grid; place-items:center; cursor:pointer;
  background:transparent; border:1px solid transparent; border-radius:2px;
  font-family:var(--ff-mono); font-size:.86rem; font-variant-numeric:tabular-nums;
  color:var(--ink); transition:background .12s ease, border-color .12s ease;
}
.bc-day:empty{cursor:default}
.bc-day--past,.bc-day--weekend{color:var(--rule-2); cursor:not-allowed}
.bc-day--available{border-color:var(--rule-2); font-weight:500}
.bc-day--available:hover{border-color:var(--ink); background:var(--paper-2)}
.bc-day--today{box-shadow:inset 0 -2px 0 var(--brand)}
.bc-day--fully-booked{color:var(--rule-2); text-decoration:line-through; cursor:not-allowed}
.bc-day--selected{background:var(--ink) !important; border-color:var(--ink) !important; color:var(--paper) !important}

.booking-slots-title{font-size:1rem; font-weight:600; margin-bottom:12px}
.booking-slots{display:grid; grid-template-columns:repeat(auto-fill,minmax(94px,1fr)); gap:8px}
.booking-slots-placeholder{grid-column:1/-1; font-size:.9rem; color:var(--muted); padding:14px 0}
.booking-slot{
  padding:11px 8px; text-align:center; cursor:pointer;
  background:transparent; border:1px solid var(--rule-2); border-radius:2px;
  font-family:var(--ff-mono); font-size:.88rem; transition:border-color .12s ease, background .12s ease;
}
.booking-slot:hover{border-color:var(--ink); background:var(--paper-2)}
.booking-slot--selected{background:var(--ink); border-color:var(--ink); color:var(--paper)}
.booking-slot--taken{opacity:.35; text-decoration:line-through; cursor:not-allowed}
.booking-slots-tz{margin-top:14px; font-family:var(--ff-mono); font-size:.72rem; color:var(--muted); display:flex; align-items:center; gap:6px}
.icon-inline{display:inline-block; vertical-align:-1px}

.booking-summary{
  background:var(--paper-2); border:1px solid var(--rule); border-radius:3px;
  padding:16px 18px; margin-bottom:20px; font-size:.94rem;
}
.booking-summary b{font-family:var(--ff-mono); font-weight:500}
.booking-form-actions{display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; margin-top:22px}

.booking-success{text-align:center; padding:clamp(24px,4vw,44px) 0; display:flex; flex-direction:column; align-items:center; gap:14px}
.booking-success__icon{color:var(--ok)}
.booking-success__title{font-family:var(--ff-display); font-size:clamp(1.8rem,4vw,2.6rem)}
.booking-success__desc{color:var(--ink-2); max-width:44ch}
.booking-success__details{
  font-family:var(--ff-mono); font-size:.9rem; line-height:1.8; color:var(--ink-2);
  background:var(--paper-2); border:1px solid var(--rule); border-radius:3px;
  padding:14px 20px; max-width:100%; overflow-wrap:anywhere;
}
.booking-success__actions{display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:6px}

.booking-urgency{
  display:flex; flex-wrap:wrap; gap:12px 28px; margin-top:22px;
  font-size:.88rem; color:var(--ink-2);
}
.urgency-item{display:flex; align-items:center; gap:9px}
.urgency-item svg{color:var(--muted); flex:none}
.urgency-item strong{font-family:var(--ff-mono); font-weight:500}

/* ── Formularios (compartidos reserva + contacto) ─────────────────────────── */
.form-row{display:grid; gap:16px}
@media(min-width:640px){ .form-row{grid-template-columns:1fr 1fr} }
.form-group{display:flex; flex-direction:column; gap:6px; margin-bottom:16px}
.form-label{font-size:.85rem; font-weight:600; color:var(--ink-2)}
.form-control{
  width:100%; padding:13px 14px; background:var(--paper);
  border:1px solid var(--rule-2); border-radius:2px; font-size:.98rem;
  transition:border-color .14s ease, box-shadow .14s ease;
}
.form-control:focus{outline:none; border-color:var(--ink); box-shadow:0 0 0 3px rgba(241,136,0,.16)}
.form-control::placeholder{color:#9AA1AA}
textarea.form-control{resize:vertical; min-height:96px; line-height:1.55}
select.form-control{
  appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23767D87' stroke-width='1.6' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; padding-right:36px;
}
.form-group.has-error .form-control{border-color:var(--alert)}
.form-error{font-size:.8rem; color:var(--alert); min-height:0}
.form-group.has-error .form-error{min-height:1.2em}
.form-hint{font-size:.82rem; color:var(--muted); line-height:1.45}
.form-honey{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}
.form-privacy{margin-top:16px; font-size:.82rem; color:var(--muted); line-height:1.5}
.form-submit{margin-top:6px}
.form-alert{display:none; padding:13px 16px; border-radius:2px; font-size:.92rem; margin-bottom:18px; line-height:1.5}
.form-alert.show{display:block}
.form-alert.success{background:#eaf3ec; color:var(--ok); border:1px solid #c5ddcb}
.form-alert.error{background:#fbeceb; color:var(--alert); border:1px solid #eecfcc}

.btn-submit{
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  padding:15px 28px; background:var(--ink); color:var(--paper);
  border:1.5px solid var(--ink); border-radius:2px; font-size:.98rem; font-weight:600;
  cursor:pointer; transition:background .16s ease, border-color .16s ease;
}
.btn-submit:hover{background:var(--brand); border-color:var(--brand); color:#fff}
.btn-submit:disabled{opacity:.6; cursor:not-allowed}
.btn-submit .spinner{display:none; width:15px; height:15px; border:2px solid rgba(255,255,255,.35); border-top-color:#fff; border-radius:50%}
.btn-submit.loading .spinner{display:block}
.btn-submit.loading .btn-text{opacity:.75}
@media (prefers-reduced-motion: no-preference){
  .btn-submit.loading .spinner{animation:spin .7s linear infinite}
  @keyframes spin{to{transform:rotate(360deg)}}
}

/* ── CONTACTO ─────────────────────────────────────────────────────────────── */
.contact{padding:clamp(64px,9vw,110px) 0}
.contact__grid{display:grid; gap:clamp(32px,5vw,64px)}
@media(min-width:900px){ .contact__grid{grid-template-columns:.85fr 1.15fr} }
.contact__aside{display:flex; flex-direction:column; gap:20px}
.contact__details{display:flex; flex-direction:column; gap:14px; margin-top:4px}
.contact__detail{display:flex; align-items:center; gap:12px; font-size:.96rem; color:var(--ink-2)}
.contact__detail a:hover{color:var(--brand-ink); text-decoration:underline}
.contact__detail-icon{color:var(--muted); flex:none; display:grid; place-items:center}
.contact__trust{display:flex; flex-wrap:wrap; gap:8px; margin-top:6px}
.contact__trust-item{
  font-family:var(--ff-mono); font-size:.72rem; letter-spacing:.06em; color:var(--muted);
  border:1px solid var(--rule); border-radius:2px; padding:6px 10px;
}
.contact__form{
  background:var(--paper); border:1px solid var(--rule-2); border-radius:3px;
  padding:clamp(22px,3.4vw,36px);
}

/* ── PIE ──────────────────────────────────────────────────────────────────── */
.footer{background:var(--night); color:var(--on-night-2); padding:clamp(48px,6vw,76px) 0 28px}
.footer__grid{display:grid; gap:34px; padding-bottom:34px; border-bottom:1px solid var(--rule-night)}
@media(min-width:760px){ .footer__grid{grid-template-columns:1.6fr 1fr 1fr} }
.footer__brand{display:flex; flex-direction:column; gap:12px; max-width:38ch}
.footer__brand .brand__name{color:var(--on-night)}
.footer__brand p{font-size:.92rem; line-height:1.6}
.footer h4{color:var(--on-night); font-family:var(--ff-mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; font-weight:500; margin-bottom:14px}
.footer ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px}
.footer a{font-size:.92rem; transition:color .15s ease}
.footer a:hover{color:var(--brand)}
.footer__bottom{
  display:flex; flex-wrap:wrap; gap:12px 24px; justify-content:space-between;
  align-items:center; padding-top:22px; font-size:.84rem;
}
.footer__legal{display:flex; flex-wrap:wrap; gap:18px}
.footer__cookie-btn{background:none; border:0; padding:0; cursor:pointer; font-size:.84rem; color:inherit}
.footer__cookie-btn:hover{color:var(--brand)}

/* ── Banner de cookies ────────────────────────────────────────────────────── */
.cookie-banner{
  position:fixed; inset:auto 0 0 0; z-index:130; background:var(--paper);
  border-top:1px solid var(--rule-2); box-shadow:0 -12px 40px -24px rgba(20,23,28,.5);
  padding:20px var(--gut) calc(20px + env(safe-area-inset-bottom));
  transform:translateY(102%); transition:transform .32s cubic-bezier(.2,.7,.3,1);
}
.cookie-banner.show{transform:none}
.cookie-banner__inner{max-width:var(--wrap); margin:0 auto; display:flex; flex-direction:column; gap:16px}
.cookie-banner__content{display:flex; gap:14px; align-items:flex-start}
.cookie-banner__icon{color:var(--brand); flex:none}
.cookie-banner__title{font-weight:600; margin-bottom:4px}
.cookie-banner__text{font-size:.88rem; color:var(--ink-2); line-height:1.55; max-width:82ch}
.cookie-banner__text a{color:var(--brand-ink); text-decoration:underline}
.cookie-banner__settings{display:flex; flex-direction:column; gap:14px; padding:16px 0; border-top:1px solid var(--rule)}
.cookie-banner__option{display:flex; gap:20px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.cookie-banner__option-info strong{display:block; font-size:.92rem; margin-bottom:3px}
.cookie-banner__option-info p{font-size:.84rem; color:var(--muted); line-height:1.45; max-width:62ch}
.cookie-banner__toggle{display:flex; align-items:center; gap:9px; font-size:.84rem; color:var(--muted); flex:none}
.cookie-banner__actions{display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end}
.cookie-banner__btn{
  padding:11px 20px; border-radius:2px; font-size:.9rem; font-weight:600; cursor:pointer;
  border:1.5px solid var(--rule-2); background:transparent; color:var(--ink);
}
.cookie-banner__btn--secondary:hover{border-color:var(--ink)}
.cookie-banner__btn--primary{background:var(--ink); border-color:var(--ink); color:var(--paper)}
.cookie-banner__btn--primary:hover{background:var(--brand); border-color:var(--brand); color:#fff}

/* ── Página de servicios ──────────────────────────────────────────────────── */
.svc-list{display:grid; gap:1px; background:var(--rule); border:1px solid var(--rule)}
@media(min-width:760px){ .svc-list{grid-template-columns:1fr 1fr} }
.svc{background:var(--paper); padding:clamp(24px,3vw,34px); display:flex; flex-direction:column; gap:10px}
.svc__n{font-family:var(--ff-mono); font-size:.72rem; letter-spacing:.14em; color:var(--brand-ink)}
.svc p{font-size:.95rem; color:var(--ink-2); line-height:1.56}
.svc__tags{display:flex; flex-wrap:wrap; gap:6px; margin-top:4px}
.svc__tags span{
  font-family:var(--ff-mono); font-size:.68rem; color:var(--muted);
  border:1px solid var(--rule); border-radius:2px; padding:4px 8px;
}
.cta-band{
  border-top:1px solid var(--ink); padding:clamp(40px,5vw,64px) 0;
  display:flex; flex-direction:column; gap:18px; align-items:flex-start;
}

/* ══════════════════════════════════════════════════════════════════════════
   MEDIA — vídeo y fotos propias. Sin banco de imágenes.
   ══════════════════════════════════════════════════════════════════════════ */
.shot video{width:100%; display:block; background:var(--paper-2)}
.shot__cap{
  padding:9px 13px; border-top:1px solid var(--rule-2); background:var(--paper-2);
  font-family:var(--ff-mono); font-size:.7rem; color:var(--muted); line-height:1.4;
}

/* Banda de equipo / lugar */
.team{display:grid; gap:clamp(26px,4vw,52px); align-items:center}
@media(min-width:860px){ .team{grid-template-columns:.9fr 1.1fr} }
.team__body{display:flex; flex-direction:column; gap:16px}
.team__body h2{max-width:16ch}
.team__figure{
  margin:0; border:1px solid var(--rule-2); border-radius:3px; overflow:hidden; background:var(--paper-2);
  box-shadow:0 1px 2px rgba(20,23,28,.05), 0 24px 48px -34px rgba(20,23,28,.4);
}
.team__figure img{width:100%; display:block; aspect-ratio:4/3; object-fit:cover}
.team__figure figcaption{
  padding:11px 15px; border-top:1px solid var(--rule-2); background:var(--paper);
  font-family:var(--ff-mono); font-size:.72rem; color:var(--muted);
}
.team__slot{
  aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:10px; text-align:center; padding:28px;
  background:repeating-linear-gradient(135deg, transparent 0 11px, rgba(20,23,28,.028) 11px 22px), var(--paper);
}
.team__slot b{font-family:var(--ff-display); font-size:1.5rem; font-weight:400}
.team__slot span{font-family:var(--ff-mono); font-size:.74rem; color:var(--muted); line-height:1.6; max-width:34ch}

/* Extras del pie que usa el blog */
.footer__copy{font-size:.84rem}
.footer__social-inline{display:flex; flex-wrap:wrap; gap:18px}
.footer__social-inline a{display:inline-flex; align-items:center; gap:7px; font-size:.88rem}
.footer__social-inline svg{width:15px; height:15px; flex:none}

/* ══════════════════════════════════════════════════════════════════════════
   BLOG — listado
   ══════════════════════════════════════════════════════════════════════════ */
.navbar__inner{
  max-width:var(--wrap); margin:0 auto; padding:0 var(--gut);
  height:70px; display:flex; align-items:center; gap:24px;
}
.navbar__logo{display:flex; align-items:center; gap:10px; margin-right:auto}
.navbar__logo-img{width:30px; height:30px; border-radius:50%}
.navbar__logo-name{display:none}
.navbar__controls{display:flex; align-items:center; gap:18px}
.navbar__blog-link{font-size:.94rem; font-weight:500; color:var(--ink-2)}
.navbar__blog-link[aria-current=page]{color:var(--ink); border-bottom:1.5px solid var(--brand)}
.btn-nav{
  display:inline-flex; align-items:center; gap:7px; font-size:.9rem; font-weight:600;
  padding:11px 18px; border:1.5px solid var(--rule-2); border-radius:2px; color:var(--ink);
  transition:border-color .16s ease, background .16s ease, color .16s ease;
}
.btn-nav:hover{border-color:var(--ink)}
.btn-nav--booking{background:var(--ink); border-color:var(--ink); color:var(--paper)}
.btn-nav--booking:hover{background:var(--brand); border-color:var(--brand); color:#fff}
@media(max-width:720px){ .btn-nav:not(.btn-nav--booking){display:none} }

.blog-hero{padding:clamp(52px,7vw,88px) 0 clamp(28px,4vw,44px)}
.blog-hero__badge{
  display:inline-flex; font-family:var(--ff-mono); font-size:.72rem;
  letter-spacing:.15em; text-transform:uppercase; color:var(--brand-ink); margin-bottom:14px;
}
.blog-hero h1{font-size:clamp(2.4rem,6vw,4.2rem); margin-bottom:16px}
.blog-hero__desc{font-size:clamp(1.02rem,2vw,1.2rem); color:var(--ink-2); max-width:56ch; line-height:1.52}
.blog-hero__back{
  display:inline-flex; align-items:center; gap:8px; font-family:var(--ff-mono);
  font-size:.78rem; color:var(--muted); margin-bottom:20px;
}
.blog-hero__back:hover{color:var(--brand-ink)}

.blog-filters{padding:0 0 clamp(28px,4vw,44px)}
.blog-filters__inner{display:flex; flex-wrap:wrap; gap:8px}
.blog-filter-tag{
  display:inline-flex; align-items:center; gap:7px; padding:8px 13px;
  border:1px solid var(--rule-2); border-radius:2px; font-size:.86rem; color:var(--ink-2);
  transition:border-color .15s ease, color .15s ease;
}
.blog-filter-tag:hover{border-color:var(--ink); color:var(--ink)}
.blog-filter-tag--active{background:var(--ink); border-color:var(--ink); color:var(--paper)}
.blog-filter-tag__count{font-family:var(--ff-mono); font-size:.72rem; opacity:.65}

.blog-section{padding:0 0 clamp(56px,7vw,96px)}
.blog-grid{display:grid; gap:clamp(20px,2.6vw,32px)}
@media(min-width:640px){ .blog-grid{grid-template-columns:repeat(2,1fr)} }
@media(min-width:1000px){ .blog-grid--3{grid-template-columns:repeat(3,1fr)} }

.blog-card{
  display:flex; flex-direction:column; background:var(--paper);
  border:1px solid var(--rule); border-radius:3px; overflow:hidden;
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover{
  border-color:var(--rule-2); transform:translateY(-2px);
  box-shadow:0 18px 36px -28px rgba(20,23,28,.5);
}
.blog-card__img-wrap{aspect-ratio:16/9; overflow:hidden; background:var(--paper-2); border-bottom:1px solid var(--rule)}
.blog-card__img{width:100%; height:100%; object-fit:cover; display:block}
.blog-card__body{padding:20px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1}
.blog-card__cat{
  font-family:var(--ff-mono); font-size:.68rem; letter-spacing:.13em; text-transform:uppercase;
  color:var(--brand-ink); align-self:flex-start;
}
.blog-card__title{
  font-family:var(--ff-display); font-weight:400; font-size:1.45rem; line-height:1.14;
  letter-spacing:-.015em; color:var(--ink);
}
.blog-card:hover .blog-card__title{color:var(--brand-ink)}
.blog-card__excerpt{font-size:.94rem; color:var(--ink-2); line-height:1.55}
.blog-card__meta{
  margin-top:auto; padding-top:12px; display:flex; flex-wrap:wrap; gap:6px 14px;
  font-family:var(--ff-mono); font-size:.72rem; color:var(--muted);
}
.blog-card__read{font-family:var(--ff-mono); font-size:.78rem; color:var(--brand-ink)}
.blog-card--featured{grid-column:1/-1}
@media(min-width:860px){
  .blog-card--featured{flex-direction:row; align-items:stretch}
  .blog-card--featured .blog-card__img-wrap{width:52%; aspect-ratio:auto; border-bottom:0; border-right:1px solid var(--rule)}
  .blog-card--featured .blog-card__body{width:48%; justify-content:center; padding:clamp(24px,3vw,38px)}
  .blog-card--featured .blog-card__title{font-size:clamp(1.7rem,2.6vw,2.3rem)}
}
.blog-empty{padding:56px 0; text-align:center; color:var(--muted)}

.blog-pagination{display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:12px; margin-top:clamp(36px,5vw,56px)}
.blog-pagination__btn{
  padding:11px 18px; border:1.5px solid var(--rule-2); border-radius:2px;
  font-size:.9rem; font-weight:500; transition:border-color .15s ease;
}
.blog-pagination__btn:hover{border-color:var(--ink)}
.blog-pagination__info{font-family:var(--ff-mono); font-size:.82rem; color:var(--muted)}

/* ══════════════════════════════════════════════════════════════════════════
   BLOG — artículo
   ══════════════════════════════════════════════════════════════════════════ */
.post-breadcrumb{padding:22px 0 0}
.post-breadcrumb__list{
  list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:8px;
  font-family:var(--ff-mono); font-size:.74rem; color:var(--muted);
}
.post-breadcrumb__list a:hover{color:var(--brand-ink)}

.post__header{padding:clamp(28px,4vw,48px) 0 clamp(20px,3vw,32px)}
.post__header-inner{max-width:var(--wrap-tight); display:flex; flex-direction:column; gap:14px}
.post__cat{
  font-family:var(--ff-mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--brand-ink); align-self:flex-start;
}
.post__title{font-family:var(--ff-display); font-weight:400; font-size:clamp(2.2rem,5.6vw,3.9rem); line-height:1.03; letter-spacing:-.02em}
.post__excerpt{font-size:clamp(1.04rem,2vw,1.24rem); color:var(--ink-2); line-height:1.5; max-width:58ch}
.post__meta{
  display:flex; flex-wrap:wrap; gap:8px 20px; padding-top:10px; border-top:1px solid var(--rule);
  font-family:var(--ff-mono); font-size:.75rem; color:var(--muted);
}
.post__meta span,.post__meta time{display:inline-flex; align-items:center; gap:6px}

.post__cover{max-width:var(--wrap); margin:0 auto clamp(28px,4vw,48px); padding:0 var(--gut)}
.post__cover-img{
  width:100%; border:1px solid var(--rule); border-radius:3px;
  aspect-ratio:2/1; object-fit:cover; display:block;
}

.post__layout{display:grid; gap:clamp(32px,5vw,64px); padding-bottom:clamp(48px,6vw,80px)}
@media(min-width:960px){ .post__layout{grid-template-columns:minmax(0,1fr) 300px; align-items:start} }

/* Prosa del artículo */
.post__content{max-width:70ch; font-size:1.06rem; line-height:1.72; color:var(--ink-2)}
.post__content h2{
  font-family:var(--ff-display); font-weight:400; font-size:clamp(1.7rem,3.4vw,2.4rem);
  line-height:1.12; color:var(--ink); margin:2em 0 .5em; letter-spacing:-.018em;
}
.post__content h3{
  font-family:var(--ff-text); font-weight:600; font-size:1.2rem; color:var(--ink); margin:1.7em 0 .4em;
}
.post__content h4{font-weight:600; color:var(--ink); margin:1.5em 0 .4em}
.post__content p{margin:0 0 1.15em}
.post__content a{color:var(--brand-ink); text-decoration:underline; text-underline-offset:.2em; text-decoration-thickness:1px}
.post__content a:hover{color:var(--ink)}
.post__content strong{color:var(--ink); font-weight:600}
.post__content ul,.post__content ol{padding-left:1.3em; margin:0 0 1.15em; display:flex; flex-direction:column; gap:.5em}
.post__content li{padding-left:.2em}
.post__content li::marker{color:var(--brand)}
.post__content blockquote{
  margin:1.6em 0; padding:4px 0 4px 22px; border-left:3px solid var(--brand);
  font-family:var(--ff-display); font-size:1.28rem; line-height:1.42; color:var(--ink);
}
.post__content blockquote p{margin:0}
.post__content img{border:1px solid var(--rule); border-radius:3px; margin:1.6em 0}
.post__content figure{margin:1.6em 0}
.post__content figcaption{margin-top:8px; font-family:var(--ff-mono); font-size:.76rem; color:var(--muted)}
.post__content code{
  font-family:var(--ff-mono); font-size:.86em; background:var(--paper-2);
  border:1px solid var(--rule); border-radius:2px; padding:.12em .38em; color:var(--ink);
}
.post__content pre{
  background:var(--night); color:var(--on-night); border-radius:3px; margin:1.6em 0;
  padding:18px 20px; overflow-x:auto; font-family:var(--ff-mono); font-size:.86rem; line-height:1.6;
}
.post__content pre code{background:none; border:0; padding:0; color:inherit}
.post__content hr{border:0; border-top:1px solid var(--rule); margin:2.2em 0}
.post__content table{width:100%; border-collapse:collapse; font-size:.94rem; display:block; overflow-x:auto; margin:1.6em 0}
.post__content th,.post__content td{padding:10px 14px; border-bottom:1px solid var(--rule); text-align:left; vertical-align:top}
.post__content th{font-weight:600; color:var(--ink); background:var(--paper-2); white-space:nowrap}

.post__sidebar{display:flex; flex-direction:column; gap:22px}
@media(min-width:960px){ .post__sidebar{position:sticky; top:92px} }
.post-widget{border:1px solid var(--rule); border-radius:3px; padding:20px}
.post-widget__title{font-family:var(--ff-mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); font-weight:500; margin-bottom:14px}
.post-widget--cta{background:var(--paper-2); border-color:var(--rule-2)}
.post-widget--cta .post-widget__title{color:var(--brand-ink)}
.post-widget__rss{font-family:var(--ff-mono); font-size:.8rem; color:var(--muted)}
.post-tags{display:flex; flex-wrap:wrap; gap:7px}
.post-tag{
  font-family:var(--ff-mono); font-size:.74rem; padding:6px 10px;
  border:1px solid var(--rule); border-radius:2px; color:var(--ink-2);
}
.post-tag:hover{border-color:var(--ink); color:var(--ink)}

.post-share{display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin-top:2.4em; padding-top:22px; border-top:1px solid var(--rule)}
.post-share__label{font-family:var(--ff-mono); font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted)}
.post-share__btn{
  display:inline-grid; place-items:center; width:38px; height:38px; cursor:pointer;
  border:1px solid var(--rule-2); border-radius:2px; background:transparent; color:var(--ink-2);
  transition:border-color .15s ease, color .15s ease;
}
.post-share__btn:hover{border-color:var(--ink); color:var(--ink)}
.post-share__btn svg{width:16px; height:16px}

.post-cta{background:var(--paper-2); border-top:1px solid var(--rule); padding:clamp(48px,6vw,80px) 0}
.post-cta__inner{
  max-width:var(--wrap-tight); margin:0 auto; padding:0 var(--gut);
  display:flex; flex-direction:column; gap:16px; align-items:flex-start;
}
.post-cta__inner h2{font-size:clamp(1.8rem,3.6vw,2.6rem)}

.brand-text{font-family:var(--ff-display); font-size:1.5rem; letter-spacing:-.01em}
.btn--full{width:100%}
.btn--lg{padding:16px 30px; font-size:1.02rem}

/* Callouts dentro de los artículos (los genera el editor del blog) */
.post__content .callout{
  margin:1.7em 0; padding:16px 20px; border-radius:3px;
  border:1px solid var(--rule-2); border-left:3px solid var(--muted);
  background:var(--paper-2); font-size:.98rem; line-height:1.6;
}
.post__content .callout > :first-child{margin-top:0}
.post__content .callout > :last-child{margin-bottom:0}
.post__content .callout--info{border-left-color:#3A6EA5; background:#eff4fa}
.post__content .callout--tip{border-left-color:var(--ok); background:#eef4ef}
.post__content .callout--warn{border-left-color:var(--brand); background:var(--brand-soft)}

/* Por si algún post usa .prose fuera de .post__content */
.prose{max-width:70ch}

/* ── Logotipo del nombre ──────────────────────────────────────────────────── */
/* logo-mia.png sobre papel, logo-mia-claro.png sobre la banda nocturna. Los dos
   salen de logo-completo.jpg, con el fondo recortado y el naranja intacto. */
.brand__mark{height:26px; width:auto; display:block}
@media(min-width:900px){ .brand__mark{height:29px} }
.footer__brand .brand__mark{height:30px; margin-bottom:4px}
/* .footer__brand es flex en columna: sin esto, align-items:stretch estira
   la imagen a todo el ancho y la deja aplastada. */
.footer__brand .brand__mark{align-self:flex-start; max-width:none}

/* Sin foto de equipo, la banda ocupa una sola columna y no deja hueco */
.team--solo{grid-template-columns:1fr}
.team--solo .team__body{max-width:64ch}
