/* ==========================================================================
   Logan's Alley — v2 Redesign (Core tier, cream-dominant, corner-pub editorial)
   Palette: #F5F0E8 cream dom / #5C1230 burgundy accent / #EAE4D8 light neutral / #2C2420 warm charcoal
   Fonts: DM Serif Display (display) + Outfit (body)
   ========================================================================== */

/* ----- Tokens ----- */
:root {
  --cream: #F5F0E8;
  --cream-warm: #EAE4D8;        /* slightly deeper warm cream for cards/dividers */
  --burgundy: #5C1230;
  --burgundy-ink: #4a0e26;      /* slightly darker for text on cream */
  --burgundy-tint: rgba(92,18,48,0.07);  /* Round 5: teaser card-field panel tint */
  --burgundy-hair: rgba(92,18,48,0.65);  /* Round 5: nav hairline */
  --charcoal: #2C2420;
  --charcoal-footer: #4A1B28;   /* Round 9: actually-maroon footer surface (was #2E1F24, read near-black on mobile) */
  --charcoal-soft: rgba(44,36,32,0.70);
  --charcoal-mute: rgba(44,36,32,0.55);
  --charcoal-faint: rgba(44,36,32,0.40);
  --line: rgba(44,36,32,0.14);
  --line-strong: rgba(44,36,32,0.28);

  --display: "DM Serif Display", "Georgia", serif;
  --body: "Outfit", "Inter", system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-warm: 0 10px 32px -12px rgba(44,36,32,0.18), 0 2px 6px rgba(44,36,32,0.06);
  --shadow-sign: 0 14px 34px -10px rgba(44,36,32,0.22), 0 3px 8px rgba(44,36,32,0.08);

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ----- Reset & base ----- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  background-color: #F5F0E8;       /* match cream body for notch */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: env(safe-area-inset-top, 0px);
  background-color: #F5F0E8;
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Warm paper texture — subtle, fixed, z-index -1 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.14 0 0 0 0 0.12 0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ----- Type ----- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0;
}

p { margin: 0 0 0.85em; }

.overline {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
}

.small-caps {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

/* ----- Layout ----- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.5rem); }

/* ----- Buttons / links ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  padding: 0.92em 1.5em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out;
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: #fff;
}
.btn--primary:hover { background: #6d1738; }

.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn--ghost:hover { background: var(--burgundy); color: #fff; }

.btn--cream {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}
.btn--cream:hover { background: #fff; }

.link-burgundy {
  color: var(--burgundy);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--burgundy), var(--burgundy));
  background-size: 100% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 200ms ease-out;
  display: inline-flex;
  align-items: center;
}
.link-burgundy:hover { background-size: 0 1.5px; }

.ext-icon {
  display: inline-block;
  width: 11px;
  height: 11px;
  vertical-align: baseline;
  margin-left: 0.3em;
  opacity: 0.75;
  flex-shrink: 0;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: relative;
  background-color: var(--cream);
  border-bottom: 1px solid var(--burgundy-hair);  /* Round 5: thin burgundy hairline frames the site */
  padding: calc(1rem + env(safe-area-inset-top, 0px))
           calc(var(--gutter) + env(safe-area-inset-right, 0px))
           1rem
           calc(var(--gutter) + env(safe-area-inset-left, 0px));
  z-index: 50;
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  justify-self: start;
}
.nav__brand img {
  height: 46px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  justify-self: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links a {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  position: relative;
  padding: 0.35em 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1.5px;
  width: 0;
  background: var(--burgundy);
  transition: width 200ms ease-out;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--burgundy); }

.nav__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__cta a {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--burgundy);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--burgundy), var(--burgundy));
  background-size: 100% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 200ms ease-out;
  display: inline-flex;
  align-items: center;
}
.nav__cta a:hover { background-size: 0 1.5px; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--charcoal);
}
.nav__toggle svg { width: 28px; height: 28px; }

.nav__drawer {
  position: fixed;
  inset: 0;
  background-color: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 300ms ease-out;
  padding: calc(5rem + env(safe-area-inset-top, 0px))
           calc(var(--gutter) + env(safe-area-inset-right, 0px))
           2rem
           calc(var(--gutter) + env(safe-area-inset-left, 0px));
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  visibility: hidden;
}
.nav__drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.nav__drawer a {
  font-family: var(--display);
  font-size: 2.25rem;
  color: var(--charcoal);
  line-height: 1.1;
}
.nav__drawer a[aria-current="page"] { color: var(--burgundy); }
.nav__drawer .drawer-cta {
  margin-top: auto;
  font-family: var(--body);
  font-size: 16px;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
}
.nav__drawer-close {
  position: absolute;
  top: calc(1.25rem + env(safe-area-inset-top, 0px));
  right: calc(var(--gutter) + env(safe-area-inset-right, 0px));
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--charcoal);
}
.nav__drawer-close svg { width: 28px; height: 28px; }

@media (max-width: 820px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__brand { justify-self: start; }
  .nav__toggle { justify-self: end; }
}

/* ==========================================================================
   HERO (index)
   ========================================================================== */
.hero {
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6rem);
  background: var(--cream);
}

.hero__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: center;
}

.hero__text { display: flex; flex-direction: column; gap: 1.25rem; }

.hero__overline,
.hero__headline,
.hero__body,
.hero__ctas,
.hero__photo-frame { opacity: 0; transform: translateY(18px); }

.hero__headline {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.hero__body {
  font-size: 19px;
  color: var(--charcoal-soft);
  max-width: 32ch;
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.hero__photo-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  aspect-ratio: 4/3;
  background: var(--cream-warm);
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero__photo-frame { aspect-ratio: 4/3; }
  .hero__body { font-size: 17px; }
}

.hero.is-ready .hero__overline { opacity: 1; transform: translateY(0); transition: opacity 700ms ease-out, transform 700ms ease-out; }
.hero.is-ready .hero__headline { opacity: 1; transform: translateY(0); transition: opacity 700ms ease-out 120ms, transform 700ms ease-out 120ms; }
.hero.is-ready .hero__photo-frame { opacity: 1; transform: translateY(0); transition: opacity 700ms ease-out 120ms, transform 700ms ease-out 120ms; }
.hero.is-ready .hero__body { opacity: 1; transform: translateY(0); transition: opacity 700ms ease-out 240ms, transform 700ms ease-out 240ms; }
.hero.is-ready .hero__ctas { opacity: 1; transform: translateY(0); transition: opacity 700ms ease-out 360ms, transform 700ms ease-out 360ms; }

/* ==========================================================================
   "This is Logan's" intro
   ========================================================================== */
.intro {
  background: var(--cream);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.intro__grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.intro__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  aspect-ratio: 3/4;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
/* Round 5: photo-02 (cheers landscape) replaces photo-01 (weird face). object-position
   favors the face-and-hands zone since a landscape photo center-crops into a portrait frame. */
.intro__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }

.intro__caption {
  margin-top: 0.65rem;
  font-style: italic;
  font-size: 13.5px;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.40 → 0.70 (address caption is content) */
  text-align: center;
}

.intro__body { display: flex; flex-direction: column; gap: 1.5rem; }

.intro__body h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: var(--charcoal);
  max-width: 17ch;
  line-height: 1.1;
}

.intro__body p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--charcoal);
  max-width: 52ch;
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.85em;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--burgundy);
  margin-top: 0.75rem;
  line-height: 1.2;
}
.stat-line > span {
  opacity: 0;
  transform: translateY(12px);
  display: inline-block;
}
.stat-line.is-visible > span {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease-out, transform 650ms ease-out;
}
.stat-line.is-visible > span:nth-child(1) { transition-delay: 0ms; }
.stat-line.is-visible > span:nth-child(2) { transition-delay: 120ms; }
.stat-line.is-visible > span:nth-child(3) { transition-delay: 240ms; }
.stat-line.is-visible > span:nth-child(4) { transition-delay: 360ms; }
.stat-line.is-visible > span:nth-child(5) { transition-delay: 480ms; }

.stat-line .dash { color: var(--charcoal-faint); font-weight: 400; }

@media (max-width: 820px) {
  .intro__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .intro__photo { aspect-ratio: 4/5; max-width: 320px; }
  .stat-line { font-size: 1.3rem; }
}

/* ==========================================================================
   CASK FRIDAY — signature moment (enameled pub sign)
   ========================================================================== */
.cask {
  background: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--line);
}

.cask__sign {
  max-width: 680px;
  margin: 0 auto;
  background: var(--cream);
  border: 2.5px solid var(--burgundy);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-sign);
  position: relative;
}

.cask__sign::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(92,18,48,0.28);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

/* Round 5: burgundy "ON THE CASK" header band — gives the sign more visual weight
   and makes Cask Friday read as the visual anchor. Sits inside the inner frame. */
.cask__sign-header {
  position: relative;
  z-index: 1;
  margin: -0.5rem auto 1.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
  width: fit-content;
  box-shadow: 0 2px 8px -2px rgba(92,18,48,0.35);
}

.cask__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cask__col { display: flex; flex-direction: column; gap: 0.45rem; }

.cask__col--left {
  border-right: 1px dashed rgba(92,18,48,0.28);
  padding-right: clamp(1rem, 3vw, 2.25rem);
}

.cask__label {
  color: var(--charcoal-mute);
  letter-spacing: 0.22em;
  font-size: 10.5px;
}

.cask__name {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.05;
}

.cask__brewery {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--charcoal-soft);
}

.cask__countdown {
  display: flex;
  justify-content: flex-start;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: 0.25rem;
}

.cask__digit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.cask__digit .num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--burgundy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 0 rgba(92,18,48,0.12);
  min-width: 1.6ch;
  text-align: center;
}

.cask__digit .lbl {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.55 → 0.70 (unit labels) */
  font-weight: 500;
}

.cask__foot { text-align: center; margin-top: 1.75rem; }

.cask__foot em {
  font-style: italic;
  font-size: 15.5px;
  color: var(--charcoal-soft);
}

.cask__foot p {
  margin: 0.35rem 0 0;
  font-size: 14.5px;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.55 → 0.70 (body content) */
}

@media (max-width: 640px) {
  .cask__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .cask__col--left {
    border-right: 0;
    border-bottom: 1px dashed rgba(92,18,48,0.28);
    padding-right: 0;
    padding-bottom: 1.25rem;
  }
  .cask__countdown { justify-content: center; }
}

/* ==========================================================================
   TEASER GRID
   ========================================================================== */
.teaser {
  background: var(--cream);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.teaser__head {
  max-width: 620px;
  margin: 0 auto 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.teaser__head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.4rem);
  color: var(--charcoal);
}

.teaser__head p {
  font-size: 16.5px;
  color: var(--charcoal-soft);
  margin: 0;
}

.teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
  /* Round 5: burgundy-tinted panel wraps the card field to add maroon rhythm.
     Head + footlink stay on cream; only the grid sits on the tint. */
  background: var(--burgundy-tint);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-md);
}

.teaser__card {
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  /* no hover — not links */
}

.teaser__card .cat {
  color: var(--burgundy);
  letter-spacing: 0.20em;
  font-size: 10.5px;
}

.teaser__card .name {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.4rem);
  color: var(--charcoal);
  line-height: 1.15;
}

.teaser__card .desc {
  font-size: 14.5px;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

.teaser__footlink {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .teaser__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOURS + ADDRESS STRIP
   ========================================================================== */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.strip__col h3 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.55 → 0.70 for readability */
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.strip__col p,
.strip__col ul li {
  font-size: 15.5px;
  color: var(--charcoal);
  margin: 0 0 0.2rem;
  line-height: 1.55;
}

.strip__col ul { list-style: none; padding: 0; margin: 0; }

.strip__col .address-line { font-weight: 500; }

.strip__col .sub { color: var(--charcoal-soft); }

.strip__col a.link-burgundy { display: inline-block; margin-top: 0.3rem; }

.open-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--charcoal-faint);
}
.open-dot.is-open { background: var(--burgundy); box-shadow: 0 0 0 4px rgba(92,18,48,0.14); }

.open-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.55 → 0.70 (live status text, content-bearing) */
}
.open-label.is-open { color: var(--burgundy); }

@media (max-width: 820px) {
  .strip__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--charcoal-footer);  /* Round 9: #4A1B28 — actually-maroon */
  color: #d9cfc6;
  padding-block: clamp(3rem, 5vw, 4.25rem) clamp(1.75rem, 3vw, 2.5rem);
  padding-left: calc(var(--gutter) + env(safe-area-inset-left, 0px));
  padding-right: calc(var(--gutter) + env(safe-area-inset-right, 0px));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.25rem);
  max-width: var(--maxw);
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Round 10: logo on a cream plate, matching the nav's "burgundy-on-cream" framing.
   The maroon footer + cream plate + original burgundy SVG reads as a framed enameled sign. */
.footer__plate {
  display: inline-flex;
  align-items: center;
  background-color: var(--cream);
  padding: 0.65rem 1rem;
  border-radius: 10px;
}
.footer__brand img {
  height: 46px;
  width: auto;
  display: block;
}

.footer__tagline {
  margin-top: 1rem;
  font-style: italic;
  font-size: 15px;
  color: rgba(245,240,232,0.70);
  max-width: 28ch;
  line-height: 1.5;
}

.footer__nav h4,
.footer__status h4 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin: 0 0 1rem;
}

.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__nav a {
  font-size: 15.5px;
  color: rgba(245,240,232,0.92);
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(rgba(245,240,232,0.55), rgba(245,240,232,0.55));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 200ms ease-out;
  display: inline-flex;
  align-items: center;
}
.footer__nav a:hover { background-size: 100% 1px; }

.footer__status p {
  font-size: 15px;
  color: rgba(245,240,232,0.88);
  line-height: 1.5;
  margin: 0 0 0.65rem;
}

.footer__status strong {
  color: #f5d7e0;
  font-weight: 600;
}

.footer__status .stat-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--display);
  font-size: 1.3rem;
  color: #f5d7e0;
  margin-top: 0.25rem;
}

.footer__status .stat-live .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E6A4B4;
  box-shadow: 0 0 0 0 rgba(230,164,180,0.6);
  animation: footer-pulse 2.6s ease-out infinite;
}

@keyframes footer-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,164,180,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(230,164,180,0); }
}

.footer__legal {
  max-width: var(--maxw);
  margin: 1.5rem auto 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; padding-bottom: 1.75rem; }
}

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.page-hero {
  background: var(--cream);
  padding-block: clamp(3.5rem, 6vw, 5.25rem) clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  color: var(--charcoal);
  max-width: 14ch;
}

.page-hero p {
  font-size: 18px;
  color: var(--charcoal-soft);
  max-width: 52ch;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Taps */
.taps {
  background: var(--cream);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.taps__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.taps__head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  color: var(--charcoal);
}

.taps__hero {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 280px;
  box-shadow: var(--shadow-warm);
}
.taps__hero img { width: 100%; height: 100%; max-height: 280px; object-fit: cover; }

.taps__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 2.25rem;
  margin-top: 2rem;
}

.tap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.tap__name { font-size: 16px; line-height: 1.4; }
.tap__name .brewery { font-weight: 500; color: var(--charcoal); }
.tap__name .beer { color: var(--charcoal); }
.tap__name .style {
  color: var(--charcoal-soft);
  font-size: 14px;
  margin-top: 0.1rem;
  display: block;
}
.tap__abv {
  font-size: 14px;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.55 → 0.70 (ABV numbers are content) */
  font-variant-numeric: tabular-nums;
}

.tap.is-cask {
  background: rgba(92,18,48,0.05);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(92,18,48,0.18);
}

.tap__cask-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--burgundy);
  margin-right: 0.45rem;
  vertical-align: middle;
}

.tap__cask-label {
  display: inline-block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-right: 0.4rem;
  vertical-align: middle;
}

.taps__note {
  margin-top: 1.75rem;
  font-style: italic;
  font-size: 14.5px;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.55 → 0.70 (body content) */
}

@media (max-width: 640px) {
  .taps__list { grid-template-columns: 1fr; gap: 0; }
}

/* Kitchen */
.kitchen {
  background: var(--cream);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.kitchen__head { margin-bottom: 1.75rem; }
.kitchen__head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  color: var(--charcoal);
}

.kitchen__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 320px;
  box-shadow: var(--shadow-warm);
  margin-bottom: 2.25rem;
}
.kitchen__photo img { width: 100%; height: 100%; max-height: 320px; object-fit: cover; }

.kitchen__cat { margin-bottom: 2rem; }

.kitchen__cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 0.75rem;
}

.kitchen__cat-head h3 {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.kitchen__cat-head .mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--charcoal-mute);
}

.kitchen__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.kitchen__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.3rem 0;
}

.kitchen__item .itm-name {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.15;
}

.kitchen__item .itm-desc {
  display: block;
  font-family: var(--body);
  font-size: 14px;
  color: var(--charcoal-soft);
  margin-top: 0.15rem;
  line-height: 1.45;
  max-width: 55ch;
}

.kitchen__item .itm-price {
  font-family: var(--body);
  font-size: 15px;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.55 → 0.70 (prices are content) */
  font-variant-numeric: tabular-nums;
}

/* Toast CTA band */
.toast-band {
  background: var(--burgundy);
  color: var(--cream);
  padding-block: clamp(3rem, 5vw, 4.25rem);
  text-align: center;
}

.toast-band h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  margin: 0 0 0.75rem;
  opacity: 0;
  transform: translateY(12px);
}

.toast-band.is-visible h2 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.toast-band p {
  font-size: 16.5px;
  color: rgba(245,240,232,0.80);
  margin: 0 0 1.75rem;
}

.toast-band .btn--cream { font-size: 16px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-hero {
  background: var(--cream);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.contact-hero__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 440px;
  box-shadow: var(--shadow-warm);
  aspect-ratio: 3/4;
}
.contact-hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.contact-hero__info { display: flex; flex-direction: column; gap: 0.85rem; }

.contact-hero__info h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.contact-hero__addr {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  color: var(--charcoal);
  line-height: 1.2;
}

.contact-hero__city {
  font-size: 16px;
  color: var(--charcoal-soft);
  margin-top: -0.2rem;
}

.contact-hero__phone {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-top: 0.5rem;
}

.contact-hero__open {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

@media (max-width: 820px) {
  .contact-hero__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .contact-hero__photo { max-height: 360px; aspect-ratio: 4/3; order: -1; }
}

/* Contact form */
.contact-form {
  background: var(--cream);
  padding-block: clamp(3rem, 5vw, 4.25rem);
  border-top: 1px solid var(--line);
}

.contact-form__inner {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form__inner h2 {
  font-size: clamp(1.65rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  text-align: center;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.form-row label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.55 → 0.70 (form labels) */
}

.form-row input,
.form-row textarea {
  font-family: var(--body);
  font-size: 16px;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(92,18,48,0.10);
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  font-size: 15.5px;
}

.contact-form__note {
  margin-top: 1rem;
  text-align: center;
  font-size: 13px;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.40 → 0.70 (form guidance is content) */
  font-style: italic;
}

/* Maps */
.maps {
  background: var(--cream);
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.maps__frame {
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  background: var(--cream-warm);
}

.maps iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* Hours */
.hours {
  background: var(--cream);
  padding-block: clamp(2.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}

.hours__inner { max-width: 520px; margin: 0 auto; }

.hours__inner h2 {
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  margin-bottom: 1.25rem;
  text-align: center;
}

.hours__table {
  width: 100%;
  border-collapse: collapse;
}

.hours__table tr { border-bottom: 1px solid var(--line); }
.hours__table tr.is-today { background: rgba(92,18,48,0.05); }

.hours__table td {
  padding: 0.75rem 0.5rem;
  font-size: 16px;
  color: var(--charcoal);
}

.hours__table td:first-child {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hours__table td:last-child {
  text-align: right;
  color: var(--charcoal-soft);
  font-variant-numeric: tabular-nums;
}

.hours__note {
  margin-top: 1rem;
  font-style: italic;
  font-size: 13.5px;
  color: var(--charcoal-soft);  /* Round 5: bumped 0.40 → 0.70 (note is content) */
  text-align: center;
}

/* ==========================================================================
   Scroll-reveal baseline
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal.delay-50 { transition-delay: 50ms; }
.reveal.delay-120 { transition-delay: 120ms; }
.reveal.delay-200 { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .hero__overline,
  .hero__headline,
  .hero__body,
  .hero__ctas,
  .hero__photo-frame,
  .stat-line > span,
  .toast-band h2 {
    opacity: 1 !important;
    transform: none !important;
  }
}
