/* ============================================================
   DRAFT RIVER BREWING CO. — Ink & Paper design system
   Palette is anchored to the logo: ink #101C27 / brass #A08249
   ============================================================ */

:root {
  --ink:          #101C27;
  --ink-deep:     #0C1E2F;
  --ink-night:    #0A1622;
  --brass:        #A08249;
  --brass-bright: #B8913A;
  --river:        #6E93A6;
  --river-deep:   #56798C;
  --olive:        #6B7147;
  --cream:        #F5EFE3;
  --paper:        #EFE6D5;
  --paper-deep:   #E7DCC6;

  --ink-06: rgba(16, 28, 39, 0.06);
  --ink-12: rgba(16, 28, 39, 0.12);
  --ink-25: rgba(16, 28, 39, 0.25);
  --ink-55: rgba(16, 28, 39, 0.55);
  --ink-75: rgba(16, 28, 39, 0.75);
  --cream-12: rgba(245, 239, 227, 0.12);
  --cream-45: rgba(245, 239, 227, 0.45);
  --cream-70: rgba(245, 239, 227, 0.70);
  --brass-35: rgba(160, 130, 73, 0.35);
  --brass-55: rgba(160, 130, 73, 0.55);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'EB Garamond', 'Georgia', serif;
  --font-script:  'Great Vibes', cursive;
  --font-hand:    'La Belle Aurore', cursive;
  --font-ui:      'Source Sans 3', 'Helvetica Neue', sans-serif;

  /* paper grain, shared with dark sections at lower opacity */
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");

  /* seamless river-current tile: three phased quadratic waves */
  --current: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 42' width='90' height='42'%3E%3Cg fill='none' stroke='%236E93A6' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M0 10 Q22.5 3 45 10 T90 10' opacity='0.5'/%3E%3Cpath d='M-45 24 Q-22.5 31 0 24 T45 24 T90 24 T135 24' opacity='0.35'/%3E%3Cpath d='M0 36 Q22.5 29 45 36 T90 36' opacity='0.25'/%3E%3C/g%3E%3C/svg%3E");
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  background-color: var(--cream);
  background-image: var(--grain);
  background-size: 256px;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

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

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: var(--cream-45);
  text-align: center;
  padding: 9px 20px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.topbar .hi { color: var(--brass); }

/* ── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 239, 227, 0.94);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--ink-12);
}
.site-nav::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 256px;
  pointer-events: none;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-75);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.nav-links a:hover { color: var(--brass); }
.nav-links a.active { color: var(--brass); border-bottom-color: var(--brass); }
.nav-links a.nav-cta {
  border: 1.5px solid var(--ink);
  padding: 10px 22px;
  color: var(--ink);
  transition: all 0.18s;
}
.nav-links a.nav-cta:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--ink-12);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 20px;
    display: none;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: inline-block; padding: 13px 0; border-bottom: none; }
  .nav-links a.nav-cta { margin-top: 10px; }
}

/* ── Type & shared parts ────────────────────────────────── */
.kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.kicker::before { content: ''; width: 34px; height: 1px; background: var(--brass-55); }
.kicker.centered { justify-content: center; }
.kicker.centered::after { content: ''; width: 34px; height: 1px; background: var(--brass-55); }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.005em;
}
h2.display { font-size: clamp(30px, 4.4vw, 46px); }
.display.caps { text-transform: uppercase; letter-spacing: 0.03em; }
.display em { font-style: italic; color: var(--brass); }

.script-sub {
  font-family: var(--font-script);
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--brass);
  line-height: 1.3;
  margin: 10px 0 4px;
}

.lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  color: var(--ink-75);
  max-width: 640px;
}
.on-dark .lede { color: var(--cream-70); }

.prose p + p { margin-top: 1.1em; }

/* flourish divider: rules + rotated diamond */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 34px auto;
}
.flourish::before, .flourish::after {
  content: '';
  width: 74px;
  height: 1px;
  background: var(--brass-55);
}
.flourish i {
  width: 7px; height: 7px;
  background: var(--brass);
  transform: rotate(45deg);
  display: block;
}

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-brass { background: var(--brass); color: var(--ink-night); }
.btn-brass:hover { background: var(--brass-bright); }
.btn-ghost-cream { border-color: var(--cream-45); color: var(--cream); }
.btn-ghost-cream:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-ghost-ink { border-color: var(--ink); color: var(--ink); }
.btn-ghost-ink:hover { background: var(--ink); color: var(--cream); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Sections ───────────────────────────────────────────── */
.section { position: relative; padding: 108px 24px; overflow: hidden; }
.section-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 2; }
.section-inner.narrow { max-width: 780px; }

.on-dark {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: var(--cream);
}
.on-dark::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 256px;
  opacity: 0.6;
  pointer-events: none;
}
.on-paper { background: var(--paper); }

/* manuscript handwriting layer (decorative, real DOM text) */
.manuscript {
  position: absolute;
  inset: -4% -3%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform: rotate(-1.6deg);
  font-family: var(--font-hand);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 2.05;
  color: var(--ink);
  opacity: 0.055;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.on-dark .manuscript { color: var(--river); opacity: 0.09; }
.manuscript p { white-space: nowrap; }

/* river current band */
.current-band {
  height: 42px;
  background-image: var(--current);
  background-size: 90px 42px;
  background-repeat: repeat-x;
  opacity: 0.6;
}

/* torn / deckle paper edge divider (fill = the section it introduces) */
.deckle { display: block; width: 100%; height: 26px; margin-bottom: -1px; }

/* ── Cards ──────────────────────────────────────────────── */
.tap-card {
  background: var(--paper);
  background-image: var(--grain);
  background-size: 256px;
  border: 1px solid var(--ink-25);
  padding: 30px 26px 26px;
  position: relative;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(10, 22, 34, 0.16);
}
.tap-card::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid var(--brass-55);
  pointer-events: none;
}
.tap-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.tap-num {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.tap-status {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass-55);
  padding: 5px 10px;
  white-space: nowrap;
}
.tap-pour-row { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.tap-pour {
  width: 56px; height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--ink-25), inset 0 -8px 12px rgba(16, 28, 39, 0.28), inset 0 6px 8px rgba(255, 255, 255, 0.32);
}
.tap-name { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.15; }
.tap-style {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 5px;
}
.tap-desc { font-size: 15.5px; line-height: 1.7; color: var(--ink-75); font-style: italic; }
.tap-abv {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dotted var(--ink-25);
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-55);
  display: flex;
  gap: 18px;
}
.tap-abv b { color: var(--brass); font-weight: 600; }

.tap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tap-grid.two { grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 960px) { .tap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tap-grid, .tap-grid.two { grid-template-columns: 1fr; } }

/* quote card (navy, script) */
.quote-card {
  background: linear-gradient(160deg, var(--ink-deep), var(--ink-night));
  border: 1px solid var(--brass-35);
  outline: 1px solid var(--ink);
  outline-offset: -7px;
  padding: 46px 40px 40px;
  text-align: center;
  color: var(--cream);
  position: relative;
  box-shadow: 0 18px 44px rgba(10, 22, 34, 0.28);
}
.quote-card .q {
  font-family: var(--font-script);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.45;
  color: var(--brass);
}
.quote-card .attr {
  margin-top: 14px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--cream-70);
}

/* ── Menu ───────────────────────────────────────────────── */
.menu-section { margin-bottom: 64px; }
.menu-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}
.menu-section-note {
  text-align: center;
  font-style: italic;
  color: var(--ink-55);
  font-size: 15px;
  margin-top: 6px;
}
.menu-items { margin-top: 34px; display: grid; gap: 26px; }
.menu-item-line { display: flex; align-items: baseline; gap: 12px; }
.menu-item-name { font-family: var(--font-display); font-weight: 700; font-size: 18.5px; }
.menu-leader { flex: 1; border-bottom: 1px dotted var(--ink-25); transform: translateY(-4px); min-width: 30px; }
.menu-price { font-size: 17px; color: var(--brass); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-item-desc { font-size: 15.5px; font-style: italic; color: var(--ink-75); margin-top: 4px; max-width: 60ch; }

/* ── Signup postcard ────────────────────────────────────── */
.postcard {
  background: var(--paper);
  background-image: var(--grain);
  background-size: 256px;
  border: 1px solid var(--ink-25);
  box-shadow: 0 18px 44px rgba(10, 22, 34, 0.18);
  padding: 44px 40px 40px;
  position: relative;
}
.postcard::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--brass-55);
  pointer-events: none;
}
.postcard-stamp {
  position: absolute;
  top: 22px; right: 22px;
  width: 58px; height: 68px;
  border: 1.5px solid var(--brass-55);
  color: var(--brass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(160, 130, 73, 0.08) 3px 4px);
}
.postcard-stamp svg { width: 30px; height: 16px; }

.signup-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 8px;
  text-align: center;
}
.signup-head {
  font-family: var(--font-script);
  font-size: clamp(30px, 4vw, 40px);
  color: var(--brass);
  text-align: center;
  margin-bottom: 26px;
  line-height: 1.2;
}
.signup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.signup-row.full { grid-template-columns: 1fr; }
.signup-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(245, 239, 227, 0.6);
  border: 1.5px solid var(--ink);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s;
}
.signup-input::placeholder { color: var(--ink); opacity: 0.32; }
.signup-input:focus { border-color: var(--brass); }

.consent-block { margin: 14px 0 16px; display: flex; align-items: flex-start; gap: 10px; }
.consent-block input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--ink);
  width: 15px; height: 15px;
  cursor: pointer;
}
.consent-text { font-family: var(--font-ui); font-size: 10px; line-height: 1.6; color: var(--ink-55); font-weight: 300; }
.consent-text a { color: var(--ink); }

.signup-btn {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.signup-btn:hover { background: var(--brass); }
.signup-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.form-error {
  display: none;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #b04040;
  color: #b04040;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.signup-success {
  display: none;
  padding: 14px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, var(--ink-deep), var(--ink-night));
  color: var(--cream-70);
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 256px;
  opacity: 0.5;
  pointer-events: none;
}
.footer-river {
  position: relative;
  padding: 58px 24px 30px;
  text-align: center;
}
.footer-river .script-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-hand);
  font-size: 26px;
  line-height: 1.9;
  color: var(--river);
  opacity: 0.16;
  transform: rotate(-1.2deg);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 75%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 75%, transparent);
}
.footer-river .script-lines p { white-space: nowrap; }
.footer-boat { position: relative; z-index: 1; display: inline-block; color: var(--brass); width: min(300px, 72vw); }
.footer-tagline {
  position: relative;
  z-index: 1;
  font-family: var(--font-script);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--brass);
  margin-top: 10px;
}

.footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 24px 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--cream-12);
}
.footer-logo img { height: 60px; width: auto; }
.footer-links { display: flex; gap: 26px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-ui);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-70);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--brass); }

.social { display: flex; align-items: center; gap: 20px; }
.social a {
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  opacity: 0.42;
  text-decoration: none;
  transition: opacity 0.18s, color 0.18s;
}
.social a:hover { opacity: 1; color: var(--brass); }
.social a svg { width: 18px; height: 18px; fill: currentColor; display: block; }

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 16px 24px 22px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--cream-45);
  border-top: 1px solid var(--cream-12);
}
.footer-bottom a { color: var(--brass); text-decoration: none; }

/* ── Page hero (interior pages) ─────────────────────────── */
.page-hero { text-align: center; padding: 84px 24px 60px; position: relative; overflow: hidden; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 68px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.page-hero .script-sub { margin-top: 2px; }
.page-hero .lede { margin: 18px auto 0; }

.draft-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  border: 1px solid var(--brass-55);
  color: var(--brass);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 9px 18px;
}
.draft-note i { width: 5px; height: 5px; background: var(--brass); transform: rotate(45deg); }

/* ── Scroll reveal & motion ─────────────────────────────── */
/* reveals only hide when JS is present (html.js set inline in <head>) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.js .reveal.revealed { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

.boat-bob { animation: bob 7.5s ease-in-out infinite; transform-origin: 50% 100%; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-0.7deg); }
}
.smoke { transform-box: fill-box; transform-origin: 50% 100%; animation: smoke-drift 5.5s ease-out infinite; }
.smoke.s2 { animation-delay: 1.4s; }
.smoke.s3 { animation-delay: 2.9s; }
@keyframes smoke-drift {
  0% { opacity: 0; transform: translate(0, 4px) scale(0.9); }
  18% { opacity: 0.6; }
  100% { opacity: 0; transform: translate(-16px, -14px) scale(1.18); }
}
.wheel-spokes { transform-box: fill-box; transform-origin: center; animation: wheel-turn 16s linear infinite; }
@keyframes wheel-turn { to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .boat-bob, .smoke, .wheel-spokes { animation: none; }
  .smoke { opacity: 0.35; }
}

/* ── Home hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #13212F 0%, var(--ink-deep) 55%, var(--ink-night) 100%);
  color: var(--cream);
  text-align: center;
  padding: 88px 24px 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 256px;
  opacity: 0.55;
  pointer-events: none;
}
.hero .manuscript { color: var(--river); opacity: 0.085; }
.hero-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.hero-logo { width: min(430px, 82vw); margin: 0 auto 36px; }
.hero-badge {
  display: inline-block;
  border: 1px solid var(--brass-55);
  color: var(--brass);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 9px 22px;
  margin-bottom: 30px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
}
.hero h1 em { font-style: italic; color: var(--brass); }
.hero .lede { margin: 22px auto 36px; max-width: 580px; color: var(--cream-70); }
.hero .btn-row { justify-content: center; }
.hero-boat {
  width: min(430px, 80vw);
  margin: 48px auto -4px;
  color: var(--brass);
  position: relative;
  z-index: 2;
}

/* ── Section head ───────────────────────────────────────── */
.section-head { max-width: 780px; margin-bottom: 54px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .kicker { justify-content: center; }
.section-head.centered .kicker::after { content: ''; width: 34px; height: 1px; background: var(--brass-55); }
.section-cta { margin-top: 48px; display: flex; justify-content: center; }

/* ── Story ──────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) { .story-grid { grid-template-columns: 1fr; gap: 44px; } }
.map-frame {
  background: var(--cream);
  border: 1px solid var(--ink-25);
  box-shadow: 0 16px 38px rgba(10, 22, 34, 0.14);
  padding: 12px;
}
.map-caption {
  text-align: center;
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-55);
  margin-top: 14px;
}
.story-quote { margin-top: 60px; max-width: 660px; margin-inline: auto; }

/* ── Taproom / visit ────────────────────────────────────── */
.space-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) { .space-grid { grid-template-columns: 1fr; gap: 44px; } }
.visit-card {
  background: var(--cream);
  background-image: var(--grain);
  background-size: 256px;
  border: 1px solid var(--ink-25);
  box-shadow: 0 16px 38px rgba(10, 22, 34, 0.14);
  padding: 40px 36px;
  position: relative;
}
.visit-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--brass-35);
  pointer-events: none;
}
.visit-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 8px;
}
.visit-row { padding: 15px 0; border-bottom: 1px dotted var(--ink-25); }
.visit-row:last-child { border-bottom: none; }
.visit-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.visit-value { font-size: 17px; line-height: 1.6; }
.visit-value a { color: var(--ink); text-decoration-color: var(--brass-55); text-underline-offset: 3px; }
.visit-value a:hover { color: var(--brass); }

/* ── Home menu teaser ───────────────────────────────────── */
.teaser-panel {
  max-width: 740px;
  margin: 0 auto;
  background: var(--cream);
  background-image: var(--grain);
  background-size: 256px;
  border: 1px solid var(--ink-25);
  box-shadow: 0 14px 34px rgba(10, 22, 34, 0.12);
  padding: 48px clamp(26px, 5vw, 56px);
  position: relative;
}
.teaser-panel::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--brass-35);
  pointer-events: none;
}
.teaser-panel .menu-items { margin-top: 0; }

/* footnote quote under dark tap section */
.water-quote {
  text-align: center;
  margin-top: 48px;
  font-style: italic;
  font-size: 16px;
  color: var(--cream-70);
}
.water-quote .attr { display: block; margin-top: 6px; font-size: 13.5px; letter-spacing: 0.08em; color: var(--brass); }
.water-quote .aside { display: block; margin-top: 4px; font-size: 13px; color: var(--cream-45); }

/* ── Menu board (menu page) ─────────────────────────────── */
.menu-board {
  max-width: 860px;
  margin: 0 auto;
  background: var(--cream);
  background-image: var(--grain);
  background-size: 256px;
  border: 1px solid var(--ink-25);
  box-shadow: 0 18px 44px rgba(10, 22, 34, 0.14);
  padding: 68px clamp(24px, 7vw, 80px) 40px;
  position: relative;
}
.menu-board::before {
  content: '';
  position: absolute;
  inset: 11px;
  border: 1px solid var(--brass-35);
  pointer-events: none;
}
.menu-board-foot {
  text-align: center;
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-55);
  padding-top: 26px;
  border-top: 1px dotted var(--ink-25);
  margin-top: 22px;
}

/* ── Legal / privacy ────────────────────────────────────── */
.legal { max-width: 720px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  margin: 42px 0 12px;
}
.legal p, .legal ul { margin-top: 12px; color: var(--ink-75); }
.legal ul { padding-left: 22px; }
.legal a { color: var(--brass); }
.notice-banner {
  border: 1.5px dashed var(--brass);
  color: var(--brass);
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.8;
  padding: 14px 20px;
  text-align: center;
  margin-bottom: 38px;
}

/* ── Small screens ──────────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 76px 20px; }
  .postcard { padding: 38px 22px 30px; }
  .postcard-stamp { display: none; }
  .signup-row { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .menu-board { padding-top: 48px; }
}
