/* ─────────────────────────────────────────────────────────
   Shiro Yaki — shared landing styles (Granada & Paterna)
   ───────────────────────────────────────────────────────── */
:root {
  --bg: #F3E7CF;
  --bg-2: #ECDDB9;
  --red: #8D0904;
  --red-dark: #680108;
  --olive: #1E0404;
  --cream: #FFFBF0;
  --ink: #1E0404;
  --gold: #D9A45B;
  --nimbus: 'Nimbus Sans L', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --hand: 'Karumbi', cursive;
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--nimbus);
  font-weight: 300;
  background: radial-gradient(1200px 600px at 50% -200px, #2a1108 0%, #0c0604 60%, #000 100%);
  color: var(--ink);
  min-height: 100vh;
  display: flex; justify-content: center; align-items: flex-start;
  padding: 24px 16px 60px;
}
@media (max-width: 520px) { body { padding: 0; background: var(--bg); } }

.device-wrap { width: 100%; max-width: 430px; position: relative; }
.device {
  width: 100%;
  background: var(--bg);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 10px #0a0606, 0 0 0 11px #2a1410;
}
@media (max-width: 520px) {
  .device { border-radius: 0; box-shadow: none; }
}

/* status bar */
.status {
  height: 44px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; font-size: 14px; font-weight: 500; color: var(--ink);
  font-family: var(--nimbus);
}
.status .dots { display: flex; gap: 4px; align-items: center; }

/* nav */
.appbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  background: rgba(243, 231, 207, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30,4,4,0.06);
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--red);
  letter-spacing: -0.3px;
  line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
  text-decoration: none;
}
.brand-mark b {
  font-family: var(--nimbus);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
}
.appbar-actions { display: flex; gap: 8px; align-items: center; }
.iconbtn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(30,4,4,0.16);
  background: transparent;
  display: grid; place-items: center;
  color: var(--ink);
}
.iconbtn svg { width: 17px; height: 17px; }
.btn-tiny-red {
  font-family: var(--nimbus);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff8ec;
  background: var(--red);
  border: 1px solid var(--red-dark);
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Sticky doble bajo nav */
.dual-sticky {
  position: sticky; top: 62px; z-index: 25;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(243, 231, 207, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,4,4,0.07);
}
.dual-sticky a {
  font-family: var(--nimbus);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 13px 8px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  line-height: 1;
}
.dual-sticky a.solid {
  background: var(--red);
  color: #fff8ec;
  border: 1px solid var(--red-dark);
  box-shadow: 0 4px 10px -6px rgba(141,9,4,0.4);
}
.dual-sticky a.outline {
  background: transparent;
  color: var(--olive);
  border: 1px solid rgba(30,4,4,0.28);
}
.dual-sticky a small {
  font-size: 9px; opacity: 0.7; letter-spacing: 2px;
}

/* Buttons */
.btn {
  font-family: var(--nimbus);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 15px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
  white-space: nowrap; line-height: 1;
}
.btn-cream { color: var(--red); background: #FFFBF0; border: 1px solid rgba(141,9,4,0.18); }
.btn-red { color: #fff8ec; background: var(--red); border: 1px solid var(--red-dark); box-shadow: 0 4px 10px -6px rgba(141,9,4,0.4); }
.btn-ink { color: #fff8ec; background: var(--olive); border: 1px solid var(--olive); }
.btn-ghost { color: var(--olive); background: transparent; border: 1px solid rgba(30,4,4,0.32); }
.btn-ghost-light { color: #fff8ec; background: transparent; border: 1px solid rgba(255,248,236,0.45); }
.btn-gold { color: var(--olive); background: var(--gold); border: 1px solid #b88736; font-weight: 700; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 22px; font-size: 13px; }

/* Section base */
section { position: relative; padding: 56px 22px; }

/* Eyebrow */
.eyebrow {
  font-family: var(--nimbus);
  font-size: 10.5px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.eyebrow.alone::before { display: none; }

/* Display titles */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 42px;
  line-height: 0.98;
  letter-spacing: -1.2px;
  color: var(--olive);
  margin: 0;
  text-wrap: balance;
}
.display .it { font-style: italic; color: var(--red); }
.display .sans-line {
  display: block;
  font-family: var(--nimbus);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.32em;
  letter-spacing: 6px;
  color: var(--olive);
  margin-top: 14px;
}

/* Body copy */
.body-copy {
  font-family: var(--nimbus);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(30,4,4,0.78);
  max-width: 36ch;
}
.body-copy strong { font-weight: 600; color: var(--olive); }

/* Hand */
.hand { font-family: var(--hand); color: var(--red); line-height: 1; display: inline-block; }
.hand-lg { font-size: 28px; }
.hand-xl { font-size: 36px; }

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 660px;
  overflow: hidden;
  background: #0a0504;
  padding: 0;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: heroPan 22s ease-in-out infinite alternate;
}
@keyframes heroPan {
  0% { transform: scale(1.08) translate(0,0); }
  100% { transform: scale(1.15) translate(-2%,-2%); }
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,5,4,0.55) 0%, rgba(10,5,4,0) 28%, rgba(10,5,4,0) 48%, rgba(10,5,4,0.88) 92%, rgba(10,5,4,1) 100%);
}
.ember-flicker {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 60% 65%, rgba(226,90,28,0.35), transparent 70%),
    radial-gradient(40% 30% at 30% 75%, rgba(141,9,4,0.35), transparent 70%);
  mix-blend-mode: screen;
  animation: emberPulse 4s ease-in-out infinite;
}
@keyframes emberPulse {
  0%,100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.hero-top { position: absolute; top: 22px; left: 22px; color: #fff8ec; z-index: 3; }
.hero-top .eyebrow { color: #f3e7cf; opacity: 0.9; }
.hero-top .eyebrow::before { background: #f3e7cf; }

.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 22px 30px;
  color: #fff8ec;
  z-index: 3;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 50px;
  line-height: 0.94;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
  color: #fff8ec;
  position: relative;
}
.hero h1 .row1 { display: block; }
.hero h1 .row2 {
  display: block;
  font-family: var(--nimbus);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 6px;
  color: var(--gold);
  margin: 12px 0 4px;
}
.hero h1 .row3 {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #ffd9a0;
  font-size: 56px;
  line-height: 0.95;
}
.hero-sign {
  position: absolute;
  top: -18px; right: -4px;
  transform: rotate(-8deg);
  color: #ffb84d;
  font-size: 28px;
}
.hero p.lede {
  font-family: var(--nimbus);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
  color: rgba(255,248,236,0.85);
  max-width: 30ch;
}
.hero-ctas { display: flex; gap: 10px; }
.hero-ctas .btn { flex: 1; }

/* ─────────────────────────────────────────────────────────
   TRUST BAR (oscura)
   ───────────────────────────────────────────────────────── */
.trustbar {
  background: var(--olive);
  color: #fff8ec;
  padding: 20px 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  position: relative;
}
.trustbar::after {
  content: '';
  position: absolute; left: 22px; right: 22px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.tb-item {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--nimbus);
}
.tb-item .v {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: -0.3px;
  line-height: 1;
}
.tb-item .v .star { color: var(--gold); font-style: normal; }
.tb-item .lbl {
  font-size: 8.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,248,236,0.7);
  font-weight: 500;
  line-height: 1.15;
}

/* ─────────────────────────────────────────────────────────
   RESERVA — COVERMANAGER
   ───────────────────────────────────────────────────────── */
.reserva {
  background: #1E0404;
  color: #fff8ec;
  padding: 70px 22px 80px;
  position: relative;
  overflow: hidden;
}
.reserva::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.3;
}
.reserva .eyebrow { color: var(--gold); }
.reserva .eyebrow::before { background: var(--gold); }
.reserva .display { color: #fff8ec; margin-top: 14px; }
.reserva .display .it { color: var(--gold); }
.reserva .display .sans-line { color: rgba(255,248,236,0.6); }

.policy {
  margin: 28px 0 26px;
  padding: 18px 18px 18px 22px;
  background: rgba(255,248,236,0.04);
  border-left: 2px solid var(--gold);
}
.policy .label {
  font-family: var(--nimbus);
  font-size: 9.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.policy ul {
  list-style: none; margin: 0; padding: 0;
  font-family: var(--nimbus);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,248,236,0.85);
}
.policy ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.policy ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: -4px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}
.policy ul li:last-child { margin-bottom: 0; }
.policy ul li strong { color: #fff8ec; font-weight: 600; }

.cm-note {
  font-family: var(--nimbus);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

#coverManager-widget {
  background: #fff8f0;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  border: 2px dashed rgba(141,9,4,0.3);
}

/* ─────────────────────────────────────────────────────────
   PRECIOS — 3 tarjetas
   ───────────────────────────────────────────────────────── */
.precios { padding: 78px 22px 80px; }
.precios .eyebrow { margin-bottom: 18px; }
.precios .display { margin-bottom: 32px; }

.precio-card {
  background: var(--cream);
  border: 1px solid rgba(141,9,4,0.28);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 26px 22px 24px;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 18px 30px -22px rgba(30,4,4,0.18);
}
.precio-card .kicker {
  font-family: var(--nimbus);
  font-size: 9.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}
.precio-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.05;
  margin: 0 0 4px;
  color: var(--olive);
  letter-spacing: -0.4px;
}
.precio-card h3 em { font-style: italic; color: var(--red); font-weight: 400; }
.precio-card .when {
  font-family: var(--nimbus);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(30,4,4,0.6);
  margin-bottom: 18px;
}
.precio-card .prices-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 0 16px;
  border-top: 1px dotted rgba(30,4,4,0.18);
  border-bottom: 1px dotted rgba(30,4,4,0.18);
  margin-bottom: 14px;
}
.precio-card .price-block .lbl {
  font-family: var(--nimbus);
  font-size: 9px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(30,4,4,0.55);
  font-weight: 600;
  margin-bottom: 4px;
}
.precio-card .price-block .v {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: var(--olive);
  letter-spacing: -1px;
}
.precio-card .price-block .v small { font-size: 16px; color: var(--red); margin-left: 2px; }
.precio-card .price-block .sub {
  font-family: var(--nimbus);
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(30,4,4,0.5);
  margin-top: 3px;
}
.precio-card .fine {
  font-family: var(--nimbus);
  font-size: 10.5px;
  font-style: italic;
  color: rgba(30,4,4,0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}
.precio-card .fine strong { color: var(--olive); font-weight: 600; font-style: normal; }
.precio-card .btn { width: 100%; }
.precio-card.featured {
  border-left-color: var(--gold);
  background: linear-gradient(180deg, #FFFBF0 0%, #FBF1D7 100%);
}
.precio-card.featured .kicker { color: #b88736; }
.precio-card .stamp {
  position: absolute;
  top: -10px; right: 18px;
  background: var(--gold);
  color: var(--olive);
  font-family: var(--nimbus);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  transform: rotate(2deg);
}
.precios-carta-link {
  text-align: center;
  margin-top: 12px;
}
.precios-carta-link a {
  font-family: var(--nimbus);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  text-decoration: none;
}

/* ─────────────────────────────────────────────────────────
   GRID DE PLATOS
   ───────────────────────────────────────────────────────── */
.platos {
  padding: 70px 0 80px;
  background: var(--bg-2);
}
.platos .eyebrow,
.platos .display,
.platos .body-copy { margin-left: 22px; margin-right: 22px; }
.platos .display { margin-top: 14px; margin-bottom: 22px; }
.platos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 6px;
}
.plato {
  position: relative;
  overflow: hidden;
  background: #2a1108;
}
.plato img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.plato.tall { grid-row: span 2; aspect-ratio: 3/4.4; }
.plato.wide { aspect-ratio: 4/3; }
.plato .label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 14px 14px;
  color: #fff8ec;
  background: linear-gradient(180deg, rgba(10,5,4,0) 0%, rgba(10,5,4,0.85) 100%);
}
.plato .label .nm {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.plato .label .sm {
  font-family: var(--nimbus);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

/* ─────────────────────────────────────────────────────────
   CONCEPTO — olive
   ───────────────────────────────────────────────────────── */
.concepto {
  background: #1E0404;
  color: #fff8ec;
  padding: 80px 22px 90px;
}
.concepto .eyebrow { color: var(--gold); }
.concepto .eyebrow::before { background: var(--gold); }
.concepto .display { color: #fff8ec; margin-top: 14px; margin-bottom: 26px; }
.concepto .display .it { color: var(--gold); }
.concepto .display .sans-line { color: rgba(255,248,236,0.65); }
.concepto .body-copy { color: rgba(255,248,236,0.8); }
.valores {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  margin: 34px 0 24px;
}
.valor .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 6px;
}
.valor h4 {
  font-family: var(--nimbus);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #fff8ec;
}
.valor p {
  font-family: var(--nimbus);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,248,236,0.7);
  margin: 0;
}
.concepto-sign {
  text-align: right;
  margin-top: 28px;
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────
   SEO TEXTO
   ───────────────────────────────────────────────────────── */
.seo-bloque {
  padding: 70px 22px 60px;
  background: var(--bg);
}
.seo-bloque .eyebrow { margin-bottom: 14px; }
.seo-bloque h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.6px;
  color: var(--olive);
  margin: 0 0 18px;
}
.seo-bloque h2 em { font-style: italic; color: var(--red); }
.seo-bloque .body-copy { margin-bottom: 14px; max-width: 100%; }
.seo-bloque .body-copy a {
  color: var(--red);
  border-bottom: 1px solid rgba(141,9,4,0.3);
  text-decoration: none;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────
   RESEÑAS
   ───────────────────────────────────────────────────────── */
.resenas {
  padding: 70px 22px 80px;
}
.resenas .eyebrow { margin-bottom: 14px; }
.resenas-head {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 30px;
}
.resenas-head .score {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  letter-spacing: -2px;
}
.resenas-head .score small { font-size: 22px; color: var(--olive); font-style: normal; }
.resenas-head .meta { font-family: var(--nimbus); font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(30,4,4,0.6); line-height: 1.4; }
.resenas-head .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; display: block; margin-bottom: 4px; }
.resena-card {
  background: var(--cream);
  border: 1px solid rgba(30,4,4,0.1);
  border-radius: 4px;
  padding: 22px 20px;
  margin-bottom: 14px;
  position: relative;
}
.resena-card .stars-row { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 12px; }
.resena-card blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 14px;
  color: var(--olive);
  letter-spacing: -0.2px;
}
.resena-card .author {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--nimbus);
  font-size: 11px;
  color: rgba(30,4,4,0.65);
  letter-spacing: 0.4px;
}
.resena-card .author .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
}
.resena-card .author strong { color: var(--olive); font-weight: 600; }

/* ─────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────── */
.faqs { padding: 70px 22px 80px; background: var(--bg-2); }
.faqs .eyebrow { margin-bottom: 14px; }
.faqs .display { margin-bottom: 28px; }
.faq-item {
  border-top: 1px solid rgba(30,4,4,0.16);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(30,4,4,0.16); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 36px 22px 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--olive);
  cursor: pointer;
  position: relative;
  letter-spacing: -0.2px;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border: 1px solid rgba(30,4,4,0.3);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--nimbus);
  font-weight: 300;
  font-size: 18px;
  color: var(--red);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q::after {
  content: '−';
  background: var(--red);
  color: #fff8ec;
  border-color: var(--red);
  transform: translateY(-50%) rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 30px 22px 0;
  font-family: var(--nimbus);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(30,4,4,0.75);
}
.faq-a-inner a { color: var(--red); border-bottom: 1px solid rgba(141,9,4,0.3); text-decoration: none; }

/* ─────────────────────────────────────────────────────────
   MAPA + CONTACTO
   ───────────────────────────────────────────────────────── */
.contacto { padding: 70px 22px 80px; }
.contacto .eyebrow { margin-bottom: 14px; }
.contacto .display { margin-bottom: 22px; }
.map-wrap {
  width: 100%;
  aspect-ratio: 4/3.4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #1E0404;
  margin-bottom: 22px;
  box-shadow: 0 22px 40px -22px rgba(30,4,4,0.5);
  transform: rotate(-0.5deg);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-pin {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: #fff8ec;
  font-family: var(--nimbus);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 10px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(141,9,4,0.4);
}
.contacto-block {
  margin-bottom: 18px;
  display: flex;
  gap: 14px;
}
.contacto-block .ico {
  width: 36px; height: 36px;
  border: 1px solid rgba(30,4,4,0.18);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.contacto-block .ico svg { width: 15px; height: 15px; }
.contacto-block .info { flex: 1; }
.contacto-block .lbl {
  font-family: var(--nimbus);
  font-size: 9.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 3px;
}
.contacto-block .val {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: var(--olive);
  letter-spacing: -0.2px;
}
.contacto-block .val small {
  display: block;
  font-family: var(--nimbus);
  font-size: 12px;
  font-weight: 300;
  color: rgba(30,4,4,0.6);
  margin-top: 4px;
  font-style: normal;
  letter-spacing: 0.3px;
}
.contacto-block a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────────────────
   INSTAGRAM
   ───────────────────────────────────────────────────────── */
.ig-section {
  background: var(--olive);
  color: #fff8ec;
  padding: 70px 22px 80px;
}
.ig-section .eyebrow { color: var(--gold); }
.ig-section .eyebrow::before { background: var(--gold); }
.ig-section .display { color: #fff8ec; margin-top: 14px; margin-bottom: 8px; }
.ig-section .display .it { color: var(--gold); }
.ig-handle {
  font-family: var(--nimbus);
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,248,236,0.7);
  margin-bottom: 22px;
}
.ig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 22px;
}
.ig-tile {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ig-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,5,4,0.7) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ig-tile:hover::after { opacity: 1; }
.ig-reel {
  position: absolute; top: 6px; right: 6px;
  color: #fff8ec;
  opacity: 0.85;
}

/* ─────────────────────────────────────────────────────────
   CTA FINAL
   ───────────────────────────────────────────────────────── */
.cta-final {
  padding: 70px 22px 80px;
  text-align: center;
}
.cta-final .eyebrow { justify-content: center; }
.cta-final .display { margin: 14px 0 26px; }
.cta-final-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cta-final-row a small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 1.8px;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
footer {
  background: #0a0504;
  color: rgba(255,248,236,0.65);
  padding: 50px 22px 60px;
  text-align: center;
}
footer .foot-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.5px;
  display: inline-block;
}
footer .foot-mark b {
  font-family: var(--nimbus);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  color: #fff8ec;
  display: block;
  margin-top: 2px;
}
footer .foot-hand {
  font-family: var(--hand);
  color: var(--red);
  font-size: 22px;
  margin: 16px 0 14px;
  transform: rotate(-2deg);
  display: inline-block;
}
footer p {
  font-family: var(--nimbus);
  font-weight: 300;
  font-size: 11.5px;
  line-height: 1.6;
  margin: 0 auto 18px;
  max-width: 38ch;
}
footer .links {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  font-family: var(--nimbus);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
}
footer .links a { color: rgba(255,248,236,0.5); text-decoration: none; }
footer .copy {
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,248,236,0.35);
  margin-top: 30px;
}
