:root {
  --bg: #F5F0E6;
  --bg-warm: #EDE4D3;
  --fg: #1A1A1A;
  --fg-muted: #5C5144;
  --accent: #D4A017;
  --accent-dark: #8B1A1A;
  --accent-red: #6B1212;
  --cream: #F5F0E6;
  --cream-dark: #DDD3BF;
  --white: #FDFAF4;
  --border: rgba(26,26,26,0.12);
  --radius: 4px;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.site-nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  text-decoration: none;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 60%, rgba(212,160,23,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(139,26,26,0.07) 0%, transparent 50%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 42ch;
  line-height: 1.7;
}

/* Tap handle graphic */
.hero-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.tap-handle {
  position: relative;
  width: 90px;
}
.th-body {
  width: 90px;
  height: 70px;
  background: linear-gradient(135deg, #6B1212, #8B1A1A, #A82020);
  border-radius: 6px 6px 8px 8px;
  box-shadow: 0 4px 16px rgba(139,26,26,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
}
.th-body::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 3px;
}
.th-neck {
  width: 32px;
  height: 28px;
  background: linear-gradient(180deg, #888, #555);
  margin: 0 auto 0;
  border-radius: 2px 2px 0 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.th-spout {
  width: 20px;
  height: 16px;
  background: linear-gradient(180deg, #666, #444);
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}
.th-collar {
  width: 56px;
  height: 8px;
  background: linear-gradient(180deg, #D4A017, #B8890F);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pour-lines {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 36px;
}
.pour-line {
  width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0.4;
}
.pour-line.l1 { height: 20px; }
.pour-line.l2 { height: 32px; opacity: 0.6; }
.pour-line.l3 { height: 14px; }

.agent-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.agent-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.ac-2 .agent-dot { background: var(--accent-dark); }

/* ─── SECTION SHARED ─── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 3.5rem;
}

/* ─── AGENTS ─── */
.agents {
  background: var(--cream-dark);
  padding: 5rem 2rem;
}
.agents-inner { max-width: 1200px; margin: 0 auto; }
.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-dark);
}
.agent-tile {
  background: var(--white);
  padding: 2.5rem 2rem;
}
.agent-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
}
.agent-tile h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
}
.agent-tile p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── HOW ─── */
.how { padding: 5rem 2rem; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 2rem; }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}
.step p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  width: 1px;
  height: 80px;
  background: var(--cream-dark);
  align-self: center;
  margin-top: 1rem;
}

/* ─── STATS ─── */
.stats {
  background: var(--accent-dark);
  padding: 3.5rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 5rem 2rem;
  background: var(--bg-warm);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  color: var(--accent-dark);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.manifesto-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 58ch;
}

/* ─── CLOSING ─── */
.closing {
  padding: 5rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.closing p {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}
.footer-copy a {
  color: var(--accent-dark);
  text-decoration: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-graphic { flex-direction: row; align-items: center; }
  .tap-handle { display: none; }
  .pour-lines { display: none; }
  .agent-grid { grid-template-columns: 1fr; }
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-connector { display: none; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .stats { padding: 2.5rem 2rem; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem; }
  .agents { padding: 3rem 1.25rem; }
  .how { padding: 3rem 1.25rem; }
  .manifesto { padding: 3rem 1.25rem; }
  .closing { padding: 3rem 1.25rem; }
  .agent-tile { padding: 1.5rem 1.25rem; }
  .step { padding: 0; }
}