/* ============== TOKENS ============== */
:root {
  --navy-900: #0E1F47;
  --navy-800: #142B6B;
  --navy-700: #1E3A8A;
  --navy-500: #2E55C4;
  --navy-tint: #E8ECF7;
  --navy-tint-2: #F1F4FB;

  --ink: #0B1220;
  --ink-soft: #4B5563;
  --ink-mute: #9aa3b2;

  --paper: #FFFFFF;
  --paper-dim: #F7F8FB;

  --star: #F5B400;

  --r-card: 14px;
  --r-pill: 999px;
  --r-form: 22px;

  --shadow-sm: 0 2px 8px rgba(14,31,71,.06);
  --shadow-md: 0 10px 30px rgba(14,31,71,.08);
  --shadow-lg: 0 24px 60px rgba(14,31,71,.18);

  --container: 1200px;
  --pad-x: clamp(16px, 4vw, 48px);
}

/* ============== RESET ============== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; margin: 0; line-height: 1.15; color: var(--ink); }
p { margin: 0 0 .6rem; }

/* ============== UTIL ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .2s ease, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy-700);
  color: #fff;
  box-shadow: 0 8px 18px rgba(30,58,138,.25);
}
.btn-primary:hover { background: var(--navy-500); }

.section-h {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-h.centered { text-align: center; }
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 640px;
  margin: .5rem auto 2.5rem;
  font-size: .98rem;
}

.stars {
  color: var(--star);
  font-size: 1rem;
  letter-spacing: .15em;
  margin: 0;
}

/* ============== HEADER ============== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 18px var(--pad-x) 0;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(14,31,71,.55);
  backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-right: 8px;
}
.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.brand-mark { width: 38px; height: 38px; display: block; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-text em {
  font-style: italic;
  font-family: 'Brush Script MT','Lucida Handwriting',cursive;
  font-size: 1.2rem;
  font-weight: 700;
}
.brand-text strong {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .25em;
  margin-top: 1px;
}

.nav-pill {
  display: flex;
  gap: 4px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  padding: 4px;
  border-radius: var(--r-pill);
}
.nav-pill a {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: background .15s, color .15s;
}
.nav-pill a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-pill a.active { background: rgba(255,255,255,.15); color: #fff; }

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-700);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
  transition: background .15s;
}
.phone-pill:hover { background: var(--navy-500); }
.phone-pill svg { color: #fff; }

.hamburger {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding: 14px;
  background: rgba(14,31,71,.92);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}
.mobile-nav a { color: #fff; padding: 10px 6px; font-weight: 500; }
.mobile-nav .phone-pill { align-self: flex-start; margin-top: 6px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 560px;
  padding: 150px var(--pad-x) 80px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(0,0,0,.15), rgba(0,0,0,.6)),
    linear-gradient(180deg, rgba(14,31,71,.55) 0%, rgba(14,31,71,.85) 100%);
}

.hero-inner { max-width: 880px; margin: 0 auto; }
.eyebrow {
  font-size: .85rem;
  letter-spacing: .2em;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin: 0 0 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
}
.hero-sub strong { color: #fff; font-weight: 700; }

/* hero quote bar */
.quote-bar {
  position: absolute;
  bottom: -64px;
  left: var(--pad-x);
  right: var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-form);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr 1.2fr 1.4fr auto;
  gap: 6px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.quote-bar label {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border-right: 1px solid var(--paper-dim);
  min-width: 0;
}
.quote-bar label:nth-child(5) { border-right: 0; }
.quote-bar label > span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.quote-bar input,
.quote-bar select {
  border: 0;
  font: inherit;
  font-size: .98rem;
  padding: 6px 0;
  color: var(--ink-soft);
  background: transparent;
  width: 100%;
  outline: none;
  appearance: none;
}
.quote-bar input::placeholder { color: var(--ink-mute); }
.quote-bar button {
  margin-left: 8px;
  padding: 1.15rem 1.6rem;
  font-size: 1rem;
}
.quote-bar button:disabled {
  opacity: .7;
  cursor: progress;
}

/* Honeypot: present in DOM, hidden from users */
.quote-bar .hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0 !important;
}

.quote-error-msg {
  grid-column: 1 / -1;
  margin: 4px 14px 0;
  color: #b91c1c;
  font-size: .85rem;
}

/* success state replaces the form after successful submit */
.quote-success {
  position: absolute;
  bottom: -64px;
  left: var(--pad-x);
  right: var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-form);
  padding: 36px clamp(20px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.quote-success svg { margin-bottom: 4px; }
.quote-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
.quote-success p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 540px;
  font-size: .95rem;
}
.quote-success a { color: var(--navy-700); font-weight: 700; text-decoration: none; }
.quote-success a:hover { text-decoration: underline; }

/* ============== ABOUT ============== */
.about {
  padding: 140px var(--pad-x) 100px;
  max-width: var(--container);
  margin: 0 auto;
}
.about + .about {
  padding-top: 40px; /* tighter gap when stacking multiple about sections */
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about--reverse .about-grid {
  grid-template-columns: 1.1fr 1fr;
}
.about--reverse .about-photos { order: 2; }
.about--reverse .about-copy   { order: 1; }
.about-photos {
  position: relative;
  aspect-ratio: 1/1;
}
.ph-a, .ph-b {
  position: absolute;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.ph-a {
  width: 70%;
  height: 88%;
  left: 0;
  top: 0;
  z-index: 2;
}
.ph-b {
  width: 56%;
  height: 60%;
  right: 0;
  bottom: 0;
}
.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.about-copy .lede {
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
  font-size: 1rem;
}
.quote-bullets {
  border-left: 3px solid var(--navy-700);
  padding-left: 18px;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-bullets li {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
}
.quote-bullets strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2px;
}

/* ============== REVIEWS ============== */
.reviews {
  background: var(--navy-tint);
  padding: 100px var(--pad-x) 120px;
}
.reviews .section-h { margin-bottom: .25rem; }
.section-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  display: block;
  mix-blend-mode: multiply;
  background: transparent;
}
.reviews-stack {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.reviews-deck {
  position: absolute;
  inset: 18px 28px -18px -28px;
  background: #fff;
  border-radius: 24px;
  opacity: .6;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.reviews-deck.two {
  inset: 36px 56px -36px -56px;
  opacity: .35;
}
.review-card {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 24px;
  padding: 36px clamp(20px, 4vw, 48px) 36px;
  box-shadow: var(--shadow-md);
}
.review-card.ba-only { padding: 22px clamp(16px, 3vw, 28px); }
.ba-label {
  margin: 18px 0 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .92rem;
  color: var(--ink);
}
.review-logo {
  width: 88px; height: 88px;
  margin: 0 auto 18px;
  display: block;
}
.review-quote {
  text-align: center;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.5;
  font-style: italic;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
  text-align: left;
}
.review-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy-tint-2);
}
.review-name {
  font-weight: 800;
  letter-spacing: .04em;
  font-size: .9rem;
  margin: 0;
}
.review-source {
  color: var(--ink-soft);
  font-size: .8rem;
  margin: 0 0 2px;
}
.review-meta .stars { font-size: .9rem; }

.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background .15s, color .15s, transform .15s;
}
.arrow-btn:hover { background: var(--navy-700); color: #fff; transform: scale(1.05); }
.arrow-prev, .arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}
.arrow-prev { left: -64px; }
.arrow-next { right: -64px; }

/* before/after */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #d6dbe7;
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(14,31,71,.15);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  box-shadow: 0 6px 16px rgba(14,31,71,.25);
}
.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  background: rgba(14,31,71,.85);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  pointer-events: none;
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; }

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

/* ============== GALLERY ============== */
.gallery {
  padding: 90px var(--pad-x);
  background:
    linear-gradient(180deg, var(--navy-tint) 0%, #fff 100%);
}

.gallery-head {
  max-width: var(--container);
  margin: 0 auto 34px;
  text-align: center;
}

.gallery-kicker {
  color: var(--navy-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  margin: 0 0 10px;
}

.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,31,71,0) 45%, rgba(14,31,71,.78) 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.video-item::before {
  content: "Video";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255,255,255,.9);
  color: var(--navy-700);
  border-radius: var(--r-pill);
  padding: 5px 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.video-item video {
  background: #000;
}

/* ============== WHY ============== */
.why {
  padding: 100px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.why .section-h { margin-bottom: 3rem; }
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  min-height: 380px;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card, .step {
  background: var(--paper-dim);
  border-radius: var(--r-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .15s, box-shadow .2s;
}
.why-card:hover, .step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.why-card.highlight, .step.highlight {
  background: var(--navy-tint);
  border-left: 3px solid var(--navy-700);
}
.why-card h3, .step h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.why-card p, .step p {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.card-chip {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 6px;
}
.why-card.highlight .card-chip,
.step.highlight .card-chip {
  background: var(--navy-700);
  color: #fff;
}

/* ============== PROCESS ============== */
.process {
  padding: 60px var(--pad-x) 100px;
  max-width: var(--container);
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step { padding: 26px; }
.step h3 { font-size: 1.05rem; }

/* ============== SERVICES ============== */
.services {
  padding: 80px 0 100px;
}
.services .section-h, .services .section-sub { padding: 0 var(--pad-x); }

.services-rail-wrap {
  position: relative;
  padding: 0 var(--pad-x);
}
.services-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 28px;
  scrollbar-width: none;
}
.services-rail::-webkit-scrollbar { display: none; }

.service-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(14,31,71,.92) 100%);
}
.service-card:hover img { transform: scale(1.05); }
.service-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
}
.service-meta h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.service-meta p {
  margin: 0;
  font-size: .8rem;
  color: rgba(255,255,255,.78);
}
.rail-prev, .rail-next {
  position: absolute;
  top: calc(50% - 14px);
  z-index: 3;
}
.rail-prev { left: 8px; }
.rail-next { right: 8px; }

/* ============== SATISFIED ============== */
.satisfied {
  background: var(--navy-700);
  color: #fff;
  padding: 80px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.satisfied::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 80% 20%, rgba(255,255,255,.08), transparent 70%),
    radial-gradient(50% 50% at 10% 90%, rgba(46,85,196,.4), transparent 70%);
  pointer-events: none;
}
.satisfied-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.satisfied h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: .6rem;
}
.satisfied-sub {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.satisfied blockquote {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 600;
  margin: 0 auto 2rem;
  max-width: 700px;
  line-height: 1.5;
  color: #fff;
}
.satisfied-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.arrow-btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: none;
}
.arrow-btn.ghost:hover { background: #fff; color: var(--navy-700); }

.avatar-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.avatar-row li button {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  opacity: .55;
  transition: opacity .15s, transform .15s, border-color .15s;
}
.avatar-row li button img { width: 100%; height: 100%; object-fit: cover; }
.avatar-row li button:hover { opacity: 1; }
.avatar-row li button[aria-selected="true"] {
  width: 64px; height: 64px;
  opacity: 1;
  border-color: #fff;
  transform: scale(1);
}
.satisfied-name {
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .85rem;
  margin-top: 22px;
  margin-bottom: 4px;
}
.satisfied-stars { color: #FFD15C; }

/* ============== SERVICE AREA ============== */
.service-area {
  padding: 100px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.map-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 460px;
  background: var(--paper-dim);
}
.map-wrap iframe,
.map-wrap #service-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}
.map-wrap #service-map { background: #dbe2f0; }
.map-wrap .leaflet-control-container { z-index: 2; }
.map-card {
  position: absolute;
  top: 36px;
  left: 36px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 280px;
  box-shadow: var(--shadow-md);
  z-index: 600; /* above leaflet panes */
}
.map-card img { width: 64px; height: 64px; object-fit: contain; border-radius: 12px; flex: 0 0 auto; background: #fff; padding: 4px; }
.map-card-title { font-weight: 800; margin: 0; font-size: .95rem; }
.map-card-line { color: var(--ink-soft); font-size: .8rem; margin: 0; }
.map-card .stars { font-size: .8rem; }
.map-card .stars span { color: var(--ink); margin-left: 4px; font-weight: 700; }

/* ============== FAQ ============== */
.faq {
  padding: 100px var(--pad-x);
  max-width: 880px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--paper-dim);
  border-radius: 12px;
  overflow: hidden;
  transition: background .15s;
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-caret { transition: transform .2s; color: var(--ink-soft); }
.faq-q[aria-expanded="true"] .faq-caret { transform: rotate(180deg); color: var(--navy-700); }
.faq-q[aria-expanded="true"] { color: var(--navy-700); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-a p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.55;
}
.faq-cta { display: flex; justify-content: center; margin-top: 28px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  padding: 70px var(--pad-x) 0;
  position: relative;
  overflow: hidden;
}
.footer-watermark {
  position: absolute;
  bottom: -30px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.footer-line {
  font-weight: 700;
  color: #fff;
  margin: .6rem 0 .2rem;
  font-size: .92rem;
}
.footer-sub {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin: 0;
}
.footer-sub a { color: rgba(255,255,255,.85); }
.footer-sub a:hover { color: #fff; }

.footer-center { text-align: center; align-items: center; display: flex; flex-direction: column; }
.footer-logo-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  overflow: hidden;
}
.footer-logo { width: 118px; height: 118px; display: block; }
.footer-toll {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.footer-toll a { color: #fff; }
.socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s;
}
.socials a:hover { background: var(--navy-700); }

.quick-links { display: flex; flex-direction: column; gap: 10px; }
.quick-links a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: color .15s;
}
.quick-links a:hover { color: #fff; }

.footer-strip {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* ============== GOOGLE ADS LANDING PAGE ============== */
.ad-page {
  background: #f6f7fb;
  color: var(--ink);
}

.ad-topbar {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 5;
}

.ad-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.ad-brand .brand-text em { color: var(--navy-700); }
.ad-brand .brand-text strong { color: var(--navy-900); }

.ad-hero {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 36px var(--pad-x) 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr);
  gap: 34px;
  align-items: start;
}

.ad-hero-copy {
  background: var(--navy-900);
  min-height: 690px;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 54px);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ad-hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -18% -38% 28%;
  height: 360px;
  background: radial-gradient(circle, rgba(46,85,196,.42), rgba(46,85,196,0) 66%);
  pointer-events: none;
}

.ad-kicker {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--navy-500);
  margin: 0 0 12px;
}

.ad-hero .ad-kicker { color: #b7c6ff; }

.ad-hero h1 {
  color: #fff;
  font-size: clamp(2.45rem, 5vw, 5rem);
  letter-spacing: -0.04em;
  line-height: .98;
  max-width: 720px;
  margin-bottom: 18px;
}

.ad-lede {
  color: rgba(255,255,255,.82);
  max-width: 620px;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.55;
  margin-bottom: 22px;
}

.ad-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.ad-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
}

.ad-hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 330px;
  background: #0b1220;
  box-shadow: 0 20px 48px rgba(0,0,0,.24);
}

.ad-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.ad-photo-note {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.ad-photo-note span {
  color: var(--ink-soft);
  font-size: .86rem;
}

.ad-form {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: sticky;
  top: 18px;
}

.ad-form-head,
.ad-form-wide,
.ad-form button,
.ad-form-foot,
.ad-form .quote-error-msg {
  grid-column: 1 / -1;
}

.ad-form-head p {
  margin: 0 0 4px;
  color: var(--navy-700);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ad-form-head h2 {
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.ad-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ad-form label span {
  font-size: .78rem;
  font-weight: 800;
  color: var(--ink);
}

.ad-form input,
.ad-form select,
.ad-form textarea {
  width: 100%;
  border: 1px solid #dfe5f2;
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  resize: vertical;
}

.ad-form input:focus,
.ad-form select:focus,
.ad-form textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(30,58,138,.12);
}

.ad-form .hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0 !important;
}

.ad-form button {
  justify-content: center;
  min-height: 54px;
  font-size: 1rem;
}

.ad-form-foot {
  color: var(--ink-soft);
  font-size: .82rem;
  margin: -2px 0 0;
  text-align: center;
}

.ad-page .quote-success {
  position: static;
  inset: auto;
  max-width: none;
  box-shadow: var(--shadow-lg);
  border-radius: 24px;
  align-self: start;
}

.ad-page .quote-success p {
  line-height: 1.45;
}

.ad-proof,
.ad-services,
.ad-process,
.ad-faq,
.ad-final-cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px var(--pad-x);
}

.ad-section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.ad-section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -0.035em;
}

.ad-section-head p:not(.ad-kicker) {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 10px;
}

.ad-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.single-proof {
  grid-template-columns: minmax(0, 760px);
}

.ad-proof-card,
.ad-service-grid article,
.ad-steps article,
.ad-faq-grid article {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.ad-proof-card {
  overflow: hidden;
}

.ad-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--navy-900);
  aspect-ratio: 4/3;
}

.ad-before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-proof-card h3 {
  padding: 16px 18px 18px;
  font-size: 1rem;
}

.ad-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ad-service-grid article {
  overflow: hidden;
}

.ad-service-grid img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.ad-service-grid h3 {
  padding: 16px 18px 4px;
  font-size: 1.05rem;
}

.ad-service-grid p {
  padding: 0 18px 18px;
  color: var(--ink-soft);
  font-size: .92rem;
}

.service-ad-hero .ad-form-head h2 {
  font-size: 1.55rem;
}

.service-proof .ad-section-head {
  margin-bottom: 20px;
}

.service-proof-image {
  max-width: 760px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.service-proof-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.service-includes article p {
  margin: 0;
  color: var(--ink-soft);
}

.ad-process {
  background: var(--navy-tint);
  max-width: none;
}

.ad-process > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.ad-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ad-steps article {
  padding: 24px;
}

.ad-steps span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-700);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.ad-steps p,
.ad-faq-grid p {
  color: var(--ink-soft);
  font-size: .94rem;
  margin: 8px 0 0;
}

.ad-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ad-faq-grid article {
  padding: 22px;
}

.ad-faq-grid a {
  color: var(--navy-700);
  font-weight: 800;
}

.ad-final-cta {
  text-align: center;
  padding-top: 54px;
}

.ad-final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  letter-spacing: -0.035em;
}

.ad-final-cta p {
  color: var(--ink-soft);
  margin: 10px auto 22px;
}

.ad-final-cta div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ad-btn-outline {
  background: #fff;
  color: var(--navy-700);
  box-shadow: inset 0 0 0 1px #ccd6ef;
}

.ad-sticky-mobile {
  display: none;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px var(--pad-x);
}

.thanks-logo {
  margin-bottom: 24px;
}

.thanks-page h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

.thanks-page p:not(.ad-kicker) {
  max-width: 560px;
  margin: 16px auto 24px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.thanks-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .quote-bar {
    grid-template-columns: 1fr 1fr;
    bottom: -120px;
  }
  .quote-bar label { border-right: 0; border-bottom: 1px solid var(--paper-dim); }
  .quote-bar button { grid-column: 1 / -1; margin-left: 0; }

  .about { padding-top: 220px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { aspect-ratio: 16/10; }

  .why-grid { grid-template-columns: 1fr; }
  .why-photo img { min-height: 280px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }

  /* On mobile, all about sections stack the same way: photos on top, copy below */
  .about--reverse .about-grid { grid-template-columns: 1fr; }
  .about--reverse .about-photos,
  .about--reverse .about-copy { order: 0; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }

  .arrow-prev { left: 4px; }
  .arrow-next { right: 4px; }
  .arrow-btn { width: 38px; height: 38px; }

  .ad-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ad-hero-copy {
    min-height: 0;
  }
  .ad-form {
    position: static;
  }
  .ad-proof-grid,
  .ad-service-grid,
  .ad-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-pill { display: none; }
  .phone-pill {
    font-size: .8rem;
    padding: 8px 12px;
    gap: 6px;
    margin-left: auto; /* the nav-pill is hidden on mobile, so push the phone pill to the right ourselves */
  }
  .phone-pill svg { width: 13px; height: 13px; }
  .hamburger { display: flex; }
  .header-inner { padding: 6px 6px 6px 10px; gap: 8px; }

  .brand { gap: 8px; margin-right: 0; }
  .brand-badge { width: 38px; height: 38px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-text em { font-size: 1rem; }
  .brand-text strong { font-size: .55rem; letter-spacing: .2em; }

  .eyebrow {
    font-size: .68rem;
    letter-spacing: .14em;
    margin-bottom: .8rem;
  }
  .eyebrow .nbsp, .eyebrow {
    /* loosen so 4 items still fit */
  }

  .hero { padding: 110px var(--pad-x) 0; min-height: 620px; }
  .hero h1 { font-size: 2rem; line-height: 1.1; }
  .hero-sub { font-size: .92rem; margin-bottom: 0; }

  /* keep the floating overlap on mobile, just fit the form's height */
  .quote-bar {
    grid-template-columns: 1fr;
    left: var(--pad-x);
    right: var(--pad-x);
    bottom: -50px;
    padding: 10px;
    border-radius: 18px;
  }
  .quote-bar label { padding: 8px 12px; }
  .quote-success {
    bottom: -50px;
    padding: 28px 22px;
    border-radius: 18px;
  }
  .quote-success h3 { font-size: 1.2rem; }
  .quote-success p { font-size: .9rem; }
  /* Override the bigger desktop form sizing and keep mobile compact */
  .quote-bar label > span { margin-bottom: 2px; font-size: .72rem; }
  .quote-bar input, .quote-bar select { font-size: .9rem; padding: 4px 0; }
  .quote-bar button { font-size: .9rem; padding: .9rem 1.4rem; margin-left: 0; }

  .about { padding-top: 90px; padding-bottom: 60px; }
  .about-grid { gap: 28px; }
  .about-photos { aspect-ratio: 4/3; }
  .about-copy h2 { font-size: 1.6rem; }

  .reviews { padding: 70px var(--pad-x) 80px; }
  .section-logo { width: 88px; height: 88px; }
  .reviews .section-h { font-size: 1.6rem; }

  .gallery {
    padding: 60px var(--pad-x);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 170px;
    gap: 10px;
  }
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(10),
  .video-item {
    grid-row: span 2;
  }
  .gallery-item figcaption {
    font-size: .78rem;
    left: 10px;
    right: 10px;
    bottom: 9px;
  }

  .why { padding: 70px var(--pad-x); }
  .why-cards, .process-grid { grid-template-columns: 1fr; }
  .why-photo img { min-height: 220px; }

  .process { padding: 40px var(--pad-x) 70px; }

  .services { padding: 60px 0 70px; }
  .services-rail { grid-auto-columns: 220px; gap: 14px; }
  .service-card { aspect-ratio: 3/4; }

  .satisfied { padding: 60px var(--pad-x); }
  .satisfied blockquote { font-size: 1rem; }
  .avatar-row { gap: 8px; }
  .avatar-row li button { width: 36px; height: 36px; }
  .avatar-row li button[aria-selected="true"] { width: 50px; height: 50px; }

  .service-area { padding: 70px var(--pad-x); }
  .map-card {
    left: 12px;
    top: 12px;
    right: 12px;
    width: auto;
    padding: 10px;
    gap: 10px;
  }
  .map-card img { width: 48px; height: 48px; }
  .map-card-title { font-size: .9rem; }
  .map-card-line { font-size: .75rem; }
  .map-wrap { height: 380px; }

  .faq { padding: 70px var(--pad-x); }
  .faq-q { font-size: .92rem; padding: 16px 18px; }
  .faq-a p { padding: 0 18px 16px; font-size: .88rem; }

  .footer { padding: 60px var(--pad-x) 0; }
  .footer-watermark { font-size: 32vw; bottom: -10px; }
  .footer-logo-badge { width: 96px; height: 96px; }
  .footer-logo { width: 86px; height: 86px; }
  .footer-toll { font-size: 1.15rem; }
  .footer-strip { font-size: .75rem; gap: 6px; padding: 18px 0; }

  .reviews-deck, .reviews-deck.two { display: none; }
  .arrow-prev { left: -6px; }
  .arrow-next { right: -6px; }

  .ad-page {
    padding-bottom: 76px;
  }

  .ad-topbar {
    margin-top: 12px;
    padding: 0 14px;
  }
  .ad-topbar .brand-text { display: none; }
  .ad-topbar .phone-pill {
    margin-left: auto;
    font-size: .82rem;
  }

  .ad-hero {
    margin-top: 12px;
    padding: 18px 14px 44px;
  }
  .ad-hero-copy {
    border-radius: 20px;
    padding: 26px 20px;
  }
  .ad-hero h1 {
    font-size: 2.45rem;
  }
  .ad-lede {
    font-size: .98rem;
  }
  .ad-trust-row {
    gap: 8px;
  }
  .ad-trust-row span {
    font-size: .78rem;
    min-height: 30px;
    padding: 6px 10px;
  }
  .ad-hero-photo,
  .ad-hero-photo img {
    min-height: 230px;
  }

  .ad-form {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 20px;
    gap: 12px;
  }
  .ad-form-head h2 {
    font-size: 1.45rem;
  }
  .ad-form input,
  .ad-form select,
  .ad-form textarea {
    padding: 11px 12px;
  }

  .ad-proof,
  .ad-services,
  .ad-process,
  .ad-faq,
  .ad-final-cta {
    padding: 54px 14px;
  }
  .ad-proof-grid,
  .ad-service-grid,
  .ad-steps,
  .ad-faq-grid {
    grid-template-columns: 1fr;
  }

  .ad-sticky-mobile {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(14,31,71,.9);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .ad-sticky-mobile.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .ad-sticky-mobile a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    background: rgba(255,255,255,.12);
  }
  .ad-sticky-mobile a:last-child {
    background: var(--navy-700);
  }
}

/* Very narrow phones: drop the Creative PAINTING text so the phone pill stays on one line */
@media (max-width: 420px) {
  .brand-text { display: none; }
  .header-inner { gap: 6px; }
  .phone-pill { font-size: .78rem; padding: 8px 11px; }

  .eyebrow { font-size: .62rem; letter-spacing: .1em; }
  .hero h1 { font-size: 1.75rem; }

  .satisfied blockquote { font-size: .95rem; }
  .map-card { gap: 8px; }
  .map-card img { width: 42px; height: 42px; }

  .ad-hero h1 { font-size: 2.08rem; }
  .ad-kicker { letter-spacing: .13em; }
  .ad-photo-note {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 11px 12px;
  }
}

/* mobile menu toggle */
.mobile-nav.open { display: flex; }
