/* ============================================================
   The Bourbon · American whiskey, charred oak and amber
   ============================================================ */

:root {
  --bg: #160f0a;
  --bg-2: #1c140d;
  --surface: #221810;
  --surface-2: #2a1e13;
  --char: #0d0907;
  --cream: #f3e7d3;
  --cream-dim: #d8c4a6;
  --muted: #a78a66;
  --amber: #c8812d;
  --amber-soft: #e0a44e;
  --amber-dim: #8f5e22;
  --copper: #b87333;
  --line: rgba(200, 129, 45, 0.20);
  --line-soft: rgba(200, 129, 45, 0.10);
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.85);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(200, 129, 45, 0.10), transparent 60%),
    var(--bg);
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--amber); color: var(--char); }

.eyebrow {
  font-family: "Inter", sans-serif; font-size: 0.72rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--amber); margin: 0 0 1rem; font-weight: 600;
}
.eyebrow--center { text-align: center; }

.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 2.5rem); }
.section__head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section__title { font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.08; }
.section__sub { font-size: clamp(1.1rem, 2.1vw, 1.35rem); color: var(--cream-dim); margin-top: 1.2rem; line-height: 1.55; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.7rem; border-radius: 2px; font-size: 0.82rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid transparent; cursor: pointer;
}
.btn--amber { background: linear-gradient(180deg, var(--amber-soft), var(--amber)); color: #20130a; box-shadow: 0 12px 30px -12px rgba(200, 129, 45, 0.6); }
.btn--amber:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(200, 129, 45, 0.78); }
.btn--ghost { border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }

/* ---------- pitch banner ---------- */
.pitch-banner {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--bg-2); border-bottom: 1px solid var(--line-soft); color: var(--muted);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.55rem 1rem; text-align: center;
}
.pitch-banner__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px rgba(200, 129, 45, 0.2); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.25rem, 5vw, 2.5rem); background: rgba(22, 15, 10, 0.6); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(22, 15, 10, 0.88); }
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand__word { font-family: "Fraunces", serif; font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em; }
.brand__mark { display: inline-flex; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.site-nav a { font-size: 0.82rem; letter-spacing: 0.08em; color: var(--cream-dim); transition: color 0.25s; }
.site-nav a:hover { color: var(--amber); }
.site-nav__cta { border: 1px solid var(--line); padding: 0.5rem 1rem; border-radius: 2px; color: var(--amber) !important; }
.site-nav__cta:hover { border-color: var(--amber); background: rgba(200, 129, 45, 0.08); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 6rem clamp(1.25rem, 5vw, 2.5rem) 4rem; overflow: hidden; }
.hero__photo { position: absolute; inset: 0; z-index: 0; }
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  transform: scale(1.04); animation: heroDrift 20s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13,9,7,0.94) 0%, rgba(13,9,7,0.74) 40%, rgba(13,9,7,0.32) 72%, rgba(13,9,7,0.52) 100%),
    linear-gradient(180deg, rgba(13,9,7,0.45) 0%, transparent 24%, transparent 58%, var(--bg) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__copy { max-width: 640px; text-shadow: 0 2px 30px rgba(0,0,0,0.6); }
.hero__title { font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1.02; margin: 0.4rem 0 1.6rem; font-weight: 600; }
.hero__title-accent { color: var(--amber-soft); }
.hero__lede { font-size: clamp(1.1rem, 2.2vw, 1.45rem); color: var(--cream-dim); max-width: 46ch; margin: 0 0 2.2rem; line-height: 1.55; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); }
.hero__scroll span { display: block; width: 1px; height: 42px; background: linear-gradient(var(--amber), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 1.1rem 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; font-family: "Fraunces", serif; font-style: italic; font-size: 1.45rem; color: var(--cream-dim); animation: scroll 34s linear infinite; }
.marquee__track .dot { color: var(--amber); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.pillar { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: 4px; padding: 2.2rem 2rem; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.pillar:hover { border-color: var(--line); transform: translateY(-4px); }
.pillar__num { font-family: "Fraunces", serif; font-size: 0.95rem; color: var(--amber); letter-spacing: 0.1em; }
.pillar h3 { font-size: 1.35rem; margin: 0.8rem 0 0.7rem; }
.pillar p { color: var(--cream-dim); margin: 0; font-size: 0.98rem; }

/* ---------- range ---------- */
.range-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.expression { position: relative; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 4px; padding: 2rem 1.9rem 2.1rem; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.expression::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--accent); opacity: 0.9; }
.expression::after { content: attr(data-proof); position: absolute; top: 1.5rem; right: 1.5rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--line); border-radius: 999px; padding: 0.2rem 0.6rem; }
.expression:hover { transform: translateY(-4px); border-color: var(--line); }
.expression__bottle { display: flex; align-items: flex-end; height: 132px; margin-bottom: 1.1rem; }
.expression__bottle svg { height: 100%; width: auto; display: block; filter: drop-shadow(0 12px 18px rgba(0,0,0,0.5)); transition: transform 0.5s var(--ease); }
.expression:hover .expression__bottle svg { transform: translateY(-4px) rotate(-1deg); }
.expression h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.expression p { color: var(--cream-dim); margin: 0; font-size: 0.97rem; }

/* ---------- the make ---------- */
.make { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 5vw, 2.5rem); }
.make__title { font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.1; margin-bottom: 1rem; }
.make__text { color: var(--cream-dim); font-size: 1.1rem; line-height: 1.6; margin: 0 0 1.5rem; }
.make__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.make__points li { position: relative; padding-left: 1.5rem; color: var(--cream-dim); font-size: 0.98rem; }
.make__points li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.make__points span { color: var(--cream); font-weight: 600; }
.make__art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 280px; }
.make__art-glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(200, 129, 45, 0.22), transparent 65%); }
.barrel { position: relative; width: min(300px, 78vw); height: auto; filter: drop-shadow(0 22px 38px rgba(0,0,0,0.6)); }
@media (max-width: 820px) { .make { grid-template-columns: 1fr; } .make__art { order: -1; } }

/* ---------- lifestyle band ---------- */
.lifestyle { max-width: var(--maxw); margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 2.5rem); }
.lifestyle__frame { position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: clamp(300px, 44vw, 440px); display: flex; align-items: flex-end; }
.lifestyle__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.lifestyle__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,9,7,0.12) 0%, rgba(13,9,7,0.22) 40%, rgba(13,9,7,0.85) 100%); }
.lifestyle__copy { position: relative; padding: clamp(1.5rem, 4vw, 2.6rem); max-width: 560px; text-shadow: 0 2px 22px rgba(0,0,0,0.75); }
.lifestyle__copy h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.lifestyle__copy p { color: var(--cream-dim); margin: 0; font-size: 1.05rem; }

/* ---------- model ---------- */
.flow { display: flex; align-items: stretch; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.flow__step { flex: 1 1 220px; max-width: 300px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 4px; padding: 1.7rem 1.5rem; text-align: center; }
.flow__icon { font-size: 1.6rem; color: var(--amber); display: block; margin-bottom: 0.5rem; }
.flow__step h4 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.flow__step p { color: var(--cream-dim); font-size: 0.92rem; margin: 0; }
.flow__arrow { display: flex; align-items: center; color: var(--amber); font-size: 1.4rem; }

.econ { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.econ__card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 4px; padding: 1.8rem 1.6rem; }
.econ__card--feature { background: linear-gradient(160deg, rgba(200,129,45,0.14), var(--surface)); border-color: var(--line); }
.econ__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.6rem; }
.econ__figure { font-family: "Fraunces", serif; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 600; color: var(--amber); margin: 0 0 0.6rem; line-height: 1; }
.econ__unit { font-size: 0.9rem; color: var(--cream-dim); font-family: "Inter", sans-serif; font-weight: 400; }
.econ__note { color: var(--cream-dim); font-size: 0.9rem; margin: 0; }
.econ__disclaimer { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 1.6rem; font-style: italic; }

/* ---------- names ---------- */
.name-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.name-card { font-family: inherit; text-align: left; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 4px; padding: 1.5rem 1.4rem; cursor: pointer; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease); color: inherit; }
.name-card:hover { transform: translateY(-3px); border-color: var(--line); }
.name-card.is-active { border-color: var(--amber); background: linear-gradient(160deg, rgba(200,129,45,0.16), var(--surface)); }
.name-card__word { display: block; font-family: "Fraunces", serif; font-size: 1.45rem; font-weight: 600; }
.name-card__tag { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; letter-spacing: 0.04em; }
.names__hint { text-align: center; color: var(--muted); font-size: 0.85rem; margin: 1.4rem 0 2rem; }
.name-preview { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 2.6rem 1.5rem; border: 1px solid var(--line); border-radius: 4px; background: radial-gradient(600px 300px at 50% 0%, rgba(200,129,45,0.10), var(--bg-2)); }
.name-preview__word { font-family: "Fraunces", serif; font-size: clamp(2.2rem, 6.5vw, 3.8rem); font-weight: 600; letter-spacing: 0.01em; }
.name-preview__tag { color: var(--amber); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- decision ---------- */
.decision { text-align: center; max-width: 820px; }
.decision__inner { border: 1px solid var(--line); border-radius: 6px; padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem); background: radial-gradient(700px 350px at 50% 0%, rgba(200,129,45,0.12), var(--surface)); }
.decision__title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.1rem; }
.decision__sub { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--cream-dim); margin: 0 auto 2.2rem; max-width: 560px; line-height: 1.55; }
.decision__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.decision__fineprint { color: var(--muted); font-size: 0.8rem; margin-top: 2rem; letter-spacing: 0.04em; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); text-align: center; padding: 3rem 1.5rem 3.5rem; background: var(--bg-2); }
.site-footer__crest { margin-bottom: 1rem; }
.site-footer__line { font-family: "Fraunces", serif; letter-spacing: 0.06em; color: var(--cream-dim); margin: 0 0 0.5rem; }
.site-footer__small { color: var(--muted); font-size: 0.8rem; margin: 0; }

/* ---------- age gate ---------- */
.age-gate { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 2rem;
  background: radial-gradient(800px 500px at 50% 30%, rgba(200,129,45,0.10), transparent 70%), var(--bg); }
.age-gate[hidden] { display: none; }
.age-gate__box { text-align: center; max-width: 30rem; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.age-gate__box h1 { font-family: "Fraunces", serif; font-size: 2.4rem; letter-spacing: 0.02em; margin: 0.3rem 0 0; }
.age-gate__box p { color: var(--cream-dim); margin: 0; }
.age-gate__q { font-family: "Fraunces", serif; font-size: 1.3rem; color: var(--cream) !important; margin-top: 0.6rem; }
.age-gate__actions { display: flex; gap: 0.8rem; margin-top: 0.6rem; flex-wrap: wrap; justify-content: center; }
.age-gate__deny { color: #e09a8a !important; }
.age-gate__fine { color: var(--muted) !important; font-size: 0.8rem; margin-top: 0.6rem; }

/* ---------- join / cta ---------- */
.cta { text-align: center; max-width: 720px; }
.cta__title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.cta__sub { color: var(--cream-dim); font-size: 1.1rem; margin: 0 auto 2rem; max-width: 46ch; }
.cta__form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.cta__form input { background: var(--surface); border: 1px solid var(--line); border-radius: 3px; color: var(--cream); padding: 0.9rem 1.1rem; font-size: 1rem; font-family: "Inter", sans-serif; min-width: 260px; }
.cta__form input:focus { outline: none; border-color: var(--amber); }
.cta__note { color: var(--amber-soft); min-height: 1.4em; margin-top: 1rem; font-size: 0.95rem; }
.cta__fine { color: var(--muted); font-size: 0.8rem; margin-top: 1.4rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero__scrim { background: linear-gradient(180deg, rgba(13,9,7,0.55) 0%, rgba(13,9,7,0.35) 30%, rgba(13,9,7,0.6) 75%, var(--bg) 100%); }
}
@media (max-width: 720px) {
  .site-nav a:not(.site-nav__cta) { display: none; }
  .flow__arrow { transform: rotate(90deg); }
  .pitch-banner { font-size: 0.62rem; letter-spacing: 0.12em; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
