/* ============================================================
   PRESTON ON WHEELS — shared design system
   Navy + cream vintage garage signage
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Zilla+Slab:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* brand palette — sampled from the flyer */
  --navy:        #063447;
  --navy-800:    #0a3f55;
  --navy-700:    #114c64;
  --navy-900:    #042634;
  --cream:       #e6d3b4;   /* card cream */
  --cream-bg:    #ede2cd;   /* page background */
  --cream-soft:  #f3ecdc;   /* lighter panels */
  --cream-deep:  #ddc8a4;
  --amber:       #c8803a;   /* sparing accent — stars, hovers */
  --amber-deep:  #a9692c;
  --ink:         #063447;
  --line:        rgba(6, 52, 71, 0.18);
  --line-cream:  rgba(230, 211, 180, 0.28);

  /* type — heading family is swappable via Tweaks */
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --head-weight: 600;
  --head-spacing: 0.01em;

  --maxw: 1200px;
  --radius: 4px;
}

/* heading-font variants set on <html data-font> */
html[data-font="bebas"]  { --font-head: 'Bebas Neue', sans-serif; --head-weight: 400; --head-spacing: 0.03em; }
html[data-font="oswald"] { --font-head: 'Oswald', sans-serif;     --head-weight: 600; --head-spacing: 0.01em; }
html[data-font="slab"]   { --font-head: 'Zilla Slab', serif;      --head-weight: 700; --head-spacing: 0em; }

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

html { scroll-behavior: smooth; }

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

/* subtle paper grain on cream background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

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

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

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { position: relative; z-index: 1; padding: 88px 0; }
.section--navy { background: var(--navy); color: var(--cream); }
.section--cream { background: var(--cream-bg); }
.section--soft  { background: var(--cream-soft); }
.section--tight { padding: 60px 0; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: var(--head-weight); letter-spacing: var(--head-spacing); line-height: 1.0; text-transform: uppercase; }
.display { font-size: clamp(2.8rem, 6.4vw, 5.5rem); line-height: 0.98; }
h2.section-title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 0.96; }
h3 { font-size: 1.5rem; line-height: 1.05; }
p { text-wrap: pretty; }
.lead { font-size: 1.2rem; line-height: 1.6; }

/* eyebrow — kicker label flanked by rules (matches flyer headers) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.95rem;
}
.eyebrow.both::before, .eyebrow.both::after {
  content: ""; height: 2px; width: 42px; background: currentColor; opacity: 0.55;
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--amber { color: var(--amber); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 1.05rem;
  padding: 14px 30px; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn--navy { background: var(--navy); color: var(--cream); }
.btn--navy:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--navy); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); }
.btn--amber { background: var(--amber); color: #fff; }
.btn--amber:hover { background: var(--amber-deep); transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: currentColor; }
.btn--outline:hover { background: currentColor; }
.btn--outline.on-navy:hover { color: var(--navy); }
.btn--outline.on-cream:hover { color: var(--cream); }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy); color: var(--cream);
  border-bottom: 3px solid var(--amber);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__brand { display: flex; align-items: center; }
.nav__brand-text { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; line-height: 0.9; letter-spacing: 0.04em; }
.nav__brand-text small { display: block; font-size: 0.62rem; letter-spacing: 0.28em; color: var(--amber); font-weight: 500; }
.nav__brand-text span { font-size: 1.25rem; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 500; font-size: 1rem; padding: 6px 0; position: relative; color: var(--cream);
}
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--amber); transition: right .25s ease; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }
.nav__links a[aria-current="page"] { color: #fff; }
.nav__phone { display: inline-flex; align-items: center; gap: 11px; white-space: nowrap; padding: 13px 32px; letter-spacing: 0.04em; }
.nav__phone svg { flex: none; }
.nav__toggle { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 6px; }
.nav__toggle svg { stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: var(--cream); padding: 64px 0 32px; position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer__brand img { width: 96px; height: 96px; border-radius: 50%; border: 2px solid var(--cream); margin-bottom: 18px; }
.footer__brand p { color: rgba(230,211,180,0.7); font-size: 0.95rem; max-width: 32ch; }
.footer h4 { font-size: 1.1rem; letter-spacing: 0.14em; margin-bottom: 20px; color: var(--amber); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul li { color: rgba(230,211,180,0.82); font-size: 0.98rem; }
.footer ul a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: center; gap: 10px; }
.footer__contact li a { display: flex; align-items: center; gap: 10px; }
.footer__contact svg { flex: none; width: 18px; height: 18px; color: var(--cream); stroke: currentColor; fill: none; stroke-width: 1.7; }
.footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-cream); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(230,211,180,0.55); font-size: 0.85rem; }

/* ---------- emblem / badge ---------- */
.emblem {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--navy); color: var(--cream); border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--navy);
  text-align: center; gap: 4px; padding: 10px;
}
.emblem svg { width: 36px; height: 36px; color: var(--cream); stroke: currentColor; fill: none; stroke-width: 1.6; }
.emblem span { font-family: var(--font-head); font-size: 0.58rem; letter-spacing: 0.07em; line-height: 1.5; text-transform: uppercase; }
.emblem .rule { width: 60%; height: 1px; background: var(--cream-light, var(--cream)); opacity: .4; }

/* ---------- service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .svc-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid--3 { grid-template-columns: 1fr; } }
.svc {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream-soft); border: 1.5px solid var(--line);
  padding: 18px 20px; border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.svc:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(6,52,71,0.12); background: #fff; }
.svc__ic {
  flex: none; width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
}
.svc__ic svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.svc__t { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.15rem; line-height: 1; }
.svc__d { font-size: 0.86rem; color: rgba(6,52,71,0.66); margin-top: 4px; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--cream-soft); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 16px; position: relative;
}
.review__stars { display: flex; gap: 3px; color: var(--amber); }
.review__stars svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.review__body { font-size: 0.98rem; line-height: 1.62; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--cream); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.review__name { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1; }
.review__meta { font-size: 0.78rem; color: rgba(6,52,71,0.55); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1.5px solid var(--line-cream);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 26px 48px 26px 0; position: relative;
  font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em;
  font-size: 1.35rem; line-height: 1.1;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.8rem; font-family: var(--font-body); font-weight: 300; transition: transform .25s ease; line-height: 1;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 48px 28px 0; opacity: 0.85; font-size: 1.02rem; }
/* open animation — JS handles exclusive close with WAAPI close animation */
.faq details[open] p { animation: faqIn 0.3s ease; }
.faq details.faq-closing p { animation: faqOut 0.22s ease forwards; }
@keyframes faqIn  { from { opacity: 0; transform: translateY(-6px); } to { opacity: 0.85; transform: none; } }
@keyframes faqOut { from { opacity: 0.85; transform: none; } to { opacity: 0; transform: translateY(-6px); } }

/* ---------- map ---------- */
.map-wrap { position: relative; border: 3px solid var(--navy); border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 40px rgba(6,52,71,0.18); }
#map { height: 480px; width: 100%; }
.leaflet-container { background: var(--cream-deep); font-family: var(--font-body) !important; }
/* vintage tint on map tiles */
.map-tiles { filter: none; }
.area-legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px; }
.area-legend .city { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.area-legend .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--amber); border: 2px solid var(--navy); }

/* leaflet custom pins + popups */
.pow-pin { display: flex; align-items: center; gap: 7px; transform: translate(-9px, -9px); white-space: nowrap; }
.pow-pin__dot { width: 16px; height: 16px; border-radius: 50%; background: var(--amber); border: 3px solid var(--navy); box-shadow: 0 2px 6px rgba(0,0,0,.3); }
.pow-pin__lbl { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; color: var(--navy); background: var(--cream-soft); padding: 2px 8px; border-radius: 3px; border: 1.5px solid var(--navy); }
.leaflet-popup-content-wrapper { background: var(--navy); color: var(--cream); border-radius: var(--radius); }
.leaflet-popup-content { font-family: var(--font-body); }
.leaflet-popup-tip { background: var(--navy); }
.leaflet-popup-content strong { font-family: var(--font-head); letter-spacing: 0.04em; }
.leaflet-control-zoom a { color: var(--navy) !important; }

/* ---------- misc ---------- */
.kicker-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.stamp { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border: 2px solid currentColor; border-radius: 100px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; font-weight: 500; }
.divider-tools { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--amber); margin: 10px 0; }
.divider-tools::before, .divider-tools::after { content: ""; height: 2px; width: 80px; background: currentColor; opacity: 0.5; }

/* ============================================================
   HERO VARIANTS — only the active one shows (html[data-hero])
   ============================================================ */
.hero { display: none; position: relative; z-index: 1; }
html[data-hero="split"]  .hero--split  { display: grid; }
html[data-hero="emblem"] .hero--emblem { display: block; }
html[data-hero="banner"] .hero--banner { display: block; }

.hero-sub { max-width: 40ch; margin-top: 26px; opacity: 0.9; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-cta--center { justify-content: center; }

/* --- SPLIT --- */
.hero--split { grid-template-columns: 1.05fr 0.95fr; min-height: calc(100vh - 76px); }
.hero-split__text { background: var(--navy); color: var(--cream); display: flex; align-items: center; padding: 60px 0; }
.hero-split__text .container { padding-right: 48px; }
.hero-split__text .display { margin-top: 18px; }
.hero-split__art {
  background: var(--cream-deep); display: grid; place-items: center; padding: 0;
  position: relative; overflow: hidden;
}
.hero-logo { width: min(78%, 460px); height: auto; border-radius: 50%; position: relative; box-shadow: 0 24px 60px rgba(6,52,71,0.28); border: 5px solid var(--navy); }

/* ---------- hero photo carousel ---------- */
.hero-carousel { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,52,71,0.88) 0%, transparent 60%);
  padding: 48px 28px 48px;
}
.hero-slide__name {
  font-family: var(--font-head); color: #fff; font-size: clamp(1.2rem, 2.5vw, 2rem);
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1; display: block;
}
.hero-carousel__dots {
  position: absolute; bottom: 18px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; padding: 0; transition: background .2s, transform .2s;
}
.hero-dot.active { background: var(--amber); border-color: var(--amber); transform: scale(1.3); }

/* --- EMBLEM --- */
.hero--emblem { background: var(--cream-bg); padding: 76px 0 90px; text-align: center; overflow: hidden; }
.hero-emblem__inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.hero-emblem-logo { width: min(56%, 300px); border-radius: 50%; border: 5px solid var(--navy); box-shadow: 0 20px 50px rgba(6,52,71,0.25); margin-bottom: 30px; }
.hero--emblem .display { margin-top: 16px; }
.hero--emblem .hero-sub { margin-left: auto; margin-right: auto; max-width: 52ch; }
.hero-deco { position: absolute; color: var(--navy); opacity: 0.06; z-index: 1; }
.hero-deco--l { top: 8%; left: -50px; }
.hero-deco--r { bottom: 4%; right: -60px; }

/* --- BANNER --- */
.hero--banner { background: var(--navy); color: var(--cream); padding: 70px 0; overflow: hidden; }
.hero-banner__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-banner__text .display { margin-top: 16px; }
.hero-banner__art { position: relative; }
.hero-banner__art img { width: 100%; border-radius: var(--radius); border: 3px solid var(--cream); background: var(--cream-deep); filter: saturate(1.02); }
.hero-banner__emblem { position: absolute; top: -24px; right: 18px; z-index: 3; transform: rotate(-6deg); }

/* banner — cream variant (html[data-banner="cream"]) */
html[data-banner="cream"] .hero--banner { background: var(--cream-bg); color: var(--navy); }
html[data-banner="cream"] .hero--banner .hero-banner__art img { border-color: var(--navy); }
html[data-banner="cream"] .hero--banner .btn--outline.on-navy { color: var(--navy); }
html[data-banner="cream"] .hero--banner .btn--outline.on-navy:hover { color: var(--cream); }

/* ---------- value strip ---------- */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value svg { flex: none; width: 44px; height: 44px; color: var(--amber); stroke: currentColor; fill: none; stroke-width: 1.6; }
.value h3 { font-size: 1.3rem; margin-bottom: 4px; }
.value p { font-size: 0.96rem; opacity: 0.78; }

/* ---------- reviews head ---------- */
.reviews-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 46px; text-align: center; }
.reviews-head .section-title { width: 100%; text-align: center; }

/* ---------- cta band ---------- */
.cta-band__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.area-blurb { max-width: 34ch; opacity: 0.82; }

/* ---------- service carousel (home page only) ---------- */
.svc-carousel { max-width: 640px; margin: 0 auto; }
.svc-carousel__track {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--navy); box-shadow: 0 16px 40px rgba(6,52,71,0.18);
  aspect-ratio: 4/3;
}
.svc-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.svc-slide.active { opacity: 1; }
.svc-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-slide__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,52,71,0.92) 0%, rgba(6,52,71,0.05) 100%);
  padding: 48px 32px 30px; display: flex; align-items: center; gap: 18px;
}
.svc-slide__overlay .svc__ic { flex: none; }
.svc-slide__name {
  font-family: var(--font-head); color: #fff; text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 1; font-size: clamp(1.4rem, 4vw, 2.2rem);
}
.svc-carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.svc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); border: 2px solid var(--navy);
  cursor: pointer; padding: 0; transition: background .2s, transform .2s;
}
.svc-dot.active { background: var(--amber); transform: scale(1.25); }
.svc-carousel__cta { text-align: center; margin-top: 28px; }

/* ---------- page header ---------- */
.page-head { padding: 70px 0 76px; }
.page-head .display { margin-top: 16px; }
.page-head .hero-sub { max-width: 52ch; }

/* ---------- services page ---------- */
.svc-grid--full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.svc--lg { align-items: flex-start; padding: 24px; }
.not-listed {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 36px; padding: 28px 32px; background: var(--navy); color: var(--cream);
  border-radius: var(--radius);
}
.not-listed svg { color: var(--cream); flex: none; stroke: currentColor; fill: none; stroke-width: 1.6; }
.not-listed p { flex: 1; min-width: 220px; font-size: 1.05rem; }
.not-listed strong { font-family: var(--font-head); letter-spacing: 0.03em; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--cream-soft); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 30px 26px; position: relative; }
.step__n { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--cream-deep); line-height: 1; display: block; }
.step__ic { width: 40px; height: 40px; color: var(--amber); stroke: currentColor; fill: none; stroke-width: 1.6; margin: 14px 0 16px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; opacity: 0.78; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- about page ---------- */
.about-intro__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-intro__text .display { margin: 14px 0 22px; }
.about-intro__text p { margin-bottom: 16px; max-width: 56ch; }
.about-intro__text p.lead { font-size: 1.2rem; }
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.about-intro__art { position: relative; }
.about-photo { width: 100%; border-radius: var(--radius); border: 3px solid var(--navy); background: var(--cream-deep); box-shadow: 0 20px 50px rgba(6,52,71,0.2); }
.about-emblem { position: absolute; bottom: -28px; left: -28px; transform: rotate(-7deg); }

.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.promise { text-align: left; }
.promise svg { width: 42px; height: 42px; color: var(--amber); stroke: currentColor; fill: none; stroke-width: 1.6; margin-bottom: 14px; }
.promise h3 { font-size: 1.25rem; margin-bottom: 8px; }
.promise p { font-size: 0.95rem; opacity: 0.82; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__n { font-family: var(--font-head); font-weight: 700; font-size: 3.2rem; line-height: 1; color: var(--navy); }
.stat__l { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; opacity: 0.7; }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info .display { margin: 14px 0 20px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-list__ic { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; }
.contact-list__ic svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.contact-list__lbl { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; opacity: 0.6; }
.contact-list__val { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; letter-spacing: 0.02em; }
a.contact-list__val:hover { color: var(--amber-deep); }

.contact-card { background: var(--navy); color: var(--cream); border-radius: var(--radius); padding: 40px; box-shadow: 0 20px 50px rgba(6,52,71,0.2); }
.contact-card h2 { font-size: 1.9rem; }
.contact-card__sub { opacity: 0.78; margin: 10px 0 26px; font-size: 0.98rem; }
.quote-form { display: flex; flex-direction: column; gap: 16px; }
.quote-form label { display: flex; flex-direction: column; gap: 7px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.quote-form input, .quote-form select, .quote-form textarea {
  font-family: var(--font-body); font-size: 1rem; text-transform: none; letter-spacing: 0;
  padding: 12px 14px; border-radius: var(--radius); border: 1.5px solid var(--line-cream);
  background: rgba(255,255,255,0.06); color: var(--cream); outline: none;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(230,211,180,0.45); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--amber); background: rgba(255,255,255,0.1); }
.quote-form select option { color: #111; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form .btn { justify-content: center; margin-top: 6px; }
.form-note { font-size: 0.82rem; opacity: 0.65; text-align: center; }
.form-note a { color: var(--amber); }

@media (max-width: 900px) {
  .about-intro__grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro__art { margin-top: 12px; }
  .about-emblem { left: auto; right: 8px; bottom: -20px; }
  .promise-grid, .stat-row { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero--split { grid-template-columns: 1fr; min-height: 0; }
  .hero-split__art { height: 360px; }
  .hero-banner__inner, .value-row { grid-template-columns: 1fr; }
  .hero-banner__art { margin-top: 20px; }
  .hero-banner__emblem { transform: rotate(-6deg) scale(.85); right: 0; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .reviews { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__links.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--navy); padding: 20px 28px; gap: 18px; border-bottom: 3px solid var(--amber); z-index: 49; }
  .nav__links.open .nav__phone { width: 100%; justify-content: center; }
  .nav__toggle { display: block; padding: 6px; }
  .section { padding: 60px 0; }
  /* reset extra hero text right-padding on stacked layout */
  .hero-split__text .container { padding-right: 28px; }
}

/* ============================================================
   MOBILE (≤ 600px) — compact layout, touch-friendly
   ============================================================ */
@media (max-width: 600px) {
  body { overflow-x: hidden; }
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .section--tight { padding: 36px 0; }
  .page-head { padding: 44px 0 52px; }

  /* scale headings for small viewports */
  /* hero display: vw-driven so each line fills the screen; open line-height for breathing room */
  .display { font-size: clamp(2.8rem, 16vw, 6rem); line-height: 1.12; letter-spacing: -0.01em; }
  h2.section-title { font-size: clamp(1.75rem, 6.5vw, 2.2rem); }
  h3 { font-size: 1.25rem; }

  /* remove the extra right padding so the heading can use full container width */
  .hero-split__text .container { padding-right: 18px; }

  /* kicker rows stack */
  .kicker-row { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* hero split */
  .hero-split__art { height: 260px; }
  .hero-logo { width: min(62%, 240px); }
  .hero-sub { margin-top: 40px; font-size: 1rem; line-height: 1.55; }

  /* hero banner */
  .hero--banner { padding: 44px 0; }
  .hero-banner__emblem { display: none; }
  /* hero CTA buttons: side-by-side so they don't eat vertical space */
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 0; font-size: 0.9rem; padding: 13px 12px; }

  /* hero emblem */
  .hero--emblem { padding: 48px 0 56px; }

  /* value strip */
  .value-row { gap: 20px; }
  .value svg { width: 36px; height: 36px; }

  /* services grid: single column on small screens */
  .svc-grid--full { grid-template-columns: 1fr; }

  /* map shorter on mobile */
  #map { height: 300px; }
  .area-legend { gap: 14px; }

  /* reviews */
  .review { padding: 22px 18px; }

  /* FAQ */
  .faq summary { font-size: 1.1rem; padding: 18px 38px 18px 0; }
  .faq p { padding-bottom: 20px; }

  /* CTA band */
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { justify-content: center; width: 100%; }

  /* not-listed box on services page */
  .not-listed { flex-direction: column; align-items: flex-start; padding: 22px 18px; gap: 14px; }
  .not-listed .btn { width: 100%; justify-content: center; }

  /* steps (services page how-it-works) */
  .steps { gap: 16px; }

  /* about emblem badge — too tight on small screens */
  .about-emblem { display: none; }

  /* stats / promise */
  .promise-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat__n { font-size: 2.4rem; }

  /* contact */
  .contact-list { gap: 18px; }
  .contact-card { padding: 26px 18px; }

  /* footer */
  .footer { padding: 48px 0 24px; }
  .footer__grid { gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 6px; }

  /* eyebrow rule lines shorter */
  .eyebrow.both::before, .eyebrow.both::after { width: 24px; }
}
