/* =========================================================
   EYEGLASS USA 60/30/10 palette
   60% White (background)
   30% Navy Blue (sections, headings, structure)
   10% Red (CTAs, $49.99, accents)
   Black used only for body text.
   ========================================================= */

:root {
  --white: #ffffff;
  --offwhite: #fafafa;
  --soft: #f3f4f6;
  --line: #e5e7eb;

  --navy: #0a2540;
  --navy-2: #0f3057;
  --navy-soft: #eaf0f7;

  --red: #c8102e;
  --red-2: #a30c25;

  --ink: #0a0a0a;
  --ink-2: #1f2937;
  --muted: #4b5563;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(10,37,64,.08);
  --shadow-md: 0 14px 40px rgba(10,37,64,.14);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 800; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; font-family: var(--sans); color: var(--navy); letter-spacing: .02em; text-transform: uppercase; }

p { margin: 0 0 1rem; }

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

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow--light { color: #ffd0d8; }

.section-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.accent-red { color: var(--red); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 26px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:active { transform: translateY(1px); }

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(200,16,46,.25);
}
.btn--red:hover { background: var(--red-2); }

.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover { background: var(--navy-2); }

.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover { background: var(--soft); }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--full { width: 100%; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .04em;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  text-align: center;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
}
.logo__img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  background: transparent;
}
.logo__word { letter-spacing: .01em; }

.nav__menu {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  font-weight: 600;
  color: var(--navy);
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav__menu a:hover { border-color: var(--red); }
.nav__menu .nav__cta {
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
}
.nav__menu .nav__cta:hover { background: var(--red-2); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s, top .25s;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(200,16,46,.07), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--navy-soft) 100%);
  padding: 80px 24px 100px;
}
.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy h1 { margin-top: 10px; }
.lede {
  font-size: 1.2rem;
  color: var(--ink-2);
  margin: 18px 0 28px;
  max-width: 56ch;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
}
.hero__trust {
  display: flex; flex-wrap: wrap;
  gap: 32px;
  padding: 0; margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero__trust li {
  font-size: .95rem;
  color: var(--muted);
}
.hero__trust strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  background: #f5f5f5;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
  padding: 22px 0;
}
.marquee__list {
  display: flex;
  gap: 56px;
  list-style: none;
  margin: 0; padding: 0 28px 0 0;
  white-space: nowrap;
}
.marquee__list li {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .14em;
  color: #fff;
  position: relative;
}
.marquee__list li::after {
  content: "·";
  position: absolute;
  right: -32px; top: 0;
  color: var(--red);
  font-weight: 900;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- $49.99 promo ---------- */
.promo {
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 90px 24px;
}
.promo__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.promo h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.price-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 2px 16px;
  border-radius: 12px;
  font-family: var(--serif);
}
.promo p { color: rgba(255,255,255,.85); font-size: 1.1rem; }
.promo__promise {
  border-left: 3px solid var(--red);
  padding-left: 18px;
  margin: 24px 0 32px;
}
.promo__promise strong { color: #fff; }

.promo__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.promo__card {
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--red);
  position: relative;
}
.promo__card::before {
  content: "GUARANTEED";
  position: absolute;
  top: -14px; right: 24px;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .2em;
  padding: 6px 12px;
  border-radius: 999px;
}
.promo__card-eyebrow {
  display: block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
}
.promo__card-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}
.promo__card-price .dollar { font-size: 2rem; padding-top: 14px; }
.promo__card-price .amount { font-size: 6rem; font-weight: 900; }
.promo__card-price .cents { font-size: 2rem; padding-top: 14px; }
.promo__card-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.promo__card-list li {
  padding-left: 26px;
  position: relative;
  font-size: 1rem;
}
.promo__card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
}

/* ---------- services ---------- */
.services {
  background: var(--white);
  padding: 100px 24px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--navy-soft);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 { color: var(--navy); margin-bottom: 8px; }
.service-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- why ---------- */
.why {
  background: var(--navy-soft);
  padding: 100px 24px;
}
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why__list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: grid; gap: 14px;
}
.why__list li {
  padding-left: 32px;
  position: relative;
  color: var(--ink-2);
}
.why__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 800;
}

.why__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why__photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.why__photo--tall { aspect-ratio: 3/4; margin-top: 40px; }
.why__photo--short { aspect-ratio: 3/4; }

/* ---------- brands grid ---------- */
.brands {
  background: var(--white);
  padding: 100px 24px;
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin: 18px 0 18px;
}
.brand-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  min-height: 96px;
  padding: 18px 12px;
  text-align: center;
  color: var(--navy);
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
  cursor: default;
  overflow: hidden;
}
.brand-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 28px; height: 3px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width .25s;
}
.brand-tile:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.brand-tile:hover::before { width: 60%; }
.brand-tile__name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .12em;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand-tile__logo {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  display: block;
}
/* Per-brand letter-spacing personalities (subtle) */
.brand-tile[data-brand="gucci"]    .brand-tile__name { letter-spacing: .22em; }
.brand-tile[data-brand="prada"]    .brand-tile__name { letter-spacing: .20em; }
.brand-tile[data-brand="coach"]    .brand-tile__name { letter-spacing: .22em; }
.brand-tile[data-brand="fendi"]    .brand-tile__name { letter-spacing: .18em; }
.brand-tile[data-brand="versace"]  .brand-tile__name { letter-spacing: .16em; }
.brand-tile[data-brand="dolce-gabbana"] .brand-tile__name { letter-spacing: .06em; font-size: .98rem; }
.brand-tile[data-brand="polo-ralph-lauren"] .brand-tile__name { letter-spacing: .06em; font-size: .92rem; }
.brand-tile[data-brand="michael-kors"] .brand-tile__name { letter-spacing: .08em; font-size: 1rem; }
.brand-tile[data-brand="kate-spade"]   .brand-tile__name { letter-spacing: .06em; }
.brand-tile[data-brand="ray-ban"]   .brand-tile__name { letter-spacing: .10em; }
.brand-tile[data-brand="miu-miu"]   .brand-tile__name { letter-spacing: .14em; }
.brands__note {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 14px;
}

/* ---------- gallery ---------- */
.gallery {
  background: var(--navy-soft);
  padding: 100px 24px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
  background: #ddd;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

/* ---------- locations ---------- */
.locations {
  background: var(--white);
  padding: 100px 24px;
}
.locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.location-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  color: var(--ink-2);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.location-card__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.location-card__pin {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.location-card h3 { margin: 0; color: var(--navy); font-size: 1.25rem; }
.location-card__addr {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1rem;
}
.location-card__cta {
  display: inline-block;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .02em;
}
.locations__hours-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: .92rem;
}

/* ---------- insurance ---------- */
.insurance {
  background: var(--navy-soft);
  padding: 100px 24px;
}
.insurance__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.insurance__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
  list-style: none;
  padding: 0; margin: 18px 0 18px;
}
.insurance__list li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--navy);
  font-size: .98rem;
  text-align: center;
}
.insurance__fine {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 22px;
}
.insurance__panel {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.insurance__panel h3 { color: #fff; margin-bottom: 16px; }
.insurance__panel ol {
  margin: 0; padding-left: 22px;
  display: grid; gap: 10px;
  color: rgba(255,255,255,.9);
}

/* ---------- contact ---------- */
.contact {
  background: var(--navy);
  color: #fff;
  padding: 100px 24px;
}
.contact h2 { color: #fff; }
.contact p { color: rgba(255,255,255,.85); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__links { list-style: none; padding: 0; margin: 18px 0 0; }
.contact__links a {
  color: #fff;
  border-bottom: 2px solid var(--red);
  font-weight: 600;
}
.contact__form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-2);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10,37,64,.1);
}
.contact__form .btn--full { grid-column: 1 / -1; }
.contact__ok {
  grid-column: 1 / -1;
  color: #0a7a3b;
  font-weight: 600;
  margin: 0;
}

/* ---------- footer ---------- */
.footer {
  background: #061a30;
  color: rgba(255,255,255,.85);
  padding: 70px 24px 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr;
  gap: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  max-width: var(--container);
  margin: 0 auto;
}
.footer__logo {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
}
.footer__logo::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 12px;
}
.footer__tag {
  margin-top: 14px;
  color: rgba(255,255,255,.7);
  max-width: 36ch;
}
.footer__ig {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.footer h4 {
  color: #fff;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,.78); transition: color .2s; }
.footer a:hover { color: #fff; }

.footer__locations ul { gap: 16px; }
.footer__locations li { display: grid; gap: 4px; }
.footer__locations strong {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer__locations a {
  font-size: .92rem;
  line-height: 1.5;
}
.footer__locations a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; }

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}

/* ---------- visit section (psychology) ---------- */
.visit {
  background: var(--white);
  padding: 100px 24px;
  position: relative;
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.visit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.visit-card__num {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--red);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.visit-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.25rem; }
.visit-card p { color: var(--muted); margin: 0; }

.visit-card--cta {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.visit-card--cta:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-4px); }
.visit-card--cta h3 { color: #fff; }
.visit-card--cta p { color: rgba(255,255,255,.85); margin-bottom: 18px; }

/* ---------- scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal[data-reveal="left"]  { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal[data-reveal="zoom"]  { transform: scale(.94); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered children for grids */
.services__grid .reveal.is-visible:nth-child(1) { transition-delay: 0s; }
.services__grid .reveal.is-visible:nth-child(2) { transition-delay: .08s; }
.services__grid .reveal.is-visible:nth-child(3) { transition-delay: .16s; }
.services__grid .reveal.is-visible:nth-child(4) { transition-delay: .24s; }

.visit__grid .reveal.is-visible:nth-child(1) { transition-delay: 0s; }
.visit__grid .reveal.is-visible:nth-child(2) { transition-delay: .06s; }
.visit__grid .reveal.is-visible:nth-child(3) { transition-delay: .12s; }
.visit__grid .reveal.is-visible:nth-child(4) { transition-delay: .18s; }
.visit__grid .reveal.is-visible:nth-child(5) { transition-delay: .24s; }
.visit__grid .reveal.is-visible:nth-child(6) { transition-delay: .30s; }

.brands__grid .reveal.is-visible:nth-child(n)   { transition-delay: 0s; }
.brands__grid .reveal.is-visible:nth-child(2n)  { transition-delay: .04s; }
.brands__grid .reveal.is-visible:nth-child(3n)  { transition-delay: .08s; }
.brands__grid .reveal.is-visible:nth-child(4n)  { transition-delay: .12s; }
.brands__grid .reveal.is-visible:nth-child(5n)  { transition-delay: .16s; }

.gallery__grid .reveal.is-visible:nth-child(n)  { transition-delay: 0s; }
.gallery__grid .reveal.is-visible:nth-child(2n) { transition-delay: .05s; }
.gallery__grid .reveal.is-visible:nth-child(3n) { transition-delay: .10s; }
.gallery__grid .reveal.is-visible:nth-child(4n) { transition-delay: .15s; }

.locations__grid .reveal.is-visible:nth-child(1) { transition-delay: 0s; }
.locations__grid .reveal.is-visible:nth-child(2) { transition-delay: .08s; }
.locations__grid .reveal.is-visible:nth-child(3) { transition-delay: .16s; }
.locations__grid .reveal.is-visible:nth-child(4) { transition-delay: .24s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero__grid,
  .promo__inner,
  .why__grid,
  .insurance__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(4, 1fr); }
  .locations__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .visit__grid { grid-template-columns: repeat(2, 1fr); }
  .insurance__list { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .why__photo--tall { margin-top: 0; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .topbar { font-size: .78rem; }
  .nav__inner { padding: 10px 18px; }
  .nav__toggle { display: inline-block; }
  .nav__menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu li { border-top: 1px solid var(--line); }
  .nav__menu li:first-child { border-top: 0; }
  .nav__menu a {
    display: block;
    padding: 14px 4px;
    border-bottom: none;
  }
  .nav__menu .nav__cta { text-align: center; margin-top: 10px; }
  .logo__img { width: 68px; height: 68px; }
  .logo { font-size: 1.25rem; }

  .hero { padding: 50px 20px 70px; }
  .promo, .services, .why, .visit, .brands, .gallery, .locations, .insurance, .contact { padding: 70px 20px; }
  .promo__card-price .amount { font-size: 4.5rem; }
  .services__grid,
  .brands__grid,
  .locations__grid,
  .gallery__grid,
  .visit__grid,
  .insurance__list { grid-template-columns: 1fr 1fr; }
  .contact__form { grid-template-columns: 1fr; padding: 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__logo { font-size: 1.6rem; }
  .marquee__list li { font-size: 1.05rem; }
}

@media (max-width: 460px) {
  .brands__grid,
  .insurance__list,
  .services__grid,
  .locations__grid,
  .visit__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 18px; }
  .logo__word { display: none; }
  .logo__img { width: 62px; height: 62px; }
  .nav__inner { padding: 10px 16px; }
  .topbar__inner { padding: 8px 16px; font-size: .72rem; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  * { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
