/* ============================================================
   Happy Gator Window Cleaning — Design System
   Brand: blue #055fa9 + green #3c8941 (sampled from logo)
   Audience: affluent Westside homeowners, 50+, low-tech.
   Priorities: clarity, large type, high contrast, trust,
   fast on any device, tasteful transform/opacity animation.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #14202b;
  --ink-soft: #4d5c68;
  --paper: #fcfdfd;
  --paper-muted: #eef2f3;
  --mist: #e9f5ea;
  --line: #dde5e6;

  --brand-950: #042f57;
  --brand-900: #054a86;
  --brand-700: #055fa9;
  --brand-500: #3d8fd0;
  --brand-100: #d8e9f5;

  --accent-600: #2c6930;
  --accent-500: #3c8941;
  --accent-300: #6cbf58;
  --accent-100: #def3e0;

  --star: #f6a623;
  --success: #1f7a52;
  --error: #b3492f;

  --container: 1120px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 1px 2px rgba(20, 32, 43, .04), 0 10px 28px -12px rgba(20, 32, 43, .16);
  --shadow-lift: 0 6px 12px rgba(20, 32, 43, .06), 0 26px 52px -16px rgba(20, 32, 43, .22);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);

  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1.125rem;          /* 18px base — comfortable for 50+ */
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.1; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); line-height: 1.2; }
h4 { font-size: 1.2rem; }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.15rem, 2.2vw, 1.4rem); line-height: 1.6; color: var(--ink-soft); }
.balance { text-wrap: balance; }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--muted { background: var(--paper-muted); border-block: 1px solid var(--line); }
.section--brand { background: var(--brand-950); color: #fff; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent-500); border-radius: 2px; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 1.15rem; }
.grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) and (max-width: 899px) { .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 14px 28px;
  font-weight: 700; font-size: 1.05rem; letter-spacing: .01em;
  border-radius: 12px; border: 2px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--brand-900); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--accent { background: var(--accent-500); color: #fff; box-shadow: var(--shadow-soft); }
.btn--accent:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--ghost { background: #fff; color: var(--brand-900); border-color: var(--line); box-shadow: var(--shadow-soft); }
.btn--ghost:hover { border-color: var(--brand-500); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--light { background: #fff; color: var(--brand-900); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--block { width: 100%; }
.btn--lg { min-height: 60px; font-size: 1.12rem; padding: 16px 34px; }

/* ---------- Trust strip / top bar ---------- */
.topbar {
  background: var(--brand-950); color: #dce9f4;
  font-size: .9rem; font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 44px; padding-block: 6px; }
.topbar__trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__trust span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar__trust svg { width: 16px; height: 16px; color: var(--accent-300); }
.topbar__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff; white-space: nowrap; }
.topbar__phone svg { width: 16px; height: 16px; color: var(--accent-300); }
@media (max-width: 720px) { .topbar__trust span:nth-child(n+3) { display: none; } }
@media (max-width: 520px) { .topbar__trust span:nth-child(n+2) { display: none; } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(252, 253, 253, .9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .25s var(--ease); }
.header.is-scrolled { box-shadow: var(--shadow-soft); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.brand-logo img { height: 44px; width: auto; }
@media (min-width: 640px) { .brand-logo img { height: 52px; } }
.nav { display: none; align-items: center; gap: 4px; }
.nav a { padding: 10px 14px; font-weight: 600; font-size: 1.02rem; color: var(--ink); border-radius: 10px; transition: color .15s, background-color .15s; }
.nav a:hover { color: var(--brand-700); background: var(--paper-muted); }
.nav a.active { color: var(--brand-700); }
.header__cta { display: none; align-items: center; gap: 12px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand-900); }
.header__phone svg { width: 18px; height: 18px; }
@media (min-width: 1000px) { .nav, .header__cta { display: flex; } }

/* Hamburger */
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--brand-900); }
.menu-toggle svg { width: 26px; height: 26px; }
@media (min-width: 1000px) { .menu-toggle { display: none; } }

/* Minimal header (standalone landing pages: no nav links, no hamburger,
   header__cta always visible) */
.header--minimal .header__cta { display: flex; }
@media (max-width: 519px) {
  .header--minimal .header__phone { padding: 10px; border-radius: 10px; }
  .header--minimal .header__phone-text { display: none; }
  .header--minimal .header__cta { gap: 8px; }
  .header--minimal .header__cta .btn { padding: 10px 16px; min-height: 40px; font-size: .92rem; }
}

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--paper); transform: translateX(100%); transition: transform .32s var(--ease-expo); display: flex; flex-direction: column; visibility: hidden; }
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding-inline: 20px; border-bottom: 1px solid var(--line); }
.mobile-menu__top img { height: 46px; width: auto; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 12px 20px; overflow-y: auto; }
.mobile-menu nav a { padding: 18px 8px; font-size: 1.3rem; font-weight: 600; font-family: var(--font-serif); border-bottom: 1px solid var(--line); }
.mobile-menu nav a.active { color: var(--brand-700); }
.mobile-menu__foot { margin-top: auto; padding: 20px; display: grid; gap: 12px; border-top: 1px solid var(--line); background: var(--paper-muted); }

/* ---------- Sticky mobile call bar ---------- */
.callbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); box-shadow: 0 -6px 20px -8px rgba(20,32,43,.25); padding-bottom: env(safe-area-inset-bottom); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 60px; font-weight: 700; font-size: 1.05rem; }
.callbar__call { background: #fff; color: var(--brand-900); }
.callbar__quote { background: var(--accent-500); color: #fff; }
.callbar svg { width: 20px; height: 20px; }
@media (min-width: 1000px) { .callbar { display: none; } }
body { padding-bottom: 61px; }
@media (min-width: 1000px) { body { padding-bottom: 0; } }

/* ---------- Stars / reviews ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 22px; height: 22px; }
.reviewpill {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px 10px 16px; box-shadow: var(--shadow-soft);
}
.reviewpill__num { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; line-height: 1; }
.reviewpill__meta { font-size: .9rem; color: var(--ink-soft); line-height: 1.3; }
.reviewpill__meta strong { display: block; color: var(--ink); }
.reviewpill .g { font-weight: 700; }
.reviewpill .g b:nth-child(1){color:#4285F4}.reviewpill .g b:nth-child(2){color:#EA4335}.reviewpill .g b:nth-child(3){color:#FBBC05}.reviewpill .g b:nth-child(4){color:#4285F4}.reviewpill .g b:nth-child(5){color:#34A853}.reviewpill .g b:nth-child(6){color:#EA4335}

/* ---------- Hero (full-bleed photo background; different image per breakpoint) ---------- */
/* mobile: content sits at the bottom, centered, over a scrim that rises from the base */
.hero { position: relative; overflow: hidden; background: var(--brand-950); color: #fff; display: flex; align-items: flex-end; min-height: 620px; min-height: 88svh; }
.hero__bg { display: block; position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 15%; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(4,47,87,.95) 6%, rgba(4,47,87,.88) 34%, rgba(4,47,87,.55) 66%, rgba(4,47,87,.22) 100%); }
.hero > .container { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 640px; margin-inline: auto; text-align: center; padding-block: clamp(28px, 7vw, 52px); }
.hero__sub { margin-inline: auto; }
.hero__assurance { justify-content: center; }
.hero__stars { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--ink); border-radius: 999px; padding: 7px 15px; box-shadow: var(--shadow-lift); font-size: .92rem; margin-bottom: 18px; }
.hero__stars .stars svg { width: 18px; height: 18px; }
.hero__stars strong { font-weight: 800; }
.hero h1 { color: #fff; }
.hero__sub { color: rgba(255,255,255,.9); font-size: 1.12rem; line-height: 1.5; margin-top: 14px; max-width: 44ch; }
.hero__eyebrow { color: var(--accent-300); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
/* phones: full-width stacked CTAs so they're easy to tap */
.hero__actions .btn { flex: 1 1 100%; }
/* tablet and up: natural width, side by side */
@media (min-width: 640px) { .hero__actions .btn { flex: 0 1 auto; } }
.hero__assurance { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 20px; color: rgba(255,255,255,.85); font-size: .96rem; font-weight: 500; }
.hero__assurance span { display: inline-flex; align-items: center; gap: 8px; }
.hero__assurance svg { width: 18px; height: 18px; color: var(--accent-300); }
@media (min-width: 900px) {
  .hero { align-items: center; min-height: min(92vh, 900px); }
  .hero__bg img { object-position: center center; }
  .hero__scrim { background: linear-gradient(100deg, rgba(4,47,87,.95) 0%, rgba(4,47,87,.72) 38%, rgba(4,47,87,.3) 70%, rgba(4,47,87,.06) 100%); }
  /* desktop keeps the original left-aligned layout */
  .hero__content { margin-inline: 0; text-align: left; padding-block: 60px; }
  .hero__sub { margin-inline: 0; }
  .hero__assurance { justify-content: flex-start; }
}

/* ---------- Trust badges row ---------- */
.trustrow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 760px) { .trustrow { grid-template-columns: repeat(4, 1fr); } }
.trustrow__item { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.trustrow__ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-100); color: var(--brand-900); }
.trustrow__ico svg { width: 24px; height: 24px; }
.trustrow__item b { font-size: 1rem; line-height: 1.25; color: var(--ink); }
.trustrow__item span { display: block; font-size: .85rem; color: var(--ink-soft); }

/* ---------- Service grid (centered flex so incomplete rows balance) ---------- */
.svc-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.svc-grid > .card { flex: 1 1 300px; max-width: 352px; }
@media (max-width: 660px) { .svc-grid > .card { flex-basis: 100%; max-width: 460px; } }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .22s var(--ease), box-shadow .22s var(--ease); height: 100%; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-muted); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card__ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--mist); color: var(--accent-600); margin-bottom: 14px; }
.card__ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card__body p { flex: 1; }
.card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand-700); }
.card__link svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* service list checks */
.checklist { display: grid; gap: 10px; margin-top: 6px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: 1rem; line-height: 1.5; }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--accent-500); margin-top: 1px; }

/* ---------- Us vs Them ---------- */
.compare { display: grid; gap: 20px; }
@media (min-width: 860px) { .compare { grid-template-columns: 1fr 1fr; gap: 24px; } }
.compare__col { border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); }
.compare__col--them { background: var(--paper-muted); }
.compare__col--us { background: linear-gradient(180deg, #fff, var(--mist)); border-color: var(--accent-300); box-shadow: var(--shadow-soft); position: relative; }
.compare__tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.compare__col--them .compare__tag { background: #e3e9ea; color: var(--ink-soft); }
.compare__col--us .compare__tag { background: var(--accent-500); color: #fff; }
.compare__col h3 { margin: 16px 0 4px; }
.compare__list { display: grid; gap: 14px; margin-top: 16px; }
.compare__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.05rem; line-height: 1.45; color: var(--ink); }
.compare__list svg { flex: none; width: 24px; height: 24px; margin-top: 1px; }
.compare__col--them .compare__list svg { color: #b0808f; }
.compare__col--us .compare__list svg { color: var(--accent-500); }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 22px; counter-reset: step; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 700px) { .steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-soft); }
.step__num { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-950); color: #fff; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; }
.step__stat { display: inline-block; margin-top: 18px; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-600); }
.step h3 { margin: 6px 0 8px; }

/* ============================================================
   HOLIDAY LIGHTS PAGE — night-lit, photo-forward, offer-led
   ============================================================ */

/* Offer hero: full-bleed night photo, offer headline sits on it */
.lights-hero { position: relative; overflow: hidden; background: #061426; color: #fff; display: flex; align-items: flex-end; min-height: 560px; min-height: 82svh; }
.lights-hero__bg { display: block; position: absolute; inset: 0; z-index: 0; }
.lights-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.lights-hero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(to top, rgba(6,20,38,.95) 6%, rgba(6,20,38,.8) 45%, rgba(6,20,38,.55) 76%, rgba(6,20,38,.24) 100%); }
.lights-hero > .container { position: relative; z-index: 2; width: 100%; padding-block: clamp(28px, 6vw, 60px); }
.lights-hero__eyebrow { color: var(--star); }
.lights-hero__eyebrow::before { background: var(--star); }
.lights-hero h1 { color: #fff; margin-top: 12px; max-width: 16ch; }
.lights-hero .gold { color: var(--star); }
.lights-hero__sub { color: rgba(255,255,255,.9); font-size: 1.12rem; line-height: 1.55; margin-top: 16px; max-width: 46ch; }
.lights-hero .breadcrumb { color: rgba(255,255,255,.65); }
/* phones stack the CTAs; cap the width so they don't stretch edge to edge */
.lights-hero .hero__actions { max-width: 460px; }
@media (min-width: 640px) { .lights-hero .hero__actions { max-width: none; } }
/* small Google 5-star badge, floated in the hero corner */
.lights-hero__google, .pagehero__google { position: absolute; z-index: 2; top: 20px; right: 20px; display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--ink); border-radius: 999px; padding: 9px 16px; box-shadow: var(--shadow-lift); font-size: .92rem; white-space: nowrap; }
.lights-hero__google .stars svg, .pagehero__google .stars svg { width: 15px; height: 15px; }
.lights-hero__google strong, .pagehero__google strong { font-weight: 800; }
@media (max-width: 640px) {
  .pagehero__google { top: 16px; right: 16px; padding: 7px 12px; font-size: .82rem; gap: 6px; }
  .pagehero__google .stars svg { width: 12px; height: 12px; }
}
/* On mobile the badge image is dropped in favour of a "5-Star Google Rating"
   chip in the assurance row, so the hero stays uncluttered on a small screen. */
.hero__assurance .assur-mobile { display: none; }
@media (max-width: 640px) {
  .lights-hero__google { display: none; }
  .hero__assurance .assur-desktop { display: none; }
  .hero__assurance .assur-mobile { display: inline-flex; }
}

/* Two seasons: photo cards, the FREE stamp carries the offer */
.seasons { display: grid; gap: 20px; max-width: 900px; margin-inline: auto; }
@media (min-width: 760px) { .seasons { grid-template-columns: 1fr 1fr; gap: 24px; } }
.season { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--brand-950); box-shadow: var(--shadow-lift); }
.season img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; display: block; }
.season__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff;
  background: linear-gradient(to top, rgba(6,20,38,.94) 25%, rgba(6,20,38,0)); }
.season__when { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-300); }
.season__body h3 { color: #fff; margin-top: 4px; }
.season__stamp { position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--star); color: #3a2600; font-weight: 800; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 999px; box-shadow: var(--shadow-lift); transform: rotate(3deg); }

/* Mock-up shot gets a small labelled tag so it reads as a mock-up */
.mockshot { position: relative; }
.mockshot__tag { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,20,38,.88); color: #fff; font-size: .88rem; font-weight: 600; padding: 9px 15px; border-radius: 999px; }
.mockshot__tag svg { width: 17px; height: 17px; color: var(--star); }
.lede-sm { font-size: 1.12rem; line-height: 1.6; margin-top: 14px; }

/* Photo proof strip */
.showcase { display: grid; gap: 14px; }
@media (min-width: 760px) { .showcase { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.showcase figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--paper-muted); box-shadow: var(--shadow-soft); }
.showcase img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; display: block; transition: transform .5s var(--ease); }
.showcase figure:hover img { transform: scale(1.05); }

/* Guarantee band */
.guarantee { position: relative; overflow: hidden; background: var(--brand-950); color: #fff; }
/* kept as a layer element (holiday theme repaints it as bokeh); no blueprint pattern */
.guarantee__grid { position: absolute; inset: 0; }
.guarantee .container { position: relative; padding-block: clamp(3rem, 7vw, 5rem); text-align: center; }
.guarantee__eyebrow { color: var(--star); justify-content: center; }
.guarantee__eyebrow::before { display: none; }
.guarantee h2 { color: #fff; margin-top: 12px; max-width: 20ch; margin-inline: auto; }
.guarantee p { color: rgba(255,255,255,.85); font-size: 1.12rem; margin-top: 14px; max-width: 52ch; margin-inline: auto; }
.gchips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.gchip { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 12px 20px; font-weight: 600; font-size: .98rem; }
.gchip svg { width: 20px; height: 20px; color: var(--accent-300); flex: none; }

/* ============================================================
   HOLIDAY LIGHTS — product line, colour picker, offer strip
   ============================================================ */

/* Offer strip — quiet, premium nudge toward the Halloween bundle */
.offerstrip { display: block; background: linear-gradient(100deg, var(--brand-950), #0a3a68); color: #fff; border-radius: var(--radius-lg); padding: 22px 24px; box-shadow: var(--shadow-lift); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.offerstrip:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.offerstrip__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.offerstrip__tag { flex: none; background: var(--star); color: #3a2600; font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }
.offerstrip__text { flex: 1 1 260px; min-width: 0; }
.offerstrip__text b { display: block; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; }
.offerstrip__text span { display: block; margin-top: 4px; color: rgba(255,255,255,.82); font-size: 1rem; }
.offerstrip__go { flex: none; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--star); }
.offerstrip__go svg { width: 18px; height: 18px; }

/* Picture-led process steps */
.howgrid { display: grid; gap: 22px; }
@media (min-width: 900px) { .howgrid { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.howstep { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); height: 100%; }
.howstep__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-muted); }
.howstep__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.howstep__num { position: absolute; left: 14px; bottom: 14px; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--brand-950); color: #fff; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; box-shadow: var(--shadow-lift); }
.howstep__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.howstep__body h3 { margin: 6px 0 8px; font-size: 1.3rem; }
.howstep__body p { flex: 1; }

/* Colour picker */
.picker { max-width: 940px; margin-inline: auto; }
.picker__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 28px; }
.picker__chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 2px solid var(--line); border-radius: 999px; padding: 9px 17px 9px 11px; font-weight: 600; font-size: .98rem; color: var(--ink); min-height: 46px; transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease); }
.picker__chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.picker__chip.is-active { border-color: var(--brand-700); box-shadow: 0 0 0 3px var(--brand-100); }
.picker__dot { width: 22px; height: 22px; border-radius: 999px; flex: none; background: var(--chip, #ccc); border: 1px solid rgba(0,0,0,.15); box-shadow: inset 0 -2px 4px rgba(0,0,0,.15); }
.picker__stage { display: grid; gap: 18px; }
@media (min-width: 720px) { .picker__stage { grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: stretch; } }
.picker__panel { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #0d1a26; box-shadow: var(--shadow-lift); }
.picker__panel img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; display: block; }
.picker__panel--bulb { background: #fff; }
.picker__panel--bulb img { object-fit: contain; padding: 14px; }
.picker__cap { position: absolute; left: 12px; bottom: 12px; background: rgba(6,20,38,.86); color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.picker__panel--bulb .picker__cap { background: rgba(20,32,43,.08); color: var(--ink-soft); }
.picker__meta { margin-top: 20px; text-align: center; }
.picker__meta b { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); }
.picker__meta span { display: block; margin-top: 6px; color: var(--ink-soft); font-size: 1.05rem; }

/* Popular combinations — static row of roofline shots */
.combos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 780px; margin-inline: auto; }
@media (min-width: 720px) { .combos { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.combo { margin: 0; border-radius: var(--radius); overflow: hidden; background: #0d1a26; box-shadow: var(--shadow-soft); }
.combo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.combo figcaption { padding: 11px 12px; font-size: .92rem; font-weight: 600; color: #fff; background: #0d1a26; text-align: center; }

/* Quiet cross-link (e.g. "Looking for Halloween lights?") */
.quietline { margin-top: 26px; text-align: center; font-size: 1rem; color: var(--ink-soft); }
.quietlink { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--brand-700); border-bottom: 1px solid rgba(5,95,169,.35); padding-bottom: 1px; transition: border-color .15s var(--ease), color .15s var(--ease); }
.quietlink:hover { color: var(--brand-900); border-bottom-color: var(--brand-900); }
.quietlink svg { width: 16px; height: 16px; }

/* Product line cards */
.prodgrid { display: grid; gap: 20px; }
@media (min-width: 700px) { .prodgrid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1040px) { .prodgrid { grid-template-columns: repeat(3, 1fr); } }
.prod { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); height: 100%; }
.prod__media { background: #0d1a26; aspect-ratio: 4 / 3; overflow: hidden; }
.prod__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod__media--white { background: #fff; }
.prod__media--white img { object-fit: contain; padding: 16px; }
.prod__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.prod__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.prod__body p { flex: 1; }
.prod__opts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.prod__opt { font-size: .85rem; font-weight: 600; background: var(--paper-muted); color: var(--ink); border-radius: 999px; padding: 6px 12px; }

/* Size row (wreaths) */
.sizes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.size { display: inline-flex; align-items: baseline; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-weight: 700; box-shadow: var(--shadow-soft); }
.size span { font-size: .85rem; font-weight: 500; color: var(--ink-soft); }

/* Spec / assurance bar */
.specs { display: grid; gap: 16px; }
@media (min-width: 700px) { .specs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .specs { grid-template-columns: repeat(4, 1fr); } }
.spec { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 20px; }
.spec svg { flex: none; width: 24px; height: 24px; color: var(--accent-300); margin-top: 2px; }
.spec b { display: block; color: #fff; font-size: 1.05rem; }
.spec span { display: block; margin-top: 5px; color: rgba(255,255,255,.78); font-size: .96rem; line-height: 1.5; }

/* ============================================================
   FESTIVE THEME — holiday pages only (.theme-holiday)
   Deep midnight + warm gold, with a soft drifting bokeh of
   out-of-focus lights replacing the blueprint grid.
   ============================================================ */
.theme-holiday {
  --festive-bg: linear-gradient(175deg, #08182f 0%, #061225 55%, #040d1c 100%);
  --festive-gold: #f0c67e;
  --festive-glow: rgba(240,198,126,.9);
}

/* dark sections take the midnight gradient */
.theme-holiday .lights-hero,
.theme-holiday .pagehero,
.theme-holiday .section--brand,
.theme-holiday .guarantee,
.theme-holiday .ctaband { background: var(--festive-bg); }

/* the blueprint grid layers become bokeh — no markup change needed */
.theme-holiday .pagehero__grid,
.theme-holiday .guarantee__grid,
.theme-holiday .ctaband__grid {
  opacity: 1;
  background-image: none;
  overflow: hidden;
}
.theme-holiday .pagehero__grid::before,
.theme-holiday .guarantee__grid::before,
.theme-holiday .ctaband__grid::before,
.theme-holiday .pagehero__grid::after,
.theme-holiday .guarantee__grid::after,
.theme-holiday .ctaband__grid::after {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background-repeat: no-repeat;
  will-change: transform;
}
/* far layer — small, dim, drifts slowly right */
.theme-holiday .pagehero__grid::before,
.theme-holiday .guarantee__grid::before,
.theme-holiday .ctaband__grid::before {
  background-image:
    radial-gradient(circle 10px at 6% 22%,  rgba(240,198,126,.34), transparent 70%),
    radial-gradient(circle 14px at 19% 68%, rgba(240,198,126,.28), transparent 70%),
    radial-gradient(circle  8px at 31% 12%, rgba(255,236,205,.36), transparent 70%),
    radial-gradient(circle 12px at 44% 82%, rgba(240,198,126,.25), transparent 70%),
    radial-gradient(circle  9px at 57% 34%, rgba(255,236,205,.30), transparent 70%),
    radial-gradient(circle 15px at 70% 74%, rgba(240,198,126,.26), transparent 70%),
    radial-gradient(circle 10px at 83% 26%, rgba(255,236,205,.20), transparent 70%),
    radial-gradient(circle 12px at 94% 60%, rgba(240,198,126,.28), transparent 70%);
  animation: bokeh-drift-a 46s ease-in-out infinite alternate,
             bokeh-breathe 13s ease-in-out infinite;
}
/* near layer — larger, softer, drifts the other way */
.theme-holiday .pagehero__grid::after,
.theme-holiday .guarantee__grid::after,
.theme-holiday .ctaband__grid::after {
  background-image:
    radial-gradient(circle 34px at 13% 48%, rgba(240,198,126,.17), transparent 72%),
    radial-gradient(circle 26px at 37% 22%, rgba(255,236,205,.16), transparent 72%),
    radial-gradient(circle 40px at 62% 62%, rgba(240,198,126,.16), transparent 72%),
    radial-gradient(circle 28px at 88% 16%, rgba(255,236,205,.18), transparent 72%),
    radial-gradient(circle 32px at 76% 92%, rgba(240,198,126,.15), transparent 72%);
  animation: bokeh-drift-b 62s ease-in-out infinite alternate,
             bokeh-breathe 18s ease-in-out infinite;
}
/* noticeable if you watch, quiet if you don't */
@keyframes bokeh-drift-a {
  0%   { transform: translate3d(-3.5%, 2%, 0) scale(1); }
  50%  { transform: translate3d(2%, -2.5%, 0) scale(1.03); }
  100% { transform: translate3d(4%, 1.5%, 0) scale(1); }
}
@keyframes bokeh-drift-b {
  0%   { transform: translate3d(3%, -1.5%, 0) scale(1.025); }
  50%  { transform: translate3d(-2.5%, 2.5%, 0) scale(1); }
  100% { transform: translate3d(-4%, -2%, 0) scale(1.025); }
}
@keyframes bokeh-breathe { 0%, 100% { opacity: .72; } 50% { opacity: 1; } }

/* gold accents on the festive dark sections */
.theme-holiday .guarantee__eyebrow,
.theme-holiday .section--brand .eyebrow,
.theme-holiday .lights-hero__eyebrow { color: var(--festive-gold); }
.theme-holiday .lights-hero__eyebrow::before,
.theme-holiday .guarantee__eyebrow::before { background: var(--festive-gold); }
.theme-holiday .spec svg,
.theme-holiday .gchip svg,
.theme-holiday .hero__assurance svg { color: var(--festive-gold); }
.theme-holiday .spec { border-color: rgba(240,198,126,.22); background: rgba(240,198,126,.06); }
.theme-holiday .gchip { border-color: rgba(240,198,126,.28); background: rgba(240,198,126,.15); }
.theme-holiday .guarantee-seal { border-color: rgba(240,198,126,.3); background: rgba(240,198,126,.1); }
.theme-holiday .guarantee-seal svg { color: var(--festive-gold); }

/* headline gets the faintest warm halo so it reads "lit" */
.theme-holiday .lights-hero h1,
.theme-holiday .guarantee h2,
.theme-holiday .ctaband h2 { text-shadow: 0 0 42px rgba(240,198,126,.18); }

/* HALLOWEEN key — same system, orange/purple */
.theme-halloween {
  --festive-bg: linear-gradient(175deg, #1b0d2e 0%, #120821 55%, #0b0517 100%);
  --festive-gold: #f0913f;
}
.theme-halloween .pagehero__grid::before,
.theme-halloween .guarantee__grid::before,
.theme-halloween .ctaband__grid::before {
  background-image:
    radial-gradient(circle 10px at 6% 22%,  rgba(240,145,63,.22), transparent 70%),
    radial-gradient(circle 14px at 19% 68%, rgba(169,112,232,.20), transparent 70%),
    radial-gradient(circle  8px at 31% 12%, rgba(240,145,63,.24), transparent 70%),
    radial-gradient(circle 12px at 44% 82%, rgba(169,112,232,.16), transparent 70%),
    radial-gradient(circle  9px at 57% 34%, rgba(240,145,63,.20), transparent 70%),
    radial-gradient(circle 15px at 70% 74%, rgba(169,112,232,.18), transparent 70%),
    radial-gradient(circle 10px at 83% 26%, rgba(240,145,63,.22), transparent 70%),
    radial-gradient(circle 12px at 94% 60%, rgba(169,112,232,.18), transparent 70%);
}
.theme-halloween .pagehero__grid::after,
.theme-halloween .guarantee__grid::after,
.theme-halloween .ctaband__grid::after {
  background-image:
    radial-gradient(circle 34px at 13% 48%, rgba(240,145,63,.11), transparent 72%),
    radial-gradient(circle 26px at 37% 22%, rgba(169,112,232,.11), transparent 72%),
    radial-gradient(circle 40px at 62% 62%, rgba(240,145,63,.09), transparent 72%),
    radial-gradient(circle 28px at 88% 16%, rgba(169,112,232,.12), transparent 72%),
    radial-gradient(circle 32px at 76% 92%, rgba(240,145,63,.08), transparent 72%);
}

/* ---------- Stat band (big numbers on dark) ---------- */
.statband { position: relative; overflow: hidden; background: var(--brand-950); color: #fff; }
.statband__grid { position: absolute; inset: 0; }
.statband .container { position: relative; padding-block: clamp(2.75rem, 7vw, 4.5rem); }
.stats { display: grid; gap: 22px; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.stat { text-align: center; padding: 4px; }
.stat__num { display: block; font-family: var(--font-serif); font-weight: 600; line-height: 1;
  font-size: clamp(3rem, 9vw, 4.25rem); color: var(--accent-300); letter-spacing: -.02em; }
.stat__label { display: block; margin-top: 12px; font-size: 1.12rem; font-weight: 700; color: #fff; }
.stat__note { display: block; margin-top: 8px; font-size: .98rem; line-height: 1.5; color: rgba(255,255,255,.78); max-width: 34ch; margin-inline: auto; }
.statband__note { margin-top: 30px; text-align: center; font-size: .88rem; color: rgba(255,255,255,.55); max-width: 62ch; margin-inline: auto; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--paper-muted); box-shadow: var(--shadow-soft); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--tall img { aspect-ratio: 1 / 2.06; }
@media (max-width: 699px) { .gallery__item--tall { grid-row: span 1; } .gallery__item--tall img { aspect-ratio: 1/1; } }

/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 22px; }
@media (min-width: 820px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.review .stars { margin-bottom: 14px; }
.review__quote { font-size: 1.08rem; line-height: 1.6; color: var(--ink); flex: 1; }
.review__who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; background: var(--brand-100); color: var(--brand-900); font-weight: 700; font-family: var(--font-serif); }
.review__who b { display: block; color: var(--ink); }
.review__who span { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Service area ---------- */
.arealist { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.arealist li { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-weight: 600; box-shadow: var(--shadow-soft); }
.arealist svg { width: 18px; height: 18px; color: var(--accent-500); }

/* ---------- CTA banner ---------- */
.ctaband { position: relative; overflow: hidden; background: var(--brand-950); color: #fff; }
.ctaband__grid { position: absolute; inset: 0; z-index: 1; }
/* photo background behind the CTA band, with a scrim so white text stays legible */
.ctaband__bg { position: absolute; inset: 0; z-index: 0; }
.ctaband__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.ctaband__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4,47,87,.94) 0%, rgba(4,47,87,.88) 45%, rgba(4,47,87,.74) 100%); }
/* holiday pages keep their festive bokeh treatment instead of the photo */
.theme-holiday .ctaband__bg { display: none; }
.ctaband .container { position: relative; z-index: 2; padding-block: clamp(3rem, 7vw, 5rem); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.ctaband h2 { color: #fff; }
.ctaband p { color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.2rem; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }
.ctaband__phone { display: inline-flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 700; color: #fff; }
.ctaband__phone svg { width: 24px; height: 24px; color: var(--accent-300); }
.guarantee-seal { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 8px 18px; font-weight: 600; font-size: .95rem; }
.guarantee-seal svg { width: 20px; height: 20px; color: var(--accent-300); }

/* ---------- Page hero (interior pages) ---------- */
.pagehero { background: var(--brand-950); color: #fff; position: relative; overflow: hidden; }
.pagehero__grid { position: absolute; inset: 0; }
.pagehero .container { position: relative; z-index: 2; padding-block: clamp(2.8rem, 6vw, 4.5rem); }
/* optional photo background behind an interior page hero */
.pagehero__bg { display: block; position: absolute; inset: 0; z-index: 0; }
.pagehero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.pagehero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(100deg, rgba(4,47,87,.93) 0%, rgba(4,47,87,.84) 42%, rgba(4,47,87,.5) 74%, rgba(4,47,87,.24) 100%); }
.pagehero:has(.pagehero__bg) .pagehero__grid { z-index: 1; }
@media (max-width: 760px) {
  .pagehero__scrim { background: linear-gradient(to bottom, rgba(4,47,87,.9) 0%, rgba(4,47,87,.86) 55%, rgba(4,47,87,.78) 100%); }
}
.pagehero .eyebrow { color: var(--accent-300); }
.pagehero .eyebrow::before { background: var(--accent-300); }
.pagehero h1 { color: #fff; margin-top: 14px; max-width: 18ch; }
.pagehero p { color: rgba(255,255,255,.85); margin-top: 16px; max-width: 60ch; font-size: 1.18rem; }
.breadcrumb { display: flex; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Contact hero (CTA-first) ---------- */
.contact-hero { display: grid; gap: 32px; align-items: start; }
@media (min-width: 920px) { .contact-hero { grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; } }
.contact-hero__intro h1 { margin-top: 12px; }
.contact-hero__intro p { margin: 16px 0 24px; font-size: 1.15rem; }
.contact-hero__form .formcard { box-shadow: var(--shadow-lift); }
/* clear the sticky header when jumping to the form via #quote */
.contact-hero__form[id] { scroll-margin-top: 96px; }

/* ---------- Split feature ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split--flip .split__media { order: 2; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-top: 14px; }
.split p { margin-top: 16px; }
.split .checklist { margin-top: 22px; }

/* ---------- Forms ---------- */
.formcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lift); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 8px; font-size: 1rem; }
.field .req { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 14px 16px; font: inherit; font-size: 1.05rem;
  color: var(--ink); background: var(--paper); border: 2px solid var(--line); border-radius: 12px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px var(--brand-100); }
.field__hint { margin-top: 6px; font-size: .9rem; color: var(--ink-soft); }
.field--error input, .field--error select, .field--error textarea { border-color: var(--error); }
.field__err { display: none; margin-top: 6px; font-size: .9rem; color: var(--error); font-weight: 600; }
.field--error .field__err { display: block; }
.form-row { display: grid; gap: 0; }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; gap: 20px; } }
.form-note { font-size: .92rem; color: var(--ink-soft); margin-top: 4px; }
.form-status { display: none; padding: 16px 20px; border-radius: 12px; font-weight: 600; margin-bottom: 20px; }
.form-status.show { display: block; }
.form-status--ok { background: var(--accent-100); color: var(--accent-600); border: 1px solid var(--accent-300); }
.form-status--err { background: #fbe9e4; color: var(--error); border: 1px solid #e6b6a8; }

/* ---------- Info tiles (contact) ---------- */
.infotile { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.infotile__ico { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-100); color: var(--brand-900); }
.infotile__ico svg { width: 24px; height: 24px; }
.infotile b { display: block; color: var(--ink); font-size: 1.05rem; }
.infotile a { color: var(--brand-700); font-weight: 600; }
.infotile p { font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); background: none; }
.faq__q svg { flex: none; width: 24px; height: 24px; color: var(--brand-700); transition: transform .25s var(--ease); }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a-inner { padding: 0 22px 22px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; }

/* ---------- Pricing factors ---------- */
.factor { display: flex; gap: 16px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); height: 100%; }
.factor__ico { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--mist); color: var(--accent-600); }
.factor__ico svg { width: 28px; height: 28px; }
.factor h3 { font-size: 1.2rem; margin-bottom: 6px; }
.factor p { font-size: 1rem; }

/* pricing plans */
.plans { display: grid; gap: 20px; max-width: 760px; margin-inline: auto; }
@media (min-width: 700px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-soft); position: relative; }
.plan--featured { border: 2px solid var(--accent-500); box-shadow: var(--shadow-lift); }
.plan__flag { position: absolute; top: -14px; left: 30px; background: var(--accent-500); color: #fff; font-weight: 700; font-size: .8rem; padding: 6px 14px; border-radius: 999px; }
.plan__freq { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-700); }
.plan h3 { margin: 8px 0; font-size: 1.7rem; }

/* ---------- Footer ---------- */
.footer { background: #0c1a26; color: #b7c6d2; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer a { color: #b7c6d2; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer__links { display: grid; gap: 12px; }
.footer__logo { background: #fff; padding: 14px 16px; border-radius: 14px; display: inline-block; }
.footer__logo img { height: 46px; width: auto; }
.footer__blurb { margin-top: 18px; font-size: .98rem; line-height: 1.6; max-width: 34ch; }
.footer__phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 1.25rem; margin-top: 18px; }
.footer__phone svg { width: 22px; height: 22px; color: var(--accent-300); }
.footer__contact { display: grid; gap: 12px; margin-top: 4px; font-size: .98rem; }
.footer__contact li { display: flex; gap: 10px; }
.footer__contact svg { flex: none; width: 20px; height: 20px; color: var(--accent-300); margin-top: 2px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .9rem; color: #8ea3b3; }
.footer__badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__badges span { display: inline-flex; align-items: center; gap: 7px; }
.footer__badges svg { width: 16px; height: 16px; color: var(--accent-300); }

/* ---------- Scroll reveal (progressive enhancement) ---------- */
/* Content is visible by default. Only hidden when JS is active (html.js),
   so a JS/observer failure can never leave sections blank. */
.reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Highlighter sweep — a marker stroke wipes across the phrase once the
   surrounding .reveal block scrolls into view. Uses an animated
   background-size (not a positioned box) so a phrase that wraps across
   lines gets a correct stroke on each line via box-decoration-break. */
.mark-hl {
  background-image: linear-gradient(
    transparent 6%, var(--accent-300) 6%,
    var(--accent-300) 93%, transparent 93%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-inline: .08em;
  border-radius: .08em;
}
.js .reveal .mark-hl { background-size: 0% 100%; }
.js .reveal.is-visible .mark-hl {
  animation: markSweep .8s cubic-bezier(.22,.61,.36,1) .35s forwards;
}
/* No JS: paint the highlight statically rather than never showing it. */
html:not(.js) .mark-hl { background-size: 100% 100%; }
@keyframes markSweep { to { background-size: 100% 100%; } }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.stack-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.center-actions { justify-content: center; }
.muted { color: var(--ink-soft); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--brand-900); color: #fff; padding: 12px 18px; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { animation: none; transform: none; }
  /* keep the highlight, drop the sweep */
  .mark-hl, .js .reveal .mark-hl { background-size: 100% 100% !important; animation: none !important; }
}
