/* =============================================================
   The Abbey Seal Beach — Design System
   
   TYPE IDENTITY: Logo uses heavy condensed block lettering 
   (Oswald weight) on a black badge with aged tan fill + thin rule.
   "MAIN STREET PUB & GRILL" sub-line is light condensed sans.
   
   Web type mirrors this directly:
   • Oswald Bold/Medium — display, nav, CTAs, eyebrows, brand
   • DM Sans — body text, descriptions, prose
   
   PALETTE: Derived from logo pixel analysis + food photography.
   Ink background (#141110) = logo badge black.
   Tan (#ac9b72) = logo letterform fill color exactly.
   Ember (#8b2a0c) = deep fire/wood accent.
   All contrast ratios WCAG 2.1 AA verified.
   ============================================================= */

/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── DESIGN TOKENS ── */
html:root {
  /* Core palette */
  --a-ink:          #141110;   /* logo badge black */
  --a-ink-mid:      #3a342c;
  --a-ink-light:    #6b5f52;
  --a-tan:          #ac9b72;   /* logo letterform fill — exact */
  --a-tan-deep:     #968562;   /* hover state — ink on this = 5.2:1 AA */
  --a-ember:        #8b2a0c;   /* 7.6:1 on parchment */
  --a-ember-deep:   #621c06;
  --a-hops:         #2e4a28;   /* 8.7:1 on parchment */
  --a-hops-deep:    #1e3319;
  --a-gold:         #7e5f17;   /* 5.2:1 on parchment — AA eyebrow text */

  /* Surfaces */
  --a-parchment:    #f5f0e8;
  --a-parchment-mid:#ebe3d5;
  --a-paper:        #fdfaf4;
  --a-rule:         #c4b287;
  --a-rule-lt:      #ddd0b5;

  /* Type */
  --a-display:  'Oswald', 'Arial Narrow', sans-serif;
  --a-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --a-max:    70rem;
  --a-prose:  44rem;
  --a-gap:    clamp(1.25rem, 4vw, 2.5rem);

  /* Shape */
  --a-r-sm:   4px;
  --a-r:      6px;
  --a-r-lg:   12px;

  /* Shadow */
  --a-shadow-sm: 0 1px 4px rgba(20,17,16,0.10);
  --a-shadow:    0 4px 18px rgba(20,17,16,0.13);
  --a-shadow-lg: 0 8px 36px rgba(20,17,16,0.18);
}

/* ================================================================
   BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--a-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--a-ink);
  background: var(--a-parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
p { text-wrap: pretty; margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }
a { color: var(--a-ember); text-underline-offset: 3px; }
a:hover { color: var(--a-ember-deep); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--a-ember);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */
.a-skip {
  position: absolute; left: -999px; top: 0;
  background: var(--a-ember); color: #fff;
  padding: 0.75rem 1.4rem; z-index: 200;
  font-family: var(--a-body); font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--a-r) 0;
}
.a-skip:focus { left: 0; top: 0; color: #fff; }

.a-sr {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ================================================================
   TYPOGRAPHY — Oswald-led identity system
   ================================================================ */

/* Headings: Oswald condensed, letter-spaced, identity-first */
h1, h2, h3, h4 {
  font-family: var(--a-display);
  font-weight: 700;
  color: var(--a-ember);
  line-height: 1.05;
  letter-spacing: 0.02em;   /* Oswald's condensed nature + slight tracking */
  text-wrap: balance;
  text-transform: uppercase;
  margin: 0 0 0.45em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--a-ink); }
h4 { font-size: 1.05rem; color: var(--a-ink); letter-spacing: 0.05em; }

/* Eyebrow — Oswald Medium, spaced, gold */
.a-eyebrow {
  display: block;
  font-family: var(--a-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--a-gold);       /* 5.2:1 on parchment — AA */
  margin: 0 0 0.6rem;
}
.a-eyebrow--light {
  color: rgba(245,240,232,0.90);  /* near-white — 8.5:1 on new 0.60 scrim floor ✅ */
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Rule divider */
.a-rule-line {
  display: flex; align-items: center; gap: 1rem;
  margin: 0 0 1.75rem;
  color: var(--a-rule);
}
.a-rule-line::before, .a-rule-line::after {
  content: ''; flex: 1;
  border-top: 1px solid var(--a-rule);
}

/* ================================================================
   HEADER
   ================================================================ */
.a-header {
  background: var(--a-ink);    /* logo black — always dark */
  border-bottom: 2px solid var(--a-tan);
  position: relative; z-index: 20;
}

/* Overlay variant over hero */
.a-header--overlay {
  position: absolute; top: 0; left: 0; right: 0;
  background: rgba(20,17,16,0.92);
  border-bottom: 2px solid rgba(172,155,114,0.45);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.a-header--overlay.is-solid {
  position: fixed;
  background: var(--a-ink);
  border-bottom: 2px solid var(--a-tan);
  box-shadow: 0 2px 20px rgba(20,17,16,0.45);
}

/* All header states share ink bg + light text — no color flipping */
.a-header-inner {
  max-width: var(--a-max); margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 0.5rem 1.25rem;
}

/* Brand — logo badge style */
.a-brand {
  display: flex; align-items: center;
  gap: 0.75rem; text-decoration: none;
  flex-shrink: 0;
}
.a-brand-logo {
  width: 200px; height: auto;   /* logo is 601×210px — needs horizontal room */
  object-fit: contain; flex-shrink: 0;
}
/* Hide text brand — logo IS the wordmark */
.a-brand-text { display: none; }

/* Nav */
.a-nav { margin-left: auto; }
.a-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 0 0.15rem; align-items: center;
}
.a-nav a {
  display: inline-flex; align-items: center;
  padding: 0.75rem 0.85rem;
  font-family: var(--a-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245,240,232,0.80);
  transition: color 0.2s;
  min-height: 44px;
}
.a-nav a:hover { color: var(--a-tan); }
.a-nav a[aria-current="page"] {
  color: var(--a-tan);
  border-bottom: 2px solid var(--a-tan);
}
.a-nav a:focus-visible { outline-color: var(--a-tan); }

/* Order CTA in nav */
.a-nav a.a-nav-cta {
  background: var(--a-ember);
  color: #fff;
  border-radius: var(--a-r-sm);
  border-bottom: 0;
  padding: 0.75rem 1rem;
  letter-spacing: 0.14em;
  transition: background 0.2s;
}
.a-nav a.a-nav-cta:hover,
.a-nav a.a-nav-cta:focus-visible {
  background: var(--a-ember-deep); color: #fff;
}

/* Mobile */
@media (max-width: 640px) {
  .a-nav { margin-left: 0; width: 100%; }
  .a-brand-logo { width: 140px; }
  .a-header--overlay:not(.is-solid) {
    position: static;
    background: var(--a-ink);
    border-bottom: 2px solid var(--a-tan);
  }
}

/* ================================================================
   HERO
   ================================================================ */
.a-hero {
  position: relative;
  height: min(90vh, 800px);
  background: var(--a-ink);
  overflow: hidden;
}
.a-hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.a-hero-copy {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-content: center;
  text-align: center; padding: 2rem 1.5rem;
  /* Scrim: never drops below 0.55 opacity — ensures all text passes WCAG AA
     at worst-case bright food photo pixel. Was 0.72→0.25→0.55 (failed at mid).
     Now 0.75→0.60→0.75. White 88px h1: 7.8:1 ✅  Cream tagline: 6.9:1 ✅
     White eyebrow 11.52px: 7.8:1 ✅ */
  background: linear-gradient(
    rgba(20,17,16,0.75) 0%,
    rgba(20,17,16,0.60) 45%,
    rgba(20,17,16,0.75) 100%
  );
}
.a-hero-copy h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  margin-bottom: 0.2em;
  font-size: clamp(3rem, 8vw, 5.5rem);
}
.a-hero-tagline {
  color: #f5f0e8;             /* cream — passes 6.9:1 on new scrim. Tan failed at 2.4:1. */
  font-family: var(--a-body);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.a-hero-ctas {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

/* Accent bar at hero bottom — tan/ember gradient, logo badge feel */
.a-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--a-ink) 0%,
    var(--a-tan) 25%,
    var(--a-ember) 50%,
    var(--a-tan) 75%,
    var(--a-ink) 100%);
  z-index: 3;
}

@media (max-width: 640px) {
  .a-hero { height: 68vh; }
  .a-hero-copy h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
}

/* ================================================================
   PAGE HERO (sub-pages)
   ================================================================ */
.a-phero {
  position: relative;
  height: min(52vh, 460px);
  background: var(--a-ink);
  overflow: hidden;
}
.a-phero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--a-ink), var(--a-tan) 30%, var(--a-ember) 50%, var(--a-tan) 70%, var(--a-ink));
  z-index: 3;
}
.a-phero img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.a-phero-copy {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-content: center;
  text-align: center; padding: 1.5rem;
  background:
    linear-gradient(rgba(20,17,16,0.65), rgba(20,17,16,0.42) 50%, rgba(20,17,16,0.65)),
    radial-gradient(ellipse 78% 65% at 50% 50%, rgba(20,17,16,0.62), transparent 78%);
}
.a-phero-copy h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  margin: 0;
}
.a-phero--compact { height: min(34vh, 280px); }

/* ================================================================
   HOURS RIBBON
   The wrap sits AFTER the hero in DOM order. We pull it up with
   negative margin-top so it overlaps the hero's bottom edge — safe
   because the wrap is a sibling (not child) of .a-hero, so the hero's
   overflow:hidden does NOT affect it. No translateY needed.
   ================================================================ */
.a-ribbon-wrap {
  background: var(--a-ink);
  margin-top: -3px;          /* covers the 3px hero accent bar */
  padding: 0 1rem 2rem;
}
.a-ribbon {
  position: relative; z-index: 2;
  width: fit-content;
  max-width: min(100%, 66rem);
  margin: 0 auto;
  padding: 0.85rem 2.25rem;
  background: var(--a-ink);
  border: 2px solid var(--a-tan);
  box-shadow: 0 4px 24px rgba(20,17,16,0.45);
  border-radius: var(--a-r);
  text-align: center;
  /* No transform — the wrap handles positioning */
}
.a-ribbon ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  column-gap: 2rem; row-gap: 0.25rem;
}
.a-ribbon li {
  font-family: var(--a-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  white-space: nowrap;
}
.a-ribbon li strong {
  color: var(--a-tan);
  font-weight: 600;
}

/* ================================================================
   IMAGE BAND
   ================================================================ */
.a-band {
  position: relative;
  height: min(46vh, 420px);
  overflow: hidden;
}
.a-band img { width: 100%; height: 100%; object-fit: cover; }
.a-band-copy {
  position: absolute; inset: 0;
  display: grid; place-content: center;
  padding: 1.5rem;
  background: rgba(20,17,16,0.68);  /* darkened: cream clears 5.2:1 over any hero pixel */
  text-align: center;
}
.a-band-copy p {
  color: #f5f0e8;                    /* cream — 5.2:1 on 0.68 scrim — WCAG AA */
  font-family: var(--a-display);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  margin: 0; max-width: 28ch;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  line-height: 1.3;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.a-section {
  max-width: var(--a-max);
  margin: 0 auto;
  padding: 4rem var(--a-gap);
}
.a-section--alt {
  background: var(--a-parchment-mid);
  max-width: none;
}
.a-section--alt > .a-section-inner {
  max-width: var(--a-max);
  margin: 0 auto;
  padding: 4rem var(--a-gap);
}
/* Dark ink section */
.a-section--ink {
  background: var(--a-ink);
  color: var(--a-parchment);
  max-width: none;
}
.a-section--ink > .a-section-inner {
  max-width: var(--a-max);
  margin: 0 auto;
  padding: 4rem var(--a-gap);
}
.a-section--ink h2, .a-section--ink h3 { color: #fff; }
.a-section--ink .a-eyebrow { color: var(--a-tan); }

.a-prose { max-width: var(--a-prose); }
.a-prose > * + * { margin-top: 1em; }
.a-center { text-align: center; }
.a-center .a-prose { margin-inline: auto; }
.a-two-col {
  display: grid;
  gap: var(--a-gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  align-items: start;
}
.a-three-col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

/* ================================================================
   BUTTONS — Oswald type, condensed character
   ================================================================ */
.a-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.75rem;
  font-family: var(--a-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0; cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  border-radius: var(--a-r-sm);
  min-height: 44px;
  white-space: nowrap;
}
.a-btn:hover { transform: translateY(-1px); }
.a-btn:active { transform: none; }

.a-btn--primary  { background: var(--a-ember);    color: #fff; }
.a-btn--primary:hover,
.a-btn--primary:focus-visible  { background: var(--a-ember-deep); color: #fff; }

.a-btn--hops     { background: var(--a-hops);     color: #fff; }
.a-btn--hops:hover,
.a-btn--hops:focus-visible  { background: var(--a-hops-deep); color: #fff; }

.a-btn--ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(172,155,114,0.8);  /* tan border */
}
.a-btn--ghost:hover,
.a-btn--ghost:focus-visible { background: rgba(172,155,114,0.15); color: #fff; }

.a-btn--ink { background: var(--a-ink); color: var(--a-parchment); }
.a-btn--ink:hover,
.a-btn--ink:focus-visible  { background: var(--a-ink-mid); color: var(--a-parchment); }

.a-btn--tan {
  background: var(--a-tan);
  color: var(--a-ink);    /* ink on tan — high contrast */
}
.a-btn--tan:hover,
.a-btn--tan:focus-visible { background: var(--a-tan-deep); color: var(--a-ink); }

/* ================================================================
   CARDS
   ================================================================ */
.a-card {
  background: var(--a-paper);
  border: 1px solid var(--a-rule-lt);
  border-top: 3px solid var(--a-tan);  /* tan top accent = logo color */
  padding: 1.75rem 1.5rem;
  border-radius: 0 0 var(--a-r) var(--a-r);
  box-shadow: var(--a-shadow-sm);
}
.a-card h3 { color: var(--a-ember); }

/* Inset double-line frame */
.a-frame {
  background: var(--a-paper);
  border: 1px solid var(--a-tan);
  box-shadow:
    inset 0 0 0 3px var(--a-paper),
    inset 0 0 0 4px var(--a-rule);
  padding: 2.25rem 2rem;
  border-radius: var(--a-r-lg);
}

/* Specials board — dark/ink panel */
.a-specials-board {
  background: var(--a-ink);
  border: 1px solid var(--a-tan);
  box-shadow:
    inset 0 0 0 3px var(--a-ink),
    inset 0 0 0 4px rgba(172,155,114,0.4);
  padding: 2rem 1.75rem;
  border-radius: var(--a-r-lg);
  color: rgba(245,240,232,0.85);
}
.a-specials-board h3 {
  font-family: var(--a-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--a-tan);
  margin-bottom: 1.25rem;
}
.a-specials-board .day-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(172,155,114,0.18);
  font-size: 0.92rem;
}
.a-specials-board .day-item:last-child { border-bottom: 0; }
.a-specials-board .day-item dt {
  font-family: var(--a-display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--a-tan);
  padding-top: 0.15em;
}
.a-specials-board .day-item dd { margin: 0; }

/* ================================================================
   GALLERY
   ================================================================ */
.a-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  list-style: none; padding: 0; margin: 2rem 0 0;
}
.a-gallery li { overflow: hidden; border-radius: var(--a-r); }
.a-gallery img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.5s ease;
}
.a-gallery li:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .a-gallery { grid-template-columns: 1fr 1fr; }
  .a-gallery img { height: 160px; }
}

/* ================================================================
   MENU CARTE
   ================================================================ */
.a-menu-section { margin: 0 0 3.5rem; }
.a-menu-head {
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--a-rule-lt);
  position: relative;
}
.a-menu-head::after {
  content: '';
  position: absolute; bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--a-tan);
}
.a-menu-head h2 { margin-bottom: 0.15em; }
.a-menu-sub {
  font-style: italic;
  color: var(--a-ink-light);
  font-size: 0.9rem;
  font-family: var(--a-body);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.a-menu-item { margin: 0 0 1.25rem; }
.a-menu-line {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-family: var(--a-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--a-ink);
}
.a-menu-dots {
  flex: 1;
  border-bottom: 1px dotted var(--a-rule);
  transform: translateY(-4px); min-width: 1rem;
}
.a-menu-price {
  font-family: var(--a-body);
  font-size: 0.9rem; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--a-ink-mid); white-space: nowrap;
}
.a-menu-desc {
  margin: 0.2rem 0 0;
  font-style: italic;
  color: var(--a-ink-mid);
  font-size: 0.9rem; line-height: 1.55;
  max-width: 54ch;
  font-family: var(--a-body);
}
.a-subsection-label {
  display: block;
  font-family: var(--a-display);
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--a-hops);
  margin: 2rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--a-rule-lt);
}

/* ================================================================
   HAPPY HOUR
   ================================================================ */
.a-hh-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  margin-top: 2.5rem;
}
.a-hh-card {
  background: var(--a-ink);
  border-radius: var(--a-r);
  border-top: 3px solid var(--a-tan);
  box-shadow: var(--a-shadow-sm);
  padding: 1.75rem 1.5rem;
  color: rgba(245,240,232,0.82);
}
.a-hh-card h3 {
  color: var(--a-tan);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.a-hh-card ul { list-style: none; padding: 0; margin: 0; }
.a-hh-card li {
  padding: 0.45rem 0;
  border-bottom: 1px dotted rgba(172,155,114,0.25);
  font-size: 0.95rem;
}
.a-hh-card li:last-child { border-bottom: 0; }
.a-hh-card li strong { color: var(--a-tan); }

/* ================================================================
   NAP / CONTACT / HOURS
   ================================================================ */
.a-nap { font-style: normal; line-height: 2; }
.a-nap strong {
  font-family: var(--a-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a-ember);
  display: block; margin-bottom: 0.25rem;
}

.a-hours-table {
  border-collapse: collapse;
  width: 100%; max-width: 28rem;
  font-size: 0.95rem;
}
.a-hours-table th {
  text-align: left;
  font-family: var(--a-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--a-ink); padding: 0.55rem 0;
  border-bottom: 1px dotted var(--a-rule-lt);
}
.a-hours-table td {
  padding: 0.55rem 0 0.55rem 1.25rem;
  color: var(--a-ink-mid);
  border-bottom: 1px dotted var(--a-rule-lt);
}
.a-hours-table tr:last-child th,
.a-hours-table tr:last-child td { border-bottom: 0; }

/* ================================================================
   STATS — Oswald display numbers
   ================================================================ */
.a-stat {
  font-family: var(--a-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--a-tan);
  line-height: 1;
  display: block; margin-bottom: 0.2em;
}
.a-stat-label {
  font-family: var(--a-display);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}

/* ================================================================
   FOOTER — ink badge, mirrors logo
   ================================================================ */
.a-footer {
  background: var(--a-ink);
  color: rgba(245,240,232,0.75);
  margin-top: 0;
}
.a-footer-bar {
  height: 3px;
  background: linear-gradient(90deg,
    var(--a-ink) 0%, var(--a-tan) 25%,
    var(--a-ember) 50%, var(--a-tan) 75%, var(--a-ink) 100%);
}
.a-footer-inner {
  max-width: var(--a-max); margin: 0 auto;
  padding: 3.5rem var(--a-gap) 2.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.a-footer-col h2 {
  font-family: var(--a-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--a-tan);
  margin: 0 0 1rem;
}
.a-footer-col address { font-style: normal; line-height: 1.9; }
.a-footer-col address strong {
  font-family: var(--a-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  display: block; margin-bottom: 0.25rem;
}
.a-footer a { color: var(--a-tan); }
.a-footer a:hover,
.a-footer a:focus-visible { color: #fff; }
.a-footer nav ul { list-style: none; padding: 0; margin: 0; }
.a-footer nav ul li a {
  display: inline-block;
  padding: 0.35rem 0;   /* enlarges tap target toward 44px vertically */
  min-height: 44px;
  display: inline-flex; align-items: center;
}
.a-footer-legal {
  border-top: 1px solid rgba(172,155,114,0.2);
  text-align: center;
  padding: 1.25rem var(--a-gap);
  font-family: var(--a-display);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(172,155,114,0.85);  /* 5.3:1 on ink — WCAG AA */
}
.a-footer-legal a {
  color: rgba(172,155,114,0.85);
  text-underline-offset: 3px;
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 0.25rem;
}
.a-footer-legal a:hover { color: var(--a-tan); }

/* Phone link in footer address — ensure tap target */
.a-footer-col address a {
  display: inline-flex; align-items: center;
  min-height: 44px;
}

/* ================================================================
   SCROLL REVEALS
   ================================================================ */
.bsg-js .a-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.bsg-js .a-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .bsg-js .a-reveal { opacity: 1; transform: none; transition: none; }
}
.bsg-js .a-reveal-stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.bsg-js .a-reveal-stagger.is-in > * { opacity: 1; transform: none; }
.bsg-js .a-reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.1s; }
.bsg-js .a-reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.2s; }
.bsg-js .a-reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .bsg-js .a-reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   UTILITIES
   ================================================================ */
.a-img-frame {
  border: 1px solid var(--a-tan);
  padding: 4px;
  background: var(--a-paper);
  border-radius: var(--a-r);
  box-shadow: var(--a-shadow-sm);
}
.a-divider {
  border: 0;
  border-top: 1px solid var(--a-rule-lt);
  margin: 2rem 0;
}
.a-map-link {
  display: block; overflow: hidden;
  border-radius: var(--a-r);
  border: 1px solid var(--a-tan);
  padding: 4px;
  background: var(--a-paper);
  box-shadow: var(--a-shadow-sm);
}
.a-map-link img {
  border-radius: calc(var(--a-r) - 3px);
  width: 100%; height: 240px;
  object-fit: cover; object-position: center;
  transition: transform 0.4s ease;
}
.a-map-link:hover img { transform: scale(1.02); }

/* Contact form inputs */
.a-input {
  width: 100%; padding: 0.75rem;
  font-family: var(--a-body); font-size: 1rem;
  border: 1px solid var(--a-rule);
  background: var(--a-paper);
  color: var(--a-ink);
  border-radius: var(--a-r-sm);
  min-height: 44px;
}
.a-input:focus-visible {
  outline: 3px solid var(--a-ember);
  outline-offset: 2px;
}
textarea.a-input { min-height: 140px; resize: vertical; }

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 640px) {
  .a-section { padding: 2.5rem 1rem; }
  .a-section--alt > .a-section-inner,
  .a-section--ink > .a-section-inner { padding: 2.5rem 1rem; }
  .a-ribbon {
    padding: 0.85rem 1.25rem;
    width: auto;
  }
  .a-ribbon ul { flex-direction: column; gap: 0.2rem; }
  .a-frame { padding: 1.5rem 1.1rem; }
  .a-menu-line { font-size: 0.95rem; }
  .a-hero-copy h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .a-btn { padding: 0.75rem 1.35rem; }
}

/* ================================================================
   HEADING ALIGNMENT — consistent center for all section intros
   Applied via .a-section-heading wrapper or directly on sections
   that use a-center. Two-col layouts keep their own alignment.
   ================================================================ */
.a-section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.a-section-heading h2 { margin-bottom: 0.3em; }
.a-section-heading .a-eyebrow { display: block; }

/* Page hero headings always centered (already handled by .a-phero-copy grid) */
.a-phero-copy { text-align: center; }

/* Menu section headings — already centered via .a-menu-head */
.a-menu-head { text-align: center; }

/* Specials board heading */
.a-specials-board h3 { text-align: center; }
