/* ============================================================
   AURA · Sistema visual
   Construido sobre la identidad del logo: monocromo, geométrico,
   alto contraste, con una sola chispa de color.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --ink:        #0D0C0B;
  --ink-2:      #171512;
  --ink-3:      #241F1A;
  --bone:       #F4F1EA;
  --bone-2:     #E7E2D7;
  --bone-3:     #D6CFC1;
  --ember:      #D9541E;
  --ember-soft: #F0A47E;

  --ink-60:  rgba(13, 12, 11, 0.60);
  --ink-40:  rgba(13, 12, 11, 0.40);
  --ink-14:  rgba(13, 12, 11, 0.14);
  --ink-08:  rgba(13, 12, 11, 0.08);
  --bone-70: rgba(244, 241, 234, 0.70);
  --bone-45: rgba(244, 241, 234, 0.45);
  --bone-16: rgba(244, 241, 234, 0.16);

  --display: 'Space Grotesk', system-ui, sans-serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;

  --pad-x:  clamp(20px, 5vw, 72px);
  --pad-y:  clamp(64px, 11vw, 148px);
  --maxw:   1280px;
  --radius: 4px;

  --ease: cubic-bezier(0.22, 0.8, 0.28, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 72px; }

body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--ember); color: var(--bone); }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

/* ---------- 3. Tipografía ---------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.h1  { font-size: clamp(44px, 11vw, 148px); }
.h2  { font-size: clamp(34px, 7.5vw, 92px); }
.h3  { font-size: clamp(24px, 4.4vw, 48px); }

.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.lead {
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ---------- 4. Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--pad-y); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--bone2 { background: var(--bone-2); }

/* ---------- 5. Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--ink    { background: var(--ink); color: var(--bone); }
.btn--ink:hover    { background: var(--ember); color: var(--bone); }
.btn--bone   { background: var(--bone); color: var(--ink); }
.btn--bone:hover   { background: var(--ember); color: var(--bone); }
.btn--ghost  { border: 1px solid var(--ink-14); color: var(--ink); }
.btn--ghost:hover  { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--ghost-bone { border: 1px solid var(--bone-16); color: var(--bone); }
.btn--ghost-bone:hover { background: var(--bone); color: var(--ink); }
.btn--sm { padding: 11px 20px; font-size: 11.5px; letter-spacing: 0.12em; }

/* ---------- 6. Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px var(--pad-x);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}
.nav.is-stuck {
  background: rgba(244, 241, 234, 0.9);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  box-shadow: 0 1px 0 var(--ink-08);
  padding-block: 10px;
}

.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bone);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.35s var(--ease);
}
.nav__mark img { width: 100%; height: 100%; object-fit: contain; }
.nav__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color 0.35s var(--ease);
}
.nav.is-stuck .nav__name { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-70);
  transition: color 0.25s var(--ease);
}
.nav.is-stuck .nav__links a { color: var(--ink-60); }
.nav__links a:hover { color: var(--ember); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav .btn--nav { background: var(--bone); color: var(--ink); }
.nav.is-stuck .btn--nav { background: var(--ink); color: var(--bone); }
.nav .btn--nav:hover { background: var(--ember); color: var(--bone); }

@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  top: -30%; left: 50%;
  width: min(1100px, 150vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(217, 84, 30, 0.20) 0%, rgba(217, 84, 30, 0.06) 38%, transparent 66%);
  pointer-events: none;
  z-index: -1;
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  background-image:
    repeating-linear-gradient(0deg, rgba(244,241,234,0.028) 0 1px, transparent 1px 3px);
}

.hero__inner {
  padding: 120px var(--pad-x) 0;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(26px, 4vw, 44px);
}

.hero__mark {
  width: clamp(104px, 15vw, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bone);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.hero__mark img { width: 100%; height: 100%; object-fit: contain; }

.hero__title { max-width: 15ch; }
.hero__title em {
  font-style: normal;
  color: var(--ember);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding-top: 4px;
}
.hero__meta .lead { max-width: 46ch; color: var(--bone-70); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Ticker */
.ticker {
  border-block: 1px solid var(--bone-16);
  overflow: hidden;
  padding-block: 15px;
  margin-top: clamp(40px, 7vw, 76px);
  --dur: 34s;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker var(--dur) linear infinite;
}
.ticker__group { display: flex; flex-shrink: 0; }
.ticker span {
  font-family: var(--display);
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-45);
  padding-inline: clamp(20px, 3vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  white-space: nowrap;
}
.ticker span::after {
  content: '';
  width: 9px; height: 9px;
  background: var(--ember);
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  flex-shrink: 0;
}
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- 8. Manifiesto ---------- */
.manifesto { text-align: center; }
.manifesto__text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 4.6vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin: clamp(26px, 4vw, 44px) auto 0;
  text-wrap: balance;
}
.manifesto__text b { font-weight: 700; }
.manifesto__text i { font-style: normal; color: var(--ink-40); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--ink-14);
  border: 1px solid var(--ink-14);
  margin-top: clamp(48px, 7vw, 90px);
}
.stat { background: var(--bone); padding: clamp(24px, 3.4vw, 40px) clamp(18px, 2.4vw, 30px); text-align: left; }
.stat__n {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__l { font-size: 13.5px; color: var(--ink-60); margin-top: 10px; line-height: 1.45; }

/* ---------- 9. Menú ---------- */
.menu__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: clamp(30px, 4vw, 46px);
}
.menu__head p { max-width: 40ch; color: var(--ink-60); }

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: clamp(30px, 4vw, 48px);
  border-bottom: 1px solid var(--ink-14);
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px 999px 0 0;
  color: var(--ink-40);
  white-space: nowrap;
  position: relative;
  transition: color 0.22s var(--ease);
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--ink); }
.tab.is-active::after {
  content: '';
  position: absolute;
  left: 20px; right: 20px; bottom: -1px;
  height: 2px;
  background: var(--ember);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 268px), 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}

.card {
  background: var(--bone);
  border: 1px solid var(--ink-14);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.section--bone2 .card { background: var(--bone); }
.card:hover { border-color: var(--ink); transform: translateY(-3px); }

.card__media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder gráfico: mientras no hay fotos, el hueco se ve intencional */
.plate { position: absolute; inset: 0; display: grid; place-items: center; }
.plate::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(217,84,30,0.22) 0%, transparent 58%),
    repeating-linear-gradient(0deg, rgba(244,241,234,0.03) 0 1px, transparent 1px 3px);
}
.plate[data-p="1"]::before { background: radial-gradient(circle at 30% 30%, rgba(217,84,30,0.26) 0%, transparent 60%), repeating-linear-gradient(0deg, rgba(244,241,234,0.03) 0 1px, transparent 1px 3px); }
.plate[data-p="2"]::before { background: radial-gradient(circle at 70% 60%, rgba(217,84,30,0.18) 0%, transparent 62%), repeating-linear-gradient(0deg, rgba(244,241,234,0.03) 0 1px, transparent 1px 3px); }
.plate[data-p="3"]::before { background: radial-gradient(circle at 50% 100%, rgba(217,84,30,0.24) 0%, transparent 55%), repeating-linear-gradient(0deg, rgba(244,241,234,0.03) 0 1px, transparent 1px 3px); }
.plate__ring {
  position: relative;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--bone-16);
  display: grid;
  place-items: center;
}
.plate__ring::before {
  content: '';
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid var(--bone-16);
}
.plate__star { width: 22px; height: 22px; fill: var(--ember); position: relative; }
.plate__tag {
  position: absolute;
  left: 12px; bottom: 11px;
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-45);
}

.card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; gap: 9px; }
.card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}
.card__price { font-family: var(--display); font-weight: 500; font-size: 15px; white-space: nowrap; }
.card__desc { font-size: 14px; line-height: 1.5; color: var(--ink-60); }
.card__add { margin-top: auto; padding-top: 14px; }
.card__add .btn { width: 100%; }

.tag-fav {
  position: absolute;
  top: 11px; left: 11px;
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ember);
  color: var(--bone);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- 10. Split (el lugar) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.split__media {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body p { color: var(--ink-60); margin-top: 16px; }
.section--ink .split__body p { color: var(--bone-70); }
.split__body h2 { margin-top: 18px; }

/* ---------- 11. Info / mapa ---------- */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
.info__rows { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.info__row { border-top: 1px solid var(--bone-16); padding-top: 16px; }
.info__k {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ember-soft);
  margin-bottom: 8px;
}
.info__v { font-size: clamp(16px, 2vw, 19px); color: var(--bone); }
.info__sub { font-size: 14px; color: var(--bone-45); margin-top: 3px; }
.hours { display: flex; flex-direction: column; gap: 6px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; color: var(--bone-70); }
.hours li b { font-weight: 400; color: var(--bone); }

#map, .map-fallback {
  min-height: 380px;
  height: 100%;
  background: var(--ink-2);
  border: 1px solid var(--bone-16);
  filter: grayscale(0.35) contrast(1.05);
}
.map-fallback {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  gap: 14px;
  filter: none;
}
.leaflet-container { background: var(--ink-2) !important; font-family: var(--body) !important; }
.pin {
  width: 20px; height: 20px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(217,84,30,0.28), 0 0 0 14px rgba(217,84,30,0.12);
}

/* ---------- 12. Instagram ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(50% - 6px, 150px), 1fr));
  gap: clamp(8px, 1.4vw, 14px);
  margin-top: clamp(30px, 4vw, 48px);
}
.ig-cell {
  aspect-ratio: 1;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}
.ig-cell:hover { transform: scale(1.02); }

/* ---------- 13. CTA final ---------- */
.cta-final { text-align: center; }
.cta-final .btn { margin-top: clamp(26px, 3.4vw, 40px); }

/* ---------- 14. Footer ---------- */
.footer { background: var(--ink); color: var(--bone); padding: clamp(56px, 8vw, 92px) var(--pad-x) 30px; }
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--bone-16);
}
.footer__mark { width: 66px; aspect-ratio: 1; border-radius: 50%; background: var(--bone); overflow: hidden; }
.footer__mark img { width: 100%; height: 100%; object-fit: contain; }
.footer h4 {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-45);
  margin-bottom: 14px;
}
.footer li + li { margin-top: 7px; }
.footer li a, .footer li span { font-size: 15px; color: var(--bone-70); transition: color 0.22s var(--ease); }
.footer li a:hover { color: var(--ember); }
.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--bone-45);
}
.footer__base a { color: var(--bone-70); }
.footer__base a:hover { color: var(--ember); }

/* ---------- 15. Acciones flotantes ---------- */
.fabs {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(13,12,11,0.34);
  position: relative;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.fab:hover { background: var(--ember); transform: translateY(-2px); }
.fab--wa { background: var(--ember); }
.fab--wa:hover { background: var(--ink); }
.fab__badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 22px; height: 22px;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--ember);
  color: var(--bone);
  font-family: var(--display);
  font-weight: 700;
  font-size: 11.5px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bone);
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}
.fab__badge.is-on { transform: scale(1); }

/* ---------- 16. Carrito ---------- */
.scrim {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(13,12,11,0.6);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.scrim.is-on { opacity: 1; pointer-events: auto; }

.cart {
  position: fixed;
  top: 0; right: 0; z-index: 70;
  height: 100dvh;
  width: min(430px, 100vw);
  background: var(--bone);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.42s var(--ease);
  box-shadow: -24px 0 70px rgba(13,12,11,0.35);
}
.cart.is-on { transform: none; }

.cart__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px var(--pad-cart, 24px) 18px;
  border-bottom: 1px solid var(--ink-14);
}
.cart__close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink-08);
  display: grid; place-items: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
}
.cart__close:hover { background: var(--ink); color: var(--bone); }

.cart__body { flex: 1; overflow-y: auto; padding: 0 24px; }
.cart__hint { font-size: 13px; color: var(--ink-60); padding: 16px 0 2px; line-height: 1.5; }

.line { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--ink-08); }
.line__name { font-family: var(--display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: -0.01em; }
.line__sub { font-size: 13px; color: var(--ink-40); margin-top: 2px; }
.stepper { display: flex; align-items: center; gap: 2px; background: var(--ink-08); border-radius: 999px; padding: 3px; flex-shrink: 0; }
.stepper button { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 17px; line-height: 1; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.stepper button:hover { background: var(--ink); color: var(--bone); }
.stepper span { min-width: 24px; text-align: center; font-family: var(--display); font-weight: 500; font-size: 14px; }

.cart__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px 32px;
}
.cart__empty svg { width: 40px; height: 40px; opacity: 0.28; }
.cart__empty p { font-size: 14.5px; color: var(--ink-60); max-width: 30ch; }

.cart__foot {
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--ink-14);
  background: var(--bone-2);
}
.cart__total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.cart__total span { font-family: var(--display); font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-40); }
.cart__total b { font-family: var(--display); font-weight: 700; font-size: 27px; letter-spacing: -0.02em; }
.cart__foot .btn { width: 100%; }
.cart__note { text-align: center; font-size: 12px; color: var(--ink-40); margin-top: 11px; line-height: 1.5; }

[hidden] { display: none !important; }

/* ---------- 17. Carta impresa ---------- */
.carta-head { text-align: center; padding-top: clamp(96px, 13vw, 150px); }
.carta-head h1 { margin-top: 14px; }
.carta-head p { color: var(--ink-60); margin-top: 14px; }

.carta-sec { margin-top: clamp(44px, 6vw, 76px); }
.carta-sec__head { display: flex; align-items: baseline; gap: 18px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.carta-sec__head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 4vw, 34px); text-transform: uppercase; letter-spacing: -0.03em; }
.carta-sec__head span { font-family: var(--display); font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-40); margin-left: auto; text-align: right; }
.carta-row { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding: 17px 0; border-bottom: 1px solid var(--ink-08); }
.carta-row h3 { font-family: var(--display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: -0.01em; }
.carta-row p { font-size: 13.5px; color: var(--ink-60); margin-top: 4px; max-width: 52ch; }
.carta-row b { font-family: var(--display); font-weight: 500; font-size: 15px; white-space: nowrap; }

.qr-block {
  margin-top: clamp(44px, 6vw, 72px);
  background: var(--ink);
  color: var(--bone);
  padding: clamp(28px, 4.5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(24px, 4vw, 44px);
}
.qr-block__code { background: var(--bone); padding: 12px; line-height: 0; flex-shrink: 0; }
.qr-block__code img { width: 168px; height: 168px; }
.qr-block__body { flex: 1; min-width: 220px; }
.qr-block__body h2 { margin: 10px 0 12px; }
.qr-block__body p { color: var(--bone-70); font-size: 15px; }

@media print {
  .nav, .fabs, .cart, .scrim, .qr-block, .preview-pill, .no-print { display: none !important; }
  body { background: #fff; }
  .carta-row { break-inside: avoid; }
}

/* ---------- 18. Píldora de vista previa (solo demo) ---------- */
.preview-pill {
  position: fixed;
  left: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 44;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,12,11,0.86);
  backdrop-filter: blur(8px);
  color: var(--bone);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--bone-16);
  transition: background 0.25s var(--ease);
}
.preview-pill:hover { background: var(--ember); }
.preview-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); font-style: normal; }
.preview-pill:hover i { background: var(--bone); }
@media (max-width: 620px) { .preview-pill { font-size: 9px; padding: 8px 12px; } }

/* ---------- 19. Reveal ----------
   Solo se ocultan si JS está vivo (clase .js en <html>). Sin JS,
   o si el observer nunca dispara, el contenido igual se ve. */
.js [data-reveal] { opacity: 0; transform: translateY(24px); }
.js .is-in { opacity: 1 !important; transform: none !important; transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
