/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── LINCOLN DETAIL CO. — modern light theme ── */
  /* Backgrounds (light) */
  --black:    #0a2540;          /* primary dark — navy (for hero, footer, buttons) */
  --dark:     #ffffff;          /* primary background — pure white */
  --dark2:    #f7f9fc;          /* secondary section background — off-white */
  --card:     #ffffff;          /* card background */
  --card2:    #f7f9fc;          /* secondary card background */
  --border:   #e1e8ed;          /* primary border */
  --border-lt:#cfd8dd;          /* hover/strong border */

  /* Accents */
  --gold:     #d4af37;          /* premium gold accent */
  --gold-dk:  #b8941f;
  --gold-lt:  rgba(212,175,55,.10);
  --gold-glow:rgba(212,175,55,.22);

  /* Navy accents (for things that were "ivory" / "cream" on dark) */
  --cream:    #1a2027;          /* primary body text — charcoal */
  --cream-dk: #4a5560;          /* secondary text — slate */
  --ivory:    #0a2540;          /* deep navy — for headings */
  --muted:    #6b7785;          /* tertiary muted text */
  --text:     #1a2027;          /* primary body text */
  --white:    #ffffff;
  --radius:   10px;
  --nav-h:    72px;
  --shadow:   0 2px 12px rgba(0,0,0,.4);
  --shadow-md:0 8px 32px rgba(0,0,0,.5);
  --shadow-gold: 0 0 24px rgba(201,169,110,.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px); /* nav anchors don't hide content under the sticky navbar */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%; /* stop iOS bumping text up in landscape */
}
a, button { -webkit-tap-highlight-color: transparent; } /* removes iOS gray flash on tap */

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--gold); }
.center { text-align: center; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.12;
  color: var(--ivory);
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: 14px; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-sub {
  color: var(--cream-dk);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  transition: all .2s;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
  border-width: 1.5px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold-lt); }
.btn-lg { padding: 16px 38px; font-size: 1rem; font-weight: 700; letter-spacing: .08em; }
.btn-sm { padding: 9px 20px; font-size: .82rem; font-weight: 700; letter-spacing: .08em; }
.btn-primary { box-shadow: 0 6px 20px rgba(212,184,118,.18); }
.btn-primary:hover { box-shadow: 0 8px 28px rgba(212,184,118,.32); transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; }

/* ── Section ── */
.section { padding: 96px 0; }

/* ── SCROLL PROGRESS INDICATOR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), #f5e09a);
  z-index: 1002;
  pointer-events: none;
  transition: width .05s linear;
  box-shadow: 0 0 8px rgba(212,184,118,.4);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(10,37,64,.04);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark { display: block; flex-shrink: 0; transition: opacity .2s, filter .2s; cursor: pointer; }

/* ── Logo click — handled by JS (replays vi-wipe) ── */
.logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.logo-w-main {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  font-style: normal;
  color: #0a2540;
  letter-spacing: -0.01em;
}
.logo-w-sub {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.logo-light .logo-w-main { color: var(--ivory); }
.logo-light .logo-w-sub  { color: var(--muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #4a5560;
  transition: color .15s;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav-phone {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #0a2540;
  white-space: nowrap;
  letter-spacing: 0.2px;
  font-variant-numeric: lining-nums;
  transition: color .15s;
}
.nav-phone:hover { color: var(--gold-dk); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #0a2540;
  border-radius: 2px;
  transition: all .25s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0a2540;
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(212,175,55,.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(212,175,55,.06) 0%, transparent 60%);
}
/* Hero text overrides for navy background */
.hero .hero-text h1 { color: #ffffff; }
.hero .hero-sub { color: rgba(255,255,255,.85); }
.hero .hero-emphasis { color: var(--gold); }
.hero .trust-pill {
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.4);
  color: #ffffff;
}
.hero .btn-outline { color: #ffffff; border-color: var(--gold); }
.hero .btn-outline:hover { background: var(--gold); color: #0a2540; }
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 60px 24px 100px;
  max-width: 1140px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 22px;
  line-height: 1.06;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--cream-dk);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  background: rgba(212,184,118,.06);
  border: 1px solid var(--border-lt);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 2px;
}

.hero-img { display: flex; justify-content: center; align-items: center; }
.hero-photo-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: rgba(201,169,110,.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: .85rem;
}
.hero-photo-placeholder span { font-size: 3.5rem; opacity: .2; }
.ph-roman {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  letter-spacing: -.04em;
}

/* ── WHY ── */
.why { background: var(--dark2); border-top: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text p { color: var(--muted); margin-bottom: 16px; font-size: .95rem; line-height: 1.75; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: border-color .2s;
}
.why-card:hover { border-color: var(--border-lt); }
.why-numeral {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.why-card strong {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}
.why-card p { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ── Hero emphasis ── */
.hero-emphasis {
  color: var(--gold);
  font-weight: 600;
}

/* ── Guarantee badge (risk reversal) ── */
.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(212,184,118,.08), rgba(212,184,118,.02));
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  padding: 16px 18px;
  margin: 20px 0 8px;
}
.guarantee-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-badge strong {
  display: block;
  color: var(--ivory);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.guarantee-badge span {
  display: block;
  color: var(--cream-dk);
  font-size: .82rem;
  line-height: 1.55;
}

/* ── Trust band — big number stats under hero ── */
.trust-band {
  background: var(--dark2);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border-lt);
  padding: 28px 0;
}
.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  flex: 1;
  min-width: 130px;
}
.trust-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,.4);
  font-variant-numeric: lining-nums;
}
.trust-label {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dk);
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--border-lt), transparent);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-divider { display: none; }
  .trust-item { flex: 0 0 45%; }
}

/* ── ABOUT ── */
.about { background: var(--dark); border-top: 1px solid var(--border); }
.about-container { max-width: 760px; text-align: center; }
.about-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.about-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Map embed ── */
.map-embed {
  margin-top: 16px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.4) brightness(0.85) contrast(1.05);
  transition: filter .3s;
}
.map-embed:hover { filter: grayscale(0) brightness(1) contrast(1); }
.map-embed iframe { display: block; }

/* ── NEWSLETTER (footer) ── */
.newsletter {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text { display: flex; flex-direction: column; gap: 4px; max-width: 460px; }
.newsletter-text strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
}
.newsletter-text span { color: var(--cream-dk); font-size: .85rem; line-height: 1.55; }
.newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 420px;
  min-width: 280px;
}
.newsletter-form input {
  flex: 1;
  margin: 0;
}
.newsletter-form button {
  white-space: nowrap;
  padding: 12px 22px;
}
@media (max-width: 640px) {
  .newsletter-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter-text { max-width: none; align-items: center; }
  .newsletter-form { max-width: none; }
}

/* ── STICKY MOBILE CTA ── */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: none;
  gap: 0;
  background: rgba(255,255,255,.98);
  border-top: 1.5px solid var(--gold);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 -6px 20px rgba(10,37,64,.10);
  /* iPhone X+ home-indicator safe area */
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background .15s;
  min-height: 56px; /* tap target */
}
.mobile-cta-call {
  background: var(--white);
  color: var(--black);
  border-right: 1px solid var(--border);
}
.mobile-cta-call:active { background: var(--card2); }
.mobile-cta-text {
  background: var(--white);
  color: var(--black);
  border-right: 1px solid var(--border);
}
.mobile-cta-text:active { background: var(--card2); }
.mobile-cta-quote {
  background: var(--gold);
  color: var(--black);
}
.mobile-cta-quote:active { background: var(--gold-dk); }
.mobile-cta svg { display: block; flex-shrink: 0; }
@media (max-width: 640px) {
  .mobile-cta { display: flex; }
  /* push content up so sticky bar (~62px + safe area) doesn't cover the last bit of page */
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0)); }
}

/* ── PERKS: Referral + Gift Card ── */
.perks { background: var(--dark); border-top: 1px solid var(--border); }
.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.perk-card {
  position: relative;
  background: linear-gradient(160deg, var(--card), var(--card2));
  border: 1.5px solid var(--border-lt);
  border-radius: 10px;
  padding: 36px 32px 32px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.perk-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212,184,118,.15);
}
.perk-numeral {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}
.perk-label {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.perk-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 12px;
  line-height: 1.15;
}
.perk-text {
  color: var(--cream);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.perk-text strong { color: var(--gold); font-weight: 700; }
.perk-fine {
  margin-top: 14px;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .02em;
}
@media (max-width: 760px) {
  .perks-grid { grid-template-columns: 1fr; }
}

/* book-online section removed — booking is now integrated into service cards */

/* ── STEPS ── */
.steps {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 52px 0 44px;
}
.step-card {
  flex: 1;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  transition: border-color .2s, box-shadow .2s;
}
.step-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.step-num {
  width: 52px; height: 52px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { color: var(--ivory); font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.step-arrow { font-size: 1.2rem; color: var(--border-lt); padding: 0 14px; flex-shrink: 0; }
.steps-cta { text-align: center; }

/* ── SERVICES ── */
.services { background: var(--dark2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(212,184,118,.18);
  transform: translateY(-4px);
}
.service-card.popular { border-color: var(--gold); }
.popular-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.service-numeral-wrap {
  background: var(--card2);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.service-numeral {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  letter-spacing: -.04em;
}
.service-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.service-hint {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,184,118,.10);
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid rgba(212,184,118,.3);
}
.service-body p { font-size: .88rem; color: var(--cream-dk); margin-bottom: 16px; line-height: 1.65; }
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.price-stack { display: flex; flex-direction: column; gap: 2px; }
.price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}
.price-avg {
  font-size: .65rem;
  color: var(--cream-dk);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-note {
  margin-top: 18px;
  text-align: center;
  font-size: .85rem;
  color: var(--cream-dk);
  background: var(--card);
  border: 1px solid var(--border-lt);
  border-radius: 4px;
  padding: 14px 20px;
}
.pricing-note a { color: var(--gold); font-weight: 500; }
.pricing-note a:hover { text-decoration: underline; }

/* ── SERVICES CONTENT SECTION (SEO-rich) ── */
.services-content { background: var(--dark); border-top: 1px solid var(--border); }
.services-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.service-content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: border-color .2s, box-shadow .2s;
}
.service-content-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(10,37,64,.06);
}
.service-content-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.service-content-card p {
  color: var(--cream);
  font-size: .98rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.service-content-tags {
  font-size: .85rem !important;
  color: var(--muted) !important;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  line-height: 1.7 !important;
}
.service-content-tags strong { color: var(--ivory); font-weight: 700; }
.services-content-cta {
  text-align: center;
  margin-top: 36px;
  font-size: 1rem;
  color: var(--cream);
}
.services-content-cta a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.services-content-cta a:hover { color: var(--gold-dk); }
@media (max-width: 760px) {
  .services-content-grid { grid-template-columns: 1fr; }
}

/* ── ADD-ONS ── */
.addons { background: var(--dark2); border-top: 1px solid var(--border); }
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.addon-card {
  background: var(--card);
  border: 1.5px solid var(--border-lt);
  border-radius: 8px;
  padding: 30px 28px;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.addon-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(212,184,118,.14);
}
.addon-card strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
  display: block;
  margin-bottom: 12px;
}
.addon-card p {
  color: var(--cream-dk);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.addon-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  .addons-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ── INSTANT QUOTE ESTIMATOR ── */
.estimator { background: var(--dark); border-top: 1px solid var(--border); }
.estimator-tool {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--card), var(--card2));
  border: 1.5px solid var(--border-lt);
  border-radius: 10px;
  padding: 36px 32px;
}
.estimator-q { margin-bottom: 22px; }
.estimator-q label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.estimator-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.estimator-opt {
  flex: 1;
  min-width: 100px;
  padding: 12px 16px;
  background: transparent;
  color: var(--cream-dk);
  border: 1.5px solid var(--border-lt);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.estimator-opt:hover { border-color: var(--gold); color: var(--ivory); }
.estimator-opt.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.estimator-result {
  margin-top: 32px;
  padding: 28px;
  text-align: center;
  background: #0a2540;          /* navy box stands out on white estimator section */
  border: 1.5px solid var(--gold);
  border-radius: 8px;
}
.estimator-result-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.estimator-price {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;               /* hard white — readable on navy regardless of var changes */
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  margin: 6px 0 10px;
  font-variant-numeric: lining-nums;
  transition: color .25s, transform .25s;
}
.estimator-price.flash {
  color: var(--gold);
  transform: scale(1.06);
}
.estimator-fine {
  display: block;
  color: rgba(255,255,255,.72);  /* legible light text on navy */
  font-size: .82rem;
  line-height: 1.5;
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .estimator-tool { padding: 26px 20px; }
  .estimator-opt { min-width: calc(50% - 4px); }
  .estimator-price { font-size: 2.8rem; }
}

/* ── GALLERY (interactive before/after sliders) ── */
.gallery { background: var(--dark); border-top: 1px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-lt);
  background: var(--card2);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  transition: border-color .2s, box-shadow .2s;
}
.ba-slider:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,184,118,.15);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path .12s ease-out;
}
.ba-slider.dragging .ba-before { transition: none; }

/* Draggable handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212,184,118,.6);
  z-index: 3;
  transform: translateX(-1px);
  transition: left .12s ease-out;
  pointer-events: none;
}
.ba-slider.dragging .ba-handle { transition: none; }
.ba-handle-line {
  position: absolute;
  inset: 0;
}
.ba-handle-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.5), 0 0 0 3px rgba(13,11,8,.6);
  transition: transform .15s;
}
.ba-slider:hover .ba-handle-dot { transform: translate(-50%, -50%) scale(1.1); }

/* Before / After labels */
.ba-label {
  position: absolute;
  top: 10px;
  z-index: 4;
  background: rgba(0,0,0,.75);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.ba-label-before { left: 10px; }
.ba-label-after { right: 10px; }

/* "Photo Pending" fallback for missing images */
.ba-pending-text {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .5;
  line-height: 1.7;
  background: var(--card2);
}
.ba-slider.ba-pending .ba-pending-text { display: flex; }
.ba-slider.ba-pending .ba-handle,
.ba-slider.ba-pending .ba-label,
.ba-slider.ba-pending .ba-img { display: none; }

/* ── REVIEWS ── */
.reviews { background: var(--dark2); border-top: 1px solid var(--border); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--border-lt); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; text-shadow: 0 1px 2px rgba(0,0,0,.4); }

/* ── Big rating bar (above reviews) — Amazon-style social proof ── */
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 44px;
  padding: 18px 32px;
  background: linear-gradient(135deg, rgba(212,184,118,.10), rgba(212,184,118,.02));
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  max-width: 480px;
}
.rating-stars {
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,.4);
}
.rating-text { display: flex; flex-direction: column; line-height: 1.15; }
.rating-text strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ivory);
  font-style: normal;
  letter-spacing: 1px;
  font-variant-numeric: lining-nums;
}
.rating-text span {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dk);
}
.review-card > p {
  font-size: .95rem;
  color: var(--cream);
  margin-bottom: 22px;
  font-style: italic;
  line-height: 1.8;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Inter', system-ui, sans-serif;
}
.reviewer strong { display: block; font-size: .88rem; color: var(--cream); }
.reviewer span { font-size: .75rem; color: var(--muted); }

/* ── QUOTE ── */
.quote-section { background: var(--dark); border-top: 1px solid var(--border); }
.quote-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 56px 52px;
  box-shadow: var(--shadow-md);
}
.quote-text h2 { margin-bottom: 16px; }
.quote-text > p { color: var(--muted); font-size: .92rem; margin-bottom: 28px; line-height: 1.7; }
.quote-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.contact-link { font-size: .95rem; font-weight: 600; color: var(--gold); line-height: 1.5; letter-spacing: .02em; }
.contact-link:hover { text-decoration: underline; }

/* Premium address card — "Visit us at" style */
.address-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(212,184,118,.07), rgba(212,184,118,.01));
  border: 1px solid var(--border-lt);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  margin-top: 4px;
  transition: border-color .2s, background .2s;
}
.address-card:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,184,118,.12), rgba(212,184,118,.03));
}
.address-label {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.address-line-1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: normal;
  color: var(--ivory);
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-variant-numeric: lining-nums;
}
.address-line-2 {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--cream-dk);
  letter-spacing: .04em;
}
.hours-box {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hours-box strong {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.hours-box span { font-size: .88rem; color: var(--cream); font-weight: 400; }

.quote-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.label-hint { font-weight: 400; color: var(--cream-dk); text-transform: none; letter-spacing: 0; font-size: .78rem; }
input, select, textarea {
  background: var(--card2);
  border: 1.5px solid var(--border-lt);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* 16px prevents iOS Safari auto-zoom on focus; visually equivalent to .92rem */
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  -webkit-appearance: none; /* removes inset shadow on iOS */
  appearance: none;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a2540' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,184,118,.12);
}
input::placeholder, textarea::placeholder { color: var(--cream-dk); opacity: 0.65; }
select option { background: var(--card2); }
textarea { resize: vertical; min-height: 90px; }
.form-note { text-align: center; font-size: .75rem; color: var(--muted); margin-top: -4px; }
/* Legacy plain success line — kept for any callers, but the rich card below is what the quote form now uses */
.form-success {
  text-align: center;
  color: #86efac;
  background: rgba(134,239,172,.06);
  border: 1px solid rgba(134,239,172,.2);
  border-radius: 4px;
  padding: 14px;
  font-weight: 600;
  font-size: .88rem;
}

/* ── Submit button: loading + sent states (the satisfying click feedback) ── */
.btn-sending,
.btn-sent {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: progress;
  transform: scale(.985);
}
.btn-sending {
  background: var(--gold-dk) !important;
  border-color: var(--gold-dk) !important;
  color: var(--black) !important;
}
.btn-sent {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #ffffff !important;
  transform: scale(1);
  animation: btnSentPop .35s ease both;
}
@keyframes btnSentPop {
  0%   { transform: scale(.96); }
  60%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btnSpin .7s linear infinite;
  vertical-align: middle;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }
.btn-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: btnCheckPop .35s cubic-bezier(.2,.9,.3,1.5) both;
}
@keyframes btnCheckPop {
  0%   { transform: scale(.3) rotate(-12deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(0); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}
.btn-check svg { display: block; }

/* ── Rich quote-form success card — replaces the form with a satisfying confirmation ── */
.form-success-card {
  text-align: center;
  padding: 36px 28px 32px;
  background: linear-gradient(160deg, rgba(134,239,172,.10), rgba(134,239,172,.02));
  border: 1.5px solid rgba(134,239,172,.35);
  border-radius: 12px;
  color: var(--ivory);
  animation: successPop .55s cubic-bezier(.2,.9,.3,1.1) both;
}
@keyframes successPop {
  0%   { opacity: 0; transform: translateY(12px) scale(.96); }
  60%  { opacity: 1; transform: translateY(0) scale(1.02); }
  100% { transform: scale(1); }
}
.form-success-check {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  color: #4ade80;
  filter: drop-shadow(0 4px 12px rgba(74,222,128,.35));
}
.form-success-check svg { width: 100%; height: 100%; }
.check-ring {
  stroke-dasharray: 152; stroke-dashoffset: 152;
  animation: drawRing .55s ease-out .1s forwards;
}
.check-tick {
  stroke-dasharray: 50; stroke-dashoffset: 50;
  animation: drawTick .35s ease-out .55s forwards;
}
@keyframes drawRing { to { stroke-dashoffset: 0; } }
@keyframes drawTick { to { stroke-dashoffset: 0; } }

.form-success-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ivory);
  margin: 0 0 10px;
  letter-spacing: -.005em;
}
.form-success-msg {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--cream-dk);
  max-width: 440px;
  margin: 0 auto 22px;
}
.form-success-msg strong { color: var(--ivory); }
.form-success-msg a { color: var(--gold); text-decoration: none; font-weight: 700; }
.form-success-msg a:hover { text-decoration: underline; }
.form-success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Submission summary inside the success card — gives the customer a record ── */
.form-success-summary {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-lt);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 4px auto 22px;
  max-width: 440px;
  text-align: left;
}
.success-summary-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.success-summary-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 14px;
  margin: 0;
  font-size: .85rem;
  line-height: 1.5;
}
.success-summary-list dt { color: var(--cream-dk); font-weight: 500; }
.success-summary-list dd { color: var(--ivory); font-weight: 600; margin: 0; word-break: break-word; }

@media (max-width: 480px) {
  .form-success-card { padding: 30px 18px 26px; }
  .form-success-title { font-size: 1.2rem; }
  .form-success-actions { flex-direction: column; }
  .form-success-actions .btn { width: 100%; }
  .form-success-summary { padding: 14px 16px; }
  .success-summary-list { grid-template-columns: 1fr; gap: 2px 0; }
  .success-summary-list dt { margin-top: 6px; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
}

.hidden { display: none; }

/* ── Photo Guide — "6 photos for a perfect quote" ── */
.photo-guide {
  background: linear-gradient(135deg, rgba(212,184,118,.05), rgba(212,184,118,.01));
  border: 1.5px solid var(--border-lt);
  border-radius: 8px;
  padding: 22px 20px 18px;
  margin: 12px 0 18px;
}
.photo-guide-header {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-lt);
}
.photo-guide-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ivory);
  margin: 0 0 4px;
  letter-spacing: .01em;
}
.photo-guide-sub {
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .06em;
  margin: 0;
}
.photo-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  transition: grid-template-columns .25s ease;
}
/* When only 1 card showing (headlight) — center it large */
.photo-guide.guide-single .photo-guide-grid {
  grid-template-columns: minmax(0, 320px);
  justify-content: center;
}
.photo-guide.guide-single .guide-card {
  padding: 22px 16px;
}
.photo-guide.guide-single .guide-icon {
  width: 56px;
  height: 56px;
}
/* When 2-3 cards showing (interior) */
.photo-guide.guide-few .photo-guide-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  margin: 0 auto;
}
.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 8px 12px;
  background: var(--card);
  border: 1px solid var(--border-lt);
  border-radius: 6px;
  gap: 4px;
  transition: border-color .2s, transform .2s;
}
.guide-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.guide-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 2px;
  opacity: .85;
}
.guide-numeral {
  position: absolute;
  top: 6px;
  right: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  opacity: .55;
  line-height: 1;
}
.guide-card strong {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: .02em;
  margin-top: 4px;
}
.guide-card > span:last-child {
  font-size: .7rem;
  color: var(--cream-dk);
  line-height: 1.4;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .photo-guide-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-guide { padding: 18px 14px 14px; }
  .guide-icon { width: 32px; height: 32px; }
}

/* ── Photo Upload ── */
.upload-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.upload-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 22px 12px;
  background: var(--card2);
  border: 1px dashed var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  font-family: 'Inter', sans-serif;
  min-height: 100px;
}
.upload-btn:hover, .upload-btn:active { border-color: var(--gold); background: var(--gold-lt); }
.upload-btn-label { font-size: .88rem; font-weight: 600; color: var(--cream); }
.upload-btn-sub { font-size: .72rem; color: var(--muted); }
.upload-hint-bar {
  margin-top: 10px;
  font-size: .74rem;
  color: var(--muted);
  text-align: center;
  padding: 8px 12px;
  background: var(--card2);
  border-radius: 4px;
}
.upload-hint-bar.hidden { display: none; }

/* ── Text photos CTA — invites customer to send photos via SMS ── */
.text-photos-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--gold-lt), var(--card2));
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.text-photos-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, .18);
  border-color: var(--gold);
}
.text-photos-cta-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
}
.text-photos-cta-body { display: flex; flex-direction: column; gap: 3px; }
.text-photos-cta-title {
  font-size: .98rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: .01em;
}
.text-photos-cta-title strong { color: var(--gold); font-weight: 700; }
.text-photos-cta-sub { font-size: .8rem; color: var(--muted); line-height: 1.4; }
@media (max-width: 480px) {
  .text-photos-cta { padding: 14px; gap: 12px; }
  .text-photos-cta-icon { width: 38px; height: 38px; }
  .text-photos-cta-title { font-size: .9rem; }
  .text-photos-cta-sub { font-size: .75rem; }
}
.photo-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.photo-thumb {
  position: relative;
  width: 90px; height: 90px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb-remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 26px; height: 26px;
  background: rgba(0,0,0,.75);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}
.photo-thumb-remove:hover, .photo-thumb-remove:active { background: #ef4444; }
.photo-count { font-size: .74rem; color: var(--muted); margin-top: 6px; }
@media (max-width: 480px) {
  .upload-btn { padding: 22px 10px; min-height: 110px; }
  .photo-thumb { width: 80px; height: 80px; }
  .photo-thumb-remove { width: 28px; height: 28px; }
}

/* ── FAQ ── */
.faq { background: var(--dark2); border-top: 1px solid var(--border); }
.faq-container { max-width: 760px; }
.faq-list { margin-top: 52px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  text-align: left;
  gap: 16px;
  transition: color .15s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; font-weight: 300; color: var(--gold); transition: transform .2s; flex-shrink: 0; font-family: 'Inter', sans-serif; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ── FOOTER ── */
.footer { background: #0a2540; color: #ffffff; border-top: 1px solid var(--gold); }
.footer .footer-brand p { color: rgba(255,255,255,.7); }
.footer .footer-col a,
.footer .footer-col strong,
.footer .footer-hours span,
.footer .footer-bottom p,
.footer .footer-legal a { color: rgba(255,255,255,.75); }
.footer .footer-col strong { color: #ffffff; }
.footer .footer-col a:hover,
.footer .footer-legal a:hover,
.footer .footer-social a:hover { color: var(--gold); }
.footer .footer-social a { color: rgba(255,255,255,.7); }
.footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer .footer-hours { border-top-color: rgba(255,255,255,.1); }
.footer .footer-hours strong { color: rgba(255,255,255,.6); }
.footer .logo-w-main,
.footer .logo-w-sub { color: #ffffff; }
.footer .logo-w-sub { color: rgba(255,255,255,.6); }
.footer .newsletter { background: rgba(0,0,0,.2); border-top-color: rgba(255,255,255,.1); }
.footer .newsletter-text strong { color: #ffffff; }
.footer .newsletter-text span { color: rgba(255,255,255,.7); }
.footer .newsletter-form input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #ffffff; }
.footer .newsletter-form input::placeholder { color: rgba(255,255,255,.5); }

/* ── Newsletter success state — code chip shown after subscribe ── */
.newsletter-success { animation: newsFadeIn .35s ease both; }
.newsletter-success strong { color: var(--gold) !important; font-size: 1rem; }
.newsletter-code {
  display: inline-block;
  margin: 6px 0 4px;
  padding: 8px 18px;
  font-family: 'Inter', monospace, system-ui;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--black) !important;
  background: var(--gold);
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(212,175,55,.35);
  align-self: flex-start;
}
.newsletter-code-hint { font-size: .78rem !important; font-style: italic; color: rgba(255,255,255,.65) !important; }
.newsletter-text.hidden, .newsletter-form.hidden { display: none !important; }
@keyframes newsFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .newsletter-code { align-self: center; }
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 52px;
}
.footer-brand p { font-size: .85rem; color: var(--muted); margin-top: 10px; margin-bottom: 22px; line-height: 1.65; }
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s;
}
.footer-social a:hover { color: var(--gold); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong {
  color: var(--cream-dk);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-col a { font-size: .85rem; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-hours {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 10px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.footer-hours strong { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.footer-hours span { font-size: .85rem; color: var(--cream-dk); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .75rem; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .75rem; color: var(--muted); transition: color .15s; }
.footer-legal a:hover { color: var(--gold); }

/* ── Logo click animation — clean pop + gold glow ── */
@keyframes logo-pop {
  0%   { transform: scale(1); }
  18%  { transform: scale(0.88); }
  50%  { transform: scale(1.12); }
  78%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(212,175,55,0)); }
  40%      { filter: drop-shadow(0 0 14px rgba(212,175,55,.85)); }
}
.logo-mark.logo-clicking {
  animation: logo-pop .55s cubic-bezier(0.34, 1.56, 0.64, 1),
             logo-glow .6s ease;
  transform-origin: center;
}

/* Legacy — kept for backward compatibility; harmless if elements don't exist */
.logo:hover .logo-mark { filter: drop-shadow(0 2px 8px rgba(212,175,55,.18)); transition: filter .2s; }

/* ── Ornamental rule ── */
.rule-ornament {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dk), transparent);
  margin: 8px 0 18px;
}
.center-rule {
  margin-left: auto;
  margin-right: auto;
}

/* ── Divider line accents ── */
.section::before {
  display: none; /* reserved for future use */
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .quote-wrap { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-phone { display: none; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 28px;
    gap: 0;
    transform: translateY(-110%);
    transition: transform .28s ease;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(10,37,64,.06);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 16px 0; width: 100%; border-bottom: 1px solid var(--border); font-size: .95rem; min-height: 48px; display: flex; align-items: center; }
  .hamburger { display: flex; }
}

/* ── Mobile polish & tap targets ── */
@media (max-width: 640px) {
  /* Phone CTA in nav is hidden; the bottom sticky bar replaces it. Header simplifies. */
  .nav-right .btn { padding: 9px 18px; font-size: .78rem; }
  .logo-mark { width: 42px !important; height: 42px !important; }
  .logo-w-main { font-size: .95rem; }
  .logo-w-sub  { font-size: .65rem; }

  /* Hero typography breathes better on small screens */
  .hero { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 56px; }
  .hero-btns { flex-direction: column; gap: 10px; width: 100%; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-trust { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .hero-trust .trust-pill { font-size: .68rem; padding: 5px 10px; }

  /* Estimator buttons: ensure they wrap to 2 columns on tight screens, not overflow */
  .estimator-options { display: flex; flex-wrap: wrap; gap: 8px; }
  .estimator-opt { flex: 1 1 calc(50% - 4px); min-height: 48px; font-size: .85rem; }

  /* Three-step process — full-width cards, more vertical breathing room */
  .step-card { width: 100%; }

  /* Photo guide cards — already 3-col on desktop; squeeze them sensibly on phone */
  .photo-guide-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .guide-card { padding: 14px 10px; }

  /* Quote-section wrap — single column, tighter padding */
  .quote-wrap { padding: 24px 20px; }
  .contact-link { font-size: .9rem; }

  /* Buttons that might wrap awkwardly — allow line-break instead of horizontal overflow */
  .btn { white-space: normal; line-height: 1.3; }
  .btn-lg { padding: 16px 24px; }

  /* Trust band stacks vertically on mobile so divider lines don't crowd */
  .trust-band-inner { flex-direction: column; gap: 18px; }
  .trust-divider { display: none; }

  /* Map embed slightly shorter on phones so it doesn't dominate */
  .map-embed iframe { height: 180px !important; }

  /* FAQ tap targets bigger */
  .faq-q { padding: 16px 18px !important; min-height: 56px; font-size: .95rem; }
}

/* Ultra-small phones (iPhone SE etc.) */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2.2rem !important; }
  .estimator-opt { flex: 1 1 100%; }
  .nav-right .btn { display: none; } /* hamburger + sticky CTA cover it */
}

/* ══════════════════════════════════════════════════════════════════════
   SERVICE AREAS — long-tail local SEO section
   ══════════════════════════════════════════════════════════════════════ */
.service-areas { background: var(--dark2); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 880px;
  margin: 0 auto 28px;
}
.area-col h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.area-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-col li {
  padding: 6px 0;
  color: var(--cream);
  font-size: .92rem;
  line-height: 1.5;
}
.areas-cta {
  font-size: .9rem;
  color: var(--cream-dk);
  margin-top: 10px;
}
.areas-cta a { color: var(--gold); font-weight: 600; }
.areas-cta a:hover { text-decoration: underline; }
@media (max-width: 760px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; gap: 20px; max-width: 320px; }
  .area-col h3 { text-align: center; }
}

/* ══════════════════════════════════════════════════════════════════════
   NEW-CUSTOMER OFFER BAR — sticky top banner, dismissible
   ══════════════════════════════════════════════════════════════════════ */
.offer-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(10,37,64,.08);
  animation: offerBarSlide .5s ease-out both;
}
.offer-bar.dismissed { display: none; }
@keyframes offerBarSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.offer-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.offer-bar-pill {
  display: inline-block;
  background: var(--black);
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  flex: 0 0 auto;
}
.offer-bar-text { letter-spacing: .005em; }
.offer-bar-text strong { font-weight: 800; }
.offer-bar-code {
  display: inline-block;
  background: rgba(10,37,64,.12);
  border: 1px dashed rgba(10,37,64,.4);
  font-family: 'Inter', monospace, sans-serif;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 2px 8px;
  border-radius: 3px;
  margin: 0 2px;
}
.offer-bar-cta {
  background: var(--black);
  color: var(--gold);
  padding: 7px 14px;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .15s, transform .15s;
  flex: 0 0 auto;
}
.offer-bar-cta:hover { background: #061a30; transform: translateX(2px); }
.offer-bar-close {
  background: none;
  border: 0;
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: .55;
  padding: 2px 8px;
  margin-left: 4px;
  border-radius: 4px;
  transition: opacity .15s, background .15s;
  flex: 0 0 auto;
}
.offer-bar-close:hover { opacity: 1; background: rgba(10,37,64,.1); }
@media (max-width: 720px) {
  .offer-bar-inner { padding: 9px 14px; gap: 8px; font-size: .76rem; }
  .offer-bar-cta { padding: 6px 11px; font-size: .72rem; }
  .offer-bar-pill { display: none; } /* save space on phones */
}

/* ══════════════════════════════════════════════════════════════════════
   TRUST BADGES — honest credibility row under the trust band
   ══════════════════════════════════════════════════════════════════════ */
.trust-badges {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-badges-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-dk);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }
@media (max-width: 640px) {
  .trust-badges-inner { gap: 14px 20px; justify-content: center; }
  .trust-badge { font-size: .75rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   PRICE COMPARISON TABLE — anchors our prices as the fair option
   ══════════════════════════════════════════════════════════════════════ */
.compare { background: var(--dark2); }
.compare-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(10,37,64,.06);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  min-width: 560px;
}
.compare-table thead {
  background: var(--ivory);
  color: var(--white);
}
.compare-table th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.compare-table th.compare-us {
  background: var(--gold);
  color: var(--black);
  position: relative;
}
.compare-table th.compare-us::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--gold);
}
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.compare-us {
  background: rgba(212,175,55,.06);
  color: var(--ivory);
  font-weight: 700;
}
.compare-table td.compare-save {
  color: #16a34a;
  font-weight: 700;
  font-size: .85rem;
}
.compare-fine {
  text-align: center;
  margin-top: 20px;
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════════════════════
   "MOST POPULAR" RIBBON on the Full Detail service card
   ══════════════════════════════════════════════════════════════════════ */
.service-card-featured {
  position: relative;
  border-color: var(--gold) !important;
  box-shadow: 0 6px 20px rgba(212,175,55,.18) !important;
}
.service-card-ribbon {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(212,175,55,.4);
}

/* ══════════════════════════════════════════════════════════════════════
   FLOATING "TEXT US" BUTTON — desktop bottom-right
   ══════════════════════════════════════════════════════════════════════ */
.float-text-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 997;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(10,37,64,.18), 0 0 0 4px rgba(212,175,55,.18);
  transition: transform .2s, box-shadow .2s;
  animation: floatPulse 3s ease-in-out infinite;
}
.float-text-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10,37,64,.25), 0 0 0 4px rgba(212,175,55,.3);
  animation: none;
}
.float-text-btn svg { display: block; }
.float-text-label { display: inline; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(10,37,64,.18), 0 0 0 4px rgba(212,175,55,.18); }
  50%      { box-shadow: 0 6px 24px rgba(10,37,64,.18), 0 0 0 10px rgba(212,175,55,0); }
}
/* Hide on mobile — sticky bottom CTA bar already has a Text button */
@media (max-width: 640px) {
  .float-text-btn { display: none; }
}

/* ── Mobile navbar — switch from white to navy so it doesn't show as a white strip ── */
@media (max-width: 768px) {
  #navbar {
    background: rgba(10, 37, 64, .97);
    border-bottom-color: rgba(212, 175, 55, .15);
    box-shadow: 0 1px 8px rgba(0,0,0,.25);
  }
  .logo-w-main { color: #ffffff; }
  .logo-w-sub  { color: rgba(255,255,255,.5); }
  .nav-links a { color: rgba(255,255,255,.75); }
  .nav-links a:hover,
  .nav-links a.active { color: #d4af37; }
  .hamburger span { background: #ffffff; }
}

/* ── Hide non-essential sections on mobile to reduce page length ── */
@media (max-width: 768px) {
  .gallery      { display: none; }  /* before/after — no real photos yet */
  .compare      { display: none; }  /* price comparison table */
  .estimator    { display: none; }  /* quote estimator — form below does same job */
  .steps        { display: none; }  /* how it works steps */
  .trust-badges { display: none; }  /* redundant with trust band above it */
  .about        { display: none; }  /* covered by hero + why section */
}

/* ── Footer mobile layout ── */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-hours {
    text-align: center;
  }
}
