/* =========================================================
   LOS TEQUES PR — hoja de estilos
   Archetype: Editorial Light Cream, adaptado a la identidad
   burdeos + crema de la marca (no terracota).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta — crema cálida + burdeos + dorado frito */
  --bg:        #f7f1e4;
  --bg-2:      #ece0c8;
  --paper:     #fffdf7;
  --ink:       #251512;
  --ink-soft:  #3c2620;
  --ink-mute:  #7c6a5c;
  --accent:    #7f1d2b;   /* burdeos / vino — color de marca */
  --accent-2:  #a4293a;   /* burdeos más vivo, hover */
  --gold:      #c58a3f;   /* dorado frito */
  --gold-soft: #e4c087;
  --line:      rgba(37, 21, 18, 0.12);
  --line-soft: rgba(37, 21, 18, 0.07);

  --shadow-soft: 0 20px 60px -20px rgba(37, 21, 18, 0.25);
  --shadow-card: 0 30px 70px -30px rgba(127, 29, 43, 0.35);

  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --nav-h: 96px;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
section { position: relative; }

.container {
  width: min(1280px, 100% - 6rem);
  margin-inline: auto;
}
@media (max-width: 900px) {
  .container { width: min(1280px, 100% - 4rem); }
}
@media (max-width: 640px) {
  .container { width: min(1280px, 100% - 2.6rem); }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.italic { font-style: italic; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--accent);
}
.cursor-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  mix-blend-mode: difference;
  transition: opacity .25s var(--ease-out), width .2s var(--ease-out), height .2s var(--ease-out), margin .2s var(--ease-out);
}
.cursor-dot.is-ready, .cursor-ring.is-ready { opacity: 1; }
.cursor-ring.is-hover { width: 56px; height: 56px; margin: -28px 0 0 -28px; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  background: transparent;
  transition: background .4s var(--ease-soft), box-shadow .4s var(--ease-soft), backdrop-filter .4s var(--ease-soft), border-color .4s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247, 241, 228, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(37,21,18,.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img {
  height: 68px; width: auto;
  transition: height .4s var(--ease-soft);
  filter: drop-shadow(0 6px 16px rgba(37,21,18,.28));
}
.nav.is-scrolled .nav-logo img { height: 46px; filter: none; }
.nav-links {
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem);
}
.nav-links a {
  position: relative;
  font-size: 0.86rem; font-weight: 500;
  color: var(--ink-soft);
  padding-block: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--accent);
  transition: right .3s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent); color: var(--paper);
  padding: .65rem 1.15rem;
  border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  box-shadow: 0 10px 26px -12px rgba(127,29,43,.55);
  transition: transform .3s var(--ease-out), background .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.nav-cta:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 16px 30px -12px rgba(127,29,43,.6); }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 18px; height: 1.5px; background: var(--ink);
  position: relative; transition: transform .3s var(--ease-soft), opacity .3s var(--ease-soft);
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }
.nav.is-open .nav-burger span { background: transparent; }
.nav.is-open .nav-burger span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: var(--nav-h) 0 0 0; height: calc(100dvh - var(--nav-h));
    background: var(--bg); flex-direction: column; justify-content: center; gap: 1.6rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease-soft), transform .3s var(--ease-soft); }
  .nav-links a { font-size: 1.4rem; font-family: var(--font-display); }
  .nav.is-open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-cta { display: none; }
  .nav.is-open .nav-cta.mobile-cta { display: inline-flex; }
  .nav-burger { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-size: .92rem; font-weight: 600;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-soft), color .3s var(--ease-soft), border-color .3s var(--ease-soft);
}
.btn-primary { background: var(--accent); color: var(--paper); box-shadow: 0 18px 34px -16px rgba(127,29,43,.6); }
.btn-primary:hover { transform: translateY(-3px); background: var(--accent-2); box-shadow: 0 22px 40px -14px rgba(127,29,43,.65); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-light { background: var(--paper); color: var(--accent); box-shadow: var(--shadow-soft); }
.btn-light:hover { transform: translateY(-3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: clip;
  padding-top: var(--nav-h);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroKen 18s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.14) translate3d(-1%, -1%, 0); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(37,15,13,.55) 0%, rgba(37,15,13,.12) 32%, rgba(37,15,13,.05) 55%, rgba(37,15,13,.75) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-content {
  position: relative; z-index: 3;
  padding-block: clamp(2.5rem, 8vh, 5rem);
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.1rem;
}
.hero-eyebrow-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-eyebrow {
  color: var(--gold-soft);
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  color: var(--paper);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 15ch;
  text-wrap: balance;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--accent-2); }
.hero-sub {
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #fffdf8;
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(20, 8, 6, .55);
}
.hero-manifesto {
  margin-top: .55rem;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: rgba(255,250,240,.65);
  font-size: .95rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }

.trust-bar {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: clamp(2rem, 6vh, 3.2rem);
  padding-top: 1.6rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-item { color: var(--paper); }
.trust-num {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 500;
}
.trust-label { font-size: .74rem; color: rgba(255,250,240,.68); margin-top: .15rem; text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 720px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); row-gap: 1.3rem; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--accent);
  color: var(--gold-soft);
  overflow: hidden;
  padding-block: .9rem;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track span {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  padding-inline: 1.4rem;
  display: inline-flex; align-items: center; gap: 1.4rem;
}
.marquee-track span::after { content: "·"; font-style: normal; color: var(--gold); font-size: 1em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal-1 { transition-delay: .06s; }
.reveal-2 { transition-delay: .14s; }
.reveal-3 { transition-delay: .22s; }
.reveal-4 { transition-delay: .3s; }

/* ---------- Section shell ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section-cream { background: var(--bg); }
.section-paper { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--bg); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.04;
  max-width: 18ch;
  margin-top: .4rem;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.section-lede { max-width: 40ch; color: var(--ink-mute); font-size: 1rem; }

/* ---------- Manifesto / Historia teaser ---------- */
.manifesto {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.manifesto-figure { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-soft); }
.manifesto-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.manifesto-figure:hover img { transform: scale(1.06); }
.manifesto-badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: var(--paper); color: var(--accent);
  border-radius: 100px; padding: .5rem 1rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: .4rem;
}
.manifesto-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.manifesto-text p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; margin-top: 1.1rem; }
.manifesto-text p + p { margin-top: 1rem; }
.manifesto-text strong { color: var(--accent); font-weight: 600; }

@media (max-width: 860px) {
  .manifesto { grid-template-columns: 1fr; }
}

/* ---------- Ocasiones — bento asimétrico ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  grid-column: span 3;
  color: var(--paper);
  isolation: isolate;
  cursor: pointer;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.bento-card:nth-child(1) { grid-column: span 4; min-height: 440px; }
.bento-card:nth-child(2) { grid-column: span 2; }
.bento-card:nth-child(3) { grid-column: span 2; }
.bento-card:nth-child(4) { grid-column: span 4; }
.bento-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform .8s var(--ease-out), filter .5s var(--ease-soft);
  filter: saturate(1.06);
}
.bento-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(190deg, rgba(37,15,13,.05) 10%, rgba(37,15,13,.82) 92%);
}
.bento-card:hover { transform: translateY(-6px) scale(1.005); box-shadow: var(--shadow-card); }
.bento-card:hover img { transform: scale(1.1) skewY(-0.5deg); filter: saturate(1.25) brightness(1.05); }
.bento-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.3rem, 2.4vw, 2rem); }
.bento-title { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.9rem); font-weight: 500; }
.bento-desc { font-size: .9rem; color: rgba(255,250,240,.82); margin-top: .5rem; max-width: 32ch; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-card:nth-child(1), .bento-card:nth-child(2), .bento-card:nth-child(3), .bento-card:nth-child(4) { grid-column: span 1; min-height: 300px; }
}

/* ---------- Menú — carrusel horizontal ---------- */
.flavor-rail-wrap { position: relative; }
.flavor-rail {
  display: flex; gap: 1.1rem;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding-block: .6rem 2rem;
  padding-inline: clamp(1.25rem, 4vw, calc((100vw - 1280px)/2 + 3rem));
  margin-inline: clamp(-1.25rem, -4vw, calc(-1 * ((100vw - 1280px)/2 + 3rem)));
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  touch-action: pan-x;
}
.flavor-rail::-webkit-scrollbar { height: 6px; }
.flavor-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.flavor-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(210px, 24vw, 270px);
  border-radius: 20px;
  padding: 1.5rem 1.4rem 1.7rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-soft);
  position: relative;
}
.flavor-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-card); border-color: transparent; }
.flavor-swatch {
  width: 100%; aspect-ratio: 1/0.72; border-radius: 14px; margin-bottom: 1.1rem;
  display: flex; align-items: flex-end; justify-content: flex-start; padding: .8rem;
  position: relative; overflow: hidden;
}
.flavor-swatch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.flavor-badge {
  position: relative; z-index: 1;
  background: var(--paper); color: var(--accent);
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 100px;
}
.flavor-badge.gold { background: var(--gold); color: var(--paper); }
.flavor-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.flavor-note { font-size: .86rem; color: var(--ink-mute); margin-top: .4rem; }

/* palette swatches per flavor (no photo needed) */
.sw-mozzarella { background: linear-gradient(155deg, #f3e6c8, #e0c98e); }
.sw-paisa { background: linear-gradient(155deg, #e8c9a0, #c78a4d); }
.sw-jamon { background: linear-gradient(155deg, #f0d3c9, #d99b7c); }
.sw-chorizo { background: linear-gradient(155deg, #e3b8a4, #a4452f); }
.sw-guayaba-queso { background: linear-gradient(155deg, #f2c8bd, #d96a5c); }
.sw-guayaba { background: linear-gradient(155deg, #eab7b0, #c14b42); }
.sw-chocolate { background: linear-gradient(155deg, #b98a63, #5c3a26); }
.sw-mango { background: linear-gradient(155deg, #fbd68a, #ef9b3c); }

/* Pricing tables */
.price-group-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.1;
  color: var(--ink);
  margin-top: clamp(2.8rem, 5vw, 3.8rem);
}
.price-group-title:first-of-type { margin-top: clamp(1.4rem, 3vw, 2rem); }
.price-group-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1.4rem; }
@media (max-width: 780px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper); border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line-soft);
}
.price-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; }
.price-card .price-hint { font-size: .8rem; color: var(--ink-mute); margin-top: .2rem; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 1.3rem; }
.price-table tr { border-top: 1px solid var(--line-soft); }
.price-table tr:first-child { border-top: none; }
.price-table td { padding: .7rem .1rem; font-size: .92rem; }
.price-table td:first-child { color: var(--ink-soft); }
.price-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--accent); font-weight: 600; white-space: nowrap; }
.price-fine { font-size: .76rem; color: var(--ink-mute); margin-top: 1.2rem; }

/* ---------- La Salsa (dark burdeos panel) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1fr; }
.split.reverse .split-figure { order: 2; }
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-figure { order: 0; }
}
.split-figure { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; }
.split-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.split-figure:hover img { transform: scale(1.06); }
.split-text p.lede { font-size: 1.08rem; color: rgba(247,241,228,.86); margin-top: 1.1rem; line-height: 1.7; max-width: 42ch; }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark .section-title { color: var(--bg); }
.section-dark .section-title em { color: var(--gold-soft); }

.mini-price-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }
.mini-price {
  background: rgba(247,241,228,.08);
  border: 1px solid rgba(247,241,228,.18);
  border-radius: 14px; padding: .9rem 1.2rem; min-width: 108px;
}
.mini-price .amt { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-soft); }
.mini-price .lbl { font-size: .78rem; color: rgba(247,241,228,.7); margin-top: .1rem; }

/* ---------- MontBlanc ---------- */
.montblanc {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 860px) { .montblanc { grid-template-columns: 1fr; } }
.montblanc-figure { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-soft); }
.montblanc-figure img { width: 100%; height: 100%; object-fit: cover; }
.specialty-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.12;
  margin-top: .5rem; max-width: 16ch;
}
.montblanc-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: var(--paper);
  border-radius: 100px; padding: .5rem 1rem; font-size: .78rem; font-weight: 700;
}
.montblanc-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.montblanc-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); font-size: .96rem; }
.montblanc-list li::before { content: "—"; color: var(--accent); flex: none; margin-top: .1rem; }

/* ---------- Congelados / instrucciones ---------- */
.freezer {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 860px) { .freezer { grid-template-columns: 1fr; } }
.freezer-figure { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; }
.freezer-figure img { width: 100%; height: 100%; object-fit: cover; }
.instruction-cards { display: grid; gap: 1rem; margin-top: 1.6rem; }
.instruction-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px; padding: 1.3rem 1.5rem;
  transition: border-color .3s var(--ease-soft), transform .3s var(--ease-out);
}
.instruction-card:hover { border-color: var(--accent); transform: translateX(4px); }
.instruction-icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-2); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; color: var(--accent); font-size: 1.1rem;
}
.instruction-card h4 { font-size: 1rem; font-weight: 600; }
.instruction-card p { font-size: .88rem; color: var(--ink-mute); margin-top: .25rem; }
.freezer-note { margin-top: 1.1rem; font-size: .85rem; color: var(--ink-mute); font-style: italic; }

/* ---------- Historia / hecho a mano — galería ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gallery-item { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { aspect-ratio: 3/4; margin-top: 2.4rem; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap {
  position: absolute; left: .8rem; bottom: .8rem; z-index: 1;
  color: var(--paper); font-size: .78rem; font-weight: 500;
  background: rgba(37,15,13,.5); backdrop-filter: blur(6px);
  padding: .35rem .7rem; border-radius: 100px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3) { margin-top: 0; }
}

.diff-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: clamp(2.4rem, 5vw, 3.6rem); }
@media (max-width: 860px) { .diff-list { grid-template-columns: 1fr; } }
.diff-item h4 { font-size: 1.05rem; font-weight: 600; }
.diff-item p { font-size: .9rem; color: var(--ink-mute); margin-top: .4rem; line-height: 1.6; }

/* ---------- Visítanos ---------- */
.visit {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 900px) { .visit { grid-template-columns: 1fr; } }
.visit-card {
  background: var(--paper); border-radius: 22px; padding: clamp(1.8rem, 3.4vw, 2.8rem);
  border: 1px solid var(--line-soft);
}
.visit-row { display: flex; gap: 1rem; padding-block: 1rem; border-top: 1px solid var(--line-soft); }
.visit-row:first-of-type { border-top: none; padding-top: 0; }
.visit-row .visit-icon { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.visit-row h4 { font-size: .92rem; font-weight: 600; }
.visit-row p, .visit-row a { font-size: .9rem; color: var(--ink-mute); margin-top: .2rem; }
.visit-row a:hover { color: var(--accent); }
.visit-map { border-radius: 22px; overflow: hidden; min-height: 320px; border: 1px solid var(--line-soft); }
.visit-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: saturate(0.85) sepia(0.08); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--accent);
  color: var(--paper);
  border-radius: 28px;
  padding: clamp(2.6rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: -60% -10% -30% -10%;
  background: radial-gradient(45% 45% at 50% 30%, rgba(196,154,63,.35), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.final-cta-title { position: relative; z-index: 1; font-family: var(--font-display); font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 500; max-width: 20ch; margin-inline: auto; text-wrap: balance; }
.final-cta-title em { font-style: italic; color: var(--gold-soft); }
.final-cta-actions { position: relative; z-index: 1; display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--bg); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; gap: 2.2rem; } }
.footer-logo img { height: 34px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: rgba(247,241,228,.75); margin-top: 1rem; max-width: 30ch; font-size: 1.02rem; }
.footer-col h5 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-soft); margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: .9rem; color: rgba(247,241,228,.72); margin-bottom: .65rem; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  margin-top: clamp(2.4rem, 5vw, 3.6rem); padding-top: 1.6rem; border-top: 1px solid rgba(247,241,228,.14);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: rgba(247,241,228,.55);
}
.social-row { display: flex; gap: .8rem; }
.social-pill {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(247,241,228,.25);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  transition: background .3s var(--ease-soft), transform .3s var(--ease-out);
}
.social-pill:hover { background: var(--accent); transform: translateY(-3px); }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 90;
  display: flex; align-items: center; gap: .6rem;
  background: var(--accent); color: var(--paper);
  padding: .85rem 1.15rem .85rem .95rem;
  border-radius: 100px;
  box-shadow: 0 16px 34px -14px rgba(127,29,43,.6);
  font-size: .84rem; font-weight: 600;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.wa-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 40px -12px rgba(127,29,43,.7); }
.wa-float svg { width: 20px; height: 20px; flex: none; }
.wa-float .wa-text { display: none; }
@media (min-width: 640px) { .wa-float .wa-text { display: inline; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

::selection { background: var(--accent); color: var(--paper); }
