/* =============================================================================
   Bellard's Poultry & Crawfish - shared stylesheet
   Matte-black premium theme. Tokens first, components built from them.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Backgrounds (soft charcoal, layered: card lifts, section + footer recede) */
  --bg-page:    #28282b;   /* page base */
  --bg-alt:     #212124;   /* hero / alternating sections: a step down from page */
  --bg-card:    #323236;   /* lifted cards, panels, admin surfaces: a step up */
  --bg-footer:  #1d1d20;   /* grounding: a step below page */
  --bg-topbar:  #1d1d20;   /* utility bar above the white nav */

  /* Navy */
  --navy:          #15233a;  /* wordmark */
  --navy-band:     #111d33;  /* specialty band */
  --navy-on-dark:  #7d97c4;  /* navy text on dark bg */

  /* Red */
  --red:        #a01e23;     /* primary button */
  --red-hover:  #b3242b;     /* button hover */
  --red-bright: #c23b3f;     /* bright accent */
  --red-eyebrow:#b23338;     /* eyebrow text */

  /* Product card */
  --card-surface: #9e1c20;
  --card-hover:   #b3242b;

  /* Text */
  --heading:    #f4f1ec;
  --heading-2:  #f0ece4;
  --body:       #b0aaa1;
  --body-2:     #aaa49b;
  --muted:      #7d776e;
  --muted-2:    #8a847b;
  --faint:      #544f48;

  /* Cream on red */
  --cream:        #f9f3ea;
  --cream-body:   rgba(255, 244, 240, .82);

  /* Borders (bumped slightly so separation reads on the lighter charcoal) */
  --hairline:   rgba(255, 255, 255, .08);
  --line:       rgba(255, 255, 255, .11);
  --control:    rgba(255, 255, 255, .16);

  /* Type */
  --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Radius */
  --r-card:   16px;
  --r-slot:   15px;
  --r-btn:    7px;
  --r-pill:   999px;

  /* Layout */
  --maxw:     1240px;
  --pad:      40px;
  --section:  96px;

  /* Motion */
  --ease:     cubic-bezier(.2, .8, .2, 1);
  --t-card:   .35s;
  --t-photo:  .6s;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}

/* Reading measure (PERMANENT SITEWIDE STANDARD):
   running prose holds a comfortable 60-75 character line. Body text never runs
   the full container width. The cap is in `ch` so it tracks the font size, and
   it only bites on wide screens (on narrow screens 68ch exceeds the container,
   so paragraphs are simply 100% of the wrap). More specific component rules may
   set a tighter measure; none should remove it. */
p { margin: 0 0 1em; max-width: 68ch; }

/* Reusable prose containers for any block of running text, current or future. */
.measure { max-width: 68ch; }
.prose { max-width: 100%; }
.prose p,
.prose li,
.prose blockquote { max-width: 68ch; }
.prose h2,
.prose h3 { max-width: 30ch; }
.prose ul,
.prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
/* When a measured paragraph sits in a genuinely centered context, the capped
   box stays centered too (the cap alone would otherwise pin it left). */
.text-center p,
.cta-strip p,
.areas .section-head p,
.error-page p { margin-left: auto; margin-right: auto; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 var(--r-btn) 0;
}
.skip-link:focus { left: 0; }

.ico { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .01em;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-card) var(--ease),
              border-color var(--t-card) var(--ease),
              color var(--t-card) var(--ease),
              transform var(--t-card) var(--ease);
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-hover); }
.btn--ghost {
  background: transparent;
  color: var(--heading);
  border-color: var(--control);
}
.btn--ghost:hover { border-color: var(--cream); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--red); }
.btn--cream:hover { background: #fff; }
.btn:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; }

/* ---- Eyebrow / section heads -------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-eyebrow);
  margin-bottom: 18px;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
}
.section-head p { color: var(--body); font-size: 1.06rem; }

/* ---- Brand logo (nav + footer) ------------------------------------------- */
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 46px; width: auto; display: block; }
.site-footer__brand .brand--footer .brand__logo { height: 52px; }
@media (max-width: 560px) {
  .brand__logo { height: 40px; }
}

/* ---- Wordmark (legacy type mark, kept for reference) --------------------- */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}
.wordmark__top {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.72rem;
  letter-spacing: -.02em;
  color: var(--navy);
}
.wordmark__bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--red);
  padding-left: .34em; /* optical balance for tracking */
}
.wordmark__rule {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--red);
}
/* Footer variant sits on dark */
.wordmark--footer .wordmark__top { color: #fff; }

/* ---- Utility bar --------------------------------------------------------- */
.utility-bar {
  background: var(--bg-topbar);
  color: var(--muted-2);
  font-size: .82rem;
  border-bottom: 1px solid var(--hairline);
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 18px;
}
.utility-bar__meta,
.utility-bar__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.utility-bar__meta li { display: inline-flex; align-items: center; gap: 7px; }
.utility-bar__meta .ico { color: var(--red-bright); font-size: .95em; }
.utility-bar__sep { color: var(--faint); }
.utility-bar__phone { display: inline-flex; align-items: center; gap: 7px; color: var(--body-2); }
.utility-bar__phone:hover { color: var(--cream); }
.utility-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--muted-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: color var(--t-card) var(--ease), border-color var(--t-card) var(--ease);
}
.utility-bar__social a:hover { color: var(--cream); border-color: var(--control); }

/* ---- Primary nav (white, sticky) ---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow var(--t-card) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .18); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 34px;
}
.primary-nav__list > li { position: relative; }
.primary-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: .95rem;
  color: #1c1c1c;
  padding: 8px 0;
  transition: color .2s var(--ease);
}
.primary-nav__list a:hover,
.primary-nav__list a.is-active { color: var(--red); }
.primary-nav__list a.is-active { position: relative; }
.primary-nav__list a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
}
.caret { width: 14px; height: 14px; fill: currentColor; opacity: .6; }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 110;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .92rem;
  color: #2a2a2a;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: #f6f1ec; color: var(--red); }

.site-header__cta { padding: 12px 22px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: #1c1c1c;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  padding: 18px var(--pad) 30px;
}
.mobile-menu__list { list-style: none; margin: 0 0 18px; padding: 0; }
.mobile-menu__list a {
  display: block;
  padding: 14px 0;
  font-size: 1.08rem;
  font-weight: 500;
  color: #1c1c1c;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.mobile-menu__list a.is-active { color: var(--red); }
.mobile-menu__cta { width: 100%; }
.mobile-menu__call { text-align: center; margin: 16px 0 0; color: #555; }
.mobile-menu__call a { color: var(--red); font-weight: 600; }

/* ---- Section scaffolding ------------------------------------------------- */
.section { padding-block: var(--section); }
.section--alt { background: var(--bg-alt); }

/* ---- Hero (full-bleed) --------------------------------------------------- */
.hero {
  position: relative;
  height: 88vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #1d1d20; /* fallback fill when no hero image is set */
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, .92) 0%,
    rgba(5, 5, 5, .55) 34%,
    rgba(5, 5, 5, .15) 62%,
    rgba(5, 5, 5, .35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 7vw, 88px);
  padding-top: 64px;
}
.hero .eyebrow {
  color: #cf4a48;
  letter-spacing: .26em;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 7.4vw, 98px);
  line-height: .98;
  letter-spacing: -.025em;
  color: #f6f2ea;
  margin: 0 0 24px;
  max-width: 15ch;
}
.hero h1 .accent { color: #cf4a48; }
.hero__lead {
  font-size: 1.16rem;
  color: #cbc5bc;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Info strip directly below the hero */
.hero-strip {
  background: var(--bg-page);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hero-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
  padding-block: 18px;
  font-size: .92rem;
  color: var(--body-2);
}
.hero-strip__item { display: inline-flex; align-items: center; gap: 10px; }
.hero-strip__item strong { color: var(--heading-2); font-weight: 600; }
.hero-strip__item a { color: var(--heading-2); font-weight: 600; }
.hero-strip__item a:hover { color: var(--red-bright); }
.hero-strip__sep { color: var(--faint); }

/* Image slot (placeholder until real photos are wired) */
.img-slot {
  position: relative;
  border-radius: var(--r-slot);
  overflow: hidden;
  background:
    linear-gradient(135deg, #34343a 0%, #2c2c30 60%, #34292b 100%);
  border: 1px solid var(--line);
}
.img-slot::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Product cards ------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-surface);
  border-radius: var(--r-card);
  overflow: hidden;
  color: var(--cream);
  transition: transform var(--t-card) var(--ease),
              box-shadow var(--t-card) var(--ease),
              background var(--t-card) var(--ease);
  /* inset shadow used instead of border so it can't be clipped by overflow */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.product-card__photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, #2a0c0d, #5c1316 70%, #7a1a1e);
}
.product-card__photo img,
.product-card__photo .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-photo) var(--ease);
}
.product-card__panel {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;            /* fill the rest of the (equal-height) card */
  padding: 24px 24px 28px;
  transition: background var(--t-card) var(--ease);
}
.product-card__panel h3 {
  color: var(--cream);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .35em;
}
.product-card__panel p {
  color: var(--cream-body);
  font-size: .95rem;
  margin: 0;
}
.product-card__more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;   /* keep the link snug, don't stretch full width */
  gap: 7px;
  margin-top: auto;         /* push to the bottom so links align across the row */
  padding-top: 18px;        /* guaranteed gap above on the tallest card */
  font-weight: 600;
  font-size: .88rem;
  color: var(--cream);
}
.product-card__more .ico { transition: transform .3s var(--ease); }
.product-card:hover {
  transform: translateY(-9px);
  background: var(--card-hover);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .5),
              inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.product-card:hover .product-card__panel { background: var(--card-hover); }
.product-card:hover .product-card__photo img,
.product-card:hover .product-card__photo .ph { transform: scale(1.08); }
.product-card:hover .product-card__more .ico { transform: translateX(4px); }
/* whole card clickable */
.product-card__link { position: absolute; inset: 0; z-index: 2; }

/* ---- Story section ------------------------------------------------------- */
.story__inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.story__media { aspect-ratio: 5 / 4; }
.story h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.story p { color: var(--body); font-size: 1.06rem; }
.story__stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
}
.story__stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--red-bright);
  line-height: 1;
}
.story__stat .label {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Navy specialty band ------------------------------------------------- */
.specialty-band {
  background: var(--navy-band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.specialty-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(56px, 7vw, 88px);
}
.specialty-band .eyebrow { color: var(--navy-on-dark); }
.specialty-band h2 { color: #f3f6fb; font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; }
.specialty-band p { color: #b9c6dc; font-size: 1.06rem; }
.specialty-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
}
.specialty-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #cdd8ea;
  font-size: .98rem;
}
.specialty-list .ico { color: var(--navy-on-dark); }

/* ---- Visit / NAP block --------------------------------------------------- */
.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.visit__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 40px;
}
.visit__card h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.nap-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.nap-row:last-of-type { border-bottom: 0; }
.nap-row .ico {
  color: var(--red-bright);
  font-size: 1.15rem;
  margin-top: 3px;
}
.nap-row__label {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.nap-row__value { color: var(--heading-2); }
.nap-row__value a:hover { color: var(--red-bright); }
.nap-hours { list-style: none; margin: 0; padding: 0; }
.nap-hours li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  color: var(--body-2);
  border-bottom: 1px solid var(--hairline);
  font-size: .96rem;
}
.nap-hours li:last-child { border-bottom: 0; }
.nap-hours span:last-child { color: var(--heading-2); }
.visit__map {
  min-height: 320px;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
}
.visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(.25) contrast(1.05);
}

/* ---- Areas served tags --------------------------------------------------- */
.areas { text-align: center; }
.areas .section-head { margin-inline: auto; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 880px;
  margin-inline: auto;
}
.area-tags li {
  list-style: none;
}
.area-tags a,
.area-tags span {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--control);
  border-radius: var(--r-pill);
  color: var(--body-2);
  font-size: .92rem;
  transition: border-color var(--t-card) var(--ease),
              color var(--t-card) var(--ease),
              background var(--t-card) var(--ease);
}
.area-tags a:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

/* ---- CTA strip ----------------------------------------------------------- */
.cta-strip { text-align: center; }
.cta-strip h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.cta-strip p { color: var(--body); max-width: 52ch; margin-inline: auto; }
.cta-strip__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--line);
  color: var(--body);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-block: 72px 56px;
}
.site-footer__brand .wordmark { align-items: flex-start; text-align: left; }
.site-footer__addr { margin: 22px 0 10px; color: var(--body-2); }
.site-footer__phone a { color: var(--heading-2); font-weight: 600; }
.site-footer__phone a:hover { color: var(--red-bright); }
.site-footer__head {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.site-footer__hours { list-style: none; margin: 0; padding: 0; }
.site-footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 0;
  font-size: .92rem;
}
.site-footer__hours span:last-child { color: var(--heading-2); }
.site-footer__menu,
.site-footer__social { list-style: none; margin: 0; padding: 0; }
.site-footer__menu li, .site-footer__social li { padding: 5px 0; }
.site-footer__menu a:hover,
.site-footer__social a:hover { color: var(--red-bright); }
.site-footer__social a { display: inline-flex; align-items: center; gap: 9px; }
.site-footer__bar { border-top: 1px solid var(--hairline); }
.site-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-block: 22px;
  font-size: .82rem;
  color: var(--muted);
}
.site-footer__legal { margin: 0; letter-spacing: .04em; }
.site-footer__staff { margin: 0; }
.site-footer__staff a { color: var(--faint); }
.site-footer__staff a:hover { color: var(--muted); }

/* ---- 404 ----------------------------------------------------------------- */
.error-page { text-align: center; padding-block: clamp(80px, 14vw, 180px); }
.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 9rem);
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: .15em;
}
.error-page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.error-page p { color: var(--body); max-width: 46ch; margin: 0 auto 30px; }
.error-page__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* =============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  :root { --section: 80px; }
  .primary-nav__list { gap: 24px; }
  .story__inner,
  .specialty-band__inner,
  .visit__inner { grid-template-columns: 1fr; gap: 40px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  :root { --pad: 22px; --section: 64px; }
  .primary-nav,
  .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .specialty-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .utility-bar__meta { gap: 12px; }
  .utility-bar__sep { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .hero__actions .btn,
  .cta-strip__actions .btn { width: 100%; }
  .story__stats { flex-wrap: wrap; gap: 24px; }
  .visit__card { padding: 28px 22px; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bar-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .product-card:hover { transform: none; }
  .product-card:hover .product-card__photo img,
  .product-card:hover .product-card__photo .ph { transform: none; }
}

/* =============================================================================
   Interior pages (Products, About, Contact, Areas, City)
   ========================================================================== */

/* ---- Shared page header -------------------------------------------------- */
.page-header { padding-block: clamp(54px, 8vw, 92px) 38px; }
.page-header h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); font-weight: 800; max-width: 26ch; }
.page-header__lead { color: var(--body); font-size: 1.12rem; max-width: 64ch; line-height: 1.7; margin-bottom: 0; }
.page-header__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Breadcrumb */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--muted); margin-bottom: 20px;
}
.crumbs a:hover { color: var(--red-bright); }
.crumbs__current { color: var(--body-2); }

/* ---- Products: filter bar ------------------------------------------------ */
.filter-bar {
  position: sticky;
  top: 84px;
  z-index: 50;
  background: rgba(11, 11, 11, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.filter-bar__inner {
  display: flex; gap: 10px; overflow-x: auto; padding-block: 14px;
  scrollbar-width: none;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }
.filter-pill {
  flex: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-pill);
  border: 1px solid var(--control); background: transparent;
  color: var(--body-2); font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.filter-pill:hover { color: var(--cream); border-color: var(--cream); }
.filter-pill.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.filter-pill__count {
  font-size: .72rem; padding: 1px 7px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .12); color: inherit;
}

/* ---- Products: category sections ---------------------------------------- */
.cat-section { padding-top: 34px; scroll-margin-top: 150px; }
.cat-section + .cat-section {
  border-top: 1px solid var(--hairline);
  margin-top: 50px; padding-top: 50px;
}
.cat-section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 8px;
}
.cat-section__head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin: 0; }
.cat-section__count {
  flex: none;
  color: var(--muted); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
}
.cat-section__blurb { color: var(--body); max-width: 62ch; margin-bottom: 28px; }
.cat-section__empty { color: var(--muted); padding: 14px 0 6px; }
.cat-section__empty a { color: var(--red-bright); font-weight: 600; }

/* ---- Products: price rendering ------------------------------------------ */
.price-tiers {
  list-style: none; margin: auto 0 0; padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.price-tiers li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 14px; border-radius: 10px; background: rgba(0, 0, 0, .2);
}
.price-tiers__label {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-body);
}
.price-tiers__price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--cream); }
.product-card__price {
  margin: auto 0 0; padding-top: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--cream);
}

/* ---- About --------------------------------------------------------------- */
.about-points { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.about-points li { display: flex; align-items: center; gap: 10px; color: var(--heading-2); font-weight: 500; }
.about-points .ico { color: var(--red-bright); flex: none; }
.about-lead-media { padding-top: 8px; }
.about-lead-media__slot { aspect-ratio: 16 / 7; }
/* Two-up supporting photos, container-aligned. Collapses to one column on
   small screens. Each is an image slot, so it shows the clean placeholder
   fallback until a photo is set in the Page Copy editor. */
.about-figs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-figs__grid--single { grid-template-columns: 1fr; }
.about-figs__slot { aspect-ratio: 4 / 3; }
@media (max-width: 720px) { .about-figs__grid { grid-template-columns: 1fr; } }
/* Single column, full container width. Heading then paragraphs, stacked, all
   sharing the standard .wrap left/right edges. Body text fills the full
   container width on this page (the 1240px wrap keeps lines from getting
   absurdly long), so the global ~68ch prose cap is intentionally lifted here. */
.about-section + .about-section {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--hairline);
}
.about-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  max-width: none;
  margin: 0 0 .65em;
}
.about-section p {
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: none;       /* full container width, no narrow measure on About */
  margin-bottom: 1.1em;
}
.about-section p:last-child { margin-bottom: 0; }

/* Intro paragraph on About also runs the full container width to match. */
.about-intro .page-header__lead { max-width: none; }

/* Reusable single-column, full-container-width prose block (city pages and any
   future prose page). Matches the About standard: container-aligned headings and
   paragraphs, no narrow measure cap, generous line-height. */
.rich-text { max-width: none; }
.rich-text h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: 800;
  max-width: none;
  margin: 1.5em 0 .5em;
}
.rich-text h2:first-child { margin-top: 0; }
.rich-text p {
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: none;
  margin-bottom: 1.1em;
}
.rich-text a { color: var(--red-bright); font-weight: 600; }
.rich-text a:hover { text-decoration: underline; }
.rich-text__links { margin-top: 1.6em; }

/* ---- Contact ------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__info .visit__card h2 { font-size: 1.5rem; margin-bottom: 22px; }
.contact__map {
  margin-top: 20px; border-radius: var(--r-slot); overflow: hidden; border: 1px solid var(--line);
}
.contact__map iframe { display: block; filter: grayscale(.25) contrast(1.05); }
.contact__form-wrap {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 40px;
}
.contact__form-title { font-size: 1.5rem; margin-bottom: 22px; }

.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .03em; color: var(--heading-2); margin-bottom: 7px; }
.field__opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--heading);
  background: #232327; border: 1px solid var(--control); border-radius: var(--r-btn);
  padding: 12px 14px; width: 100%; resize: vertical;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red-bright); }
.field.has-error input, .field.has-error textarea { border-color: var(--red-bright); }
.field__error { color: #e0716e; font-size: .82rem; margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error-banner {
  background: rgba(160, 30, 35, .15); border: 1px solid var(--red); color: #e7a3a1;
  padding: 12px 16px; border-radius: var(--r-btn); margin-bottom: 18px;
}
.contact-form .btn { width: 100%; }
.contact-form__note { color: var(--muted); font-size: .85rem; margin: 14px 0 0; }
.form-success { text-align: center; padding: 36px 12px; }
.form-success .ico { font-size: 2.4rem; color: #57b36b; }
.form-success h2 { margin-top: 12px; }
.form-success p { color: var(--body); margin-bottom: 0; }
.form-success a { color: var(--red-bright); }

/* ---- Areas index: city cards -------------------------------------------- */
.area-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.area-card:hover { transform: translateY(-6px); border-color: var(--control); background: #3a3a3e; }
.area-card__name { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.area-card__line { color: var(--body); margin-bottom: 20px; flex: 1; }
.area-card__more { display: inline-flex; align-items: center; gap: 8px; color: var(--red-bright); font-weight: 600; font-size: .9rem; }
.area-card__more .ico { transition: transform .3s var(--ease); }
.area-card:hover .area-card__more .ico { transform: translateX(4px); }

/* City page map fills its column */
.visit__map { border-radius: var(--r-slot); overflow: hidden; border: 1px solid var(--line); }
.visit__map iframe { display: block; width: 100%; height: 100%; min-height: 320px; filter: grayscale(.25) contrast(1.05); }

/* ---- Interior responsive ------------------------------------------------- */
@media (max-width: 1000px) {
  .area-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .filter-bar { top: 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .area-card-grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 26px 22px; }
  .cat-section__head { flex-direction: column; gap: 4px; }
}
