/* Auto-generated by orchestrator/files.js writeDesign — DO NOT EDIT.
   Every value resolves via var(--token) declared in :root below,
   or a structural CSS primitive. Rebuild design.md to change output. */

:root {
  --color-primary: #9A2327;
  --color-primary-dark: #7A1A1E;
  --color-accent: #D5474E;
  --color-surface: #C8CEBA;
  --color-dark: #1A1512;
  --color-charcoal: #222222;
  --color-light: #F9F9F9;
  --color-text-on-dark: #F9F9F9;
  --color-text-on-light: #1A1512;
  --color-muted: #8A8A7A;
  --font-display: 'Oswald', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-body-light: 'Poppins', sans-serif;
  --font-label: 'Poppins', sans-serif;
  --spacing-section-y: 5rem;
  --spacing-section-ymobile: 3rem;
  --spacing-container-max: 1200px;
  --spacing-container-pad-x: 1.5rem;
  --rounded-sm: 2px;
  --rounded-md: 4px;
  --rounded-lg: 8px;
  --rounded-none: 0;
}

/* Baseline reset — structural primitives only */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: inherit; background: var(--color-surface); line-height: 1.5; }
img, svg, video, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); margin: 0; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
main { display: block; }

/* Canonical header — .site-nav — layout topology is the contract. */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-surface);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-nav__brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__menu a { color: inherit; padding: 0.25rem 0.5rem; }
.site-nav__menu a[aria-current="page"] { color: var(--color-primary); font-weight: 600; }
.site-nav__menu a:hover { color: var(--color-primary); }
.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  padding: 0.25rem;
}
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.625rem 1.25rem;
  background: var(--color-primary);
  color: inherit;
  border-radius: var(--rounded-md);
  font-weight: 600;
  transition: opacity 120ms ease, transform 120ms ease;
}
.site-nav__cta:hover { opacity: 0.92; }

/* sr-only — accessibility primitive */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Primary button helper — tokens only */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: inherit;
  border-radius: var(--rounded-md);
  font-weight: 600;
  transition: opacity 120ms ease;
}
.btn-primary:hover { opacity: 0.92; }

/* Canonical footer — supports BEM sub-classes page-builders emit */
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-surface);
  color: inherit;
  border-top: 1px solid var(--color-surface);
}
.site-footer a { color: inherit; }
.site-footer a:hover { color: var(--color-primary); }
/* Top region — brand + nav + cols laid out as flex row, wraps on narrow viewports */
.site-footer__inner, .site-footer__top, .site-footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
  align-items: flex-start;
  justify-content: space-between;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__wordmark { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.site-footer__wordmark-accent { color: var(--color-accent); }
.site-footer__tagline { color: inherit; opacity: 0.7; font-size: 0.875rem; }
.site-footer__nav, .site-footer__col, .site-footer__contact, .site-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav a, .site-footer__col a { color: inherit; opacity: 0.85; }
.site-footer__nav a:hover, .site-footer__col a:hover { color: var(--color-primary); opacity: 1; }
/* Bottom strip — copyright/legal, separated from top by a divider */
.site-footer__bottom, .site-footer__copy, .site-footer__credits, .site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-surface);
  font-size: 0.875rem;
  opacity: 0.75;
}

/* Mobile breakpoint — derived from design.md (breakpoints.mobile) or named default 48rem.
   @media can't interpolate CSS custom properties, so the value lands here verbatim. */
@media (max-width: 48rem) {
  .site-nav__toggle { display: inline-flex; }
  .site-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-surface);
    display: none;
  }
  .site-nav__menu[data-open="true"] { display: flex; }
  .site-nav__cta { display: none; }
}

/* Reveal-on-scroll primitive — paired with scripts.js IntersectionObserver */
[data-reveal] { opacity: 0; transform: translateY(0.75rem); transition: opacity 400ms ease, transform 400ms ease; }
[data-reveal][data-reveal-visible="true"] { opacity: 1; transform: none; }
