/* ──────────────── tokens ──────────────── */
:root {
  --paper: #f6f3ea;
  --paper-2: #ece6d3;
  --bone: #efece2;
  --white: #ffffff;
  --ink: #14110d;
  --ink-2: #4a463e;
  --ink-3: #8a8473;
  --fog: #d8d3c2;
  --rule: #14110d;
  --accent: #E63329;
  --accent-soft: #fef0ee;
  --green: #25D366;

  --font-sketch: 'Patrick Hand', 'Caveat', cursive;
  --font-hand: 'Caveat', cursive;
  --font-ui: 'Archivo', system-ui, sans-serif;

  --phone-w: 390px;
  --phone-r: 36px;
}

body.no-accent { --accent: #14110d; --accent-soft: #ece6d3; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #e6e1d1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.5), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.3), transparent 50%);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ──────────────── topbar ──────────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 28px;
  background: var(--ink); color: var(--paper);
  border-bottom: 1px solid #000;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.08em; font-size: 13px; }
.brand-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; }
.brand-sub { font-family: var(--font-hand); font-weight: 500; opacity: 0.55; letter-spacing: 0; font-size: 16px; margin-left: 6px; }
.tabs { display: flex; gap: 6px; flex: 1; }
.tab {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  background: transparent; color: rgba(246,243,234,.6);
  border: 1px solid rgba(246,243,234,.18);
  padding: 9px 14px; border-radius: 999px; cursor: pointer;
  transition: 0.18s;
}
.tab:hover { color: var(--paper); border-color: rgba(246,243,234,.5); }
.tab.active { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.tab--compare { margin-left: auto; border-style: dashed; }
.tools { display: flex; gap: 14px; }
.tool { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(246,243,234,.7); cursor: pointer; user-select: none; font-family: var(--font-hand); font-size: 16px; }
.tool input { accent-color: var(--accent); }

/* ──────────────── intro ──────────────── */
.intro {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  padding: 56px 56px 32px;
  max-width: 1400px;
}
.intro-col h1 { font-family: var(--font-ui); font-weight: 800; font-size: 36px; line-height: 1.1; letter-spacing: -0.02em; margin: 12px 0 16px; text-wrap: balance; }
.intro-col p { color: var(--ink-2); font-size: 16px; line-height: 1.5; }
.intro-col em { font-style: normal; background: linear-gradient(transparent 70%, var(--accent-soft) 70%); padding: 0 2px; }
.intro-checklist ul { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 6px; }
.intro-checklist li { font-family: var(--font-hand); font-size: 19px; color: var(--ink); padding-left: 22px; position: relative; }
.intro-checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.lbl {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2);
}
.lbl.light { color: rgba(255,255,255,0.6); }

/* ──────────────── stage / dir headers ──────────────── */
.stage { padding: 0 56px 56px; max-width: 1400px; margin: 0 auto; }
.dir { padding-top: 16px; }
.dir[hidden] { display: none; }
.dir-header { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: end; padding: 32px 0 28px; border-top: 1px solid var(--ink); margin-top: 24px; }
.dir-num { display: inline-block; font-family: var(--font-ui); font-weight: 800; font-size: 12px; color: var(--accent); letter-spacing: 0.18em; }
.dir-title { font-family: var(--font-ui); font-weight: 800; font-size: 38px; line-height: 1; letter-spacing: -0.02em; margin: 8px 0 0; }
.dir-title em { font-family: var(--font-hand); font-weight: 500; font-style: normal; color: var(--ink-3); font-size: 30px; margin-left: 8px; }
.dir-desc { font-size: 15px; color: var(--ink-2); margin: 0; max-width: 56ch; }

/* ──────────────── phone frame ──────────────── */
.phone-row {
  display: grid; grid-template-columns: var(--phone-w) 1fr;
  gap: 56px;
  align-items: start;
}
.phone {
  width: var(--phone-w);
  background: var(--ink);
  border-radius: var(--phone-r);
  padding: 12px;
  box-shadow:
    0 0 0 1px #000,
    0 30px 60px -20px rgba(0,0,0,.35),
    0 8px 16px -8px rgba(0,0,0,.2);
  position: sticky; top: 84px;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--paper); font-size: 11px; font-family: var(--font-ui); font-weight: 600;
  padding: 6px 16px 10px;
  letter-spacing: 0.04em;
}
.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  max-height: 720px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-3) transparent;
  position: relative;
}
.phone-screen::-webkit-scrollbar { width: 6px; }
.phone-screen::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 4px; }
.phone-screen--paper { background: var(--paper); color: var(--ink); }
.phone-screen--white { background: var(--white); color: var(--ink); }

/* ──────────────── notes panel beside phone ──────────────── */
.phone-notes { display: grid; gap: 22px; padding-top: 12px; }
.phone-notes[hidden] { display: none; }
.ann {
  position: relative;
  background: #fffdf6;
  border: 1px dashed var(--ink);
  border-radius: 6px;
  padding: 14px 16px 14px 22px;
  font-family: var(--font-hand);
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  transform: rotate(-0.2deg);
  box-shadow: 1px 2px 0 rgba(0,0,0,0.06);
}
.ann:nth-child(even) { transform: rotate(0.3deg); }
.ann-arrow { position: absolute; left: -22px; top: 50%; width: 30px; height: 1px; background: var(--ink); }
.ann-arrow::before { content: ''; position: absolute; right: -1px; top: -5px; border-left: 8px solid var(--ink); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.ann-body strong { display: block; font-family: var(--font-ui); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; color: var(--accent); }
.ann-body p { margin: 0; }
.ann--warn { background: #fff3f0; border-color: var(--accent); }
.ann--warn .ann-body strong { color: var(--accent); }

/* ──────────────── mobile screen primitives ──────────────── */
.m-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--ink);
  background: inherit;
  position: sticky; top: 0; z-index: 5;
}
.m-nav--clean { border-bottom-color: var(--fog); background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); }
.m-nav--editorial { border-bottom: none; padding: 18px 18px 12px; }
.m-nav-right { display: flex; align-items: center; gap: 12px; }
.m-wp { background: var(--green); color: white; font-family: var(--font-ui); font-weight: 800; font-size: 10px; padding: 5px 8px; border-radius: 999px; letter-spacing: 0.05em; }
.m-burger { font-size: 22px; font-weight: 600; line-height: 1; }
/* ──────────────── mobile menu overlay ──────────────── */
.m-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(230, 51, 41, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(247, 178, 35, 0.10), transparent 70%),
    var(--paper);
  color: var(--ink);
  z-index: 100;
  padding: 18px 24px 28px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  overflow-y: auto;
}
.m-menu.open { opacity: 1; pointer-events: auto; }
.phone-screen.menu-open { overflow: hidden !important; }

.m-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(20,17,13,0.12);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 1;
}
.m-menu-head .m-nav-logo { height: 26px; filter: none; }

.m-menu-close {
  background: rgba(20,17,13,0.04);
  border: 1.5px solid rgba(20,17,13,0.2);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: 0.18s;
}
.m-menu-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
  transform: rotate(90deg);
}

.m-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 22px 0 0;
  flex: 1;
}
.m-menu-list a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(20,17,13,0.1);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: padding-left 0.18s, background 0.18s;
}
.m-menu-list a:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(230,51,41,0.06), transparent 70%);
}
.m-menu-list a:first-child { border-top: 1px solid rgba(20,17,13,0.1); }
.m-menu-list a::after { content: none; }

.m-menu-num {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  line-height: 1;
}
.m-menu-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.m-menu-title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.m-menu-sub {
  font-family: var(--font-hand);
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.2;
}
.m-menu-ext {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
  font-family: var(--font-ui);
  vertical-align: 1px;
}
.m-menu-arrow {
  font-size: 18px;
  color: rgba(20,17,13,0.3);
  transition: transform 0.18s, color 0.18s;
}
.m-menu-list a:hover .m-menu-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

/* Footer of menu */
.m-menu-foot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(20,17,13,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.m-menu-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  padding: 5px 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.14em;
  background: transparent;
  color: var(--ink);
  transform: rotate(-1.5deg);
}
.m-menu-seal .seal-line { font-size: 9px; color: var(--ink-2); }
.m-menu-seal .seal-year { font-size: 16px; font-weight: 900; color: var(--accent); letter-spacing: -0.01em; }

.btn--menu-wp {
  background: var(--green);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-shadow: 0 6px 16px -4px rgba(37, 211, 102, 0.4);
  transition: 0.18s;
}
.btn--menu-wp:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn--menu-wp .wp-svg { width: 18px; height: 18px; }
.btn--menu-wp span { letter-spacing: 0.06em; }

.m-menu-contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid rgba(20,17,13,0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.4);
}
.m-menu-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid rgba(20,17,13,0.08);
  transition: background 0.15s;
}
.m-menu-contact-row:last-child { border-bottom: none; }
.m-menu-contact-row:hover { background: rgba(20,17,13,0.04); }
.m-menu-contact-lbl {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.m-menu-contact-val {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.m-burger {
  background: transparent;
  border: none;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  padding: 4px 8px;
}
.m-wp { text-decoration: none; }

/* Lang toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-toggle:hover { background: var(--ink); color: var(--paper); }
.lang-toggle:hover .lang-sep { color: rgba(246,243,234,0.4); }
.lang-opt {
  padding: 0 2px;
  opacity: 0.4;
  transition: opacity 0.15s, color 0.15s;
}
.lang-opt.is-active { opacity: 1; color: var(--accent); }
.lang-sep { color: var(--ink-3); font-weight: 400; }

.logo-mark {
  font-family: var(--font-ui); font-weight: 900;
  font-size: 18px; letter-spacing: 0.04em;
  border: 1.5px solid var(--ink);
  padding: 6px 10px;
}
.logo-mark--clean { border: none; padding: 0; font-weight: 800; letter-spacing: -0.02em; }
.logo-mark--vert { line-height: 0.95; }

.wp-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--ink); padding: 6px 10px; border-radius: 999px;
  font-family: var(--font-ui); font-weight: 700; font-size: 11px; letter-spacing: 0.06em;
}
.wp-pill--green { background: var(--green); color: white; border-color: var(--green); }
.wp-pill--sm { padding: 5px 8px; font-size: 10px; }
.wp-icon { width: 12px; height: 12px; background: currentColor; border-radius: 50%; display: inline-block; position: relative; }
.wp-icon::after { content: ''; position: absolute; right: -2px; bottom: -1px; width: 5px; height: 5px; background: currentColor; clip-path: polygon(0 0, 100% 0, 100% 100%); }

/* hero variants */
.m-hero { padding: 28px 20px 32px; position: relative; }

/* dir 1 hero */
.m-hero--stamp {
  text-align: center;
  background: var(--paper);
  color: var(--ink);
  padding: 32px 22px 36px;
  margin-bottom: 0;
}
.logo-hero-img {
  display: block;
  width: 92%;
  max-width: 360px;
  margin: 8px auto 18px;
}

.logo-hero-seal {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--ink);
  padding: 6px 14px;
  font-family: var(--font-ui); font-weight: 700;
  letter-spacing: 0.14em;
  background: transparent;
  color: var(--ink);
  transform: rotate(-1.5deg);
  margin-bottom: 18px;
}
.seal-line { font-size: 9px; color: var(--ink-2); }
.seal-year { font-size: 18px; font-weight: 900; color: var(--accent); letter-spacing: -0.01em; }

/* dir 1 nav: paper bg, logo natural (already dark) */
.m-nav--dir1 { background: var(--paper); }
.m-nav-logo {
  height: 26px;
  width: auto;
}
.m-nav-logo-link, .d-nav-logo-link { display: inline-flex; text-decoration: none; }
.m-nav-logo-link:hover, .d-nav-logo-link:hover { opacity: 0.7; }

/* dir 1 footer: dark, logo at full natural light color */
.m-footer--dir1 {
  padding: 28px 20px 36px;
  display: grid;
  place-items: center;
  gap: 10px;
}
.m-footer-logo {
  width: 70%;
  max-width: 220px;
  height: auto;
  margin-bottom: 6px;
  filter: invert(1);
}
.m-h1 { font-family: var(--font-ui); font-weight: 800; font-size: 28px; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 14px; text-wrap: balance; }
.m-h2 { font-family: var(--font-ui); font-weight: 800; font-size: 24px; line-height: 1.08; letter-spacing: -0.02em; margin: 6px 0 14px; text-wrap: balance; }
.m-h2.light, .m-h1.light { color: white; }

/* dir 2 hero */
.m-hero--bento .badge {
  display: inline-block; padding: 5px 10px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.accent { color: var(--accent); }
.badge { display: inline-block; padding: 5px 10px; background: var(--ink); color: var(--paper); font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; }
.badge--corner { position: absolute; right: 18px; bottom: 18px; background: var(--accent); color: white; }

/* m-cta buttons */
.m-cta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 16px; border: 1.5px solid var(--ink);
  font-family: var(--font-ui); font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: transparent; color: var(--ink);
  flex: 1 1 auto; min-width: 120px;
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--white { background: white; color: var(--ink); border-color: white; }
.btn--ghost { border-color: rgba(255,255,255,.4); color: white; }

/* placeholders / images */
.ph {
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hand);
  font-size: 16px;
  color: var(--ink-2);
  aspect-ratio: 4 / 3;
  min-height: 90px;
  overflow: hidden;
}
.ph::before, .ph::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-color: var(--ink-3);
}
.ph::before { background: linear-gradient(to bottom right, transparent calc(50% - .5px), var(--ink-3) calc(50% - .5px), var(--ink-3) calc(50% + .5px), transparent calc(50% + .5px)); opacity: 0.25; }
.ph::after { background: linear-gradient(to top right, transparent calc(50% - .5px), var(--ink-3) calc(50% - .5px), var(--ink-3) calc(50% + .5px), transparent calc(50% + .5px)); opacity: 0.25; }
.ph > span { position: relative; z-index: 1; background: var(--paper-2); padding: 4px 8px; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--tall { aspect-ratio: 4 / 5; }
.ph--xl { aspect-ratio: 4 / 3; margin-top: 8px; }
.ph--sq { aspect-ratio: 1; min-width: 90px; }
.ph--full { aspect-ratio: 4 / 5; margin: 10px 0; }
.ph--map { aspect-ratio: 16 / 9; background: repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 8px, var(--paper) 8px, var(--paper) 16px); }
.ph--map > span { background: var(--paper); border: 1px solid var(--ink-2); padding: 4px 10px; font-family: var(--font-ui); font-size: 11px; }

/* photo holder: real image, no X-cross overlay */
.ph--photo::before, .ph--photo::after { display: none; }
.ph--photo { padding: 0; background: #000; }
.ph--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* placeholder text lines */
.ph-line {
  height: 8px; background: var(--ink-3); opacity: 0.25;
  margin: 6px 0; border-radius: 2px;
}
.ph-line--85 { width: 85%; }
.ph-line--80 { width: 80%; }
.ph-line--70 { width: 70%; }
.ph-line--60 { width: 60%; }
.ph-line--40 { width: 40%; }

/* polaroid */
.polaroid {
  background: white;
  padding: 10px 10px 30px;
  border: 1px solid var(--ink);
  box-shadow: 2px 4px 0 rgba(0,0,0,0.08);
  margin: 16px auto;
  width: 80%;
  position: relative;
}
.polaroid .ph { aspect-ratio: 1; }
.polaroid .ph > span { background: white; }
.poloroid-cap {
  position: absolute; bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-hand); font-size: 16px; color: var(--ink);
}
.rot-l { transform: rotate(-1.5deg); }
.rot-r { transform: rotate(1.5deg); }

/* m-band */
.m-band {
  padding: 30px 20px 24px;
  border-top: 1px solid var(--ink);
  position: relative;
}
.m-band--tan { background: var(--paper-2); }
.m-band--bone { background: var(--bone); }
.m-band--mute { background: #f6f4ef; border-top-color: var(--fog); }
.m-band--ink { background: var(--ink); color: var(--paper); border-top: none; }
.m-band--ink .ph { background: #222; border-color: #444; color: #888; }
.m-band--ink .ph > span { background: #222; }
.m-band--ink p.light, .m-band--ink p { color: rgba(255,255,255,0.7); }
.m-band--accent { background: var(--accent); color: white; border-top: none; }
.m-band--accent .lbl, .m-band--accent p { color: rgba(255,255,255,0.85); }

.m-polaroid-stack { display: grid; gap: 0; }
.m-polaroid-stack .polaroid { margin: 12px auto; }
.m-polaroid-stack .polaroid:nth-child(even) { transform: rotate(0.8deg) translateX(8px); }
.m-polaroid-stack .polaroid:nth-child(odd) { transform: rotate(-1deg) translateX(-4px); }

/* sticker */
.sticker {
  display: inline-block;
  padding: 18px 22px;
  font-family: var(--font-ui); font-weight: 900; font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  position: relative;
  margin-bottom: 16px;
  transform: rotate(-2deg);
  border: 2.5px solid var(--ink);
}
.sticker--red { background: var(--accent); color: white; border-color: var(--ink); }
.sticker--dark { background: var(--ink); color: var(--paper); transform: rotate(2deg); }
.sticker-lbl { letter-spacing: 0.04em; }
.sticker-burst {
  position: absolute; right: -18px; top: -18px;
  background: white; color: var(--ink);
  border: 2px solid var(--ink);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hand); font-size: 14px; font-weight: 700;
  text-align: center; line-height: 1;
  transform: rotate(8deg);
}

/* Snack Kids — cumples infantiles section, playful */
.m-band--kids {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(48, 164, 220, 0.18), transparent 60%),
    radial-gradient(ellipse 90% 60% at 90% 100%, rgba(247, 178, 35, 0.20), transparent 60%),
    #fff8e6;
  position: relative;
  overflow: hidden;
  padding: 32px 18px 36px;
  border-top: 3px dashed var(--ink);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.m-band--kids > * { position: relative; z-index: 2; }
.m-band--kids .kids-confetti { z-index: 1; }

/* confetti specks */
.kids-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.conf { position: absolute; width: 10px; height: 4px; border-radius: 2px; opacity: 0.85; transform-origin: center; }
.conf.c1  { top:  4%; left:  8%; background: #30a4dc; transform: rotate(20deg); }
.conf.c2  { top: 10%; left: 72%; background: #f7b223; transform: rotate(-15deg); width: 12px; }
.conf.c3  { top: 18%; left: 90%; background: #e63329; transform: rotate(40deg); }
.conf.c4  { top: 36%; left:  3%; background: #f7b223; transform: rotate(-30deg); width: 6px; height: 6px; border-radius: 50%; }
.conf.c5  { top: 48%; left: 95%; background: #30a4dc; transform: rotate(60deg); }
.conf.c6  { top: 62%; left:  6%; background: #e63329; transform: rotate(-10deg); width: 8px; height: 8px; border-radius: 50%; }
.conf.c7  { top: 70%; left: 80%; background: #7bbf42; transform: rotate(25deg); }
.conf.c8  { top: 82%; left: 14%; background: #30a4dc; transform: rotate(-45deg); width: 12px; }
.conf.c9  { top: 90%; left: 60%; background: #f7b223; transform: rotate(15deg); width: 6px; height: 6px; border-radius: 50%; }
.conf.c10 { top: 95%; left: 92%; background: #e63329; transform: rotate(-20deg); }

/* ── kids hero card ── */
.kids-card {
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
}
.kids-card-photo {
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.kids-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.kids-tag-edad {
  position: absolute;
  top: 12px; right: 12px;
  background: #f7b223;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(3deg);
}
.kids-card-body {
  padding: 20px 18px 24px;
  text-align: center;
  background: white;
  position: relative;
}
.kids-logo {
  width: 64%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: -52px auto 8px;
  filter: drop-shadow(2px 2px 0 rgba(20,17,13,0.15));
  position: relative;
  z-index: 2;
}

.kids-lead {
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 10px 0 0;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kids-word { display: inline-block; }
.kids-word--1 { color: #e63329; transform: rotate(-1.5deg); }
.kids-word--2 { color: #30a4dc; transform: rotate(0.5deg); font-size: 30px; }
.kids-word--3 { color: var(--ink); transform: rotate(-0.5deg); }

/* ── steps ── */
.kids-steps .lbl { display: block; margin-bottom: 12px; text-align: center; }
.kids-steps-row { display: grid; gap: 10px; }
.kids-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 3px 3px 0 var(--ink);
}
.kids-step--alt { background: #fff4d9; }
.kids-step-num {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 16px;
}
.kids-step:nth-child(2) .kids-step-num { background: #30a4dc; }
.kids-step:nth-child(3) .kids-step-num { background: #f7b223; color: var(--ink); }
.kids-step-text { display: flex; flex-direction: column; line-height: 1.2; }
.kids-step-text strong { font-family: var(--font-ui); font-weight: 800; font-size: 14px; }
.kids-step-text span { font-size: 12px; color: var(--ink-2); margin-top: 2px; }

/* ── qué incluye ── */
.kids-includes .lbl { display: block; margin-bottom: 12px; text-align: center; }
.kids-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kids-feat {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  box-shadow: 3px 3px 0 var(--ink);
}
.kids-feat--a { transform: rotate(-1.2deg); background: #fff4d9; }
.kids-feat--b { transform: rotate(1deg); background: #d8eef8; }
.kids-feat--c { transform: rotate(1deg); background: #ffe4e1; }
.kids-feat--d { transform: rotate(-1deg); background: #e6f3d5; }
.kids-feat-emoji {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(1px 2px 0 rgba(0,0,0,0.12));
}
.kids-feat-text {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.kids-feat-text small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0;
  margin-top: 2px;
}
.kids-feat-only {
  display: inline-block;
  margin-top: 4px;
  background: #f7b223;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── quick stats ── */
.kids-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--ink);
  color: white;
  border-radius: 14px;
  padding: 16px 4px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 #f7b223;
}
.kids-stat {
  text-align: center;
  padding: 0 4px;
  border-right: 1px dashed rgba(255,255,255,0.25);
}
.kids-stat:last-child { border-right: none; }
.kids-stat-n {
  display: block;
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f7b223;
}
.kids-stat-l {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ── testimonial nota ── */
.kids-quote {
  background: #fffdf6;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 18px 18px 16px;
  position: relative;
  transform: rotate(-0.8deg);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-hand);
  font-size: 18px;
  line-height: 1.35;
}
.kids-quote::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 60px; height: 16px;
  background: rgba(247, 178, 35, 0.55);
  border-radius: 1px;
}
.kids-quote-mark {
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 50px;
  line-height: 0.5;
  color: var(--accent);
  position: absolute;
  top: 14px;
  left: 14px;
  opacity: 0.18;
}
.kids-quote p { margin: 0 0 8px; padding-left: 16px; }
.kids-quote-author {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding-left: 16px;
}

/* ── final cta ── */
.kids-cta-block {
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 22px 18px 20px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
}
.kids-cta-title {
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--ink);
}
.kids-cta-sub {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--ink-2);
}

.m-cta--kids { gap: 10px; margin: 0 0 8px; }
.btn--kids-primary {
  background: #25D366;
  color: white;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 14px 16px;
  font-size: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  flex: 1 1 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wp-icon-mini {
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.wp-icon-mini::after {
  content: '';
  position: absolute;
  right: -2px; bottom: -1px;
  width: 5px; height: 5px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.btn--kids-ghost {
  background: white;
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 14px 16px;
  font-size: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  flex: 1 1 100%;
}

/* bullets */
.bullet-list { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 6px; }
.bullet-list li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.4; }
.bullet-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.bullet-list--lg li { font-size: 15px; }

.micro { font-family: var(--font-hand); font-size: 16px; color: var(--ink-3); margin: 6px 0; }
.micro.light { color: rgba(255,255,255,0.65); }
.center { text-align: center; }
.big { font-family: var(--font-ui); font-weight: 700; font-size: 17px; margin: 8px 0; }

/* timeline (dir 1) */
.m-timeline { display: grid; gap: 0; margin: 16px 0; position: relative; padding-left: 22px; }
.m-timeline::before { content: ''; position: absolute; left: 8px; top: 14px; bottom: 14px; width: 1px; background: var(--ink); }
.tl-node { padding: 8px 0 14px; position: relative; }
.tl-node::before { content: ''; position: absolute; left: -22px; top: 12px; width: 14px; height: 14px; border: 2px solid var(--ink); background: var(--paper); border-radius: 50%; }
.tl-year { font-family: var(--font-ui); font-weight: 900; font-size: 22px; color: var(--accent); letter-spacing: -0.01em; }
.tl-card { font-size: 13px; color: var(--ink-2); margin-top: 2px; line-height: 1.4; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; margin: 16px 0; font-size: 13px; }
.contact-grid div { line-height: 1.4; }
.social-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--ink); padding: 5px 10px; border-radius: 999px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
}
.chip--light { border-color: rgba(255,255,255,0.5); color: white; }

/* footer */
.m-footer {
  padding: 22px 20px 30px;
  text-align: center;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-ui); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em;
  display: grid; gap: 6px;
}
.m-footer--ed { background: transparent; color: var(--ink-2); border-top: 1px solid var(--fog); }

/* fab */
.fab {
  position: sticky;
  bottom: 16px;
  margin: -56px 16px 16px auto;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.18);
  z-index: 6;
  color: white;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  animation: fab-pulse 3.4s ease-in-out infinite;
}
.fab:hover { transform: scale(1.06); box-shadow: 0 12px 26px -4px rgba(37, 211, 102, 0.55); }
.fab .wp-svg { width: 28px; height: 28px; }

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50%      { box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* generic WP svg sizing */
.wp-svg { display: inline-block; width: 16px; height: 16px; }

/* WhatsApp CTA button (replaces .btn--solid for WP-specific actions) */
.btn--wp-cta {
  background: #25D366;
  color: white;
  border: 1.5px solid #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.18s;
}
.btn--wp-cta:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}
.btn--wp-cta .wp-svg { width: 16px; height: 16px; }

/* ──────────────── dir 2: bento grid ──────────────── */
.m-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; }
.m-bento-tile { background: white; border: 1.5px solid var(--ink); display: flex; flex-direction: column; overflow: hidden; }
.m-bento-tile .ph { border: none; aspect-ratio: 3 / 2; }
.m-bento-tile .ph > span { background: var(--paper-2); }
.bento-meta { padding: 10px 12px; }
.bento-meta h3 { margin: 0 0 2px; font-family: var(--font-ui); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; }
.bento-meta p { margin: 0; font-size: 11px; color: var(--ink-2); }
.m-bento-tile--xl { grid-column: 1 / -1; }
.m-bento-tile--xl .ph { aspect-ratio: 16 / 9; }
.m-bento-tile--wide { grid-column: 1 / -1; }
.m-bento-tile--wide .ph { aspect-ratio: 21 / 9; }

/* duo card (cumples / eventos in dir 2) */
.duo-card { background: white; border: 1.5px solid var(--ink); overflow: hidden; }
.duo-card .ph { border: none; border-bottom: 1.5px solid var(--ink); }
.duo-body { padding: 18px 18px 20px; }
.tag { display: inline-block; padding: 4px 10px; font-family: var(--font-ui); font-weight: 700; font-size: 10px; letter-spacing: 0.14em; margin-bottom: 8px; }
.tag--red { background: var(--accent); color: white; }
.tag--dark { background: var(--ink); color: var(--paper); }
.duo-body h3 { font-family: var(--font-ui); font-weight: 800; font-size: 22px; line-height: 1.05; margin: 4px 0 12px; letter-spacing: -0.02em; }

/* price strip */
.price-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin: 12px 0; }
.price-strip--alt { grid-template-columns: 1fr 1fr; }
.price { border: 1px solid var(--ink); padding: 10px 8px; text-align: center; display: grid; gap: 2px; }
.price-name { font-family: var(--font-ui); font-weight: 700; font-size: 9px; letter-spacing: 0.1em; color: var(--ink-2); }
.price-val { font-family: var(--font-ui); font-weight: 800; font-size: 13px; }
.price--feat { background: var(--ink); color: var(--paper); }
.price--feat .price-name { color: rgba(246,243,234,0.7); }

/* promos */
.m-promos { display: grid; gap: 8px; margin: 14px 0; }
.promo-card { background: rgba(255,255,255,0.12); border: 1.5px solid white; padding: 12px 14px; display: flex; align-items: center; gap: 16px; color: white; }
.promo-day { font-family: var(--font-ui); font-weight: 800; font-size: 11px; letter-spacing: 0.14em; min-width: 60px; }
.promo-name { font-family: var(--font-ui); font-weight: 600; font-size: 14px; }

/* carta scroll */
.m-carta-scroll { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 14px; scrollbar-width: thin; }
.m-carta-scroll > .ph, .m-carta-scroll > .carta-cat { flex: 0 0 100px; }
.carta-cat { text-align: center; font-family: var(--font-ui); font-weight: 600; font-size: 12px; }
.carta-cat .ph { margin-bottom: 4px; }

/* stats */
.m-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 16px 0; }
.stat { text-align: center; border: 1.5px solid var(--ink); padding: 10px 4px; }
.stat-n { display: block; font-family: var(--font-ui); font-weight: 900; font-size: 28px; line-height: 1; color: var(--accent); letter-spacing: -0.02em; }
.stat-l { display: block; font-family: var(--font-ui); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-top: 4px; }

/* ──────────────── dir 3: editorial ──────────────── */
.phone-screen--editorial { background: white; }
.ed-section { padding: 36px 22px 40px; border-bottom: 1px solid var(--fog); position: relative; }
.ed-section--hero { padding-top: 28px; }
.ed-section--dark { background: var(--ink); color: white; }
.ed-section--dark .lbl, .ed-section--dark .light { color: rgba(255,255,255,0.85); }
.ed-section--dark .ph { background: #222; border-color: #444; color: #777; }
.ed-section--dark .ph > span { background: #222; }
.ed-section--dark .micro.light { color: rgba(255,255,255,0.55); }
.ed-section--dark .form-mini { color: white; }
.ed-section--bone { background: var(--bone); }

.huge { font-family: var(--font-ui); font-weight: 800; font-size: 48px; line-height: 0.95; letter-spacing: -0.035em; margin: 8px 0 18px; text-wrap: balance; }
.huge.light { color: white; }

.ed-tabs { display: flex; gap: 6px; margin: 14px 0; overflow-x: auto; padding-bottom: 4px; }
.ed-tab { padding: 8px 12px; border: 1px solid var(--ink); font-family: var(--font-ui); font-weight: 600; font-size: 11px; letter-spacing: 0.06em; white-space: nowrap; }
.ed-tab.active { background: var(--ink); color: white; }
.ed-tabs--dark .ed-tab { border-color: rgba(255,255,255,0.4); color: white; }
.ed-tabs--dark .ed-tab.active { background: white; color: var(--ink); border-color: white; }

.hero-marquee {
  margin-top: 18px;
  display: flex; gap: 14px; overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--fog); border-bottom: 1px solid var(--fog);
  padding: 8px 0;
  font-family: var(--font-ui); font-weight: 800; font-size: 12px; letter-spacing: 0.1em;
  color: var(--ink-2);
}

/* paquetes */
.paquetes { display: grid; gap: 10px; margin: 14px 0; }
.paq { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.3); padding: 14px; color: white; }
.paq-head { font-family: var(--font-ui); font-weight: 800; font-size: 12px; letter-spacing: 0.14em; }
.paq-tag { background: var(--accent); padding: 2px 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; margin-left: 6px; vertical-align: 2px; }
.paq-price { font-family: var(--font-ui); font-weight: 900; font-size: 26px; line-height: 1; margin: 6px 0 8px; letter-spacing: -0.02em; }
.paq ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.paq ul li { font-size: 12px; color: rgba(255,255,255,0.85); padding-left: 14px; position: relative; }
.paq ul li::before { content: '·'; position: absolute; left: 4px; font-weight: 700; }
.paq--feat { background: var(--accent); border-color: var(--accent); }

/* form mini */
.form-mini { background: rgba(0,0,0,0.04); border: 1px dashed var(--ink); padding: 16px; margin: 16px 0; display: grid; gap: 8px; }
.ed-section--dark .form-mini { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.form-label { font-family: var(--font-ui); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }
.form-field { background: white; border: 1px solid var(--ink); padding: 10px 12px; font-family: var(--font-hand); font-size: 16px; color: var(--ink-3); }
.ed-section--dark .form-field { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.5); }

/* big number for history */
.big-number {
  font-family: var(--font-ui); font-weight: 900;
  font-size: 140px; line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--accent);
  position: relative; display: inline-block;
  margin: 10px 0 6px;
}
.big-number-sub { font-size: 22px; color: var(--ink); font-weight: 700; letter-spacing: 0; margin-left: 8px; vertical-align: 40px; }
.lead { font-size: 17px; line-height: 1.4; color: var(--ink); font-weight: 500; }

/* ──────────────── DESKTOP PREVIEW ──────────────── */
.desktop-preview {
  margin: 56px 0 0;
  padding-top: 40px;
  border-top: 1px dashed var(--ink-3);
}
.desktop-header {
  margin-bottom: 24px;
  max-width: 720px;
}
.desktop-header h3 {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
}
.desktop-header p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 60ch;
}

/* browser window chrome */
.bw {
  background: white;
  border: 1px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35);
}
.bw-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #ece8de;
  border-bottom: 1px solid var(--ink);
}
.bw-dot { width: 11px; height: 11px; border-radius: 50%; background: #d8d3c2; }
.bw-dot:nth-child(1) { background: #ff5f57; }
.bw-dot:nth-child(2) { background: #ffbd2e; }
.bw-dot:nth-child(3) { background: #28c840; }
.bw-url {
  margin-left: 16px;
  background: white;
  border: 1px solid var(--fog);
  border-radius: 6px;
  padding: 5px 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--ink-2);
  flex: 1;
  max-width: 340px;
}
.bw-page {
  background: var(--paper);
  position: relative;
  min-height: 600px;
}

/* desktop nav */
.d-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 40px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 5;
}
.d-nav-logo {
  height: 32px;
  width: auto;
}
.d-nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.d-nav-links span {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.d-wp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* desktop hero */
.d-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px 56px 56px;
  align-items: center;
  position: relative;
}
.d-hero-lockup {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}
.d-hero-logo {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0;
}
.d-hero-seal {
  margin: 0 0 6px;
  transform: rotate(-1.5deg);
}
.d-h1 {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.d-lead {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 20px;
}
.d-hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}
.d-hero-right .polaroid--big {
  width: 88%;
  max-width: 420px;
  padding: 14px 14px 44px;
  margin: 0;
}
.d-hero-right .polaroid--big .ph { aspect-ratio: 4/3; }
.d-hero-right .polaroid--big .poloroid-cap { font-size: 18px; bottom: 12px; }
.d-hero-tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 90px;
  height: 22px;
  background: rgba(247, 178, 35, 0.55);
  border: 1px dashed rgba(20,17,13,0.25);
  z-index: 2;
}

/* desktop bands */
.d-band {
  padding: 48px 56px;
  border-top: 1px solid var(--ink);
}
.d-band--tan { background: var(--paper-2); }
.d-band--ink { background: var(--ink); color: var(--paper); }
.d-band--ink .ph { background: #222; border-color: #444; color: #777; }
.d-band--ink .ph > span { background: #222; }

/* ──────────────── RISTREL · la carta ──────────────── */
.m-band--ristrel,
.d-band--ristrel {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(230, 51, 41, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(247, 178, 35, 0.10), transparent 60%),
    #181410;
  color: var(--paper);
  border-top: none;
  position: relative;
  overflow: hidden;
}
.m-band--ristrel { padding: 36px 22px 32px; }
.d-band--ristrel { padding: 56px 56px 56px; }

.ristrel-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03), transparent 30%);
}

.m-band--ristrel > *,
.d-band--ristrel > * { position: relative; z-index: 2; }

/* Header lockup */
.ristrel-head {
  text-align: center;
  margin-bottom: 22px;
}
.ristrel-head .lbl.light {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.55);
}
.ristrel-logo {
  display: block;
  width: 78%;
  max-width: 280px;
  height: auto;
  margin: 0 auto 4px;
}
.ristrel-logo--d {
  margin: 4px 0 6px;
  max-width: 360px;
}
.ristrel-tagline {
  font-family: var(--font-hand);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Photo with badge */
.ristrel-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
}
.ristrel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ristrel-photo--d { aspect-ratio: 4 / 5; margin-bottom: 0; }
.ristrel-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(20, 17, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.ristrel-photo-badge-em { font-size: 18px; }

/* Categories */
.ristrel-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.ristrel-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 9px 14px 9px 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
}
.ristrel-cat-em { font-size: 15px; line-height: 1; }
.ristrel-cat--more {
  background: transparent;
  border-style: dashed;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* Hours strip */
.ristrel-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 22px;
}
.ristrel-hours-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
  flex: 0 0 10px;
}
.ristrel-hours-body { display: flex; flex-direction: column; line-height: 1.2; }
.ristrel-hours-status {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
}
.ristrel-hours-time {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* CTAs */
.ristrel-cta {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}
.btn--ristrel-primary {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--paper);
  border-radius: 999px;
  padding: 16px 18px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.15s;
}
.btn--ristrel-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }

.reserva-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* Reservar mesa button */
.btn--ristrel-reserva {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 13px 18px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn--ristrel-reserva:hover { border-color: var(--paper); }

.ristrel-foot {
  font-family: var(--font-hand);
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

/* Desktop ristrel layout */
.d-ristrel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.d-ristrel .ristrel-head { text-align: left; margin-bottom: 0; }
.d-ristrel .ristrel-logo--d { margin: 6px 0 8px; }
.d-ristrel-left { display: flex; flex-direction: column; }
.d-ristrel-left .ristrel-cta { grid-template-columns: 1fr 1fr; max-width: 520px; }

/* New: pitch paragraph + features row (desktop only) */
.ristrel-pitch {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 18px 0 24px;
  max-width: 48ch;
}
.ristrel-features {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin: 0 0 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  justify-content: start;
}
.ristrel-feature { display: flex; flex-direction: column; gap: 4px; }
.ristrel-feature-num {
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.ristrel-feature-lbl {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.25;
}

/* Photo with caption (desktop) */
.ristrel-photo--d {
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 18px;
  position: relative;
}
.ristrel-photo-cap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(20, 17, 13, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-hand);
  font-size: 17px;
  color: white;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1100px) {
  .d-ristrel { grid-template-columns: 1fr; gap: 24px; }
  .d-ristrel-left .ristrel-cta { grid-template-columns: 1fr; }
  .d-band--ristrel { padding: 40px 24px; }
}
.d-band-head { margin-bottom: 24px; max-width: 720px; }
.d-h2 {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 8px 0 0;
  text-wrap: balance;
}
.d-h2.light { color: white; }

/* 4 mundos scattered */
.d-mundos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.d-mundos .polaroid {
  width: 100%;
  margin: 0;
  padding: 12px 12px 36px;
}
.d-mundos .polaroid:nth-child(1) { margin-top: 0; transform: rotate(-2deg); }
.d-mundos .polaroid:nth-child(2) { margin-top: 32px; transform: rotate(1.5deg); }
.d-mundos .polaroid:nth-child(3) { margin-top: 12px; transform: rotate(-1deg); }
.d-mundos .polaroid:nth-child(4) { margin-top: 48px; transform: rotate(2deg); }
.d-mundos .polaroid .ph { aspect-ratio: 4/5; }
.d-mundos .polaroid .poloroid-cap { font-size: 15px; bottom: 10px; }

/* KIDS + EVENTOS duo */
.d-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 48px 56px;
  border-top: 1px solid var(--ink);
  background: var(--bone);
}
.d-duo-card {
  border-radius: 22px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
}

/* KIDS card */
.d-duo-card--kids {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(48,164,220,0.18), transparent 60%),
    radial-gradient(ellipse 90% 60% at 90% 100%, rgba(247,178,35,0.20), transparent 60%),
    #fff8e6;
}
.d-duo-card--kids .kids-confetti { z-index: 0; }
.d-duo-card--kids > * { position: relative; z-index: 2; }

.d-kids-photo {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 2px solid var(--ink);
  overflow: hidden;
  position: relative;
  margin-bottom: -32px;
}
.d-kids-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.d-kids-logo {
  display: block;
  width: 50%;
  max-width: 240px;
  margin: 0 auto 4px;
  filter: drop-shadow(2px 2px 0 rgba(20,17,13,0.18));
}
.d-duo-card--kids .kids-lead {
  font-size: 24px;
  text-align: center;
  margin: 6px 0 14px;
}
.d-duo-card--kids .kids-word--2 { font-size: 28px; }

.d-kids-feats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
  margin: 10px 0 18px;
}
.d-duo-card--kids .kids-feat { padding: 12px 6px 10px; }
.d-duo-card--kids .kids-feat-emoji { font-size: 26px; }
.d-duo-card--kids .kids-feat-text { font-size: 12px; }
.d-duo-card--kids .kids-feat-text small { font-size: 10px; }

.d-duo-card--kids .m-cta--kids { justify-content: center; }
.d-duo-card--kids .btn--kids-primary,
.d-duo-card--kids .btn--kids-ghost { flex: 0 1 auto; min-width: 200px; }

/* EVENTOS card */
.d-duo-card--events {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
}
.d-duo-card--events .lbl.light { color: rgba(255,255,255,0.7); margin-bottom: 8px; }
/* ──────────────── EVENTOS section ──────────────── */
.m-band--events {
  background: #14110d;
  color: var(--paper);
  padding: 44px 22px 40px;
  border-top: none;
  position: relative;
  overflow: hidden;
}
.m-band--events > * { position: relative; z-index: 2; }

/* subtle diagonal stripe pattern */
.events-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    repeating-linear-gradient(135deg, transparent 0, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 62px),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(230,51,41,0.07), transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(247,178,35,0.05), transparent 70%);
  pointer-events: none;
}

/* Header */
.events-head { margin-bottom: 26px; }
.events-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  margin-bottom: 18px;
}
.events-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,51,41,0.2);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.events-eyebrow .lbl.light { color: rgba(255,255,255,0.72); margin: 0; }

.events-headline {
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 44px;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-wrap: balance;
}
.events-headline-1 {
  color: var(--paper);
  transform: rotate(-0.8deg);
  display: inline-block;
}
.events-headline-2 {
  color: var(--accent);
  font-style: italic;
  transform: rotate(0.5deg);
  display: inline-block;
  font-size: 50px;
}
.events-headline-3 {
  color: rgba(255,255,255,0.45);
  display: inline-block;
}

.events-sub {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin: 0 0 28px;
  max-width: 42ch;
}

/* Event types — 4 cards 2x2 */
.events-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 28px;
}
.events-type-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition: 0.18s;
  min-height: 80px;
}
.events-type-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.events-type-icon {
  font-size: 22px;
  line-height: 1;
  filter: grayscale(0.15);
}
.events-type-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
}
.events-type-card--more {
  background: transparent;
  border-style: dashed;
}
.events-type-card--more .events-type-name {
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* Stats v2 — row of 3, equal width, no wrap */
.events-stats--v2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 8px;
  margin: 0 0 32px;
  position: relative;
}
.events-stats--v2 .events-stat {
  text-align: center;
  border: none;
  padding: 0 8px;
  min-width: 0;
}
.events-stats--v2 .events-stat-n {
  white-space: nowrap;
  font-size: 24px;
}
.events-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}
.events-stat-n {
  display: block;
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.events-stat-sm {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.events-stat-l {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* Paquetes v2: clickable cards with big number */
.events-pkg-section { margin: 0 0 26px; }
.events-pkg-lbl {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.55);
}
.events-pkg-preview--v2 {
  display: grid;
  gap: 10px;
}
.events-pkg--num {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px 14px 16px;
  text-decoration: none;
  transition: 0.18s;
  position: relative;
}
.events-pkg--num:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}
.events-pkg-n {
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}
.events-pkg-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.events-pkg-name {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 16px;
  color: var(--paper);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.events-pkg-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}
.events-pkg-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  transition: 0.18s;
}
.events-pkg--num:hover .events-pkg-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

.events-pkg--feat {
  background: rgba(230,51,41,0.08);
  border-color: rgba(230,51,41,0.3);
  border-left-color: var(--accent);
  border-left-width: 3px;
}
.events-pkg--feat .events-pkg-n { color: var(--accent); }
.events-pkg-tag {
  position: absolute;
  top: -8px;
  right: 14px;
  background: var(--accent);
  color: white;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}

/* CTA block */
.events-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.events-cta-foot {
  font-family: var(--font-hand);
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  text-align: center;
}

.btn--events {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--paper);
  border-radius: 999px;
  padding: 16px 18px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.18s;
}
.btn--events:hover { transform: translateY(-1px); box-shadow: 0 6px 16px -4px rgba(255,255,255,0.2); }
.btn--events-light { background: var(--paper); color: var(--ink); }

/* keep old shared rules used elsewhere */
.events-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 22px;
}
.events-types--dark { margin: 18px 0 20px; }
.events-type {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}
.events-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 4px;
  margin: 0 0 20px;
}
.events-stats--dark { margin: 0 0 22px; }
.events-stat {
  text-align: center;
  padding: 0 4px;
  border-right: 1px dashed rgba(255,255,255,0.18);
}
.events-stats > .events-stat:last-child { border-right: none; }

.events-pkg-preview {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
}
.events-pkg {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
}

/* desktop events card refinements */
.d-duo-card--events .events-headline,
.d-duo-card--events .d-events-h {
  font-size: 30px;
}
.d-duo-card--events .events-pkg-preview { margin-bottom: 20px; }
.d-duo-card--events .btn--events { margin-top: auto; }

/* TIMELINE horizontal */
.d-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  padding: 30px 0 0;
}
.d-tl-axis {
  position: absolute;
  top: 38px;
  left: 5%; right: 5%;
  height: 1.5px;
  background: var(--ink);
}
.d-tl-node {
  text-align: center;
  position: relative;
  padding-top: 30px;
}
.d-tl-node::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  border-radius: 50%;
}
.d-tl-year {
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 26px;
  color: var(--accent);
  margin-top: 16px;
  letter-spacing: -0.02em;
}
.d-tl-card {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.4;
}

/* CARTA */
.d-carta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.d-carta-text p.light { color: rgba(255,255,255,0.78); font-size: 16px; }
.d-carta-photo .ph { aspect-ratio: 16 / 11; border-color: #444; }

/* CONTACTO */
.d-contact { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.d-contact .ph--map-d { aspect-ratio: 4/3; min-height: 300px; }
.d-contact-info { padding-top: 8px; }
.d-contact-addr {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.d-contact-info .contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

/* FOOTER */
.d-footer {
  padding: 48px 56px 40px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  display: grid;
  gap: 8px;
  place-items: center;
}
.d-footer-logo {
  width: 240px;
  filter: invert(1);
  margin-bottom: 8px;
}
.d-footer-tagline {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.d-footer-meta {
  font-family: var(--font-hand);
  font-size: 16px;
  color: rgba(255,255,255,0.4);
}

/* ──────────────── footer hours (live status) ──────────────── */
.footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.footer-hours::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-3);
  box-shadow: 0 0 0 3px rgba(138,132,115,0.18);
}
.footer-hours--open::before {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
  animation: pulse-dot 2s ease-in-out infinite;
}
.footer-hours--closing::before {
  background: #f7b223;
  box-shadow: 0 0 0 3px rgba(247,178,35,0.25);
}
.footer-hours--closed::before {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,51,41,0.25);
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22); }
  50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.05); }
}
.footer-hours-status {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-hours--open .footer-hours-status { color: var(--green); }
.footer-hours--closing .footer-hours-status { color: #f7b223; }
.footer-hours--closed .footer-hours-status { color: var(--accent); }
.footer-hours-detail {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.footer-hours-detail::before {
  content: '·';
  margin-right: 6px;
  color: rgba(255,255,255,0.35);
}

/* FAB on desktop */
.d-fab {
  position: absolute;
  bottom: 28px; right: 28px;
  margin: 0;
  width: 64px; height: 64px;
}

@media (max-width: 1100px) {
  .d-hero, .d-duo, .d-carta, .d-contact { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; gap: 24px; }
  .d-band { padding: 40px 24px; }
  .d-mundos { grid-template-columns: 1fr 1fr; }
  .d-timeline { grid-template-columns: 1fr; gap: 14px; padding: 0; }
  .d-tl-axis { display: none; }
  .d-tl-node { text-align: left; padding-top: 0; padding-left: 22px; }
  .d-tl-node::before { left: 0; top: 12px; }
  .d-kids-feats { grid-template-columns: 1fr 1fr; }
}
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; align-items: start; }
.compare-col { display: grid; gap: 12px; }
.compare-label {
  font-family: var(--font-ui); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; display: flex; align-items: center; gap: 10px;
}
.compare-label span { background: var(--accent); color: white; padding: 4px 8px; font-size: 11px; letter-spacing: 0.1em; }
.compare-frame { width: 100%; height: 800px; border: 1px solid var(--ink); background: var(--paper); border-radius: 24px; }

/* ──────────────── afternote ──────────────── */
.afternote {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 48px 56px 64px;
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.afternote h3 { font-family: var(--font-ui); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; margin: 8px 0 14px; }
.afternote ol, .afternote ul { padding-left: 22px; margin: 0; font-family: var(--font-hand); font-size: 19px; line-height: 1.5; }
.afternote ul { list-style: none; padding-left: 0; }
.afternote ul li { padding-left: 22px; position: relative; }
.afternote ul li::before { content: '✦'; position: absolute; left: 0; color: var(--accent); }
.afternote ol li { padding-left: 4px; }

/* responsive (the page itself, not the wireframes) */
@media (max-width: 1100px) {
  .intro { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .dir-header { grid-template-columns: 1fr; gap: 12px; }
  .stage { padding: 0 24px 32px; }
  .phone-row { grid-template-columns: 1fr; }
  .phone { position: relative; top: 0; margin: 0 auto; }
  .ann-arrow { display: none; }
  .compare-row { grid-template-columns: 1fr; }
  .afternote { grid-template-columns: 1fr; padding: 32px 24px; }
  .topbar { flex-wrap: wrap; gap: 12px; padding: 12px 18px; }
  .tabs { order: 3; width: 100%; overflow-x: auto; }
  .tools { order: 4; }
}
