/* =========================================================================
   Auto Express Columbia — "Columbia Heritage" concept
   Modernized classic American trust/local-business feel.
   Palette: navy, brick red, warm cream, muted gold-brass hairlines.
   ========================================================================= */

/* ---------- Custom properties ---------- */
:root {
  --navy: #1B2A4A;
  --navy-dark: #121D34;
  --navy-mid: #223762;
  --brick: #B23A2E;
  --brick-dark: #8F2E24;
  --cream: #F5EFE4;
  --cream-dark: #EAE1CE;
  --cream-darker: #DCCFAF;
  --gold: #B08D4E;
  --gold-soft: #C9AC74;
  --white: #FFFFFF;
  --ink: #1B2A4A;
  --ink-soft: #4B5875;
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.10);
  --shadow-md: 0 10px 28px rgba(27, 42, 74, 0.14);
  --shadow-lg: 0 18px 44px rgba(27, 42, 74, 0.18);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container-w: 1200px;
  --header-h: 84px;
  --header-h-mobile: 66px;
  --font-heading: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h2 { font-size: clamp(1.7rem, 1.4rem + 1.3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: var(--header-h); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  background: var(--navy);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

.noscript-banner {
  background: var(--brick);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
  flex-shrink: 0;
}
.icon--lg { width: 34px; height: 34px; }
.icon--check { width: 40px; height: 40px; color: var(--brick); }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.8em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--brick);
  color: var(--white);
}
.btn--primary:hover, .btn--primary:focus-visible { background: var(--brick-dark); }

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline:hover, .btn--outline:focus-visible { background: var(--navy); color: var(--cream); }

.btn--outline-light {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible { background: var(--cream); color: var(--navy); }

.btn--small {
  padding: 0.6em 1.2em;
  font-size: 0.85rem;
}

.text-link {
  font-weight: 600;
  color: var(--brick);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  display: inline-block;
}
.text-link:hover, .text-link:focus-visible { border-color: var(--brick); }

/* =========================================================================
   Ribbon / badge shapes (CSS-drawn, no clipart)
   ========================================================================= */
.ribbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7em 1.7em;
  margin-top: 1.75rem;
  clip-path: polygon(0% 0%, 100% 0%, 92% 50%, 100% 100%, 0% 100%, 8% 50%);
}
.ribbon--brick { background: var(--brick); color: var(--white); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h-mobile);
}
@media (min-width: 768px) {
  .site-header__inner { height: var(--header-h); }
}

.wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wordmark span { color: var(--brick); }

.site-nav { display: none; }
@media (min-width: 768px) {
  .site-nav { display: block; }
  .site-nav ul { display: flex; gap: 2rem; }
  .site-nav a {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--navy);
    position: relative;
    padding: 0.4em 0;
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--brick);
  }
}
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .site-nav a::after { transition: right 0.3s ease; }
  .site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
}
@media (min-width: 768px) {
  .site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
}

.site-header__actions { display: flex; align-items: center; gap: 1.25rem; }

.phone-link {
  display: none;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: var(--brick);
  white-space: nowrap;
}
@media (min-width: 560px) {
  .phone-link { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* =========================================================================
   Mobile full-screen menu overlay
   ========================================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy);
  visibility: hidden;
  opacity: 0;
  transform: translateX(6%);
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu { transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s; }
}
@media (min-width: 768px) {
  .mobile-menu { display: none; }
}
.mobile-menu__panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  position: relative;
}
.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  color: var(--cream);
  border-radius: 50%;
}
.mobile-menu__close:hover, .mobile-menu__close:focus-visible { background: rgba(245, 239, 228, 0.12); }
.mobile-menu__panel ul { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.mobile-menu__panel a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--cream);
}
.mobile-menu__panel a:hover, .mobile-menu__panel a:focus-visible { color: var(--gold-soft); }
.mobile-menu__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--brick);
  color: var(--white);
  font-weight: 700;
  padding: 0.9em 1.8em;
  border-radius: var(--radius-sm);
}

/* =========================================================================
   Sticky mobile "Call Now" bar
   ========================================================================= */
.sticky-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--brick);
  transform: translateY(100%);
  box-shadow: 0 -6px 18px rgba(27, 42, 74, 0.22);
}
.sticky-call-bar.is-visible { transform: translateY(0); }
@media (prefers-reduced-motion: no-preference) {
  .sticky-call-bar { transition: transform 0.35s ease; }
}
.sticky-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  color: var(--white);
  font-weight: 700;
  padding: 0.9em 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .sticky-call-bar { display: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--cream);
  padding: 84px 0 100px;
  text-align: center;
}
.hero__pattern {
  position: absolute;
  inset: -5% -5%;
  z-index: 0;
  pointer-events: none;
}
.hero__pattern svg { width: 100%; height: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .hero__pattern { will-change: transform; }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.hero__headline {
  color: var(--white);
  font-size: clamp(2.1rem, 1.6rem + 2.4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.hero__subhead {
  font-size: 1.15rem;
  color: var(--cream);
  max-width: 56ch;
  margin: 0 auto 2.2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero__content .ribbon { margin-left: auto; margin-right: auto; }

/* =========================================================================
   Trust / stats strip
   ========================================================================= */
.trust-strip {
  background: var(--navy-dark);
  padding: 48px 0 62px;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.25rem;
}
@media (min-width: 800px) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-badge {
  background: var(--cream);
  color: var(--navy);
  text-align: center;
  padding: 1.6rem 1rem 1.9rem;
  border: 1px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat-badge__value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  color: var(--brick);
}
.stat-badge__value--text { font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.5rem); }
.stat-badge__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =========================================================================
   Hairline pinstripe divider
   ========================================================================= */
.hairline {
  height: 10px;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0 2px, transparent 2px 11px);
  opacity: 0.55;
}

/* =========================================================================
   Section heading
   ========================================================================= */
.section-heading { max-width: 700px; margin-bottom: 2.75rem; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--brick-dark);
  margin-bottom: 0.6rem;
}
.section-heading__intro {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* =========================================================================
   Inventory
   ========================================================================= */
.inventory { padding: 88px 0; }

.inventory__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.control { display: flex; flex-direction: column; gap: 0.4rem; }
.control label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}
.control select, .control input {
  padding: 0.65em 0.9em;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-sm);
  background: var(--cream);
  min-width: 200px;
}
.control select:focus, .control input:focus {
  border-color: var(--navy);
  outline: none;
}
.control--search { flex: 1; min-width: 220px; }
.control--search input { width: 100%; }
.inventory__count {
  font-weight: 700;
  color: var(--navy);
  margin-left: auto;
  white-space: nowrap;
}

.inventory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px) {
  .inventory__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .inventory__grid { grid-template-columns: repeat(3, 1fr); }
}

.inventory__empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Vehicle card */
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
@media (prefers-reduced-motion: no-preference) {
  .vehicle-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .vehicle-card:hover, .vehicle-card:focus-within { transform: translateY(-6px); }
}
.vehicle-card:hover, .vehicle-card:focus-within { box-shadow: var(--shadow-lg); }

.vehicle-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
}
.vehicle-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.sold-ribbon {
  position: absolute;
  top: 16px;
  right: -42px;
  width: 170px;
  text-align: center;
  transform: rotate(45deg);
  background: var(--brick);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-darker) 100%);
}
.photo-placeholder svg { width: 62%; max-width: 190px; }
.photo-placeholder__caption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vehicle-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.vehicle-card__title {
  font-size: 1.08rem;
  display: inline-block;
}
.vehicle-card__title::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--brick);
  margin-top: 4px;
}
.vehicle-card:hover .vehicle-card__title::after,
.vehicle-card:focus-within .vehicle-card__title::after { width: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .vehicle-card__title::after { transition: width 0.4s ease; }
}

.vehicle-card__meta { color: var(--ink-soft); font-size: 0.92rem; }
.vehicle-card__stock { color: var(--ink-soft); font-size: 0.82rem; letter-spacing: 0.02em; }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream-dark);
  border: 1px solid var(--cream-darker);
  padding: 0.25em 0.75em;
  border-radius: 999px;
}

.vehicle-card__cta {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.vehicle-card__sold-note {
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
}

/* =========================================================================
   About
   ========================================================================= */
.about { padding: 88px 0; background: var(--cream-dark); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.about__copy p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 1rem; }
.about__info {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.about__info-row { padding: 0.9rem 0; border-bottom: 1px solid var(--cream-dark); }
.about__info-row:last-child { border-bottom: none; }
.about__info-row dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.about__info-row dd a { color: var(--brick); font-weight: 600; }
.about__info-row dd a:hover { text-decoration: underline; }

/* =========================================================================
   Why choose us
   ========================================================================= */
.why-choose { padding: 88px 0; }
.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .why-choose__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .why-choose__grid { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.icon-shield {
  width: 88px;
  height: 96px;
  background: var(--cream-dark);
  border: 2px solid var(--gold);
  clip-path: polygon(50% 0%, 100% 22%, 100% 60%, 50% 100%, 0% 60%, 0% 22%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.why-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* =========================================================================
   Forms (financing + contact share this)
   ========================================================================= */
.financing { padding: 88px 0; }
.contact { padding: 88px 0 110px; background: var(--cream-dark); }

.form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 3rem);
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}
.contact .form-panel { margin: 0; max-width: none; }

.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}
@media (min-width: 640px) {
  .form__grid { grid-template-columns: repeat(2, 1fr); }
  .field--full, .field--checkbox { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label, .field legend {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  padding: 0;
}
.field input, .field select, .field textarea {
  padding: 0.75em 0.95em;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-sm);
  background: var(--cream);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }

.field--radio { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.field--radio legend { margin-bottom: 0.2rem; }
.radio-label { display: flex; align-items: center; gap: 0.5em; font-weight: 500; }
.radio-label input { width: auto; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox-label input { width: auto; margin-top: 0.25em; flex-shrink: 0; }

.form-confirmation {
  text-align: center;
  padding: 2.5rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.form-confirmation h3 { margin: 0.8rem 0 0.6rem; }
.form-confirmation p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.form-confirmation a { color: var(--brick); font-weight: 600; }

/* =========================================================================
   Contact section specifics
   ========================================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.contact__list { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.2rem 0 1.6rem; }
.contact__list li { display: flex; align-items: center; gap: 0.7em; }
.contact__list a { color: var(--brick-dark); font-weight: 600; }
.contact__list a:hover { text-decoration: underline; }

.hours-table {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.6rem;
}
.hours-table caption {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  padding: 0.9rem 1.2rem 0.3rem;
}
.hours-table th, .hours-table td {
  padding: 0.55rem 1.2rem;
  text-align: left;
  font-size: 0.92rem;
  border-top: 1px solid var(--cream-dark);
}
.hours-table thead th { color: var(--ink-soft); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; border-top: none; }
.hours-table tbody th { font-weight: 600; color: var(--navy); }
.hours-table tbody tr.is-today { background: var(--cream-dark); }
.hours-table tbody tr.is-today th, .hours-table tbody tr.is-today td { color: var(--brick); font-weight: 700; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 1.4rem;
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--navy-dark); color: var(--cream); border-top: 3px solid var(--gold); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 64px 0 40px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer__brand p { margin-bottom: 0.6rem; opacity: 0.9; }
.footer__brand .wordmark--footer { font-size: 1.25rem; margin-bottom: 1rem; opacity: 1; }
.footer__brand a { color: var(--gold-soft); }
.footer__brand a:hover { text-decoration: underline; }

.footer__nav h4, .footer__hours h4 {
  color: var(--cream);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a { opacity: 0.9; }
.footer__nav a:hover { color: var(--gold-soft); opacity: 1; }
.footer__hours p { opacity: 0.9; line-height: 1.8; }

.footer__bottom {
  border-top: 1px solid rgba(245, 239, 228, 0.15);
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
}
.footer__concept-note { font-style: italic; }

/* =========================================================================
   Reveal / pop-in scroll animations
   (Base state = final/visible; the "no-preference" query adds the
   from-hidden animated starting state, per prefers-reduced-motion best practice.)
   ========================================================================= */
.reveal { opacity: 1; transform: none; }
.pop-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-visible { opacity: 1; transform: none; }

  .pop-in {
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .pop-in.is-visible { opacity: 1; transform: scale(1); }
}

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

/* =========================================================================
   Responsive tweaks
   ========================================================================= */
@media (max-width: 767px) {
  .inventory__count { margin-left: 0; }
  .hero { padding: 56px 0 76px; }
}
