:root {
  color-scheme: dark;
  --bg: #0d0c09;
  --bg-soft: #12100c;
  --surface: #17140f;
  --surface-raised: #201a12;
  --surface-gold: #2a1e0e;
  --text: #f3ecdf;
  --text-soft: #d2c8b7;
  --muted: #9d9587;
  --gold: #e6b552;
  --gold-bright: #ffd87b;
  --amber: #b96822;
  --copper: #85431f;
  --line: rgba(242, 224, 190, 0.14);
  --line-strong: rgba(242, 224, 190, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(142, 74, 21, 0.12), transparent 30rem),
    radial-gradient(circle at 91% 32%, rgba(222, 165, 61, 0.055), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--gold);
  color: #211508;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--gold-bright);
  color: #191007;
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(242, 224, 190, 0.09);
  background: rgba(13, 12, 9, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(246, 202, 111, 0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 236, 177, 0.9), transparent 10%),
    linear-gradient(145deg, #d79a36, #7e3a16);
  box-shadow: inset 0 0 0 4px rgba(32, 20, 9, 0.45), 0 8px 24px rgba(143, 73, 20, 0.25);
  color: #1d1107;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.brand-tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(230, 181, 82, 0.11);
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display-title,
.page-title,
.section-title,
.card-title,
h1,
h2,
h3 {
  font-family: var(--serif);
  text-wrap: balance;
}

.display-title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 7.7vw, 106px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.display-title em {
  color: var(--gold);
  font-weight: 500;
}

.lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

.button {
  min-height: 50px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #211507;
  padding: 11px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-bright);
  box-shadow: 0 12px 34px rgba(191, 119, 29, 0.22);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(230, 181, 82, 0.08);
}

.text-link {
  color: var(--gold-bright);
  font-size: 14px;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100vh - 78px));
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding-block: 70px 86px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-note {
  display: flex;
  max-width: 510px;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-note::before {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  content: "✦";
  display: grid;
  place-items: center;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.91;
  border: 1px solid var(--line);
  border-radius: 44% 44% var(--radius-lg) var(--radius-lg) / 23% 23% var(--radius-lg) var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 5, 0.72), transparent 40%);
  content: "";
}

.hero-seal {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 220, 146, 0.5);
  border-radius: 50%;
  background: rgba(16, 12, 7, 0.74);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  backdrop-filter: blur(12px);
}

.section {
  position: relative;
  padding-block: 104px;
}

.section-compact {
  padding-block: 74px;
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-tint {
  border-block: 1px solid var(--line);
  background: rgba(255, 248, 225, 0.025);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-title {
  max-width: 740px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-intro {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--text-soft);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.route-card {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  min-height: 430px;
  flex-direction: column;
  justify-content: end;
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  color: var(--text);
  text-decoration: none;
}

.route-card:nth-child(3) {
  grid-column: span 7;
}

.route-card:nth-child(4) {
  grid-column: span 5;
}

.route-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.route-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 5, 0.03), rgba(10, 8, 5, 0.18) 35%, rgba(10, 8, 5, 0.94));
  content: "";
}

.route-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.route-card-content {
  padding: 30px;
}

.route-card-meta {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-card h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.route-card p {
  max-width: 480px;
  margin: 14px 0 0;
  color: rgba(246, 239, 227, 0.78);
  font-size: 15px;
}

.route-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(18, 14, 9, 0.45);
  color: white;
  backdrop-filter: blur(8px);
  transition: transform 200ms ease, background 200ms ease;
}

.route-card:hover .route-card-arrow {
  transform: translate(3px, -3px);
  background: var(--gold);
  color: #211507;
}

.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  padding: clamp(28px, 5vw, 52px);
}

.compare-card::after {
  position: absolute;
  right: -45px;
  bottom: -80px;
  color: rgba(230, 181, 82, 0.055);
  font-family: var(--serif);
  font-size: 260px;
  font-weight: 700;
  line-height: 1;
  content: attr(data-letter);
}

.compare-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.compare-card h3 {
  margin: 12px 0 18px;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.compare-card p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0;
  color: var(--text-soft);
}

.compare-temp {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
}

.ingredient-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: stretch;
  gap: 18px;
}

.ingredient-photo {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.ingredient-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ingredient {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.ingredient-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.ingredient h3 {
  margin: 24px 0 9px;
  font-size: 28px;
  font-weight: 500;
}

.ingredient p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(233, 186, 86, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(230, 181, 82, 0.14), transparent 28rem),
    linear-gradient(135deg, #1c150d, #110f0b);
  padding: clamp(34px, 7vw, 76px);
}

.story-band-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(32px, 7vw, 90px);
}

.story-year {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(88px, 14vw, 180px);
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.story-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.story-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
}

.fact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}

.fact-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(230, 181, 82, 0.35);
  border-radius: 50%;
  background: rgba(230, 181, 82, 0.075);
  color: var(--gold-bright);
  font-size: 20px;
}

.fact-kicker {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fact-text {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 33px);
  line-height: 1.3;
}

.fact-index {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
}

.page-hero {
  display: grid;
  min-height: 630px;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
  padding-block: 72px 92px;
}

.page-hero-copy {
  padding-block: 20px;
}

.page-title {
  margin: 0;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.page-intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.page-hero-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.86;
  border: 1px solid var(--line);
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg) / 30% 30% var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -90px 90px rgba(8, 6, 4, 0.4);
  content: "";
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 246, 227, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.chapter-strip a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.chapter-strip a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(40px, 9vw, 130px);
}

.article-aside {
  position: sticky;
  top: 120px;
  border-top: 1px solid var(--gold);
  padding-top: 18px;
}

.article-aside-title {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.article-body {
  max-width: 760px;
}

.article-section {
  scroll-margin-top: 112px;
  padding-bottom: 76px;
}

.article-section + .article-section {
  border-top: 1px solid var(--line);
  padding-top: 76px;
}

.article-section h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.article-section h3 {
  margin: 34px 0 12px;
  font-size: 26px;
  font-weight: 500;
}

.article-section p {
  margin: 0 0 20px;
  color: var(--text-soft);
}

.article-section p:last-child {
  margin-bottom: 0;
}

.dropcap::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4.1em;
  line-height: 0.72;
}

.pullquote {
  position: relative;
  margin: 42px 0;
  border-left: 1px solid var(--gold);
  padding: 6px 0 6px 30px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.3;
}

.timeline {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 26px;
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
}

.timeline-year {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.spotlight {
  position: relative;
  overflow: hidden;
  margin: 8px 0 80px;
  border: 1px solid rgba(230, 181, 82, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(130deg, rgba(36, 25, 13, 0.98), rgba(16, 14, 10, 0.96)),
    var(--surface);
  padding: clamp(34px, 6vw, 66px);
}

.spotlight::after {
  position: absolute;
  right: -40px;
  bottom: -130px;
  color: rgba(230, 181, 82, 0.055);
  font-family: var(--serif);
  font-size: 290px;
  line-height: 1;
  content: "P";
}

.spotlight-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spotlight h2 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 14px 0 22px;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.spotlight p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  color: var(--text-soft);
}

.metric-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.metric {
  border-top: 1px solid var(--line-strong);
  padding-top: 14px;
}

.metric strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
}

.info-grid,
.style-mini-grid,
.brewery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.info-card,
.style-mini,
.brewery-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.018);
  padding: 24px;
}

.info-card h3,
.style-mini h3,
.brewery-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.info-card p,
.style-mini p,
.brewery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.serving-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: serving;
}

.serving-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-block: 22px;
  counter-increment: serving;
}

.serving-list li::before {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  content: "0" counter(serving);
}

.serving-list strong {
  display: block;
  margin-bottom: 5px;
}

.serving-list span {
  color: var(--muted);
  font-size: 14px;
}

.culture-note {
  margin-top: 34px;
  border: 1px solid rgba(230, 181, 82, 0.22);
  border-radius: var(--radius);
  background: rgba(230, 181, 82, 0.055);
  padding: 28px;
}

.culture-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
}

.culture-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.source-note {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  color: var(--muted);
  font-size: 13px;
}

.source-note a {
  color: var(--text-soft);
}

.source-note h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.source-note p {
  margin: 0;
}

.next-read {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  border-block: 1px solid var(--line);
  padding-block: 40px;
  text-decoration: none;
}

.next-read-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.next-read h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.next-read-arrow {
  font-size: 34px;
  transition: transform 180ms ease;
}

.next-read:hover .next-read-arrow {
  transform: translateX(8px);
}

.catalog-hero {
  padding-block: 92px 58px;
}

.catalog-hero .page-title {
  max-width: 920px;
}

.catalog-intro-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 50px;
}

.catalog-note {
  border-left: 1px solid var(--gold);
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
}

.filter-bar {
  position: sticky;
  z-index: 30;
  top: 78px;
  border-block: 1px solid var(--line);
  background: rgba(13, 12, 9, 0.92);
  backdrop-filter: blur(14px);
}

.filter-inner {
  display: flex;
  overflow-x: auto;
  align-items: center;
  gap: 8px;
  padding-block: 14px;
  scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 8px 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: #211507;
}

.catalog-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.style-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  padding: 28px;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.style-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 181, 82, 0.34);
  background: linear-gradient(145deg, rgba(230, 181, 82, 0.07), rgba(255, 255, 255, 0.01));
}

.style-card[hidden] {
  display: none;
}

.style-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.style-family {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.beer-color {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--beer-color, #d79a35);
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.25), 0 0 16px color-mix(in srgb, var(--beer-color, #d79a35) 40%, transparent);
}

.style-card h2 {
  margin: 34px 0 8px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.style-origin {
  color: var(--muted);
  font-size: 12px;
}

.style-description {
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.style-specs {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
}

.style-spec {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.style-spec dt {
  color: var(--muted);
}

.style-spec dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.bitterness {
  display: flex;
  gap: 4px;
}

.bitterness i {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.bitterness[data-level="1"] i:nth-child(-n+1),
.bitterness[data-level="2"] i:nth-child(-n+2),
.bitterness[data-level="3"] i:nth-child(-n+3),
.bitterness[data-level="4"] i:nth-child(-n+4),
.bitterness[data-level="5"] i:nth-child(-n+5) {
  background: var(--gold);
}

.catalog-guide {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 70px;
  border-top: 1px solid var(--line);
  padding-top: 64px;
}

.catalog-guide h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.guide-list {
  display: grid;
  gap: 22px;
}

.guide-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.guide-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-bright);
}

.guide-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.15);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding-block: 58px 40px;
}

.footer-statement {
  max-width: 660px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 24px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 20px 30px;
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 78px);
  place-items: center;
  padding-block: 60px;
}

.not-found-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 880px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(230, 181, 82, 0.12), transparent 22rem),
    var(--surface);
  padding: clamp(34px, 8vw, 88px);
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(110px, 22vw, 230px);
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.not-found-card h1 {
  margin: 36px 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.not-found-card p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-soft);
}

.not-found-card .button-row {
  justify-content: center;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-nav a {
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr 0.78fr;
    gap: 42px;
  }

  .styles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    flex: 1 1 100%;
  }

  .site-nav ul {
    flex-wrap: wrap;
    padding-bottom: 12px;
  }

  .js-ready .nav-toggle {
    display: inline-flex;
  }

  .js-ready .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    visibility: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(13, 12, 9, 0.98);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .js-ready .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js-ready .site-nav ul {
    width: min(calc(100% - 36px), var(--container));
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    margin: 0 auto;
    padding-block: 16px 22px;
  }

  .js-ready .site-nav a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 15px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-block: 64px 72px;
  }

  .hero-visual {
    width: min(100%, 620px);
    aspect-ratio: 1.08;
    justify-self: center;
    border-radius: var(--radius-lg);
  }

  .page-hero {
    gap: 32px;
    padding-block: 60px 74px;
  }

  .page-hero-image {
    width: min(100%, 620px);
    aspect-ratio: 1.12;
    justify-self: center;
    border-radius: var(--radius-lg);
  }

  .section {
    padding-block: 78px;
  }

  .route-card,
  .route-card:nth-child(3),
  .route-card:nth-child(4) {
    min-height: 390px;
    grid-column: span 6;
  }

  .ingredient-layout,
  .story-band-grid,
  .article-layout,
  .catalog-intro-row,
  .catalog-guide {
    grid-template-columns: 1fr;
  }

  .ingredient-photo {
    min-height: 420px;
  }

  .article-aside {
    position: static;
    display: none;
  }

  .article-body {
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-tagline {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .display-title {
    font-size: clamp(50px, 17vw, 78px);
  }

  .page-title {
    font-size: clamp(54px, 19vw, 82px);
  }

  .hero-note {
    margin-top: 38px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .route-grid,
  .two-up,
  .ingredient-list,
  .info-grid,
  .style-mini-grid,
  .brewery-grid,
  .styles-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .route-card:nth-child(3),
  .route-card:nth-child(4) {
    min-height: 370px;
    grid-column: auto;
  }

  .compare-card {
    min-height: 320px;
  }

  .ingredient-photo {
    min-height: 360px;
  }

  .story-year {
    font-size: 100px;
  }

  .fact-card {
    grid-template-columns: auto 1fr;
  }

  .fact-index {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .style-card {
    min-height: 430px;
  }

  .filter-bar {
    top: 70px;
  }

  .filter-bar::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    background: linear-gradient(to right, transparent, rgba(13, 12, 9, 0.96));
    content: "";
    pointer-events: none;
  }

  .catalog-count {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .next-read {
    grid-template-columns: 1fr auto;
  }

  .next-read-label {
    grid-column: 1 / -1;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-seal {
    right: 14px;
    bottom: 14px;
    width: 92px;
    height: 92px;
    font-size: 12px;
  }

  .route-card-content,
  .style-card,
  .ingredient,
  .info-card,
  .style-mini,
  .brewery-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .filter-bar,
  .button-row,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: #17120d;
  }

  .article-section p,
  .page-intro,
  .lead,
  .style-description,
  .style-origin {
    color: #40382e;
  }
}
