/* ==========================================================================
   All Improvement Cleaning Services (AICS): global stylesheet
   One shared stylesheet powers every page. Design tokens live in :root so the
   whole palette can be re-skinned from one place.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  --brand:        #0e5aa7;   /* deep, trustworthy blue          */
  --brand-dark:   #083f78;
  --brand-darker: #062c56;
  --accent:       #12b981;   /* fresh green = clean & renewed   */
  --accent-dark:  #0d9668;
  --ink:          #10233a;   /* primary text                    */
  --muted:        #55697d;   /* secondary text                  */
  --line:         #e3ecf3;   /* hairline borders                */
  --bg:           #ffffff;
  --bg-soft:      #f3f8fc;   /* section tint                    */
  --bg-tint:      #eaf3fb;
  --white:        #ffffff;
  --star:         #f5a524;

  --shadow-sm: 0 1px 2px rgba(16, 35, 58, .06), 0 2px 8px rgba(16, 35, 58, .05);
  --shadow-md: 0 8px 24px rgba(16, 35, 58, .10);
  --shadow-lg: 0 24px 60px rgba(16, 35, 58, .16);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Poppins", var(--font-body);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--ink); letter-spacing: -.01em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { color: var(--muted); }
ul { padding-left: 1.1rem; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* --- Layout helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--soft { background: var(--bg-soft); }
.section--ink  { background: var(--brand-darker); color: #dbe7f2; }
.section--ink h2, .section--ink h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 14px;
}
.section--ink .eyebrow { color: #6ee7b7; }
.lead { font-size: 1.12rem; color: var(--muted); }
.section--ink .lead { color: #b8cbde; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--accent); color: #04321f; box-shadow: 0 8px 20px rgba(18, 185, 129, .35); }
.btn--primary:hover { background: var(--accent-dark); color: #04321f; box-shadow: 0 12px 26px rgba(18, 185, 129, .45); }
.btn--brand { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(14, 90, 167, .3); }
.btn--brand:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); background: var(--bg-tint); }
.btn--light { background: #fff; color: var(--brand-dark); }
.btn--light:hover { background: #eef5fb; color: var(--brand-dark); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* --- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.15rem; letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand__logo { width: 42px; height: 42px; flex: none; }
.brand__name small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: -3px; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links > li { position: relative; }
.nav__links a { display: inline-flex; align-items: center; gap: 5px; padding: 9px 14px; border-radius: 10px; color: var(--ink); font-weight: 500; font-size: .97rem; }
.nav__links a:hover { background: var(--bg-tint); color: var(--brand-dark); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--brand); background: var(--bg-tint); }
.nav__links .btn { display: none; }  /* mobile-only CTA, revealed in the small-screen menu */

/* dropdown */
.has-menu > a svg { width: 14px; height: 14px; transition: transform .2s ease; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 288px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-menu:hover > a svg, .has-menu:focus-within > a svg { transform: rotate(180deg); }
.dropdown a { display: flex; flex-direction: column; gap: 1px; padding: 10px 12px; border-radius: 10px; }
.dropdown a span { font-weight: 600; font-size: .96rem; color: var(--ink); }
.dropdown a small { color: var(--muted); font-size: .82rem; font-weight: 400; }
.dropdown a:hover span { color: var(--brand-dark); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav__toggle svg { width: 28px; height: 28px; }

@media (max-width: 940px) {
  .nav__actions .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 14px var(--gutter) 24px; max-height: calc(100dvh - 74px); overflow-y: auto;
    transform: translateY(-120%); transition: transform .28s ease; visibility: hidden;
  }
  .nav[data-open="true"] .nav__links { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 12px 12px; font-size: 1.05rem; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 14px;
    min-width: 0; padding: 2px 0;
  }
  .dropdown a { padding: 8px 12px; }
  .dropdown a small { display: none; }
  .nav__links .btn--primary { display: inline-flex; margin-top: 10px; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; color: #eaf3fb; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(18,185,129,.28), transparent 55%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 55%, var(--brand-darker) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.12) 0, transparent 2px),
    radial-gradient(circle at 68% 62%, rgba(255,255,255,.10) 0, transparent 2px),
    radial-gradient(circle at 90% 25%, rgba(255,255,255,.10) 0, transparent 2px),
    radial-gradient(circle at 35% 82%, rgba(255,255,255,.10) 0, transparent 2px);
  background-size: 240px 240px, 300px 300px, 200px 200px, 260px 260px;
}
.hero__grid {
  position: relative; z-index: 1; display: grid; gap: clamp(32px, 5vw, 60px);
  grid-template-columns: 1.15fr .85fr; align-items: center;
  padding-block: clamp(56px, 8vw, 96px);
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.08; }
.hero h1 em { font-style: normal; color: #6ee7b7; }
.hero__sub { font-size: 1.18rem; color: #cfe0f0; margin-top: 18px; max-width: 44ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px 28px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__trust div { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: #d7e6f4; font-weight: 500; }
.hero__trust svg { width: 20px; height: 20px; color: #6ee7b7; flex: none; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* --- Quote card (hero form) --------------------------------------------- */
.quote-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 30px);
}
.quote-card h2 { font-size: 1.4rem; }
.quote-card p.small { font-size: .9rem; margin-top: 4px; }
.form-field { margin-top: 14px; }
.form-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: #fbfdff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14,90,167,.14);
}
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* --- SMS consent (A2P 10DLC) ------------------------------------------- */
/* Small but must stay legible: carriers review this. Do not drop below .78rem. */
.consent { border: 1px solid var(--line); border-radius: 12px; padding: 14px 14px 4px; margin-top: 16px; background: #fbfdff; }
.consent legend { font-size: .8rem; font-weight: 600; color: var(--ink); padding: 0 6px; font-family: var(--font-head); }
.consent__item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; cursor: pointer; }
.consent__item input[type="checkbox"] { margin: 3px 0 0; width: 16px; height: 16px; flex: none; accent-color: var(--brand); cursor: pointer; }
.consent__item span { font-size: .78rem; line-height: 1.5; color: var(--muted); }
.consent__links { font-size: .78rem; margin-top: 10px; color: var(--muted); }
.consent__links a { font-weight: 600; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 11px; font-size: .92rem; font-weight: 500; display: none; }
.form-status.is-ok  { display: block; background: #e7f9f1; color: #0a7a53; border: 1px solid #bfeeda; }

/* --- Trust strip --------------------------------------------------------- */
.strip { background: var(--brand-darker); color: #cfe0f0; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding-block: 20px; text-align: center; }
.strip__row div { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }
.strip__row svg { width: 20px; height: 20px; color: #6ee7b7; }

/* --- Section heading block ---------------------------------------------- */
.head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 52px); }
.head.center { margin-inline: auto; }

/* --- Cards / services grid ---------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.service-card { text-decoration: none; color: inherit; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe0f0; text-decoration: none; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--bg-tint), #dff3ea); color: var(--brand); margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; }
.card__link { margin-top: auto; padding-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .card__link { gap: 10px; }
.card__link svg { width: 15px; height: 15px; transition: transform .2s ease; }

/* --- Feature / two-column --------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, var(--brand), var(--brand-darker));
  aspect-ratio: 4 / 3; position: relative; color: #cfe0f0;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame > iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
/* keep standing subjects (people) from having their heads cropped */
.media-frame img.pos-top { object-position: center top; }
/* placeholder look when no photo present */
.media-frame--ph { display: grid; place-items: center; text-align: center; padding: 24px; }
.media-frame--ph svg { width: 64px; height: 64px; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.media-frame--ph span { font-size: .85rem; color: rgba(255,255,255,.7); max-width: 24ch; }

/* caption under the service-area map */
.map-caption { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: .9rem; font-weight: 500; color: var(--muted); }
.map-caption svg { width: 16px; height: 16px; color: var(--accent-dark); flex: none; }

/* in-body service photo (service page Overview sections) */
.svc-photo {
  margin: 26px 0 4px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 16 / 10; background: var(--bg-tint);
}
.svc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Portrait sources get center-cropped by the 16:10 frame. These nudge the visible
   band so the actual subject survives the crop. Re-check if you swap the photo. */
.svc-photo img.pos-low { object-position: center 85%; }
.svc-photo img.pos-high { object-position: center 15%; }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.check-list li svg { width: 22px; height: 22px; color: var(--accent-dark); flex: none; margin-top: 2px; }
.check-list li span { color: var(--muted); font-weight: 400; display: block; font-size: .93rem; margin-top: 1px; }

/* --- Steps --------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
/* 3-up variant. Declared before the breakpoints below so they still collapse it
   on small screens (don't set this inline: inline styles beat media queries). */
.steps--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { font-size: .94rem; }

/* --- Stats --------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; line-height: 1; }
.stat span { font-size: .9rem; color: #b8cbde; margin-top: 8px; display: block; }

/* --- Testimonials -------------------------------------------------------- */
.quote-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote-item .stars { display: flex; gap: 2px; margin-bottom: 12px; }
.quote-item .stars svg { width: 18px; height: 18px; color: var(--star); }
.quote-item blockquote { margin: 0; font-size: 1rem; color: var(--ink); }
.quote-item figcaption { margin-top: 16px; font-size: .88rem; color: var(--muted); }
.quote-item figcaption b { color: var(--ink); font-family: var(--font-head); }

/* --- Areas served -------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: var(--radius-pill); background: var(--bg-tint); color: var(--brand-dark); font-weight: 600; font-size: .92rem; }
.chip svg { width: 15px; height: 15px; color: var(--accent-dark); }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-head); font-weight: 600;
  font-size: 1.04rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 12px; height: 12px; flex: none; border-right: 2.5px solid var(--brand); border-bottom: 2.5px solid var(--brand);
  transform: rotate(45deg); transition: transform .2s ease; margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq-item summary:hover { color: var(--brand-dark); }
.faq-item .faq-body { padding: 0 22px 20px; }
.faq-item .faq-body p { margin: 0; }

/* --- CTA band ------------------------------------------------------------ */
.cta-band {
  background:
    radial-gradient(120% 140% at 90% 10%, rgba(18,185,129,.32), transparent 55%),
    linear-gradient(150deg, var(--brand), var(--brand-darker));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe0f0; max-width: 52ch; margin-inline: auto; margin-top: 12px; }
.cta-band .btn-row { margin-top: 28px; justify-content: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Breadcrumbs --------------------------------------------------------- */
.crumbs { font-size: .86rem; color: var(--muted); padding-block: 16px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li::after { content: "/"; color: var(--line); }
.crumbs li:last-child::after { content: none; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.crumbs [aria-current] { color: var(--ink); font-weight: 500; }

/* --- Service page intro (subhero) --------------------------------------- */
.subhero { background: linear-gradient(160deg, var(--brand-darker), var(--brand-dark)); color: #eaf3fb; position: relative; overflow: hidden; }
.subhero::after {
  content: ""; position: absolute; inset: 0; opacity: .4;
  background-image: radial-gradient(circle at 15% 30%, rgba(255,255,255,.10) 0, transparent 2px), radial-gradient(circle at 80% 70%, rgba(255,255,255,.10) 0, transparent 2px);
  background-size: 220px 220px, 260px 260px;
}
.subhero__inner { position: relative; z-index: 1; padding-block: clamp(40px, 6vw, 72px); max-width: 760px; }
.subhero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); }
.subhero p { color: #cfe0f0; font-size: 1.12rem; margin-top: 14px; }
.subhero .btn-row { margin-top: 26px; }
.subhero .crumbs { color: #a9c4dc; padding-top: 0; }
.subhero .crumbs a { color: #cfe0f0; }
.subhero .crumbs li::after { color: rgba(255,255,255,.3); }
.subhero .crumbs [aria-current] { color: #fff; }

/* --- Prose (rich text sections) ----------------------------------------- */
.prose h2 { margin-top: 8px; }
.prose h3 { margin-top: 28px; margin-bottom: 8px; }
.prose p { margin-top: 14px; }
.prose ul { margin-top: 14px; display: grid; gap: 9px; }
.prose ul li { color: var(--muted); }
.prose strong { color: var(--ink); }

/* pricing table */
.ptable { width: 100%; border-collapse: collapse; margin-top: 22px; font-size: .96rem; box-shadow: var(--shadow-sm); border-radius: var(--radius); overflow: hidden; }
.ptable th, .ptable td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.ptable thead th { background: var(--brand-darker); color: #fff; font-family: var(--font-head); font-size: .9rem; }
.ptable tbody tr:nth-child(even) { background: var(--bg-soft); }
/* Emphasise the last body column only. Scoped to tbody so it can't override the
   white <thead> text and render the final header cell invisible. */
.ptable tbody td:last-child { font-weight: 600; color: var(--ink); }
.ptable caption { caption-side: bottom; font-size: .8rem; color: var(--muted); padding-top: 10px; text-align: left; }
.table-wrap { overflow-x: auto; }

/* --- Sidebar quote box (service pages) ---------------------------------- */
.layout-aside { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
@media (max-width: 900px) { .layout-aside { grid-template-columns: 1fr; } }
.sticky-box { position: sticky; top: 96px; }
.aside-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.aside-card h3 { font-size: 1.2rem; }
.aside-card p { font-size: .93rem; margin-top: 8px; }
.aside-card .btn { margin-top: 8px; }
.aside-card hr { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }
.aside-contact { display: grid; gap: 10px; font-size: .92rem; }
.aside-contact a { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 500; }
.aside-contact svg { width: 18px; height: 18px; color: var(--brand); flex: none; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: #0a1a2c; color: #a9bccf; padding-block: 56px 30px; font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.footer__brand:hover { text-decoration: none; }
.footer__brand svg, .footer__brand img { width: 40px; height: 40px; }
.site-footer p { color: #93a8bd; margin-top: 14px; max-width: 34ch; }
.footer__col h4 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-head); }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { color: #a9bccf; }
.footer__col a:hover { color: #fff; }
.footer__contact { display: grid; gap: 12px; }
.footer__contact a, .footer__contact address { display: flex; gap: 11px; align-items: flex-start; color: #a9bccf; font-style: normal; }
.footer__contact svg { width: 18px; height: 18px; color: #6ee7b7; flex: none; margin-top: 3px; }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: #7f96ac; font-size: .85rem; }
.footer__bottom a { color: #7f96ac; }

/* --- Utilities / reveal animation --------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; }
