/* ============================================================
   CaboMule.com — design system
   Palette: copper / lime / sunset coral / deep Pacific teal / cream
   Fonts: Fraunces (display) + Outfit (body)
   ============================================================ */

:root {
  /* Color tokens */
  --copper: #b26a2b;
  --copper-bright: #d98e4a;
  --copper-deep: #8a4d1b;
  --copper-shine: #f2b878;
  --cream: #fdf6ea;
  --cream-deep: #f6e9d4;
  --ink: #22303a;
  --ink-soft: #4a5a66;
  --teal-night: #0e2a38;
  --teal-deep: #14384a;
  --teal-mid: #1d4d63;
  --lime: #8db92e;
  --lime-bright: #a9d33f;
  --lime-deep: #5d7f1c;
  --coral: #e4572e;
  --coral-deep: #c43e18;
  --sun: #f7b32b;
  --pitaya: #d6386f;   /* red dragon fruit — the Baja Oasis accent */
  --white: #ffffff;

  /* Type scale (≥1.25 ratio between steps) */
  --font-display: "Young Serif", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: 1.05rem;
  --text-lg: 1.35rem;
  --text-xl: 1.75rem;
  --text-2xl: clamp(2.2rem, 3.8vw, 2.9rem);
  --text-hero: clamp(2.9rem, 7vw, 5.4rem);

  /* Rhythm */
  --space-section: clamp(4rem, 9vw, 7.5rem);
  --container: 72rem;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 10px 30px -12px rgba(34, 48, 58, 0.25);
  --shadow-lift: 0 22px 45px -18px rgba(34, 48, 58, 0.35);

  /* Z scale */
  --z-nav: 50;
  --z-pin: 60;
  --z-gate: 90;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
a { color: var(--copper-deep); }
button { font-family: inherit; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px; }
.on-dark .eyebrow { color: var(--sun); }
.on-dark .eyebrow::before { background: var(--sun); }

.section { padding-block: var(--space-section); position: relative; }
.section-title { font-size: var(--text-2xl); max-width: 22ch; }
.section-lede { font-size: var(--text-lg); color: var(--ink-soft); max-width: 58ch; }
.on-dark { color: var(--cream); }
.on-dark .section-lede { color: rgba(253, 246, 234, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.8rem 1.7rem;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.btn-primary { background: var(--coral); color: var(--white); box-shadow: 0 8px 20px -8px rgba(228, 87, 46, 0.55); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--coral-deep); box-shadow: 0 10px 24px -8px rgba(196, 62, 24, 0.6); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(253, 246, 234, 0.45); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--cream); background: rgba(253, 246, 234, 0.08); }
.btn-copper { background: linear-gradient(135deg, var(--copper-bright), var(--copper-deep)); color: var(--white); }
.btn-copper:hover, .btn-copper:focus-visible { box-shadow: 0 10px 24px -8px rgba(138, 77, 27, 0.6); }
:where(a, button, summary, input[type="submit"]):focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: var(--z-gate);
  display: flex; align-items: center; justify-content: center;
  background: rgba(14, 42, 56, 0.92); backdrop-filter: blur(6px);
  padding: 1.5rem;
}
.age-gate[hidden] { display: none; }
.age-gate-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem); max-width: 30rem; text-align: center;
  box-shadow: var(--shadow-lift);
}
.age-gate-card h2 { font-size: var(--text-xl); }
.age-gate-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.age-gate small { display: block; margin-top: 1.2rem; color: var(--ink-soft); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(253, 246, 234, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(178, 106, 43, 0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 66px; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-size: 1.3rem; }
.nav-logo svg { width: 30px; height: 30px; }
.nav-links { display: flex; gap: clamp(0.8rem, 2vw, 1.6rem); list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: var(--text-sm); padding: 0.5rem 0.2rem; transition: color 180ms ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--coral); }
.nav-cta { white-space: nowrap; min-height: 42px; padding: 0.55rem 1.2rem; font-size: var(--text-sm); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.6rem; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 0.6rem 1.4rem 1.2rem;
    background: var(--cream); border-bottom: 1px solid rgba(178, 106, 43, 0.18);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.7rem 0; font-size: 1.05rem; }
  .nav-cta { display: none; }
}

/* ---------- Papel picado bunting ---------- */
.picado { display: block; width: 100%; height: auto; }
.picado-strip { line-height: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(247, 179, 43, 0.25), transparent 55%),
    radial-gradient(100% 80% at 10% 90%, rgba(141, 185, 46, 0.16), transparent 50%),
    linear-gradient(175deg, var(--teal-night) 0%, var(--teal-deep) 55%, var(--teal-mid) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 56, 0.6) 0%, rgba(14, 42, 56, 0.35) 45%, rgba(14, 42, 56, 0.8) 100%);
}
.hero .picado-strip, .hero-inner { position: relative; z-index: 1; }
.hero-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: min(82vh, 760px);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero-inner .hero-tagline { margin-inline: auto; }
.hero-inner .hero-actions { justify-content: center; }
.hero h1 { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45); }
.hero-tagline { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5); }
.hero h1 { font-size: var(--text-hero); letter-spacing: -0.01em; }
.hero h1 .accent { color: var(--copper-shine); }
.hero-tagline { font-size: var(--text-lg); color: rgba(253, 246, 234, 0.85); max-width: 46ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-art { position: relative; }
.hero-art svg { width: min(380px, 80%); margin-inline: auto; filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35)); }
.hero-presented {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(253, 246, 234, 0.18);
  font-size: var(--text-sm); color: rgba(253, 246, 234, 0.85);
}
.hero-presented strong { color: var(--cream); font-weight: 600; }
.hero-sponsors { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.2rem 2.2rem; }
.hero-sponsors-label {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(253, 246, 234, 0.6);
}
.hero-sponsors a { display: inline-flex; opacity: 0.92; transition: opacity 0.25s ease, transform 0.25s ease; }
.hero-sponsors a:hover { opacity: 1; transform: translateY(-2px); }
.hero-sponsors img { display: block; width: auto; }
.hero-sponsors .logo-ll { height: 84px; }
.hero-sponsors .logo-palmilla { height: 58px; }

/* ---------- Living postcards ---------- */
.postcard {
  position: relative; display: block; margin: 1.8rem 0 0;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16 / 9; box-shadow: var(--shadow-lift);
}
.postcard img, .postcard video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.postcard figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2rem 1.2rem 0.8rem; font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(transparent, rgba(14, 42, 56, 0.72));
}
.postcard-wide { max-width: 56rem; margin-inline: auto; margin-top: 2.4rem; }
[data-video] video { opacity: 0; transition: opacity 700ms ease; }
[data-video].video-in video { opacity: 1; }

/* ---------- Flagship recipe ---------- */
.flagship { background: var(--cream); }
.flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.recipe-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); overflow: hidden;
  border: 1px solid rgba(178, 106, 43, 0.15);
}
.recipe-card-head {
  background: linear-gradient(135deg, var(--copper-bright), var(--copper-deep));
  color: var(--white); padding: 1.6rem 2rem;
}
.recipe-card-head h3 { margin: 0; font-size: var(--text-xl); }
.recipe-card-head p { margin: 0.3rem 0 0; color: rgba(255, 255, 255, 0.85); font-size: var(--text-sm); }
.recipe-card-body { padding: 1.8rem 2rem 2rem; }
.spec-list { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.65rem 0; border-bottom: 1px dashed rgba(178, 106, 43, 0.3);
  font-size: var(--text-base);
}
.spec-list li span:first-child { font-weight: 600; }
.spec-list li span:last-child { color: var(--copper-deep); font-weight: 700; white-space: nowrap; }
.method-steps { margin: 0; padding-left: 1.3rem; }
.method-steps li { margin-bottom: 0.55rem; }

/* ---------- Recipe variation cards ---------- */
.variations { background: var(--cream-deep); }
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1.6rem 0 2.2rem; }
.filter-btn {
  min-height: 44px; padding: 0.5rem 1.2rem; border-radius: 999px;
  border: 2px solid rgba(34, 48, 58, 0.2); background: transparent;
  font-weight: 600; font-size: var(--text-sm); color: var(--ink-soft);
  cursor: pointer; transition: all 180ms ease;
}
.filter-btn:hover { border-color: var(--copper); color: var(--copper-deep); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.mule-card {
  --accent: var(--copper-bright);
  position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-card);
  padding: 1.9rem 1.6rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: box-shadow 220ms ease, translate 220ms ease;
}
.mule-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--accent); }
.mule-card:hover { box-shadow: var(--shadow-lift); translate: 0 -4px; }
.mule-card[data-tag="spicy"] { --accent: var(--coral); }
.mule-card[data-tag="fruity"] { --accent: var(--sun); }
.mule-card[data-tag="smoky"] { --accent: var(--teal-mid); }
.mule-card[data-tag="fresh"] { --accent: var(--lime); }
.mule-card h3 { font-size: 1.35rem; margin-bottom: 0.1rem; }
.mule-tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
  background: var(--cream-deep); border-radius: 999px; padding: 0.25rem 0.75rem;
}
.mule-desc { color: var(--ink-soft); font-size: var(--text-sm); flex-grow: 1; }
.mule-card details { margin-top: 0.6rem; border-top: 1px dashed rgba(178, 106, 43, 0.3); padding-top: 0.6rem; }
.mule-card summary { cursor: pointer; font-weight: 700; color: var(--copper-deep); font-size: var(--text-sm); }
.mule-card .spec-list li { padding: 0.4rem 0; font-size: var(--text-sm); }

/* ---------- Ginger beer guide ---------- */
.gingers { background: var(--teal-night); }
.ginger-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.ginger-card {
  background: rgba(253, 246, 234, 0.06); border: 1px solid rgba(253, 246, 234, 0.14);
  border-radius: var(--radius); padding: 1.5rem 1.6rem;
}
.ginger-card h3 { font-size: 1.25rem; color: var(--cream); }
.ginger-card p { color: rgba(253, 246, 234, 0.75); font-size: var(--text-sm); }
.meter { display: flex; align-items: center; gap: 0.7rem; margin: 0.45rem 0; font-size: var(--text-xs); color: rgba(253, 246, 234, 0.65); }
.meter-label { width: 3.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.meter-track { flex: 1; height: 8px; border-radius: 4px; background: rgba(253, 246, 234, 0.15); overflow: hidden; }
.meter-fill { height: 100%; border-radius: 4px; background: var(--coral); }
.meter-fill.sweet { background: var(--sun); }
.ginger-best { margin-top: 0.8rem; font-size: var(--text-xs); color: var(--lime-bright); font-weight: 600; letter-spacing: 0.05em; }

/* ---------- Origin timeline ---------- */
.origin { background: var(--cream); }
.timeline { list-style: none; margin: 2.5rem 0 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 3px; border-radius: 2px;
  background: linear-gradient(var(--copper-bright), var(--coral));
}
.timeline li { position: relative; padding: 0 0 2.2rem 2.6rem; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--cream); border: 4px solid var(--copper);
}
.timeline .year { font-family: var(--font-display); font-size: var(--text-lg); color: var(--copper-deep); display: block; }
.timeline p { color: var(--ink-soft); max-width: 60ch; margin-bottom: 0; }

/* ---------- Submit + contest ---------- */
.submit-mule { background: var(--cream-deep); }
.submit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-card); }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 700; font-size: var(--text-sm); margin-bottom: 0.35rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.75rem 0.9rem; font: inherit; color: var(--ink);
  border: 2px solid rgba(34, 48, 58, 0.18); border-radius: 10px;
  background: var(--cream); transition: border-color 180ms ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--copper); }
.form-note { font-size: var(--text-xs); color: var(--ink-soft); }

.contest {
  background:
    radial-gradient(100% 120% at 90% 0%, rgba(247, 179, 43, 0.2), transparent 55%),
    linear-gradient(160deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
}
.contest .section-lede { color: rgba(255, 255, 255, 0.88); }
.contest-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; counter-reset: step; }
.contest-step { background: rgba(255, 255, 255, 0.12); border-radius: var(--radius); padding: 1.5rem; }
.contest-step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); color: var(--coral-deep);
  font-family: var(--font-display); font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.contest-step h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.contest-step p { color: rgba(255, 255, 255, 0.85); font-size: var(--text-sm); margin: 0; }

/* ---------- Sponsors ---------- */
.sponsors { background: var(--teal-night); }
.sponsor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.4rem; }
.sponsor-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(170deg, rgba(253, 246, 234, 0.08), rgba(253, 246, 234, 0.03));
  border: 1px solid rgba(253, 246, 234, 0.16);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.sponsor-kicker { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sun); }
.sponsor-logo { display: inline-flex; align-self: flex-start; margin-bottom: 0.5rem; opacity: 0.95; transition: opacity 0.25s ease; }
.sponsor-logo:hover { opacity: 1; }
.sponsor-logo img { display: block; width: auto; }
.sponsor-logo .logo-ll { height: 104px; }
.sponsor-logo .logo-palmilla { height: 66px; }
.sponsor-card h3 { font-size: var(--text-xl); color: var(--cream); margin-bottom: 0.2rem; }
.sponsor-card p { color: rgba(253, 246, 234, 0.78); }
.sponsor-card .btn { align-self: flex-start; margin-top: auto; }
.sponsor-invite { margin-top: 2rem; text-align: center; color: rgba(253, 246, 234, 0.6); font-size: var(--text-sm); }
.sponsor-invite a { color: var(--sun); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(253, 246, 234, 0.7); padding-block: 2.8rem; font-size: var(--text-sm); }
.footer-inner { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(253, 246, 234, 0.7); transition: color 180ms ease; }
.footer-social a:hover { color: var(--sun); }
.footer-social svg { width: 22px; height: 22px; }
.footer-legal { width: 100%; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(253, 246, 234, 0.15); font-size: var(--text-xs); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; translate: 0 26px; transition: opacity 600ms ease, translate 600ms ease; }
.reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: none; transition: none; }
  .mule-card:hover { translate: none; }
}

@media (max-width: 820px) {
  .flagship-grid, .submit-grid, .sponsor-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PERSISTENT SPONSOR MARK
   Lower-right, deliberately quiet. It rides above a dark video hero and a
   cream section equally, so it carries its own dark plate rather than
   trusting whatever is behind it.
   ============================================================ */

.sponsor-pin {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: var(--z-pin);    /* above the sticky nav (50), below the gate (90) */
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(14, 42, 56, 0.82);
  border: 1px solid rgba(253, 246, 234, 0.16);
  backdrop-filter: blur(8px);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 220ms ease, transform 220ms ease;
}
.sponsor-pin:hover,
.sponsor-pin:focus-visible { opacity: 1; transform: translateY(-2px); }
.sponsor-pin[hidden] { display: none; }

.sponsor-pin-label {
  font-size: 0.62rem;       /* below the type scale on purpose: this is a
                               disclosure label, not content competing for
                               attention. Contrast carries it, not size. */
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 246, 234, 0.72);
  white-space: nowrap;
}
.sponsor-pin img {
  height: 26px;
  width: auto;
  display: block;
}

/* On a phone the label is the first thing to go — the logo still discloses
   the relationship, and the screen edge is scarce. */
@media (max-width: 560px) {
  .sponsor-pin { right: 0.7rem; bottom: 0.7rem; padding: 0.45rem 0.6rem; }
  .sponsor-pin-label { display: none; }
  .sponsor-pin img { height: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .sponsor-pin { transition: none; }
  .sponsor-pin:hover, .sponsor-pin:focus-visible { transform: none; }
}

/* ============================================================
   THE SEVEN MULES OF CABO
   A heat ladder, not a grid. Every card carries its own --accent
   (set inline per drink) so the rail colour, the number and the
   heat meter all agree without seven near-identical rule blocks.
   ============================================================ */

.seven { background: var(--teal-deep); }

/* The house build sits OUTSIDE the numbered ladder on purpose: it is
   the line the other six are measured against, not a rung on it. */
.seven-base {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: 1.6rem 2.4rem;
  align-items: start;
  margin: 2.4rem 0 3rem;
  padding: 1.8rem 1.9rem;
  border-radius: 14px;
  background: rgba(253, 246, 234, 0.06);
}
.seven-base-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.seven-base h3 { font-size: var(--text-xl); margin: 0 0 0.35rem; }
.seven-base-body p { color: rgba(253, 246, 234, 0.82); margin: 0 0 0.8rem; }
.seven-base-body p:last-child { margin-bottom: 0; }
.seven-note { font-size: var(--text-sm); color: rgba(253, 246, 234, 0.6); }
.seven-note a { color: var(--sun); text-decoration: underline; text-underline-offset: 3px; }

.seven-rung-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 246, 234, 0.5);
  margin: 0 0 1.1rem;
}

.seven-ladder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.1rem;
}

.seven-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.3rem;
  border-radius: 14px;
  background: rgba(253, 246, 234, 0.06);
  display: flex;
  flex-direction: column;
}
/* No accent rail on these cards, deliberately. The obvious move — a 4px
   coloured border down one side, which is what the source menu PDF used —
   is the single most generic card treatment there is, and here it was also
   redundant: the rung number and the meter fill already carry the drink's
   accent. Three restatements of one idea. The number does the work instead. */

/* The rung number is scale, not decoration — it is what makes the ladder
   readable at a glance while scrolling past.

   It is deliberately NOT in --accent. Measured on this ground, the six
   accents scored 1.33–3.69 against the card (only the yellow cleared 3:1)
   because they are dark colours chosen to sit on light card stock — the
   source menu was a white page. A rail can get away with that; a number
   carrying sequence cannot. Cream reads as one consistent ladder marker,
   which is what a sequence should look like, and the accent moves to the
   one place it means something: how far the heat meter fills. */
.seven-num {
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1;
  color: rgba(253, 246, 234, 0.55);
  margin-bottom: 0.35rem;
}
.seven-card h3 { font-size: var(--text-lg); margin: 0 0 0.3rem; }
/* Same reasoning as .seven-num, and it bites harder here: this is small
   uppercase text, so it owes 4.5:1, and --copper-deep on this ground
   managed 1.33. --sun measures 5.6:1 and is used for every rung. */
.seven-heat {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 0 0.55rem;
}
.seven-base .seven-heat { margin-bottom: 0; }
.seven-twist {
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(253, 246, 234, 0.72);
  margin: 0 0 0.7rem;
}
.seven-desc {
  color: rgba(253, 246, 234, 0.82);
  margin: 0 0 0.9rem;
  flex: 1;   /* keeps the meter + details aligned across a ragged row */
}
.seven-card .meter { margin-bottom: 0.9rem; }
.seven-card .meter-fill { background: var(--accent); }
.seven-card details { margin-top: auto; }
.seven-card summary {
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--sun);
  padding: 0.35rem 0;
}
.spec-note {
  font-size: var(--text-sm);
  color: rgba(253, 246, 234, 0.62);
  margin: 0.6rem 0 0;
}

@media (max-width: 720px) {
  .seven-base { grid-template-columns: 1fr; gap: 1rem; padding: 1.4rem 1.3rem; }
}
