/* =========================================================================
   CJ Haircuts – South Riding
   Heritage neighborhood barbershop, elevated.
   Palette: warm ink · cream paper · muted oxblood · aged brass
   Type: Bebas Neue (marquee) · Fraunces (serif accents) · Barlow (body)
   ========================================================================= */

:root {
  --ink:        #15171c;
  --ink-2:      #1d2028;
  --cream:      #f2ebdd;
  --paper:      #f8f2e6;
  --paper-2:    #efe6d4;
  --oxblood:    #8c2b2b;
  --oxblood-dk: #6d1f1f;
  --brass:      #b1874b;
  --brass-lt:   #cba468;
  --navy:       #212c3a;
  --muted:      #6c6252;
  --muted-lt:   rgba(242,235,221,0.62);
  --line:       rgba(21,23,28,0.14);
  --line-lt:    rgba(242,235,221,0.16);

  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Barlow', system-ui, sans-serif;

  --nav-h: 74px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* subtle paper grain used across dark + light panels */
.hero__grain, .why__grain, .cta__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04; mix-blend-mode: overlay;
}

/* ---------- Buttons ---------- */
.btn {
  --pad: 0.95em 1.6em;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; padding: var(--pad); border-radius: 2px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn--sm { font-size: 0.82rem; padding: 0.7em 1.15em; }
.btn--lg { font-size: 1.02rem; padding: 1.05em 1.9em; }
.btn--solid {
  background: var(--oxblood); color: var(--paper);
  box-shadow: 0 10px 26px -12px rgba(140,43,43,0.75);
}
.btn--solid:hover { background: var(--oxblood-dk); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(140,43,43,0.85); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost-light { color: var(--paper); border-color: var(--line-lt); }
.btn--ghost-light:hover { border-color: var(--brass-lt); color: var(--brass-lt); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------- Shared type ---------- */
.eyebrow, .kicker {
  font-family: var(--body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.74rem; color: var(--oxblood);
}
.kicker--light { color: var(--brass-lt); }
.eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7em; color: var(--muted); }
.eyebrow__tick { width: 26px; height: 2px; background: var(--oxblood); display: inline-block; flex-shrink: 0; }

.section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 4rem); position: relative; }
.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__title {
  font-family: var(--display); font-weight: 400; line-height: 0.92;
  font-size: clamp(2.8rem, 6.4vw, 5.2rem); letter-spacing: 0.01em;
  margin: 0.5rem 0 0; color: var(--ink);
}
.section__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--oxblood); letter-spacing: 0; }
.section__title--light { color: var(--paper); }
.section__title--light em { color: var(--brass-lt); }
.section__lede { font-size: 1.08rem; color: var(--muted); margin-top: 1.1rem; }
.kicker { display: block; }

/* ======================= NAV ======================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(242,235,221,0);
  transition: background 0.4s var(--ease), box-shadow 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(244,238,225,0.86); backdrop-filter: blur(12px) saturate(1.2);
  border-bottom-color: var(--line); box-shadow: 0 6px 22px -18px rgba(21,23,28,0.9);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 1.2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand__badge {
  position: relative; width: 40px; height: 40px; border-radius: 5px;
  background: var(--ink); display: grid; place-items: center; overflow: hidden;
  border: 1px solid var(--brass); flex-shrink: 0;
}
.brand__pole {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, var(--oxblood) 0 5px, transparent 5px 10px);
  opacity: 0.5;
}
.brand__cj {
  position: relative; font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
  color: var(--paper); letter-spacing: 0.02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-size: 1.42rem; letter-spacing: 0.02em; color: var(--ink); }
.brand__loc { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink);
  position: relative; padding: 0.3em 0; opacity: 0.82; transition: opacity 0.25s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--oxblood); transition: width 0.3s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; gap: 0.55rem; align-items: center; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu — hidden until toggled (class beats [hidden]) */
.mobile { display: none; }
.mobile.is-open {
  display: flex; flex-direction: column; gap: 0.3rem;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: rgba(244,238,225,0.97); backdrop-filter: blur(12px);
  padding: 1rem clamp(1.1rem, 4vw, 2.5rem) 1.6rem;
  border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px -24px rgba(21,23,28,0.6);
  animation: menuDrop 0.32s var(--ease);
}
@keyframes menuDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile a { padding: 0.85rem 0.2rem; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile__cta { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.mobile__cta .btn { width: 100%; }

/* ======================= HERO ======================= */
.hero {
  position: relative; min-height: calc(100svh - var(--nav-h)); margin-top: var(--nav-h);
  background: var(--ink); color: var(--paper); overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 4rem) clamp(3.5rem, 6vw, 5rem);
}
.hero__stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: repeating-linear-gradient(90deg, var(--oxblood) 0 22px, var(--paper) 22px 44px, var(--navy) 44px 66px);
  opacity: 0.9;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 85% 10%, rgba(177,135,75,0.16), transparent 55%),
    radial-gradient(90% 70% at 8% 100%, rgba(140,43,43,0.20), transparent 60%);
}
.hero__inner {
  position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__lead { max-width: 640px; }
.hero__title {
  font-family: var(--display); font-weight: 400; letter-spacing: 0.01em;
  font-size: clamp(3rem, 6.6vw, 6rem); line-height: 0.9; margin: 1.1rem 0 0;
  text-wrap: balance;
}
.hero__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--brass-lt); letter-spacing: 0; }
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--muted-lt); max-width: 44ch; margin-top: 1.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.9rem; }
.hero__proof {
  display: flex; align-items: center; gap: 0.7rem; margin-top: 1.7rem;
  font-size: 0.95rem; color: var(--muted-lt); max-width: 46ch;
}
.hero__proof em { font-family: var(--serif); font-style: italic; color: var(--paper); }
.stars { color: var(--brass-lt); letter-spacing: 0.12em; font-size: 0.95rem; flex-shrink: 0; }

/* hero side card */
.hero__card {
  background: linear-gradient(165deg, rgba(33,44,58,0.55), rgba(21,23,28,0.35));
  border: 1px solid var(--line-lt); border-radius: 6px; padding: 1.8rem 1.7rem;
  backdrop-filter: blur(6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.card__topline { display: flex; align-items: center; gap: 0.55rem; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brass-lt); }
.card__topline .dot { width: 8px; height: 8px; border-radius: 50%; background: #3fae63; box-shadow: 0 0 0 4px rgba(63,174,99,0.22); }
.card__hours { font-family: var(--display); font-size: 3.4rem; line-height: 1; margin-top: 0.7rem; color: var(--paper); }
.card__hours span { font-size: 1.3rem; color: var(--brass-lt); margin: 0 0.05em; }
.card__sub { font-size: 0.85rem; color: var(--muted-lt); margin-top: 0.15rem; }
.hero__card hr { border: 0; border-top: 1px solid var(--line-lt); margin: 1.25rem 0; }
.card__list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.card__list li { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; color: var(--muted-lt); }
.card__list b { color: var(--paper); font-weight: 600; }
.card__team { margin-top: 1.3rem; font-size: 0.82rem; color: var(--muted-lt); border-top: 1px dashed var(--line-lt); padding-top: 1rem; }
.card__team b { color: var(--brass-lt); font-weight: 600; }

.hero__scroll {
  position: absolute; bottom: clamp(1.1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-lt);
  display: flex; align-items: center; gap: 0.5em;
}
.hero__scroll span { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ======================= MARQUEE ======================= */
.marquee {
  background: var(--oxblood); color: var(--paper); overflow: hidden; padding: 0.85rem 0;
  border-top: 3px solid var(--brass); border-bottom: 3px solid var(--brass);
}
.marquee__track {
  display: inline-flex; gap: 2.5rem; white-space: nowrap; align-items: center;
  font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.08em;
  animation: scroll 26s linear infinite; will-change: transform;
}
.marquee__track span { display: inline-block; }
.marquee__star { color: var(--brass-lt); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ======================= SERVICES ======================= */
.services { background: var(--cream); }
.services::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.03; mix-blend-mode: multiply;
}
.menu {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.menu__item {
  padding: 1.9rem 2.2rem; border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.menu__item:nth-child(odd) { border-right: 1px solid var(--line); }
.menu__item:hover { background: var(--paper); }
.menu__row { display: flex; align-items: baseline; gap: 1rem; }
.menu__item h3 { font-family: var(--display); font-weight: 400; font-size: 1.85rem; letter-spacing: 0.02em; color: var(--ink); }
.menu__lead { flex: 1; height: 1px; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu__item p { color: var(--muted); font-size: 0.96rem; margin-top: 0.5rem; max-width: 42ch; }
.menu__note { position: relative; z-index: 1; text-align: center; margin: 2.6rem auto 0; color: var(--muted); font-size: 0.98rem; }
.menu__note a { color: var(--oxblood); font-weight: 600; border-bottom: 1px solid var(--oxblood); }

/* ======================= WHY / STATS ======================= */
.why { background: var(--ink); color: var(--paper); overflow: hidden; }
.why::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--oxblood) 0 22px, var(--paper) 22px 44px, var(--navy) 44px 66px);
  opacity: 0.85;
}
.why__head { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto clamp(2.6rem, 5vw, 4rem); text-align: center; }
.stats {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-lt); border: 1px solid var(--line-lt);
}
.stat { background: var(--ink); padding: 2.2rem 1.7rem; }
.stat__num {
  font-family: var(--display); font-size: clamp(3rem, 5vw, 4.3rem); line-height: 0.9; color: var(--brass-lt);
  display: flex; align-items: baseline; gap: 0.35rem;
}
.stat__num span { font-family: var(--body); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-lt); }
.stat__label { font-size: 0.92rem; color: var(--muted-lt); margin-top: 0.9rem; }
.why__notes { position: relative; z-index: 1; max-width: var(--maxw); margin: clamp(2rem, 4vw, 3rem) auto 0; display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.chip {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; color: var(--paper);
  border: 1px solid var(--line-lt); border-radius: 100px; padding: 0.55em 1.15em;
  background: rgba(255,255,255,0.02);
}

/* ======================= REVIEWS ======================= */
.reviews { background: var(--paper); }
.quotes {
  max-width: var(--maxw); margin: 0 auto;
  columns: 3; column-gap: 1.5rem;
}
.quote {
  break-inside: avoid; margin-bottom: 1.5rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 6px;
  padding: 1.7rem 1.6rem; box-shadow: 0 20px 40px -34px rgba(21,23,28,0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 26px 46px -30px rgba(21,23,28,0.5); }
.quote__stars { color: var(--brass); letter-spacing: 0.14em; font-size: 0.9rem; margin-bottom: 0.7rem; }
.quote blockquote { font-family: var(--serif); font-size: 1.06rem; line-height: 1.5; color: var(--ink); font-weight: 400; }
.quote figcaption { margin-top: 1.1rem; display: flex; flex-direction: column; }
.quote figcaption span { font-family: var(--body); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.quote figcaption small { color: var(--muted); font-size: 0.78rem; }
.quote--feature { background: var(--ink); border-color: var(--ink); }
.quote--feature blockquote { color: var(--paper); font-size: 1.24rem; }
.quote--feature figcaption span { color: var(--paper); }
.quote--feature figcaption small { color: var(--brass-lt); }
.quote--feature .quote__stars { color: var(--brass-lt); }

/* ======================= VISIT ======================= */
.visit { background: var(--navy); color: var(--paper); overflow: hidden; padding: 0; }
.visit__grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.visit__info { padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem); }
.visit__block { margin-top: 1.8rem; }
.visit__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brass-lt); font-weight: 600; margin-bottom: 0.5rem; }
.visit__val { font-size: 1.02rem; color: var(--paper); line-height: 1.5; }
.visit__val small { color: var(--muted-lt); font-size: 0.85rem; }
.visit__val a { border-bottom: 1px solid var(--brass-lt); }
.visit__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.hours { border-collapse: collapse; width: 100%; }
.hours td { padding: 0.3rem 0; font-size: 0.95rem; color: var(--paper); }
.hours td:first-child { color: var(--muted-lt); padding-right: 1.2rem; }
.visit__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.3rem; }

.visit__map { position: relative; min-height: 420px; background: var(--ink-2); }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }
.seal {
  position: absolute; z-index: 3; top: clamp(1.2rem, 3vw, 2.4rem); right: clamp(1.2rem, 3vw, 2.4rem);
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--ink); border: 1px solid var(--brass);
  display: grid; place-items: center; box-shadow: 0 16px 34px -14px rgba(0,0,0,0.6);
}
.seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 24s linear infinite; }
.seal text { fill: var(--brass-lt); font-family: var(--body); font-size: 8.4px; font-weight: 600; letter-spacing: 0.08em; }
.seal__cj { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; color: var(--paper); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ======================= FINAL CTA ======================= */
.cta { position: relative; background: var(--oxblood); color: var(--paper); text-align: center; padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 4rem); overflow: hidden; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 50% 0%, rgba(0,0,0,0.28), transparent 60%);
}
.cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta .kicker { color: var(--brass-lt); }
.cta__title { font-family: var(--display); font-weight: 400; font-size: clamp(2.8rem, 6.5vw, 5.4rem); line-height: 0.92; margin: 0.6rem 0 0; }
.cta__sub { font-size: 1.1rem; color: rgba(248,242,230,0.85); margin-top: 1.1rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2.2rem; }
.cta .btn--solid { background: var(--ink); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.6); }
.cta .btn--solid:hover { background: #000; }
.cta .btn--ghost { color: var(--paper); border-color: rgba(248,242,230,0.4); }
.cta .btn--ghost:hover { border-color: var(--paper); background: rgba(255,255,255,0.06); }

/* ======================= FOOTER ======================= */
.footer { background: var(--ink); color: var(--muted-lt); padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 5vw, 4rem) 2rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: start; }
.footer__brand { display: flex; flex-direction: column; }
.footer__brand .brand__name { color: var(--paper); font-size: 2rem; }
.footer__loc { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-lt); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__h { color: var(--brass-lt); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; margin-bottom: 0.6rem; }
.footer__cols p { font-size: 0.9rem; line-height: 1.6; }
.footer__cols a:hover { color: var(--paper); }
.footer__base {
  max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line-lt);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.78rem;
}
.footer__mk { font-family: var(--serif); font-style: italic; color: var(--brass-lt); }

/* ======================= REVEAL ======================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .marquee__track, .seal svg, .hero__scroll span { animation: none !important; }
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__card { max-width: 420px; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 340px; order: 2; }
  .quotes { columns: 2; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 720px) {
  :root { --nav-h: 62px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { justify-content: flex-start; padding-top: clamp(2rem, 8vw, 3rem); }
  .hero__title { font-size: clamp(2.9rem, 12.5vw, 4rem); }
  .hero__proof { font-size: 0.9rem; }
  .menu { grid-template-columns: 1fr; }
  .menu__item { padding: 1.5rem 1.3rem; }
  .menu__item:nth-child(odd) { border-right: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .quotes { columns: 1; }
  .quote--feature blockquote { font-size: 1.14rem; }
  .visit__cols { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 2.65rem; }
  .card__hours { font-size: 3rem; }
  .btn--lg { width: 100%; }
}
