:root {
  /* Charred oak rather than espresso: the inside of a bourbon barrel. */
  --espresso: #0b0806;
  --espresso-2: #140f0a;
  --espresso-3: #1e1610;
  /* Label paper, yellowed. */
  --cream: #e8dcc3;
  --cream-dim: #b0a084;
  --muted: #857459;
  /* Brass is the primary accent now; the red is demoted to sealing wax. */
  --brass: #c2a15a;
  --brass-bright: #e0c184;
  --brass-deep: #7d6330;
  --cerise: #9d2318;
  --cerise-bright: #c03426;
  --cerise-deep: #5e1109;
  --line: rgba(194, 161, 90, 0.22);
  --cerise-sweep: linear-gradient(145deg, var(--cerise-bright) 0%, var(--cerise) 52%, var(--cerise-deep) 100%);
  --display: "Playfair Display", serif;
  --engraved: "Cinzel", serif;
  --body: "Cormorant Garamond", serif;
  --label: "Courier Prime", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--espresso);
  color: var(--cream);
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(115, 33, 22, 0.18) 0%, transparent 45%),
    radial-gradient(140% 120% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%);
}
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 2; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--cerise); color: var(--espresso); }
a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 3; }
.narrow { max-width: 780px; }

.kicker {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cerise);
  display: inline-block;
}

.rule {
  height: 1px; border: none; margin: 0;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}

h2.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 18px 0 0;
}

.col-title {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 40px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.col-title:first-child { margin-top: 0; }

/* ---- Nav ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  background: linear-gradient(180deg, rgba(12,10,8,0.94) 0%, rgba(12,10,8,0) 100%);
  backdrop-filter: blur(2px);
}
.brand {
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.06em; text-decoration: none; color: var(--cream);
}
.brand span { color: var(--cerise); font-weight: 500; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--label); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cream-dim); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--cerise); }

/* ---- Hero ---- */
.hero { padding: 190px 0 90px; position: relative; z-index: 3; text-align: center; }
.hero-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 1.0; letter-spacing: -0.02em; margin: 26px 0 0;
}
/* Solid fill rather than a gradient. `background-clip: text` paints only inside
   the inline background box, and the italic colon's dots sit outside it, so the
   top dot lost its paint and vanished. A colon is too small to show a gradient
   anyway; matching the nav and footer marks is the better call. */
.hero-title .colon { color: var(--cerise); }
.hero-lede {
  font-size: 1.35rem; line-height: 1.55; color: var(--cream-dim);
  max-width: 34ch; margin: 30px auto 0;
}

/* ---- Marquee ---- */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 16px 0; background: var(--espresso-2);
  position: relative; z-index: 3;
}
.marquee { display: flex; white-space: nowrap; gap: 60px; animation: marquee 34s linear infinite; }
.marquee span {
  font-family: var(--label); font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
}
.marquee span b { color: var(--cerise); font-weight: 400; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

section { padding: 96px 0; position: relative; z-index: 3; }

/* ---- The line ---- */
.line-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 54px; }
.line-card {
  display: block; text-decoration: none; padding: 38px 34px 34px;
  border: 1px solid var(--line); background: var(--espresso-2);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.line-card:hover { border-color: var(--cerise); transform: translateY(-5px); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }
.line-card h3 {
  font-family: var(--display); font-weight: 500; font-size: 2.1rem;
  line-height: 1.1; margin: 16px 0 14px;
}
.line-card p { color: var(--cream-dim); font-size: 1.1rem; line-height: 1.5; }
.line-more {
  display: inline-block; margin-top: 22px;
  font-family: var(--label); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cerise);
}
@media (max-width: 860px) { .line-grid { grid-template-columns: 1fr; } }

/* ---- Bottle page ---- */
.bottle-head, .batch-head { padding: 180px 0 60px; position: relative; z-index: 3; }
.bottle-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.03;
  letter-spacing: -0.02em; margin: 20px 0 0;
}
.bottle-lede {
  font-size: 1.35rem; line-height: 1.55; color: var(--cream-dim);
  max-width: 48ch; margin: 26px 0 0; font-style: italic;
}
.bottle-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: start; }
@media (max-width: 860px) { .bottle-grid { grid-template-columns: 1fr; gap: 40px; } }

.prose p { color: var(--cream-dim); font-size: 1.12rem; line-height: 1.6; }
.prose p + p { margin-top: 1em; }
.prose.note p { font-style: italic; color: var(--cream); }
.prose h3 { margin-top: 40px; }

.arrival { list-style: none; margin-top: 4px; }
.arrival li {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 1.12rem; color: var(--cream);
}
.arrival .ord { font-family: var(--label); font-size: 12px; color: var(--cerise); }

.stock { list-style: none; }
.stock li {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 1.05rem; color: var(--cream-dim);
}
.stock li b { color: var(--cream); font-weight: 500; }

.spec {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  padding: 14px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.spec-k {
  font-family: var(--label); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.spec-v { font-size: 1.08rem; color: var(--cream); }
.proof { font-family: var(--display); font-size: 1.7rem; color: var(--cerise); font-weight: 500; }

.allergens, .recipe-ref {
  margin-top: 34px; font-family: var(--label); font-size: 11px;
  letter-spacing: 0.08em; line-height: 1.9; color: var(--muted);
  text-transform: uppercase;
}
.allergens b { color: var(--cerise); font-weight: 400; }
.recipe-ref { text-transform: none; letter-spacing: 0.04em; font-size: 11.5px; }

/* ---- Batch list and card ---- */
.batch-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.batch-card {
  display: block; text-decoration: none; padding: 30px 26px;
  border: 1px solid var(--line); background: var(--espresso-2);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.batch-card:hover { border-color: var(--cerise); transform: translateY(-4px); }
.batch-card h3 {
  font-family: var(--display); font-weight: 500; font-size: 1.5rem;
  margin: 14px 0 10px; line-height: 1.15;
}
.batch-meta { font-family: var(--label); font-size: 11px; letter-spacing: 0.12em; color: var(--cream-dim); }
.batch-state {
  display: inline-block; margin-top: 18px;
  font-family: var(--label); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--line); color: var(--muted);
}
.batch-state.available { color: var(--cerise); border-color: var(--cerise-deep); }
@media (max-width: 860px) { .batch-list { grid-template-columns: 1fr; } }

.batch-bottle {
  font-family: var(--label); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cream-dim); margin-top: 18px;
}
.batch-bottle a { color: var(--cream-dim); text-decoration: none; transition: color 0.3s ease; }
.batch-bottle a:hover { color: var(--cerise); }
.batch-name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.03;
  letter-spacing: -0.02em; margin: 14px 0 0;
}
.batch-story { margin-top: 24px; max-width: 56ch; }
.batch-story p { font-style: italic; color: var(--cream-dim); font-size: 1.2rem; line-height: 1.55; }
.batch-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
@media (max-width: 860px) { .batch-grid { grid-template-columns: 1fr; gap: 40px; } }

.unnamed {
  margin-top: 26px; max-width: 52ch; color: var(--muted);
  font-style: italic; font-size: 1.12rem; line-height: 1.55;
}

/* ---- Footer ---- */
footer { border-top: 1px solid var(--line); padding: 70px 0 60px; position: relative; z-index: 3; background: var(--espresso-2); }
.footer-inner { text-align: center; }
.footer-mark { font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.06em; }
.footer-mark span { color: var(--cerise); }
.footer-note { margin-top: 18px; color: var(--cream-dim); font-size: 1.05rem; max-width: 52ch; margin-left: auto; margin-right: auto; }
.footer-legal {
  margin-top: 22px; font-family: var(--label); font-size: 10.5px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}

.stock .src {
  display: block; margin-top: 4px;
  font-family: var(--label); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}

/* ======================================================================
   Kentucky / speakeasy overrides
   Brass carries the structure; the red is demoted to sealing wax and used
   only where something needs to be marked. The label vocabulary is drawn
   from bonded-whiskey labels: engraved caps, double rules, hairline frames.
   ====================================================================== */

/* Warmer, lower light. A back bar rather than a dining room. */
body::before {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(140, 100, 40, 0.14) 0%, transparent 44%),
    radial-gradient(140% 120% at 50% 50%, transparent 46%, rgba(0,0,0,0.72) 100%);
}
body::after { opacity: 0.075; }

::selection { background: var(--brass); color: var(--espresso); }

/* Kickers become engraved caps: the small monumental lettering on a label. */
.kicker {
  font-family: var(--engraved);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.34em;
  color: var(--brass);
}

/* A double rule, thick over thin, the way a label divides its panels. */
.rule {
  height: 3px;
  background:
    linear-gradient(90deg, transparent, var(--line) 14%, var(--line) 86%, transparent) 0 0 / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(194,161,90,0.10) 20%, rgba(194,161,90,0.10) 80%, transparent) 0 2px / 100% 1px no-repeat;
}

h2.section-title, .bottle-title, .batch-name, .hero-title {
  font-weight: 700;
  letter-spacing: -0.005em;
}

/* Spec keys are the ledger, so they stay typewriter; their values warm up. */
.col-title { font-family: var(--engraved); font-weight: 600; letter-spacing: 0.24em; color: var(--brass-deep); }
.spec-k { color: var(--muted); }
.proof { color: var(--brass-bright); font-family: var(--display); }

/* The colon: sealing wax, the one red thing on the page. */
.hero-title .colon { color: var(--cerise-bright); }
.brand span, .footer-mark span { color: var(--brass); }

/* Cards get a hairline inner frame, like the border on a certificate. */
.line-card, .batch-card {
  background: var(--espresso-2);
  box-shadow: inset 0 0 0 1px rgba(194,161,90,0.07);
}
.line-card:hover, .batch-card:hover {
  border-color: var(--brass);
  box-shadow: inset 0 0 0 1px rgba(194,161,90,0.20), 0 24px 50px rgba(0,0,0,0.6);
}
.line-more { font-family: var(--engraved); font-weight: 600; color: var(--brass); letter-spacing: 0.2em; }
.nav-links a:hover { color: var(--brass); }
.batch-bottle a:hover { color: var(--brass); }
.arrival .ord { color: var(--brass); }
.allergens b { color: var(--brass); }
.marquee span b { color: var(--brass); }

/* Availability is a stamp, not a tag. */
.batch-state {
  font-family: var(--engraved);
  font-weight: 600;
  letter-spacing: 0.2em;
  border-width: 1px;
}
.batch-state.available { color: var(--brass); border-color: var(--brass-deep); }

/* The mark. Its own ground is #120f09 against the page's #0b0806, so a radial
   mask feathers the square edge out rather than leaving a visible tile. */
.hero-mark {
  display: block;
  width: min(300px, 54vw);
  height: auto;
  margin: 0 auto 26px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 58%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000 58%, transparent 72%);
}
