/* ==========================================================================
   Molly's Bar, The Liberties · styles.css
   One committed look, drawn from the bar's own identity: cream and crimson
   from the logo, olive and forest from the Francis Street front and the
   room inside, brass from the signage, a scallop shell for Molly herself.
   ========================================================================== */

/* ---------- Fonts (self-hosted, latin subsets, variable) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-italic-latin.woff2") format("woff2");
  font-weight: 600 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;

  /* tier 1 · primitives */
  --cream-050: #f9f5ec;
  --cream-100: #f5f0e4;
  --cream-200: #ece4cf;
  --cream-300: #ddd2b4;
  --green-950: #15221a;
  --green-900: #1c3024;
  --green-800: #26412f;
  --green-750: #2d4c37;
  --green-700: #35573f;
  --olive-600: #5f6e4e;
  --ink-900: #242e23;
  --ink-600: #4e594a;
  --red-600: #a81e2c;
  --red-700: #8d1724;
  --gold-500: #c19a43;
  --gold-300: #dcc28a;

  /* tier 2 · semantic */
  --color-bg: var(--cream-100);
  --color-bg-raised: var(--cream-050);
  --color-bg-panel: var(--cream-200);
  --color-fg: var(--ink-900);
  --color-fg-soft: var(--ink-600);
  --color-accent: var(--red-600);
  --color-accent-hover: var(--red-700);
  --color-brass: var(--gold-500);
  --color-line: rgb(36 46 35 / 0.14);
  --color-line-gold: rgb(193 154 67 / 0.55);
  --color-focus: var(--red-600);
  --shadow-soft: 0 14px 40px rgb(74 58 20 / 0.1), 0 3px 10px rgb(74 58 20 / 0.07);
  --shadow-lift: 0 20px 50px rgb(74 58 20 / 0.16), 0 4px 12px rgb(74 58 20 / 0.09);

  --font-display: "Fraunces", "Georgia", serif;
  --font-text: "Archivo", "Segoe UI", system-ui, sans-serif;

  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.15rem, 1.07rem + 0.4vw, 1.35rem);
  --step-2: clamp(1.45rem, 1.3rem + 0.75vw, 1.85rem);
  --step-3: clamp(1.85rem, 1.55rem + 1.5vw, 2.7rem);
  --step-4: clamp(2.3rem, 1.85rem + 2.4vw, 3.7rem);
  --step-5: clamp(2.8rem, 2rem + 4vw, 5.2rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --section: clamp(4.5rem, 10vw, 8.5rem);

  --radius: 14px;
  --radius-sm: 9px;
  --header-h: 3.9rem;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  /* Kills the Android Chrome overscroll stretch, which visibly
     rubber-bands the hero photo at the top of the page. */
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 var(--space-2);
  text-wrap: balance;
}

p {
  margin: 0 0 var(--space-2);
  max-width: 60ch;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1.5px;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-accent);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background: var(--red-600);
  color: var(--cream-100);
}

.fx {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
}

.shell-ribs {
  stroke: var(--rib, var(--color-bg));
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
}

/* The symbol container is inline by default and would add an empty
   line box above the header without this. */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- Utilities ---------- */
.container {
  width: min(74rem, 92vw);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--red-600);
  color: var(--cream-100);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus-visible {
  top: 0;
  color: var(--cream-100);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--space-3);
}

.eyebrow svg {
  width: 1.05rem;
  height: 1.05rem;
  --rib: transparent;
}

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--color-fg-soft);
  max-width: 52ch;
}

/* Bands */
.band {
  padding-block: var(--section);
  position: relative;
}

.band--panel {
  background: var(--color-bg-panel);
}

.band--forest {
  background: var(--green-800);
  color: var(--cream-100);
  --color-fg: var(--cream-100);
  --color-fg-soft: #cdd6c3;
  --color-accent: var(--gold-300);
  --color-accent-hover: #e9d6ab;
  --color-line: rgb(245 240 228 / 0.16);
  --color-focus: var(--gold-300);
  --color-bg: var(--green-800);
}

.band--deep {
  background: var(--green-950);
  color: var(--cream-100);
  --color-fg: var(--cream-100);
  --color-fg-soft: #becab2;
  --color-accent: var(--gold-300);
  --color-accent-hover: #e9d6ab;
  --color-line: rgb(245 240 228 / 0.14);
  --color-focus: var(--gold-300);
  --color-bg: var(--green-950);
}

.section-head {
  max-width: 47rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head h2 {
  font-size: var(--step-4);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center .lede {
  margin-inline: auto;
}

/* Scalloped edges between bands: circles of the section above
   dipping into the section below. */
.scallop {
  height: 24px;
  background-color: var(--to);
  background-image: radial-gradient(circle 22px at 22px 0, var(--from) 0 21px, transparent 21.8px);
  background-size: 44px 24px;
  background-repeat: repeat-x;
}

.scallop--cream-forest    { --from: var(--cream-100); --to: var(--green-800); }
.scallop--forest-cream    { --from: var(--green-800); --to: var(--cream-100); }
.scallop--cream-panel     { --from: var(--cream-100); --to: var(--cream-200); }
.scallop--panel-deep      { --from: var(--cream-200); --to: var(--green-950); }
.scallop--deep-cream      { --from: var(--green-950); --to: var(--cream-100); }
.scallop--forest-deep     { --from: var(--green-800); --to: var(--green-950); }
.scallop--red-cream       { --from: var(--red-600);   --to: var(--cream-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: 600 1rem/1.2 var(--font-text);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    translate 0.18s ease, box-shadow 0.18s ease;
}

.btn--primary {
  background: var(--red-600);
  color: #f8f3e8;
  box-shadow: 0 6px 18px rgb(168 30 44 / 0.28);
}

.btn--primary:hover {
  background: var(--red-700);
  color: #f8f3e8;
  translate: 0 -2px;
  box-shadow: 0 10px 24px rgb(168 30 44 / 0.34);
}

.btn--ghost {
  border-color: currentcolor;
  color: inherit;
  background: transparent;
}

.btn--ghost:hover {
  color: var(--color-accent);
  translate: 0 -2px;
}

/* ==========================================================================
   Header: a compact cream bar, always. Gains a soft shadow once scrolled.
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-100);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow 0.25s ease;
}

.site-header.is-stuck {
  box-shadow: 0 6px 24px rgb(74 58 20 / 0.09);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand__shell {
  width: 2.15rem;
  height: 2.15rem;
  color: var(--red-600);
  --rib: var(--cream-100);
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--red-600);
}

.brand__sub {
  display: block;
  font: 600 0.62rem/1.4 var(--font-text);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-fg-soft);
  margin-top: 0.22rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
}

.site-nav a:not(.btn) {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.975rem;
  color: var(--color-fg);
  padding: 0.45rem 0;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  inset: auto 0 0.1rem 0;
  height: 2px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--red-600);
}

.site-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-line);
  border-radius: 999px;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem;
  justify-content: center;
  cursor: pointer;
  color: var(--color-fg);
}

.nav-toggle__bars {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentcolor;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: currentcolor;
  transition: translate 0.2s ease, rotate 0.2s ease;
}

.nav-toggle__bars::before {
  translate: 0 -0.42rem;
}

.nav-toggle__bars::after {
  translate: 0 0.42rem;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  translate: 0;
  rotate: 45deg;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  translate: 0;
  rotate: -45deg;
}

@media (max-width: 53rem) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-100);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 24px 40px rgb(74 58 20 / 0.14);
    padding: var(--space-2) 4vw var(--space-3);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.08rem;
  }

  .site-nav a:not(.btn)::after {
    content: none;
  }

  .site-nav .btn {
    margin-top: var(--space-2);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(94svh, 58rem);
  display: flex;
  align-items: flex-end;
  color: #f8f3e8;
  isolation: isolate;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgb(14 20 14 / 0.6) 0%, rgb(14 20 14 / 0.3) 46%, rgb(14 20 14 / 0.06) 78%),
    linear-gradient(to top, rgb(14 20 14 / 0.92) 0%, rgb(14 20 14 / 0.55) 38%, rgb(20 26 18 / 0.24) 66%, rgb(20 26 18 / 0.38) 100%);
}

@media (max-width: 40rem) {
  .hero::after {
    background:
      linear-gradient(to top, rgb(14 20 14 / 0.94) 0%, rgb(14 20 14 / 0.62) 42%, rgb(14 20 14 / 0.42) 72%, rgb(14 20 14 / 0.5) 100%);
  }
}

.hero__content {
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2.5rem, 6vw, 4.5rem);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font: 600 0.85rem/1 var(--font-text);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgb(14 20 14 / 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgb(220 194 138 / 0.3);
  border-radius: 999px;
  padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  margin-bottom: var(--space-3);
}

.hero__kicker svg {
  width: 1.3rem;
  height: 1.3rem;
  --rib: transparent;
}

.hero h1 {
  font-size: var(--step-5);
  max-width: 12ch;
  margin-bottom: var(--space-3);
  color: #f8f3e8;
  text-shadow: 0 2px 24px rgb(10 14 10 / 0.45);
}

.hero h1 .tint {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-300);
}

.hero__sub {
  font-size: var(--step-1);
  line-height: 1.55;
  max-width: 44ch;
  color: rgb(248 243 232 / 0.94);
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 12px rgb(10 14 10 / 0.4);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin-bottom: var(--space-5);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgb(248 243 232 / 0.94);
  text-shadow: 0 1px 10px rgb(10 14 10 / 0.5);
  padding-top: var(--space-3);
  border-top: 1px solid rgb(248 243 232 / 0.26);
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--gold-300);
  flex-shrink: 0;
}

.is-open-now .status-dot {
  background: #7fd89d;
  box-shadow: 0 0 12px rgb(127 216 157 / 0.65);
}

/* ==========================================================================
   Ticker: a slow marquee; wraps statically when motion is reduced
   ========================================================================== */
.ticker {
  background: var(--red-600);
  color: #f8f3e8;
  padding-block: 1rem;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
}

.ticker ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  font: 600 0.85rem/1.4 var(--font-text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker li {
  display: inline-flex;
  align-items: center;
}

.ticker li::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgb(248 243 232 / 0.5);
  margin-inline: 1.4rem;
}

@media (prefers-reduced-motion: no-preference) {
  .ticker__track {
    animation: ticker-roll 36s linear infinite;
  }

  .ticker:hover .ticker__track,
  .ticker:focus-within .ticker__track {
    animation-play-state: paused;
  }

  @keyframes ticker-roll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    width: auto;
    justify-content: center;
  }

  .ticker ul {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }

  .ticker ul[aria-hidden="true"] {
    display: none;
  }
}

/* ==========================================================================
   Framed photography
   ========================================================================== */
.framed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.framed::after {
  content: "";
  position: absolute;
  inset: var(--space-1);
  border: 1.5px solid rgb(220 194 138 / 0.65);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.framed img {
  width: 100%;
}

/* ==========================================================================
   Story
   ========================================================================== */
.story {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 56rem) {
  .story {
    grid-template-columns: 1.02fr 0.98fr;
  }
}

.story__media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.story__media .framed--wide,
.story__media figcaption {
  grid-column: 1 / -1;
}

.framed--square {
  aspect-ratio: 1 / 1;
}

.framed--square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__media figcaption {
  font-size: 0.875rem;
  color: var(--color-fg-soft);
}

.story h2 {
  font-size: var(--step-4);
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: var(--space-4);
}

.fact-chips li {
  border: 1.5px solid var(--color-line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-fg-soft);
  background: var(--color-bg-raised);
}

/* ==========================================================================
   Taps
   ========================================================================== */
.taps-photo {
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
}

.tap-grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}

.tap {
  background: var(--green-750);
  border: 1px solid rgb(245 240 228 / 0.1);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: translate 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tap:hover {
  translate: 0 -4px;
  border-color: rgb(220 194 138 / 0.5);
  box-shadow: 0 18px 36px rgb(10 18 12 / 0.35);
}

.tap__brewery {
  font: 600 0.68rem/1.4 var(--font-text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.tap--guest {
  border-color: rgb(232 154 164 / 0.4);
}

.tap--guest .tap__brewery {
  color: #eda6af;
}

.tap__name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.08;
}

.tap__style {
  font-size: 0.95rem;
  color: var(--color-fg-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--color-line);
  padding-top: 0.7rem;
  margin-top: auto;
  max-width: none;
}

.tap__abv {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--gold-300);
  white-space: nowrap;
}

.tap__note {
  font-size: 0.95rem;
  color: var(--color-fg-soft);
  margin: 0;
}

.taps-footnote {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border: 1px dashed rgb(220 194 138 / 0.45);
  border-radius: var(--radius);
  color: var(--color-fg-soft);
  font-size: 0.975rem;
  max-width: none;
}

.taps-footnote a {
  color: var(--gold-300);
  font-weight: 600;
}

/* Drinks split cards */
.drink-duo {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (min-width: 48rem) {
  .drink-duo {
    grid-template-columns: 1fr 1fr;
  }
}

.drink-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  box-shadow: var(--shadow-soft);
}

.drink-card img {
  width: 100%;
  height: 100%;
  max-height: 27rem;
  object-fit: cover;
  grid-area: 1 / 1;
  transition: scale 0.4s ease;
}

.drink-card:hover img {
  scale: 1.03;
}

.drink-card figcaption {
  grid-area: 1 / 1;
  align-self: end;
  padding: var(--space-4) var(--space-3) var(--space-3);
  background: linear-gradient(to top, rgb(12 18 12 / 0.88), rgb(12 18 12 / 0));
  color: #f8f3e8;
}

.drink-card strong {
  font-family: var(--font-display);
  font-size: var(--step-2);
  display: block;
  margin-bottom: 0.2rem;
}

.drink-card span {
  color: rgb(248 243 232 / 0.88);
  font-size: 0.95rem;
}

/* ==========================================================================
   Kitchen
   ========================================================================== */
.kitchen {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (min-width: 56rem) {
  .kitchen {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.kitchen__media {
  display: grid;
  gap: var(--space-3);
}

@media (max-width: 56rem) {
  /* Words first on small screens; pictures follow. */
  .kitchen__media {
    order: 2;
  }
}

@media (max-width: 40rem) {
  .kitchen__wings {
    display: none;
  }
}

.dish-list {
  display: grid;
  margin-block: var(--space-3) var(--space-4);
}

.dish-list li {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--color-line);
}

.dish-list li:first-child {
  border-top: 1px solid var(--color-line);
}

@media (max-width: 40rem) {
  .dish-list li {
    flex-direction: column;
    gap: 0.15rem;
  }
}

.dish-list strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
}

.dish-list span {
  color: var(--color-fg-soft);
  font-size: 0.975rem;
}

.hours-note {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--red-600);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
}

.hours-note h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.hours-note p {
  margin: 0;
  color: var(--color-fg);
  font-weight: 500;
  font-size: 0.975rem;
  max-width: none;
}

.hours-note .hours-note__aside {
  margin-top: 0.5rem;
  color: var(--color-fg-soft);
  font-weight: 400;
  font-size: 0.9rem;
}

/* ==========================================================================
   Platters: set like the bar's own printed menu
   ========================================================================== */
.menu-card {
  max-width: 62rem;
  margin-inline: auto;
  background: var(--color-bg-raised);
  border: 1.5px solid var(--color-line-gold);
  outline: 1.5px solid var(--color-line-gold);
  outline-offset: 6px;
  border-radius: 6px;
  padding: clamp(2rem, 6vw, 4rem);
  margin-block: 8px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.menu-card__title {
  font-size: var(--step-3);
  margin-bottom: 0.4rem;
}

.menu-card__title .fx {
  color: var(--red-600);
}

.menu-card__sub {
  font: 600 0.8rem/1.6 var(--font-text);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-fg-soft);
  margin: 0 auto var(--space-5);
  max-width: none;
}

.menu-card__grid {
  display: grid;
  gap: var(--space-5) var(--space-6);
  text-align: center;
}

@media (min-width: 44rem) {
  .menu-card__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.platter {
  display: flex;
  flex-direction: column;
}

.platter h3 {
  font-style: italic;
  font-weight: 600;
  font-size: var(--step-2);
  margin-bottom: var(--space-2);
}

.platter h3::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 2px;
  background: var(--color-line-gold);
  margin: 0.7rem auto 0;
}

.platter ul {
  color: var(--color-fg-soft);
  font-size: 0.975rem;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0;
}

.platter__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  color: var(--red-600);
  margin: 0;
  margin-top: auto;
  padding-top: var(--space-2);
}

.platter__price span {
  display: block;
  font: 500 0.75rem/1.6 var(--font-text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg-soft);
}

.menu-card__note {
  margin: var(--space-5) auto 0;
  color: var(--color-fg-soft);
  font-size: 0.95rem;
  max-width: 48ch;
  text-wrap: balance;
}

.menu-card__note a {
  white-space: nowrap;
}

/* ==========================================================================
   Features (yard / match / dog)
   ========================================================================== */
.feature-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}

.feature {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  background: rgb(245 240 228 / 0.045);
  transition: translate 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.feature:hover {
  translate: 0 -4px;
  border-color: rgb(220 194 138 / 0.45);
  background: rgb(245 240 228 / 0.07);
}

.feature svg {
  width: 2.7rem;
  height: 2.7rem;
  color: var(--gold-300);
  margin-bottom: var(--space-2);
}

.feature h3 {
  font-size: var(--step-2);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--color-fg-soft);
  margin: 0;
  font-size: 0.975rem;
}

.feature a {
  color: var(--gold-300);
  font-weight: 600;
}

/* ==========================================================================
   Press quote
   ========================================================================== */
.press {
  text-align: center;
}

.press blockquote {
  margin: 0 auto;
  max-width: 46ch;
}

.press blockquote p {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 600;
  line-height: 1.25;
  max-width: none;
  margin-bottom: var(--space-3);
}

.press blockquote p .fx {
  color: var(--red-600);
}

.press blockquote::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 2.5px;
  background: var(--color-line-gold);
  margin: 0 auto var(--space-4);
}

.press cite {
  font: 500 0.9rem/1.6 var(--font-text);
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--color-fg-soft);
}

.press cite a {
  font-weight: 600;
}

/* ==========================================================================
   Booking
   ========================================================================== */
.booking {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (min-width: 56rem) {
  .booking {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.booking__panel {
  background: var(--green-800);
  color: var(--cream-100);
  --color-fg-soft: #cdd6c3;
  --color-focus: var(--gold-300);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4.5vw, 2.75rem);
  box-shadow: var(--shadow-lift);
}

.booking__panel h3 {
  font-size: var(--step-2);
  margin-bottom: var(--space-2);
}

.booking__panel ol {
  margin: 0 0 var(--space-3);
  padding-left: 1.3rem;
  color: var(--color-fg-soft);
  display: grid;
  gap: 0.6rem;
}

.booking__panel ol::marker {
  color: var(--gold-300);
}

.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.booking__panel .btn--ghost {
  border-color: rgb(245 240 228 / 0.5);
}

.booking__panel .btn--ghost:hover {
  color: var(--gold-300);
  border-color: var(--gold-300);
}

.booking__small {
  margin: var(--space-3) 0 0;
  font-size: 0.875rem;
  color: var(--color-fg-soft);
  max-width: none;
}

/* ==========================================================================
   Find us
   ========================================================================== */
.findus {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: start;
}

@media (min-width: 60rem) {
  .findus {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.map-panel {
  background: var(--cream-100);
  color: var(--ink-900);
  border-radius: var(--radius);
  padding: var(--space-2);
  box-shadow: var(--shadow-lift);
  margin: 0;
}

.map-panel > svg {
  width: 100%;
  height: auto;
  display: block;
  border: 1.5px solid var(--color-line-gold);
  border-radius: calc(var(--radius) - 6px);
}

.map-panel figcaption {
  padding: var(--space-2) var(--space-1) var(--space-1);
  font-size: 0.85rem;
  color: #4e594a;
}

.walk-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: var(--space-2) var(--space-1) 0;
  font-size: 0.875rem;
  color: var(--ink-900);
}

.walk-times strong {
  font-weight: 600;
}

.info-stack {
  display: grid;
  gap: var(--space-4);
}

.info-block h3 {
  font-size: 0.95rem;
  font-family: var(--font-text);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-2);
}

.info-block p {
  margin-bottom: 0.5rem;
}

.info-block address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.975rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.65rem 0.25rem;
  border-bottom: 1px solid var(--color-line);
  font-weight: 400;
  vertical-align: top;
}

.hours-table th {
  font-weight: 600;
  padding-right: 1.5rem;
  white-space: nowrap;
}

.hours-table tr.is-today th,
.hours-table tr.is-today td {
  color: var(--gold-300);
  font-weight: 600;
  border-left: 3px solid var(--gold-300);
  padding-left: 0.65rem;
}

.hours-caveat {
  font-size: 0.875rem;
  color: var(--color-fg-soft);
  margin-top: var(--space-2);
}

.contact-links {
  display: grid;
  gap: 0.8rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  padding: 0.2rem 0;
}

.contact-links a:hover {
  color: var(--gold-300);
}

.contact-links svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--gold-300);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--green-950);
  color: var(--cream-100);
  --color-fg-soft: #b7c2ab;
  --color-accent: var(--gold-300);
  --color-line: rgb(245 240 228 / 0.14);
  --color-focus: var(--gold-300);
  padding: var(--section) 0 var(--space-4);
  text-align: center;
}

.footer-lockup {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  margin: 0 auto var(--space-5);
}

.footer-lockup p {
  margin: 0;
  max-width: none;
}

.footer-lockup__shell {
  width: 3.4rem;
  height: 3.4rem;
  color: var(--gold-300);
  --rib: var(--green-950);
  margin-bottom: 0.4rem;
}

.footer-lockup__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  line-height: 1;
  color: #e0596a;
}

.footer-lockup__place {
  font: 600 0.85rem/1.4 var(--font-text);
  letter-spacing: 0.36em;
  text-indent: 0.36em;
  text-transform: uppercase;
  color: var(--cream-100);
}

.footer-lockup__est {
  font: 500 0.72rem/1.4 var(--font-text);
  letter-spacing: 0.26em;
  text-indent: 0.26em;
  text-transform: uppercase;
  color: var(--color-fg-soft);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.9rem;
  margin-bottom: var(--space-4);
}

.footer-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

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

.footer-brewery {
  color: var(--color-fg-soft);
  font-size: 0.95rem;
  max-width: 46ch;
  margin: 0 auto var(--space-5);
}

.footer-brewery a {
  color: var(--cream-100);
  font-weight: 600;
}

.footer-brewery a:hover {
  color: var(--gold-300);
}

.footer-fine {
  border-top: 1px solid var(--color-line);
  padding-top: var(--space-3);
  font-size: 0.825rem;
  color: var(--color-fg-soft);
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.footer-fine p {
  margin: 0;
  max-width: none;
}

.footer-slainte {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-300);
  letter-spacing: 0.02em;
  margin-top: var(--space-1);
}

/* ==========================================================================
   Reveal on scroll (JS-enhanced, motion-safe)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    translate: 0 1.1rem;
    transition: opacity 0.55s ease, translate 0.55s ease;
  }

  html.js .reveal.is-in {
    opacity: 1;
    translate: 0 0;
  }

  html.js .reveal.no-anim {
    transition: none;
  }

  html.js .tap-grid > :nth-child(2).reveal,
  html.js .feature-grid > :nth-child(2).reveal,
  html.js .menu-card__grid > :nth-child(2).reveal {
    transition-delay: 0.07s;
  }

  html.js .tap-grid > :nth-child(3).reveal,
  html.js .feature-grid > :nth-child(3).reveal,
  html.js .menu-card__grid > :nth-child(3).reveal {
    transition-delay: 0.14s;
  }

  html.js .tap-grid > :nth-child(4).reveal,
  html.js .menu-card__grid > :nth-child(4).reveal {
    transition-delay: 0.21s;
  }

  html.js .tap-grid > :nth-child(5).reveal { transition-delay: 0.07s; }
  html.js .tap-grid > :nth-child(6).reveal { transition-delay: 0.14s; }
  html.js .tap-grid > :nth-child(7).reveal { transition-delay: 0.21s; }
  html.js .tap-grid > :nth-child(8).reveal { transition-delay: 0.28s; }
}

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

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

/* ---------- Forced colors (Windows High Contrast) ---------- */
@media (forced-colors: active) {
  .btn,
  .tap,
  .feature,
  .menu-card,
  .booking__panel {
    border: 1px solid CanvasText;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .ticker,
  .hero__actions,
  .nav-toggle,
  .footer-nav,
  .drink-card,
  .taps-photo {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .band,
  .band--forest,
  .band--deep,
  .site-footer {
    background: #fff;
    color: #000;
    --color-fg: #000;
    --color-fg-soft: #333;
  }
}
