/* The Dancing Gringo — shared styles (landing + brand guidelines) */

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: #F1E9D7;
  color: #2A2A30;
  font-family: 'Spectral', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}
a { color: #1C2A47; text-decoration: none; }
a:hover { color: #9A7635; }
body.page-brand a { color: #9A7635; }
body.page-brand a:hover { color: #1C2A47; }

img { max-width: 100%; }
picture { display: contents; }

::selection { background: #C2984B; color: #14203A; }
:focus-visible { outline: 2px solid #C2984B; outline-offset: 2px; }
[id] { scroll-margin-top: 80px; }

@keyframes dg-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes dg-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dg-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes dg-sway { 0%, 100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.5deg); } }
@keyframes dg-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes dg-pop { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes dg-groove {
  0% { transform: rotate(0); }
  20% { transform: rotate(-5deg) scale(1.02); }
  40% { transform: rotate(4deg); }
  60% { transform: rotate(-3deg) scale(1.02); }
  80% { transform: rotate(2deg); }
  100% { transform: rotate(0); }
}
@keyframes dg-spin { to { transform: rotate(360deg); } }

/* Scroll reveal (progressive enhancement — html.js is set before first paint) */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal-d1 { transition-delay: .12s; }
html.js .reveal-d2 { transition-delay: .24s; }
html.js .reveal-d3 { transition-delay: .36s; }

/* ---------- Shared components ---------- */
.eyebrow-row { display: flex; align-items: center; gap: 12px; color: #C2984B; }
.eyebrow-row.centered { justify-content: center; gap: 14px; }
.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 12px;
  color: #9A7635;
}
.eyebrow.on-dark { color: #DBC08A; }
.arrow-flip { transform: scaleX(-1); }

.btn-navy {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px;
  font-weight: 600;
  background: #1C2A47;
  color: #F1E9D7;
  border: none;
  padding: 16px 30px;
  cursor: pointer;
  display: inline-block;
  transition: background-color .25s ease, transform .15s ease;
}
a.btn-navy:hover { color: #F1E9D7; }
.btn-navy:hover { background: #26365C; }
.btn-navy:active { transform: translateY(1px); }

/* ---------- Age gate ---------- */
.gate {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 32, 58, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: dg-fade .4s ease both;
}
html.age-ok .gate { display: none; }
.gate-card {
  background: #F1E9D7;
  border: 1px solid #C2984B;
  max-width: 440px; width: 100%;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
  animation: dg-pop .45s cubic-bezier(.2, .9, .3, 1.2) both;
}
.gate-arrow { color: #C2984B; margin-bottom: 18px; }
.gate-brand {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: 12px;
  color: #9A7635;
  margin-bottom: 14px;
}
.gate-card h2 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: 30px; line-height: 1.05;
  color: #1C2A47; margin: 0 0 14px;
}
.gate-card p { font-size: 15px; line-height: 1.6; color: #4a4a52; margin: 0 0 28px; }
.gate-actions { display: flex; gap: 12px; justify-content: center; }
.gate-yes {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px; font-weight: 600;
  background: #1C2A47; color: #F1E9D7;
  border: none; padding: 14px 26px; cursor: pointer;
  transition: background-color .25s ease;
}
.gate-yes:hover { background: #26365C; }
.gate-no {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px; font-weight: 600;
  color: #9A7635;
  border: 1px solid #C2984B;
  padding: 14px 26px;
  display: inline-flex; align-items: center;
}
a.gate-no:hover { color: #9A7635; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(241, 233, 215, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 42, 71, 0.14);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 8px 24px rgba(20, 32, 58, 0.10); }
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-wordmark {
  font-family: 'Bevan', serif;
  font-size: 19px; letter-spacing: .01em;
  color: #1C2A47; line-height: 1;
}
a.nav-wordmark:hover { color: #1C2A47; }
.nav-links { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.nav-link {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12.5px;
  color: #1C2A47;
  padding-bottom: 4px;
  background: linear-gradient(#C2984B, #C2984B) no-repeat left bottom / 0% 2px;
  transition: background-size .3s ease;
}
a.nav-link:hover { color: #1C2A47; background-size: 100% 2px; }
.nav-cta {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12.5px; font-weight: 600;
  background: #1C2A47; color: #F1E9D7;
  padding: 11px 20px;
  transition: background-color .25s ease;
}
a.nav-cta:hover { color: #F1E9D7; background: #26365C; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 78% 20%, #F6F0E1 0%, #F1E9D7 45%, #E9DEC5 100%);
  overflow: hidden;
}
.hero-desert {
  position: absolute; inset: 0;
  background: url('../assets/desert.svg') bottom center / contain no-repeat;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  padding: 70px 28px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 40px;
  align-items: center;
}
.hero-copy { animation: dg-rise .7s ease both; }
.hero-copy .eyebrow-row { margin-bottom: 22px; }
.hero h1 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1.14;
  color: #1C2A47;
  margin: 0 0 22px;
}
.hero h1 .gold { color: #C2984B; }
.hero-sub { font-size: 18px; line-height: 1.65; color: #45454e; max-width: 440px; margin: 0 0 30px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.link-underline {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px; font-weight: 600;
  color: #1C2A47;
  border-bottom: 2px solid #C2984B;
  padding: 6px 2px;
}
a.link-underline:hover { color: #9A7635; }
.link-underline .arr { display: inline-block; transition: transform .25s ease; }
.link-underline:hover .arr { transform: translateX(5px); }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11.5px;
  color: #9A7635;
  border: 1px solid rgba(194, 152, 75, 0.55);
  padding: 8px 14px;
  transition: border-color .25s ease, background-color .25s ease;
}
.chip:hover { border-color: #C2984B; background: rgba(194, 152, 75, 0.08); }
.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex; justify-content: center; align-items: flex-end;
  min-height: 560px;
}
.hero-glow {
  position: absolute;
  width: 420px; height: 420px;
  top: 50px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 152, 75, 0.24) 0%, rgba(194, 152, 75, 0) 64%);
}
.hero-can {
  position: relative;
  height: 600px; max-height: 76vh;
  margin-bottom: 26px;
  filter: drop-shadow(0 22px 30px rgba(28, 42, 71, 0.30));
  animation: dg-rise .9s ease both, dg-float 7s ease-in-out 1.2s infinite;
}

/* ---------- Marquee ---------- */
.marquee {
  background: #1C2A47;
  overflow: hidden;
  border-top: 2px solid #C2984B;
  border-bottom: 2px solid #C2984B;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: dg-marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-half { display: flex; align-items: center; padding: 16px 0; }
.marquee-item {
  font-family: 'Bevan', serif;
  font-size: 20px;
  color: #F1E9D7;
  padding: 0 34px;
  white-space: nowrap;
}
.marquee-item.gold { color: #C2984B; }
.marquee-dot { color: #C2984B; font-size: 10px; }

/* ---------- Meet the Gringo ---------- */
.story {
  background: #14203A;
  color: #EFE6D2;
  position: relative;
  overflow: hidden;
}
.story-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 88px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 56px;
  align-items: center;
}
.keith-frame { position: relative; }
.keith-frame::before {
  content: '';
  position: absolute; inset: -14px;
  border: 1px solid rgba(194, 152, 75, 0.5);
}
.keith-panel {
  position: relative;
  background: radial-gradient(115% 90% at 50% 12%, #F6F0E1 0%, #F1E9D7 48%, #E4D6B8 100%);
  overflow: hidden;
}
.keith-desert {
  position: absolute; inset: 0;
  background: url('../assets/desert.svg') bottom center / 100% auto no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
.keith-glow {
  position: absolute;
  width: 78%; aspect-ratio: 1;
  top: 6%; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 152, 75, 0.35) 0%, rgba(194, 152, 75, 0) 65%);
}
.keith-img {
  position: relative;
  width: 82%;
  display: block;
  margin: 36px auto -5px;
  animation: dg-sway 5s ease-in-out infinite;
  transform-origin: 50% 90%;
  filter: drop-shadow(0 26px 30px rgba(28, 42, 71, 0.3));
}
.keith-img:hover { animation-duration: 0.7s; }
.keith-img { cursor: pointer; }
.keith-img.groove { animation: dg-groove .9s ease-in-out; }
.keith-img.js-dance { animation: none; }
.story-copy .eyebrow-row { margin-bottom: 20px; }
.story h2 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(30px, 5.5vw, 44px); line-height: 1.02;
  color: #F1E9D7;
  margin: 0 0 22px;
}
.story p { font-size: 17px; line-height: 1.7; color: #cdc6b6; margin: 0 0 18px; }
.story p.last { margin-bottom: 30px; }
.fact-box {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(194, 152, 75, 0.5);
  padding: 18px 24px;
  min-width: min(320px, 100%);
  max-width: 440px;
  cursor: pointer;
}
.fact-box:hover { border-color: #C2984B; background: rgba(194, 152, 75, 0.08); }
.fact-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.fact-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: #C2984B;
}
.fact-refresh {
  color: #C2984B; font-size: 14px;
  display: inline-block;
  transition: transform .35s ease;
}
.fact-box:hover .fact-refresh { transform: rotate(90deg); }
.fact-refresh.spun { animation: dg-spin .5s ease; }
.fact-text.fact-swap { animation: dg-fade .45s ease both; }
.fact-text {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 17px; line-height: 1.5;
  color: #EFE6D2;
}

/* ---------- The Tequila ---------- */
.tequila { background: #F1E9D7; position: relative; }
.tequila-inner { max-width: 1180px; margin: 0 auto; padding: 90px 28px; }
.tequila-head { text-align: center; margin-bottom: 52px; }
.tequila-head .eyebrow-row { margin-bottom: 18px; }
.tequila h2 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(31px, 5.8vw, 46px); line-height: 1.02;
  color: #1C2A47;
  margin: 0 0 16px;
}
.tequila-intro { font-size: 18px; line-height: 1.65; color: #45454e; max-width: 600px; margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
  margin-bottom: 44px;
}
.process-card {
  background: #E9DEC5;
  border: 1px solid rgba(28, 42, 71, 0.12);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.process-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(28, 42, 71, 0.10); }
.process-num { font-family: 'Bevan', serif; font-size: 30px; color: #C2984B; line-height: 1; }
.process-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  color: #1C2A47;
  margin: 14px 0 10px;
}
.process-card p { font-size: 15px; line-height: 1.62; color: #4a4a52; margin: 0; }
.spec-chips { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.spec-chip {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: #1C2A47;
  border: 1px solid #C2984B;
  padding: 10px 18px;
}

/* ---------- Tasting Notes ---------- */
.notes { background: #E9DEC5; }
.notes-inner { max-width: 1180px; margin: 0 auto; padding: 88px 28px; }
.notes .eyebrow-row { margin-bottom: 16px; }
.notes h2 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(29px, 5.5vw, 44px); line-height: 1.02;
  color: #1C2A47;
  margin: 0 0 44px;
  max-width: 620px;
}
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 22px;
}
.note-card {
  background: #F1E9D7;
  padding: 34px 30px;
  border-top: 3px solid #C2984B;
  transition: transform .3s ease, box-shadow .3s ease;
}
.note-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(28, 42, 71, 0.10); }
.note-step {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: #9A7635;
  margin-bottom: 14px;
}
.note-card h3 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: 24px;
  color: #1C2A47;
  margin: 0 0 12px;
}
.note-card p { font-size: 15.5px; line-height: 1.65; color: #4a4a52; margin: 0; }

/* ---------- Quote ---------- */
.quote { background: #1C2A47; color: #EFE6D2; }
.quote-inner { max-width: 1180px; margin: 0 auto; padding: 80px 28px; text-align: center; }
.quote-motif { color: #C2984B; display: flex; justify-content: center; align-items: center; gap: 18px; margin-bottom: 26px; }
.quote-motif .diamond { font-size: 10px; }
.quote blockquote {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: clamp(22px, 4.2vw, 30px); line-height: 1.4;
  color: #F1E9D7;
  max-width: 820px;
  margin: 0 auto 22px;
  text-wrap: balance;
}
.quote-attr {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  color: #DBC08A;
}

/* ---------- How to drink it ---------- */
.howto { background: #E9DEC5; }
.howto-inner { max-width: 1080px; margin: 0 auto; padding: 88px 28px 84px; text-align: center; }
.howto .eyebrow-row { margin-bottom: 18px; }
.howto h2 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.05;
  color: #1C2A47;
  margin: 0 0 48px;
}
.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 36px;
  align-items: start;
}
.howto-num { font-family: 'Bevan', serif; font-size: 46px; color: #C2984B; line-height: 1; }
.howto-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 14px;
  color: #1C2A47;
  margin: 14px 0 10px;
}
.howto-grid p { font-size: 15.5px; line-height: 1.6; color: #4a4a52; margin: 0 auto; max-width: 260px; }

/* ---------- Join ---------- */
.join { background: radial-gradient(110% 80% at 20% 10%, #F6F0E1 0%, #F1E9D7 55%, #E9DEC5 100%); }
.join-inner { max-width: 760px; margin: 0 auto; padding: 96px 28px; text-align: center; }
.join .eyebrow-row { margin-bottom: 18px; }
.join h2 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(32px, 6vw, 48px); line-height: 1.02;
  color: #1C2A47;
  margin: 0 0 18px;
}
.join-sub { font-size: 18px; line-height: 1.65; color: #45454e; margin: 0 0 34px; }
.join-form {
  display: flex; gap: 12px;
  max-width: 520px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.join-form input {
  flex: 1;
  min-width: 240px;
  font-family: 'Spectral', serif;
  font-size: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(28, 42, 71, 0.35);
  background: #F6F0E1;
  color: #1C2A47;
}
.join-confirm {
  display: none;
  align-items: center;
  gap: 12px;
  background: #1C2A47;
  color: #F1E9D7;
  padding: 18px 34px;
}
.join-confirm.visible { display: inline-flex; animation: dg-rise .5s ease both; }
.join-confirm .confirm-arrow { color: #C2984B; display: inline-flex; }
.join-confirm span.msg {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 14px;
}

/* ---------- Footer (landing) ---------- */
.footer { background: #14203A; color: #cdc6b6; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 56px 28px 30px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(194, 152, 75, 0.3);
  padding-bottom: 34px;
}
.footer-brand { max-width: 320px; }
.footer-wordmark { font-family: 'Bevan', serif; font-size: 22px; color: #F1E9D7; margin-bottom: 12px; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; margin: 0; color: #9d9789; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col-head {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: #C2984B;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #cdc6b6; font-size: 14.5px; transition: color .25s ease; }
.footer-links a:hover { color: #F1E9D7; }
.footer-legal {
  display: flex; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-top: 22px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: #6f6a5e;
}

/* ==================================================================
   Brand Guidelines page
   ================================================================== */
.bg-cover { background: #14203A; color: #EFE6D2; position: relative; overflow: hidden; }
.bg-cover-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 80px 40px 70px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
  min-height: 560px;
}
.bg-cover .eyebrow-row { margin-bottom: 28px; }
.bg-cover h1 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(40px, 7.5vw, 62px); line-height: 0.98;
  color: #F1E9D7;
  margin: 0 0 22px;
}
.bg-cover-sub { font-size: 18px; line-height: 1.65; color: #cdc6b6; max-width: 440px; margin: 0 0 30px; }
.bg-cover-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.bg-cover-chip {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: #EFE6D2;
  border: 1px solid rgba(194, 152, 75, 0.5);
  padding: 9px 15px;
}
.bg-back-link-wrap { margin-top: 36px; }
.bg-back-link {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  color: #DBC08A;
  border-bottom: 2px solid #C2984B;
  padding-bottom: 4px;
}
body.page-brand a.bg-back-link { color: #DBC08A; }
.bg-cover-can { display: flex; justify-content: center; }
.bg-cover-can img { height: 480px; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4)); }

.bg-section { max-width: 1080px; margin: 0 auto; padding: 88px 40px 40px; }
.bg-section + .bg-section { padding-top: 60px; }
.bg-section.pad-80 { padding-top: 80px; }
.bg-sechead { display: flex; align-items: baseline; gap: 18px; margin-bottom: 34px; }
.bg-secnum { font-family: 'Bevan', serif; font-size: 22px; color: #C2984B; }
.bg-secrule { flex: 1; height: 1px; background: rgba(28, 42, 71, 0.2); }
.bg-sechead.on-dark .bg-secrule { background: rgba(194, 152, 75, 0.35); }
.bg-seclabel {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  color: #9A7635;
}
.bg-sechead.on-dark .bg-seclabel { color: #DBC08A; }

/* 01 Positioning */
.bg-h2 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(28px, 5vw, 40px); line-height: 1.05;
  color: #1C2A47;
  margin: 0 0 22px;
  max-width: 760px;
}
.bg-lede { font-size: 18px; line-height: 1.7; color: #45454e; max-width: 720px; margin: 0 0 44px; }
.bg-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bg-pos-card { background: #E9DEC5; padding: 28px 26px; border-top: 3px solid #C2984B; }
.bg-card-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: #9A7635;
  margin-bottom: 12px;
}
.bg-pos-card p { font-size: 15.5px; line-height: 1.6; margin: 0; color: #3a3a42; }

/* 02 Logo */
.bg-logo-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.bg-logo-panel {
  background: #E9DEC5;
  border: 1px solid rgba(28, 42, 71, 0.12);
  padding: 44px;
  display: flex; align-items: center; justify-content: center;
}
.bg-logo-panel img { max-width: 100%; mix-blend-mode: multiply; }
.bg-logo-copy h3 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: 26px; color: #1C2A47;
  margin: 0 0 14px;
}
.bg-logo-copy p { font-size: 16px; line-height: 1.68; color: #45454e; margin: 0 0 18px; }
.bg-logo-copy ul { margin: 0; padding-left: 20px; font-size: 15.5px; line-height: 1.8; color: #3a3a42; }
.bg-dodont { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.bg-dodont-card { border: 1px solid rgba(28, 42, 71, 0.14); padding: 22px; overflow: hidden; }
.bg-do-label, .bg-dont-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  margin-bottom: 14px;
}
.bg-do-label { color: #1C8A5B; }
.bg-dont-label { color: #C0392B; }
.bg-do-mark { font-family: 'Bevan', serif; font-size: 22px; color: #1C2A47; text-align: center; padding: 14px 0; }
.bg-dont-mark {
  font-family: 'Bevan', serif; font-size: 22px; color: #C2984B;
  text-align: center; padding: 14px 0;
  transform: scaleX(1.4);
  letter-spacing: -2px;
}

/* 03 Color */
.bg-color { background: #14203A; color: #EFE6D2; margin-top: 60px; }
.bg-color-inner { max-width: 1080px; margin: 0 auto; padding: 80px 40px; }
.bg-color h2 { font-family: 'Bevan', serif; font-weight: 400; font-size: clamp(28px, 4.8vw, 38px); color: #F1E9D7; margin: 0 0 12px; }
.bg-color-lede { font-size: 17px; line-height: 1.65; color: #cdc6b6; max-width: 640px; margin: 0 0 40px; }
.bg-swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bg-swatch-block { height: 130px; }
.bg-swatch-block.hairline { border: 1px solid rgba(194, 152, 75, 0.3); }
.bg-swatch-name { font-family: 'Bevan', serif; font-size: 17px; color: #F1E9D7; margin-top: 14px; }
.bg-swatch-spec {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .1em;
  font-size: 12px;
  color: #9d9789;
  margin-top: 3px;
}

/* 04 Type */
.bg-type-rows { display: flex; flex-direction: column; gap: 20px; }
.bg-type-row {
  background: #E9DEC5;
  padding: 34px 32px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}
.bg-type-aa-bevan { font-family: 'Bevan', serif; font-size: 58px; color: #1C2A47; line-height: 1; }
.bg-type-aa-oswald { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 50px; color: #1C2A47; line-height: 1; }
.bg-type-aa-spectral { font-family: 'Spectral', serif; font-size: 54px; color: #1C2A47; line-height: 1; }
.bg-type-role {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: #9A7635;
  margin-top: 8px;
}
.bg-type-name-bevan { font-family: 'Bevan', serif; font-size: 32px; color: #1C2A47; margin-bottom: 8px; }
.bg-type-name-oswald {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  font-size: 26px; color: #1C2A47; margin-bottom: 8px;
}
.bg-type-name-spectral { font-family: 'Spectral', serif; font-size: 28px; color: #1C2A47; margin-bottom: 8px; }
.bg-type-row p { font-size: 15px; line-height: 1.6; color: #45454e; margin: 0; }

/* 05 Voice */
.bg-voice-h2 {
  font-family: 'Bevan', serif; font-weight: 400;
  font-size: clamp(28px, 4.8vw, 38px); line-height: 1.05;
  color: #1C2A47;
  margin: 0 0 30px;
  max-width: 720px;
}
.bg-voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bg-say { background: #1C2A47; color: #EFE6D2; padding: 32px 30px; }
.bg-say-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  color: #7ED9A6;
  margin-bottom: 18px;
}
.bg-say-list { display: flex; flex-direction: column; gap: 16px; }
.bg-say p { font-family: 'Spectral', serif; font-style: italic; font-size: 17px; line-height: 1.55; margin: 0; color: #F1E9D7; }
.bg-not { background: #E9DEC5; padding: 32px 30px; }
.bg-not-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  color: #C0392B;
  margin-bottom: 18px;
}
.bg-not p { font-family: 'Spectral', serif; font-size: 17px; line-height: 1.55; margin: 0; color: #6a6a72; }
.bg-traits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.bg-trait { border-left: 3px solid #C2984B; padding: 6px 0 6px 18px; }
.bg-trait-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: #1C2A47;
  margin-bottom: 6px;
}
.bg-trait p { font-size: 14.5px; line-height: 1.55; color: #4a4a52; margin: 0; }

/* 06 Motifs */
.bg-motifs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bg-motifs-col { display: flex; flex-direction: column; gap: 18px; }
.bg-motif-card { background: #E9DEC5; padding: 34px; text-align: center; }
.bg-motif-card.slim { padding: 26px 34px; }
.bg-motif-arrow { color: #C2984B; display: flex; justify-content: center; margin-bottom: 16px; }
.bg-motif-diamonds { color: #C2984B; font-size: 12px; letter-spacing: 1.2em; margin-bottom: 12px; }
.bg-motif-mesa { display: flex; justify-content: center; margin-bottom: 8px; color: rgba(154, 118, 53, 0.85); }
.bg-motif-mesa svg { max-width: 100%; height: auto; }
.bg-motif-caption {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: #1C2A47;
}
.bg-keith-card { background: #14203A; padding: 24px; display: flex; flex-direction: column; }
.bg-keith-panel {
  background: radial-gradient(115% 90% at 50% 12%, #F6F0E1 0%, #F1E9D7 55%, #E4D6B8 100%);
  overflow: hidden;
  flex: 1;
  display: flex; align-items: flex-end; justify-content: center;
}
.bg-keith-panel img { width: 76%; display: block; }
.bg-keith-copy { padding-top: 18px; }
.bg-keith-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: #DBC08A;
  margin-bottom: 8px;
}
.bg-keith-copy p { font-size: 14.5px; line-height: 1.6; color: #cdc6b6; margin: 0; }

/* Brand footer */
.bg-footer { background: #14203A; color: #9d9789; margin-top: 70px; }
.bg-footer-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 44px 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.bg-footer-wordmark { font-family: 'Bevan', serif; font-size: 20px; color: #F1E9D7; }
.bg-footer-legal {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

/* ==================================================================
   Mobile — landing + shared (≤720px)
   ================================================================== */
@media (max-width: 720px) {
  /* Nav: static (a stacked sticky bar would eat too much viewport), centered */
  .nav { position: static; }
  [id] { scroll-margin-top: 16px; }
  .nav-inner { flex-direction: column; gap: 12px; padding: 14px 20px; }
  .nav-links { justify-content: center; gap: 12px 20px; }
  .nav-cta { padding: 9px 16px; }

  /* Eyebrows: smaller arrows, tighter tracking; centered rows drop the trailing arrow */
  .eyebrow-row svg { width: 44px; flex-shrink: 0; }
  .eyebrow { letter-spacing: .22em; }
  .eyebrow-row.centered .arrow-flip { display: none; }

  /* Hero */
  .hero-inner { padding: 48px 20px 28px; gap: 28px; }
  .hero-sub { font-size: 16.5px; }
  .hero-visual { min-height: 0; }
  .hero-can { height: 460px; max-height: 60vh; margin-bottom: 18px; }
  .hero-glow { width: 300px; height: 300px; top: 30px; }

  /* Tighter section rhythm */
  .story-inner { padding: 64px 20px; gap: 44px; }
  .tequila-inner { padding: 64px 20px; }
  .notes-inner { padding: 64px 20px; }
  .quote-inner { padding: 60px 20px; }
  .howto-inner { padding: 64px 20px 60px; }
  .howto-grid { gap: 28px; }
  .join-inner { padding: 68px 20px; }
  .footer-inner { padding: 44px 20px 24px; }
  .footer-cols { gap: 36px; }

  /* Age gate */
  .gate-card { padding: 40px 28px; }
  .gate-actions { flex-wrap: wrap; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy, .hero-can, .keith-img, .marquee-track, .gate, .gate-card, .join-confirm.visible { animation: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .process-card, .note-card, .link-underline .arr { transition: none; }
  .process-card:hover, .note-card:hover { transform: none; }
}

/* Brand page: stack fixed grids on narrow screens */
@media (max-width: 860px) {
  .bg-cover-inner,
  .bg-grid3,
  .bg-logo-grid,
  .bg-dodont,
  .bg-swatches,
  .bg-voice-grid,
  .bg-traits,
  .bg-motifs-grid { grid-template-columns: 1fr; }
  .bg-swatches { grid-template-columns: repeat(2, 1fr); }
  .bg-type-row { grid-template-columns: 1fr; }

  .bg-cover-inner { padding: 56px 24px 48px; min-height: 0; gap: 36px; }
  .bg-cover-can img { height: 380px; }
  .bg-section { padding: 64px 24px 32px; }
  .bg-section + .bg-section, .bg-section.pad-80 { padding-top: 56px; }
  .bg-color { margin-top: 48px; }
  .bg-color-inner { padding: 64px 24px; }
  .bg-type-row { padding: 28px 24px; }
  .bg-logo-panel { padding: 30px; }
  .bg-keith-card { min-height: 420px; }
  .bg-do-mark, .bg-dont-mark { font-size: 16px; }
  .bg-footer { margin-top: 56px; }
  .bg-footer-inner { padding: 36px 24px; }
}
