/* ════════════════════════════════════════════════════════════════════════
   MEZCAL MACHETAZO — STYLES
   Editorial · craft · earth · agave
   ════════════════════════════════════════════════════════════════════════ */

/* ────────── 0 · FONTS ────────── */
@font-face {
  font-family: "Caudex";
  src: url("../assets/fonts/Caudex/Caudex-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Caudex";
  src: url("../assets/fonts/Caudex/Caudex-Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Caudex";
  src: url("../assets/fonts/Caudex/Caudex-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Caudex";
  src: url("../assets/fonts/Caudex/Caudex-BoldItalic.ttf") format("truetype");
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "DIN Neuzeit";
  src: url("../assets/fonts/din-neuzeit-bold-cond.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ────────── 1 · TOKENS ────────── */
:root {
  /* surfaces */
  --bg-deepest: #0b0b0c;
  --bg-deep: #161618;
  --bg-cream: #f1f1f0;
  --bg-cream-warm: #e7e7e6;

  /* ink */
  --ink-light: #f1f1ef;
  --ink-light-muted: rgba(241, 241, 239, 0.72);
  --ink-light-faded: rgba(241, 241, 239, 0.46);
  --ink-dark: #1b1b1c;
  --ink-dark-muted: rgba(27, 27, 28, 0.7);
  --ink-dark-faded: rgba(27, 27, 28, 0.5);

  /* hairlines */
  --rule-light: rgba(241, 241, 239, 0.16);
  --rule-dark: rgba(27, 27, 28, 0.14);

  /* region accents (pulled from agave glyphs on labels) */
  --c-guerrero: #c8392c;
  --c-oaxaca: #d6a23a;
  --c-slp: #4a7a3d;

  /* type */
  --ff-serif: "Caudex", "Cormorant Garamond", Georgia, serif;
  --ff-ui: "DIN Neuzeit", "Oswald", "Bebas Neue", sans-serif;

  --fs-eyebrow: 0.72rem;
  --fs-body: 1.06rem;
  --fs-lede: 1.32rem;
  --fs-h3: 2.4rem;
  --fs-h2: clamp(2.6rem, 6vw, 5.4rem);
  --fs-display: clamp(3.4rem, 9vw, 8.2rem);

  /* spacing */
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-y: clamp(5rem, 11vw, 9rem);

  /* easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ────────── 2 · RESET ────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-serif);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink-light);
  background: var(--bg-deepest);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.05; }
p {
  margin: 0 0 0.75em 0;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  word-spacing: -0.03em;
}
/* Preserve centered/right-aligned text where it belongs. */
.age-gate__content p,
.hero-inner p,
.section-head--centered p,
.hero-meta p,
.mezcal-region {
  text-align: center;
  hyphens: none;
  -webkit-hyphens: none;
}
.footer-legal p {
  text-align: right;
  hyphens: none;
  -webkit-hyphens: none;
}
input, textarea, select { font: inherit; color: inherit; }

/* selection */
::selection { background: var(--c-guerrero); color: var(--ink-light); }

/* grain overlay — subtle paper noise on dark sections */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

/* ────────── 3 · LAYOUT PRIMITIVES ────────── */
.section-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-inner--split {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.section-inner--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .section-inner--split, .section-inner--two { grid-template-columns: 1fr; }
}

.section-head { margin-bottom: 2.5rem; }
.section-head--centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }
.section-head--vertical { position: sticky; top: 6rem; }
@media (max-width: 820px) { .section-head--vertical { position: static; } }

.section-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.78rem;             /* match header nav */
  letter-spacing: 0.22em;          /* match header nav */
  text-transform: uppercase;
  color: var(--ink-light-faded);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.2rem 0;
}
.section-eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  letter-spacing: -0.012em;
  line-height: 0.92;
  display: block;
}
.section-title span { display: block; }
.section-title .italic {
  font-style: italic;
  padding-left: 0.35em;
  color: var(--ink-light-muted);
  margin-top: -0.08em;
}

.section-lede {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-lede);
  line-height: 1.4;
  word-spacing: -0.05em;
  color: var(--ink-light-muted);
  max-width: 62ch;
  margin: 1.6rem auto 0 auto;
}

.ornament {
  width: 60px;
  height: 1px;
  background: var(--ink-light-faded);
  margin-top: 2rem;
  position: relative;
}
.ornament::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-deep);
  color: var(--ink-light-faded);
  padding: 0 0.5rem;
  font-size: 0.7rem;
}

.italic { font-style: italic; }

/* ────────── 4 · BUTTONS ────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border: 1px solid currentColor;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.3s var(--ease-out);
}
.btn--solid {
  background: var(--ink-light);
  color: var(--ink-dark);
  border-color: var(--ink-light);
}
.btn--solid:hover {
  background: transparent;
  color: var(--ink-light);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: currentColor;
}
.btn--ghost:hover {
  background: var(--ink-light);
  color: var(--ink-dark);
}
.btn--text {
  background: transparent;
  border: 0;
  padding: 0.4rem 0;
  color: var(--ink-light-muted);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}
.btn--text:hover {
  background: transparent;
  color: var(--ink-light);
  transform: none;
}

/* ════════════════════════════════════════════════════════════════════════
   5 · AGE GATE
   ════════════════════════════════════════════════════════════════════════ */
.age-gate {
  position: fixed; inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.age-gate[hidden] { display: none !important; }
.age-gate__bg {
  position: absolute; inset: 0;
  background: url("../assets/photos/desert-agave.jpg") center / cover no-repeat;
  filter: brightness(0.45) saturate(0.9);
  z-index: -2;
}
.age-gate__veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,9,7,0.35) 0%, rgba(10,9,7,0.92) 70%);
  z-index: -1;
}
.age-gate__content {
  text-align: center;
  max-width: 480px;
  padding: 0 var(--gutter);
  animation: fade-up 0.9s var(--ease-out);
}
.age-gate__mark {
  width: 88px;
  margin: 0 auto 1.6rem;
  filter: invert(1);
  opacity: 0.92;
}
.age-gate__eyebrow {
  font-family: var(--ff-ui);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
  margin-bottom: 0.8rem;
}
.age-gate__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--ink-light);
}
.age-gate__sub {
  color: var(--ink-light-muted);
  margin-bottom: 2.2rem;
}
.age-gate__actions {
  display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem;
}
.age-gate__legal {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
}

/* ════════════════════════════════════════════════════════════════════════
   6 · HEADER
   ════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem var(--gutter);
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 9, 7, 0.74);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 0.7rem var(--gutter);
  border-bottom-color: var(--rule-light);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  width: 44px; height: 44px;
  filter: invert(1);
  transition: transform 0.4s var(--ease-out);
}
.brand:hover .brand-mark { transform: rotate(-6deg); }
.brand-word {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  color: var(--ink-light);
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.primary-nav a {
  position: relative;
  padding: 0.3rem 0;
  color: var(--ink-light-muted);
  transition: color 0.3s var(--ease-out);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ink-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.primary-nav a:hover { color: var(--ink-light); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-tools { display: flex; align-items: center; gap: 1rem; }
.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--ink-light-faded);
}
.lang-btn {
  padding: 0.3rem 0.2rem;
  color: var(--ink-light-faded);
  transition: color 0.3s var(--ease-out);
}
.lang-btn.is-active { color: var(--ink-light); }
.lang-btn:hover { color: var(--ink-light); }

.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 8px; right: 8px;
  height: 1px;
  background: var(--ink-light);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 25px; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 360px);
    height: 100vh;
    background: var(--bg-deepest);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    border-left: 1px solid var(--rule-light);
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { font-size: 0.95rem; }
  .menu-toggle { display: block; }
}

/* ════════════════════════════════════════════════════════════════════════
   7 · HERO
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  column-gap: 3.5rem;
  align-items: center;
  isolation: isolate;
  padding: 6rem var(--gutter) 4rem;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; row-gap: 2.5rem; }
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -3;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  animation: slow-zoom 16s var(--ease-out) infinite alternate;
  filter: brightness(0.62) contrast(1.04) saturate(0.95);
}
@keyframes slow-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.18); }
}
.hero-veil {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(10,9,7,0.45) 0%, rgba(10,9,7,0.1) 35%, rgba(10,9,7,0.86) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(10,9,7,0) 0%, rgba(10,9,7,0.55) 100%);
}

/* dust plumes — atmospheric */
.dust {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.dust-plume {
  position: absolute;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,236,219,0.045) 0%, rgba(244,236,219,0) 60%);
  filter: blur(40px);
}
.dust-1 { top: -10%; left: -20%; animation: drift 28s ease-in-out infinite alternate; }
.dust-2 { top: 40%; right: -25%; animation: drift 36s ease-in-out infinite alternate-reverse; }
.dust-3 { bottom: -20%; left: 30%; animation: drift 32s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(8vw, -6vw); }
}

.hero-inner {
  text-align: left;
  max-width: 620px;
  z-index: 1;
  justify-self: start;
}
.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.78rem;             /* match header nav */
  letter-spacing: 0.22em;          /* match header nav */
  text-transform: uppercase;
  color: var(--ink-light-faded);
  margin-bottom: 2rem;
}
.display {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6.4vw, 6rem);   /* trim down so "de la Madre" fits without colliding into the bottles */
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 2.2rem;
}
.display-line { display: block; }
.display-line.italic {
  font-style: italic;
  color: var(--ink-light-muted);
  padding-left: 1.6em;
}
.hero-inner p.hero-quote {            /* extra specificity beats `.hero-inner p { text-align: center }` */
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink-light-muted);
  max-width: 38ch;
  margin: 0 0 3rem;
  position: relative;
  text-align: left;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 620px;
  margin: 0;
  padding-top: 2.4rem;
  border-top: 1px solid var(--rule-light);
}
.hero-meta div { text-align: center; }     /* number + caption stacked & centered in each column */
.hero-meta span {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink-light);
}
.hero-meta em {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.78rem;              /* match header nav */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
  font-style: normal;
  margin-top: 0.5rem;
}
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}

/* ── Hero bottle trio (right column) ── */
.hero-bottles {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;       /* group hugs the left edge of the column */
  gap: 0;
  z-index: 1;
  justify-self: start;               /* shift the trio toward the text column */
  margin-left: -1.5rem;              /* nudge further left toward the text */
  position: relative;
}
.hero-bottles .hb {
  height: clamp(380px, 62vh, 640px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.32));   /* softer, smaller shadow */
  transition: transform .6s var(--ease-out, ease-out);
  /* Soft fade through the bottom ~25% so the in-image reflection reads lighter. */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0,0,0,0.45) 88%, rgba(0,0,0,0.15) 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0,0,0,0.45) 88%, rgba(0,0,0,0.15) 100%);
}
/* Bottles stand straight up, all on the same baseline; center bottle is 15% larger
   to create hierarchy without rotation or vertical offsets. */
.hero-bottles .hb--guerrero {
  transform: translateX(22%);
  transform-origin: bottom center;
  z-index: 1;
}
.hero-bottles .hb--slp {
  transform: translateX(-22%);
  transform-origin: bottom center;
  z-index: 2;
}
.hero-bottles .hb--oaxaca {
  transform: translateY(5%) scale(1.10);  /* shrunk 5% (1.15 → 1.10) + dropped 5% lower */
  transform-origin: bottom center;
  z-index: 3;
}
@media (max-width: 900px) {
  .hero-bottles { justify-self: center; }
  .hero-bottles .hb { height: clamp(260px, 50vh, 420px); }
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-ui);
  font-size: 0.78rem;             /* match header nav */
  letter-spacing: 0.22em;          /* match header nav */
  text-transform: uppercase;
  color: var(--ink-light-faded);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.scroll-cue svg { animation: cue-bob 2.4s var(--ease-out) infinite; }
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════════════
   8 · LEYENDA
   ════════════════════════════════════════════════════════════════════════ */
.leyenda {
  background: var(--bg-deep);
  padding: var(--section-y) 0;
  position: relative;
}
.leyenda::before {
  content: "MAYAHUEL";
  position: absolute;
  top: 2.5rem; right: 2rem;
  font-family: var(--ff-ui);
  font-size: clamp(4rem, 14vw, 12rem);
  color: rgba(241, 241, 239, 0.03);
  letter-spacing: 0.06em;
  pointer-events: none;
  line-height: 1;
}
.leyenda-body {
  font-size: clamp(1.06rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-light-muted);
  max-width: 60ch;
}
.leyenda-body p { margin-bottom: 1.05em; }
.leyenda-body em { font-style: italic; color: var(--ink-light); }
.pull {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.3;
  color: var(--ink-light);
  border-left: 2px solid var(--c-guerrero);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.4rem 0;
}

#leyenda .section-head { align-self: start; }

.leyenda-img {
  margin: 2.6rem auto 0;
  max-width: 22rem;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-deep);
}
.leyenda-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════════════════════════════════════════════
   9 · HISTORIA
   ════════════════════════════════════════════════════════════════════════ */
.historia {
  background: var(--bg-cream);
  color: var(--ink-dark);
  padding: var(--section-y) 0;
  position: relative;
}
.historia .section-eyebrow { color: var(--ink-dark-faded); }
.historia .section-title .italic { color: var(--ink-dark-muted); }
.historia-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-cream-warm);
}
.historia-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.04);
  transform: scale(1.02);
  transition: transform 1.6s var(--ease-out);
}
.year-tag {
  position: absolute;
  bottom: -0.2em; left: -0.05em;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 1;
  color: var(--bg-cream);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  pointer-events: none;
}
.historia .lede {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-lede);
  line-height: 1.4;
  word-spacing: -0.05em;
  color: var(--ink-dark);
  margin: 1.8rem 0;
}
.historia p { color: var(--ink-dark-muted); line-height: 1.55; }
.historia strong { color: var(--ink-dark); font-weight: 400; }

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}
.badge {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 0.4rem;
  border: 1px solid var(--ink-dark);
  color: var(--ink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 620px) {
  .badges { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════════════
   10 · MEZCALES (bottle sections)
   ════════════════════════════════════════════════════════════════════════ */
.mezcales {
  background: var(--bg-deepest);
  padding: var(--section-y) 0 0;
}
.mezcales .section-head { margin-bottom: var(--section-y); }

.mezcal {
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--rule-light);
  position: relative;
  overflow: hidden;
}
.mezcal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, var(--accent-color, transparent) 0%, transparent 55%);
  opacity: 0.13;
  pointer-events: none;
}
.mezcal--guerrero { --accent-color: var(--c-guerrero); }
.mezcal--oaxaca { --accent-color: var(--c-oaxaca); }
.mezcal--slp { --accent-color: var(--c-slp); }

/* Ghosted state-name watermark behind each bottle section — placed at the top,
   just like MAYAHUEL in the Leyenda section. */
.mezcal::after {
  position: absolute;
  top: 2.5rem;
  font-family: var(--ff-ui);
  color: rgba(241, 241, 239, 0.03);
  letter-spacing: 0.04em;
  line-height: 0.9;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.mezcal--guerrero::after { content: "GUERRERO";        right: 3%;  font-size: clamp(4rem, 15vw, 13rem); }
.mezcal--oaxaca::after   { content: "OAXACA";          left: 3%;   font-size: clamp(4rem, 15vw, 13rem); }
.mezcal--slp::after      { content: "SAN LUIS POTOSÍ"; right: 3%;  font-size: clamp(4rem, 15vw, 13rem); }

.mezcal-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.mezcal-inner--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}
.mezcal-inner--reverse .mezcal-bottle { order: 2; }
.mezcal-inner--reverse .mezcal-copy { order: 1; }

@media (max-width: 820px) {
  .mezcal-inner, .mezcal-inner--reverse {
    grid-template-columns: 1fr;
  }
  .mezcal-inner--reverse .mezcal-bottle { order: 0; }
  .mezcal-inner--reverse .mezcal-copy { order: 0; }
}

.mezcal-bottle {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
/* No cast shadow — the bottle dissolves into the background from the bottom up */
.mezcal-bottle::after { display: none; }
.mezcal-bottle img {
  max-height: 620px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: none;
  transform: translateY(15%);   /* nudge down so the solid base meets the paragraph bottom; fade trails below */
  -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.25) 6%, rgba(0,0,0,0.7) 14%, #000 22%);
          mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.25) 6%, rgba(0,0,0,0.7) 14%, #000 22%);
}

.mezcal-copy { max-width: 540px; }
/* Iso-logo + state name read as a single badge: glyph above, label flush below.
   Both elements align flush-left within the bottle copy column. */
.region-marker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 1.8rem;
}
.region-glyph {
  width: 72px;
  height: 72px;
  margin: 0;
  object-fit: contain;
  display: block;
}
.mezcal-region {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin: 0;
  text-align: left;
  white-space: nowrap;
}
/* Oaxaca only — center the region label under its iso-logo */
#oaxaca .region-marker { align-items: center; }
#oaxaca .mezcal-region { text-align: center; }
.mezcal-name {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  line-height: 1;
  margin-bottom: 2rem;
}
.mezcal-name .italic {
  font-style: italic;
  color: var(--ink-light-muted);
  display: block;
  padding-left: 1.2em;
}
/* When italic acts as a prefix (e.g. "Wild Cupreata" on EN),
   it appears flush-left above the main name. */
.mezcal-name .italic:first-child {
  padding-left: 0;
  font-size: 0.46em;
  letter-spacing: 0.06em;
  margin-bottom: 0.35em;
  color: var(--accent-color);
  text-transform: lowercase;
}

.mezcal-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin: 2rem 0;
  padding: 1.6rem 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.mezcal-specs li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mezcal-specs li.spec-full {
  grid-column: 1 / -1;
  padding-top: 0.8rem;
  margin-top: 0.6rem;
  border-top: 1px solid var(--rule-light);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.spec-full__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mezcal-specs li.spec-full em {
  font-style: italic;
  color: var(--ink-light-muted);
}
.btn--ficha {
  font-size: 0.72rem;
  padding: 0.7rem 1.3rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.mezcal-specs span {
  font-family: var(--ff-ui);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
}
.mezcal-specs em {
  font-family: var(--ff-serif);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--ink-light);
}

.mezcal-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-light-muted);
  margin-bottom: 2rem;
}

.tasting {
  background: rgba(244, 236, 219, 0.04);
  border-left: 2px solid var(--accent-color);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.tasting-label {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
  margin-bottom: 0.5rem;
}
.tasting-notes {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.6;
}

.motto {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.35;
  color: var(--ink-light);
  margin: 2rem 0;
  padding: 0 0 0 2.4em;
  position: relative;
}
.motto::before {
  content: "❝";
  position: absolute;
  left: 0;
  top: -0.15em;
  font-size: 2.4em;
  font-style: normal;
  color: var(--accent-color);
  line-height: 1;
  width: 1.8em;
  text-align: left;
}

.mezcal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-light);
}
.mezcal-price {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-style: italic;
}
.mezcal-price em {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  margin-left: 0.4rem;
  color: var(--ink-light-faded);
}

/* ════════════════════════════════════════════════════════════════════════
   11 · PROCESO
   ════════════════════════════════════════════════════════════════════════ */
.proceso {
  background: var(--bg-cream);
  color: var(--ink-dark);
  padding: var(--section-y) 0;
}
.proceso .section-eyebrow { color: var(--ink-dark-faded); }
.proceso .section-title .italic { color: var(--ink-dark-muted); }
.proceso .section-lede { color: var(--ink-dark-muted); }

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.proceso-step {
  padding: 2rem 1.4rem;
  border-right: 1px solid var(--rule-dark);
  position: relative;
  text-align: center;
}
.proceso-step:last-child { border-right: 0; }
.proceso-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.4rem;               /* centered horizontally in the column */
  color: var(--c-guerrero);            /* hand-drawn line art inherits the section accent */
  opacity: 0.85;
}
.proceso-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.proceso-num {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--c-guerrero);
  margin-bottom: 1rem;
}
.proceso-step h4 {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.proceso-step p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-dark-muted);
  margin: 0;
  text-align: center;        /* override the global `p { text-align: justify }` */
}
@media (max-width: 920px) {
  .proceso-steps {
    grid-template-columns: 1fr;
  }
  .proceso-step {
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
  }
  .proceso-step:last-child { border-bottom: 0; }
}

/* ════════════════════════════════════════════════════════════════════════
   11.5 · GALERÍA (Las Tierras)
   ════════════════════════════════════════════════════════════════════════ */
.galeria {
  background: var(--bg-deepest);
  padding: var(--section-y) 0;
}
.galeria .section-head { margin-bottom: 4rem; }

.galeria-row {
  margin-bottom: 4.5rem;
}
.galeria-row:last-child { margin-bottom: 0; }

.galeria-row--guerrero { --accent-color: var(--c-guerrero); }
.galeria-row--oaxaca   { --accent-color: var(--c-oaxaca); }
.galeria-row--slp      { --accent-color: var(--c-slp); }

.galeria-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.galeria-bar {
  width: 48px;
  height: 1px;
  background: var(--accent-color);
  flex-shrink: 0;
}
.galeria-region {
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.galeria-agave {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-light-faded);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.galeria-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-deep);
  aspect-ratio: 3 / 2;
}
.galeria-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 0.5s var(--ease-out);
  filter: saturate(0.92) brightness(0.92);
}
.galeria-grid figure:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}

@media (max-width: 700px) {
  .galeria-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   12 · DISTRIBUCIÓN
   ════════════════════════════════════════════════════════════════════════ */
.distribucion {
  background: var(--bg-deep);
  padding: 4rem 0 3rem;          /* much shorter — was var(--section-y) 0 */
  position: relative;
  overflow: hidden;
}

/* ── Origin map (Mexico outline + pulsing pins + floating labels) ── */
.origin-map {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 5rem auto 4rem;
  aspect-ratio: 880 / 600;
}
.origin-map__base {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.45;
}

/* Pins */
.origin-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: currentColor;
  box-shadow:
    0 0 0 3px rgba(20,17,14,0.85),
    0 0 24px 0 currentColor;
}
.origin-pin i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid currentColor;
  animation: pin-ripple 2.6s var(--ease-out) infinite;
}
@keyframes pin-ripple {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(3.6); opacity: 0;   }
}
.pin--guerrero { color: var(--c-guerrero); }
.pin--oaxaca   { color: var(--c-oaxaca); }
.pin--slp      { color: var(--c-slp); }

/* Floating labels (desktop) */
.origin-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--ff-ui);
}
.origin-label__bar {
  width: 56px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.origin-label__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.origin-label__region {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.origin-label__meta {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-light-faded);
  margin-top: 0.35rem;
  letter-spacing: 0;
}

/* Per-region label positions and colors */
.label--slp {
  color: var(--c-slp);
  top: 38%;
  right: -2%;
  flex-direction: row-reverse;
  text-align: right;
}
.label--slp .origin-label__text { align-items: flex-end; }

.label--guerrero {
  color: var(--c-guerrero);
  top: 70%;
  left: -2%;
  text-align: right;
  flex-direction: row-reverse;
}
.label--guerrero .origin-label__text { align-items: flex-end; }

.label--oaxaca {
  color: var(--c-oaxaca);
  top: 88%;
  left: 55%;
}

/* Mobile stacked list (hidden on desktop) */
.origin-list {
  display: none;
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
}
.origin-list__item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--rule-light);
}
.origin-list__item:last-child { border-bottom: 1px solid var(--rule-light); }
.origin-list__item--guerrero { color: var(--c-guerrero); }
.origin-list__item--oaxaca   { color: var(--c-oaxaca); }
.origin-list__item--slp      { color: var(--c-slp); }
.origin-list__bar {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.origin-list__region {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.origin-list__meta {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-light-faded);
}

@media (max-width: 760px) {
  .origin-map { margin: 3rem auto 1rem; }
  .origin-label { display: none; }
  .origin-list { display: block; }
}

/* ── Global distribution strip ── */
.distribucion-global {
  text-align: center;
  margin-top: 1.5rem;          /* was 4rem */
  padding-top: 1.5rem;         /* was 3rem  */
  padding-bottom: 0.5rem;      /* tight close — button below was removed */
  border-top: 1px solid var(--rule-light);
}
.dist-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
  text-align: center;           /* explicit centering so parent's text-align isn't overridden */
  margin: 0 auto 1rem;          /* was 1.4rem bottom — tightened */
}
.dist-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin: 0;                    /* was 0 0 2.2rem — bottom margin dropped since button gone */
  padding: 0;
  list-style: none;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-light);
}
.dist-chips li {
  position: relative;
}
.dist-chips li + li::before {
  content: "·";
  position: absolute;
  left: -1.1rem;
  color: var(--c-oaxaca);
}

/* ════════════════════════════════════════════════════════════════════════
   13 · CONTACTO
   ════════════════════════════════════════════════════════════════════════ */
.contacto {
  background: var(--bg-deepest);
  padding: var(--section-y) 0;
}
.contacto-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
  font-family: var(--ff-serif);
}
.contacto-social a {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-light);
  border-bottom: 1px solid var(--rule-light);
  padding-bottom: 0.6rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.contacto-social a em {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
}
.contacto-social a:hover { color: var(--c-guerrero); border-color: var(--c-guerrero); }

/* Footer QR — sits in the right column above the © 2026 line. Links to Linktree. */
.footer-qr {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.4rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule-light);
  border-radius: 4px;
  text-decoration: none;
  width: fit-content;
  text-align: left;          /* override the right-aligned parent */
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.footer-qr:hover { background: rgba(255,255,255,0.07); border-color: var(--c-guerrero); }
.footer-qr img {
  width: 54px;
  height: 54px;
  background: #fff;          /* QR needs white background to scan reliably */
  padding: 3px;
  border-radius: 2px;
  display: block;
}
.footer-qr span {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  line-height: 1.15;
}
.footer-qr em {
  font-family: var(--ff-ui);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
}
.footer-qr strong {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-light);
}

.contacto-form {
  display: grid;
  gap: 1.4rem;
}
.contacto-form label {
  display: block;
}
.contacto-form span {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
  margin-bottom: 0.5rem;
  display: block;
}
.contacto-form input,
.contacto-form select,
.contacto-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-light);
  padding: 0.6rem 0;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--ink-light);
  outline: none;
  transition: border-color 0.3s var(--ease-out);
}
.contacto-form select {
  appearance: none;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%23f4ecdb' stroke-opacity='0.6' d='M1 1l4 4 4-4'/></svg>") no-repeat right 0.5rem center;
}
.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus { border-color: var(--ink-light); }
.contacto-form textarea { resize: vertical; min-height: 80px; }
.contacto-form .btn { justify-self: start; margin-top: 0.5rem; }
.form-note {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-slp);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   14 · FOOTER
   ════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #07060a;
  border-top: 1px solid var(--rule-light);
  padding: 4rem var(--gutter) 2.5rem;
  color: var(--ink-light-muted);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand img {
  width: 80px;
  filter: invert(1) opacity(0.75);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-light);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  font-family: var(--ff-ui);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-nav a { color: var(--ink-light-faded); transition: color 0.3s var(--ease-out); }
.footer-nav a:hover { color: var(--ink-light); }
.footer-legal {
  font-family: var(--ff-ui);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light-faded);
  text-align: right;
}
.footer-legal p { margin: 0 0 0.6rem 0; }
.responsabilidad { color: var(--c-guerrero) !important; }

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
}

/* ════════════════════════════════════════════════════════════════════════
   15 · SCROLL REVEALS
   ════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ────────── 16 · LANGUAGE-CONDITIONAL VISIBILITY ──────────
   Shop / Buy-button experience is ES-only (Mexico-only fulfillment).
   EN sees a distributor-inquiry CTA instead.
   Driven by JS setting html[data-lang="es"|"en"] on documentElement. */
html[data-lang="es"] .lang-en-only { display: none !important; }
html[data-lang="en"] .lang-es-only { display: none !important; }

.mezcal-cta--inquire {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
.mezcal-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.mezcal-cta--inquire .mezcal-cta-buttons {
  align-items: flex-start;
}
.mezcal-note {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-light-muted);
  margin: 0;
  max-width: 38ch;
}

/* ────────── 17 · REDUCED MOTION ────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-bg img { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
