/* ===========================================================================
   G.N.A. Complete Cleaning Services
   ---------------------------------------------------------------------------
   1. Tokens          6. Hero            11. Areas
   2. Reset & base    7. Trust strip     12. How it works
   3. Layout          8. Services        13. Quote form
   4. Buttons         9. Why / About     14. Final CTA & footer
   5. Header          10. Before/after   15. Utilities & motion
   =========================================================================== */

/* ------------------------------------------------------------ 1. TOKENS */
:root {
  /* Ink — deep navy, not black. Reads as professional rather than harsh. */
  --ink:        #0E2540;
  --ink-2:      #43596F;
  --ink-3:      #5F7083;   /* 4.5:1 on every surface it is used on */
  --ink-invert: #FFFFFF;

  /* Surfaces */
  --bg:         #FFFFFF;
  --bg-soft:    #F5F9FB;
  --bg-tint:    #EAF3F7;
  --line:       #DEE8EE;
  --line-soft:  #EDF3F6;

  /* Brand — a fresh blue-teal. One accent colour, used with intent. */
  --brand:      #0A6E8C;
  --brand-600:  #08607B;
  --brand-700:  #064E64;
  --brand-100:  #CFE7EF;
  --brand-50:   #E8F4F8;

  /* Green, used sparingly — confirmations and freshness only. */
  --accent:     #1C8F63;
  --accent-50:  #E6F4EE;

  --logo-bg:    var(--brand);
  --logo-drop:  #FFFFFF;
  --logo-spark: #7BD3C6;

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);

  --r-sm:   10px;
  --r:      16px;
  --r-lg:   22px;
  --r-xl:   28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 37, 64, .06), 0 2px 6px rgba(14, 37, 64, .05);
  --shadow:    0 2px 6px rgba(14, 37, 64, .06), 0 12px 28px rgba(14, 37, 64, .08);
  --shadow-lg: 0 4px 12px rgba(14, 37, 64, .07), 0 24px 56px rgba(14, 37, 64, .12);

  --container: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.25rem);
  --section-y: clamp(3.75rem, 7vw, 6.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------------- 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }

/* Components below set display:flex/grid, which would otherwise beat [hidden]. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.021em;
  margin: 0 0 .5em;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-700); }

img, picture, svg, video { max-width: 100%; }
img { height: auto; display: block; }
picture { display: block; }

ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 650; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand-100); color: var(--ink); }

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--brand); color: #fff;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; text-decoration: none;
  transition: transform .18s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

.icon { flex: none; }

/* ------------------------------------------------------------- 3. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 760px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 5.5vw, 5rem); }
.section--flush { padding-block: 0 var(--section-y); }

.section__head {
  max-width: 42rem;
  margin: 0 auto clamp(2.25rem, 4vw, 3.5rem);
  text-align: center;
}
.section__head--left { max-width: none; margin-inline: 0; text-align: left; }

.section__title {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  margin-bottom: .5rem;
}
.section__title--left { text-align: left; }

.section__sub {
  font-size: clamp(1.03rem, 1.35vw, 1.15rem);
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand-600);
  background: var(--brand-50);
  padding: .35rem .75rem;
  border-radius: var(--r-pill);
  margin: 0 0 1rem;
}
.eyebrow--light { background: #fff; box-shadow: var(--shadow-sm); }

/* ------------------------------------------------------------ 4. BUTTONS */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  --btn-border: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px;
  padding: .8rem 1.4rem;
  border: 1.5px solid var(--btn-border);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: 600 1rem/1.2 var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), background-color .16s var(--ease), color .16s var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: 0 2px 5px rgba(10,110,140,.22), 0 10px 22px rgba(10,110,140,.20); }
.btn--primary:hover { --btn-bg: var(--brand-600); box-shadow: 0 3px 8px rgba(10,110,140,.26), 0 16px 32px rgba(10,110,140,.24); }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-border: var(--line); }
.btn--outline:hover { --btn-border: var(--brand); --btn-fg: var(--brand-700); background: var(--brand-50); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--brand-600); --btn-border: transparent; padding-inline: .8rem; }
.btn--ghost:hover { --btn-fg: var(--brand-700); background: var(--brand-50); }

.btn--inverse { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--inverse:hover { --btn-bg: #fff; --btn-fg: var(--brand-700); }

.btn--inverse-outline { --btn-bg: rgba(255,255,255,.06); --btn-fg: #fff; --btn-border: rgba(255,255,255,.42); }
.btn--inverse-outline:hover { --btn-bg: rgba(255,255,255,.14); --btn-border: #fff; --btn-fg: #fff; }

.btn--lg { min-height: 56px; padding: .95rem 1.7rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

.cta-pair { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta-pair--center { justify-content: center; margin-top: clamp(2rem, 3.5vw, 3rem); }

.phone-link { font-weight: 650; color: var(--brand-600); text-decoration: none; }
.phone-link:hover { text-decoration: underline; }

/* ------------------------------------------------------------- 5. HEADER */
.site-header { position: sticky; top: 0; z-index: 100; }

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.86);
  font-size: .85rem;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 40px;
}
.topbar__area { display: flex; align-items: center; gap: .4rem; margin: 0; }
.topbar__area .icon { color: var(--logo-spark); }
.topbar__right { display: flex; align-items: center; gap: .85rem; }
.topbar__divider { width: 1px; height: 16px; background: rgba(255,255,255,.22); }
.topbar__phone {
  display: inline-flex; align-items: center; gap: .4rem;
  color: #fff; font-weight: 600; text-decoration: none;
}
.topbar__phone:hover { color: var(--logo-spark); }

.lang-switch {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.86); text-decoration: none; font-weight: 500;
  padding: .2rem .1rem; border-radius: var(--r-sm);
}
.lang-switch:hover { color: #fff; }
.lang-switch__short { display: none; font-weight: 700; }

.header-main {
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s var(--ease);
}
.site-header.is-stuck .header-main { box-shadow: 0 4px 20px rgba(14,37,64,.09); }

.header-main__inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 74px;
}

.logo { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font: 800 1.32rem/1 var(--font-display); letter-spacing: -.02em; }
.logo__tagline { font-size: .69rem; color: var(--ink-3); letter-spacing: .05em; text-transform: uppercase; font-weight: 600; margin-top: 3px; }
.logo:hover .logo__name { color: var(--brand-700); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  display: block; padding: .5rem .75rem; border-radius: var(--r-sm);
  color: var(--ink-2); font-weight: 550; font-size: .97rem; text-decoration: none;
  transition: color .15s var(--ease), background-color .15s var(--ease);
}
.nav__link:hover { color: var(--brand-700); background: var(--brand-50); }
.nav__link.is-current { color: var(--brand-700); background: var(--brand-50); font-weight: 650; }

.header-actions { display: flex; align-items: center; gap: .85rem; flex: none; }
.header-actions__phone {
  display: none; align-items: center; gap: .45rem;
  color: var(--ink); font-weight: 700; text-decoration: none; font-size: 1rem;
}
.header-actions__phone .icon { color: var(--brand); }
.header-actions__phone:hover { color: var(--brand-700); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-left: auto;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-sm); color: var(--ink); cursor: pointer;
}
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: .5rem var(--gutter) 1.5rem;
  max-height: calc(100dvh - 114px);
  overflow-y: auto;
}
.mobile-nav__list { padding-block: .5rem; }
.mobile-nav__list .nav__link {
  padding: .95rem .25rem; font-size: 1.12rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line-soft); border-radius: 0;
}
.mobile-nav__list .nav__link:hover,
.mobile-nav__list .nav__link.is-current { background: transparent; color: var(--brand-700); }
.mobile-nav__actions { display: grid; gap: .6rem; margin-top: 1.1rem; }
.mobile-nav__lang { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.mobile-nav__lang .lang-switch { color: var(--ink-2); font-weight: 600; }
.mobile-nav__lang .lang-switch:hover { color: var(--brand-700); }

/* --------------------------------------------------------------- 6. HERO */
.hero { position: relative; background: var(--bg-soft); overflow: hidden; padding-block: clamp(2.75rem, 6vw, 5.25rem) clamp(4.5rem, 8vw, 7rem); }
.hero__bg {
  position: absolute; inset: -30% -20% auto auto;
  width: min(70vw, 780px); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(10,110,140,.10), rgba(10,110,140,0) 72%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; gap: clamp(2.25rem, 5vw, 4rem);
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center;
  font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--brand-700); background: #fff;
  padding: .45rem .9rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  margin: 0 0 1.35rem;
}
.hero__title { font-size: clamp(2.3rem, 5.1vw, 3.85rem); letter-spacing: -.028em; margin-bottom: .55rem; }
.hero__sub {
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  color: var(--ink-2); max-width: 34rem; margin-bottom: 1.9rem;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__note {
  display: flex; align-items: center; gap: .5rem;
  margin: 1.4rem 0 0; font-size: .93rem; color: var(--ink-3); font-weight: 500;
}
.hero__note .icon { color: var(--accent); }

.hero__media { position: relative; }
.hero__frame {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-tint);
}
.hero__frame img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.hero__badge {
  position: absolute; left: -1.25rem; bottom: -1.5rem;
  display: flex; gap: .75rem; align-items: flex-start;
  max-width: 21rem;
  background: #fff; border-radius: var(--r);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-lg);
}
.hero__badge .icon { color: var(--brand); margin-top: 2px; }
.hero__badge-title { font: 700 .98rem/1.3 var(--font-display); margin: 0 0 .2rem; }
.hero__badge-body { margin: 0; font-size: .87rem; color: var(--ink-2); line-height: 1.45; }

/* -------------------------------------------------------- 7. TRUST STRIP */
.trust { position: relative; margin-top: calc(-1 * clamp(2.25rem, 4vw, 3.25rem)); z-index: 3; padding: 0; }
.trust__list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  overflow: hidden;
}
.trust__item {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: 1.4rem 1.35rem;
  border-right: 1px solid var(--line-soft);
}
.trust__item:last-child { border-right: 0; }
.trust__icon {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand);
}
.trust__title { font: 700 .99rem/1.3 var(--font-display); margin: 2px 0 .2rem; }
.trust__body { margin: 0; font-size: .87rem; color: var(--ink-2); line-height: 1.45; }

/* ----------------------------------------------------------- 8. SERVICES */
.cards { display: grid; gap: clamp(1rem, 1.8vw, 1.5rem); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--1 { grid-template-columns: minmax(0, 32rem); justify-content: center; }

.card {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card--service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.card__media { position: relative; display: block; overflow: hidden; background: var(--bg-tint); }
.card__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transition: transform .5s var(--ease); }
.card--service:hover .card__media img { transform: scale(1.045); }
.card__icon {
  position: absolute; left: .85rem; bottom: .85rem;
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; background: #fff; color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.card--teal  .card__icon, .card--teal.service-detail__icon  { color: var(--brand); }
.card--blue  .card__icon, .card--blue.service-detail__icon  { color: #10627F; }
.card--green .card__icon, .card--green.service-detail__icon { color: var(--accent); }

.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.15rem 1.25rem 1.35rem; gap: .45rem; }
.card__title { font: 700 1.09rem/1.25 var(--font-display); color: var(--ink); }
.card__text { font-size: .93rem; color: var(--ink-2); line-height: 1.55; flex: 1; }
.card__cta {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: .5rem; font-weight: 650; font-size: .9rem; color: var(--brand-600);
}
.card--service:hover .card__cta { color: var(--brand-700); }
.card--service:hover .card__cta .icon { transform: translateX(3px); }
.card__cta .icon { transition: transform .2s var(--ease); }

.services__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .9rem;
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

/* Long-form service blocks */
.service-detail {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 130px;
}
.service-detail:last-of-type { border-bottom: 0; }
.service-detail--flip .service-detail__media { order: 2; }
.service-detail__media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.service-detail__icon {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 14px; background: var(--brand-50); margin-bottom: 1rem;
}
.service-detail__title { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: .5rem; }
.service-detail__lead { color: var(--ink-2); font-size: 1.03rem; }
.service-detail__for { color: var(--ink-3); font-size: .93rem; margin-bottom: 1.4rem; }
.service-detail__for strong { color: var(--ink-2); font-weight: 600; }
.service-detail__sub { font: 700 .8rem/1 var(--font-sans); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; }
.service-detail__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.service-details__note {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin: 2rem 0 0; font-size: .92rem; color: var(--ink-3); text-align: center;
}

.checklist { display: grid; gap: .55rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; font-size: .97rem; color: var(--ink-2); }
.checklist .icon { color: var(--accent); margin-top: 4px; }
.checklist--tight li { font-size: .95rem; }

.callout {
  margin-top: 1.4rem; padding: 1rem 1.15rem;
  background: var(--brand-50); border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.callout__title { display: flex; align-items: center; gap: .45rem; font: 700 .97rem/1.3 var(--font-display); margin: 0 0 .25rem; color: var(--brand-700); }
.callout__body { margin: 0; font-size: .92rem; color: var(--ink-2); }

/* ---------------------------------------------------------- 9. WHY/ABOUT */
.why { background: var(--bg-soft); }
.why__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
.why__inner--noimage { grid-template-columns: 1fr; }
.why__inner--noimage .why__content { max-width: none; }
.why__inner--noimage .why__list { grid-template-columns: repeat(2, 1fr); }
.why__inner--noimage .section__head--left { text-align: center; max-width: 42rem; margin-inline: auto; }
.why__media img { width: 100%; aspect-ratio: 3/3.6; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.why__list { display: grid; gap: 1.4rem; }
.why__item { display: flex; gap: 1rem; align-items: flex-start; }
.why__icon {
  display: grid; place-items: center; flex: none;
  width: 46px; height: 46px; border-radius: 14px;
  background: #fff; color: var(--brand); box-shadow: var(--shadow-sm);
}
.why__title { font-size: 1.09rem; margin: 4px 0 .3rem; }
.why__body { margin: 0; color: var(--ink-2); font-size: .97rem; line-height: 1.6; }

/* About page */
.story__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
.story__media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow); }
.story__para { color: var(--ink-2); font-size: 1.04rem; }
.owner-note { display: flex; align-items: center; gap: .9rem; margin: 1.6rem 0 0; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.owner-note__photo { border-radius: 50%; object-fit: cover; }
.owner-note__label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.owner-note__name { font: 700 1.02rem/1.3 var(--font-display); }

.cards--plain .card { box-shadow: none; background: var(--bg-soft); border-color: transparent; }
.card--standard { padding: 1.45rem 1.35rem; display: flex; flex-direction: column; gap: .4rem; }
.card--standard .card__title { margin: 0; }
.card--standard .card__text { margin: 0; }
.card--highlight { background: var(--brand-50); border-color: var(--brand-100); }
.card__icon-plain {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; background: #fff; color: var(--brand); margin-bottom: .5rem;
  box-shadow: var(--shadow-sm);
}
.card__phone { display: inline-block; margin-top: .5rem; font: 800 1.18rem/1.2 var(--font-display); color: var(--brand-700); text-decoration: none; }
.card__phone:hover { text-decoration: underline; }
.card__inline-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .5rem; font-weight: 650; font-size: .93rem; text-decoration: none; }

.panel {
  background: var(--bg-tint); border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3.5vw, 3rem);
}
.panel--quiet { background: var(--bg-soft); border: 1px solid var(--line-soft); }
.panel--center { text-align: center; }
.panel--center .panel__body { margin-inline: auto; }
.panel__title { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: .5rem; }
.panel__body { color: var(--ink-2); max-width: 44rem; margin-bottom: 0; }
.panel--center .cta-pair { margin-top: 1.5rem; }

.why-local__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
.why-local__para { color: var(--ink-2); font-size: 1.04rem; }
.why-local__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }

/* --------------------------------------------------------- 10. BEFORE/AFTER */
.before-after { background: var(--bg); }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); gap: 1.5rem; }
.ba { margin: 0; }
.ba__stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--bg-tint);
  aspect-ratio: 4/3; isolation: isolate;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__clip { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__clip .ba__img { width: auto; height: 100%; max-width: none; }
.ba__tag {
  position: absolute; top: .75rem; z-index: 3;
  padding: .3rem .7rem; border-radius: var(--r-pill);
  font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(14,37,64,.72); color: #fff; backdrop-filter: blur(4px);
}
.ba__tag--before { left: .75rem; }
.ba__tag--after { right: .75rem; background: rgba(28,143,99,.85); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4;
  width: 3px; margin-left: -1.5px; background: #fff;
  box-shadow: 0 0 0 1px rgba(14,37,64,.12);
  pointer-events: none;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow);
}
.ba__grip::before, .ba__grip::after {
  content: ''; position: absolute; top: 50%; width: 0; height: 0;
  border-block: 5px solid transparent;
}
.ba__grip::before { left: 10px; border-right: 7px solid var(--brand); transform: translateY(-50%); }
.ba__grip::after { right: 10px; border-left: 7px solid var(--brand); transform: translateY(-50%); }
.ba__range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize;
  appearance: none; background: transparent;
}
.ba__range::-webkit-slider-thumb { appearance: none; width: 44px; height: 100%; }
.ba__range:focus-visible + * , .ba__range:focus-visible { outline-offset: -4px; }
.ba__caption { margin-top: .7rem; font-size: .9rem; color: var(--ink-3); text-align: center; }

/* Shown until real before/after photos exist. Sells the finishing standard
   with genuine photos instead of leaving an empty frame on the page. */
.proof {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
}
.proof__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.proof__media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }

.proof__title { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 1rem; }
.proof__list { margin-bottom: 1.4rem; }
.proof__promise { margin-top: 0; }
.proof__ask {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; margin-top: 1.5rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.proof__ask-title { font: 700 1.02rem/1.3 var(--font-display); margin: 0 0 .2rem; }
.proof__ask-body { margin: 0; font-size: .93rem; color: var(--ink-2); max-width: 26rem; }

/* Testimonials */
.card--quote { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; background: #fff; }
.card--quote blockquote { margin: 0; flex: 1; }
.card__quote-icon { display: block; color: var(--brand-100); margin-bottom: .4rem; }
.card__quote-text { font-size: 1.02rem; color: var(--ink); line-height: 1.6; margin: 0; }
.stars { display: flex; gap: 2px; margin: 0 0 .6rem; color: var(--line); }
.stars .is-on { color: #E8A33D; fill: #E8A33D; }
.card__author { display: flex; flex-direction: column; padding-top: .9rem; border-top: 1px solid var(--line-soft); }
.card__author-name { font-weight: 700; }
.card__author-role { font-size: .88rem; color: var(--ink-3); }

/* ------------------------------------------------------------- 11. AREAS */
.areas__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.85rem, 1.6vw, 1.25rem); }
.area-card a {
  display: flex; flex-direction: column; gap: .2rem; height: 100%;
  padding: 1.5rem 1.35rem;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  text-decoration: none; color: inherit; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.area-card a:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.area-card__pin {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 12px; background: var(--brand-50); color: var(--brand); margin-bottom: .6rem;
}
.area-card__name { font: 800 1.2rem/1.2 var(--font-display); }
.area-card__state { font-size: .85rem; color: var(--ink-3); }
.area-card__cta {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .9rem; font-size: .88rem; font-weight: 650; color: var(--brand-600);
}
.area-card a:hover .area-card__cta .icon { transform: translateX(3px); }
.area-card__cta .icon { transition: transform .2s var(--ease); }
.areas__note {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin: 1.75rem 0 0; color: var(--ink-3); font-size: .95rem; text-align: center;
}

/* ------------------------------------------------------ 12. HOW IT WORKS */
.how { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); position: relative; }
.step { position: relative; text-align: center; padding: 0 .5rem; }
.step__num {
  display: grid; place-items: center; margin: 0 auto 1rem;
  width: 58px; height: 58px; border-radius: 50%;
  background: #fff; color: var(--brand);
  font: 800 1.4rem/1 var(--font-display);
  box-shadow: var(--shadow-sm); border: 2px solid var(--brand-100);
  position: relative; z-index: 2;
}
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 29px; left: calc(50% + 40px); right: calc(-50% + 40px);
  border-top: 2px dashed var(--brand-100); z-index: 1;
}
.step__title { font-size: 1.14rem; margin-bottom: .4rem; }
.step__body { color: var(--ink-2); font-size: .97rem; margin: 0; }

/* --------------------------------------------------------- 13. QUOTE FORM */
.quote { background: var(--bg); scroll-margin-top: 120px; }
.quote__inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(1.75rem, 3.5vw, 3.25rem); align-items: start; }

.quote__title { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: .5rem; }
.quote__sub { color: var(--ink-2); margin-bottom: 1.6rem; }
.quote__callbox {
  background: var(--ink); color: #fff;
  border-radius: var(--r-lg); padding: 1.4rem 1.5rem;
}
.quote__callbox-label { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; margin-bottom: .35rem; }
.quote__phone {
  display: inline-flex; align-items: center; gap: .6rem;
  color: #fff; text-decoration: none;
  font: 800 clamp(1.5rem, 2.6vw, 1.9rem)/1.1 var(--font-display);
  letter-spacing: -.02em;
}
.quote__phone .icon { color: var(--logo-spark); }
.quote__phone:hover { color: var(--logo-spark); }
.quote__callbox-note { margin: .6rem 0 0; font-size: .85rem; color: rgba(255,255,255,.65); }
.quote__points { display: grid; gap: .7rem; margin-top: 1.5rem; }
.quote__points li { display: flex; gap: .7rem; align-items: center; font-size: .95rem; color: var(--ink-2); }
.quote__points-num {
  display: grid; place-items: center; flex: none; width: 26px; height: 26px;
  border-radius: 50%; background: var(--brand-50); color: var(--brand-700);
  font-size: .82rem; font-weight: 800;
}

.quote__formwrap { position: relative; }
.quote-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.35rem, 2.6vw, 2rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field--span-2 { grid-column: 1 / -1; }

.field__label { display: flex; align-items: baseline; gap: .35rem; font-size: .89rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.field__req { color: var(--brand); font-weight: 700; }
.field__opt { color: var(--ink-3); font-weight: 400; font-size: .82rem; }

.field__input {
  width: 100%; min-height: 48px;
  padding: .7rem .85rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink);
  font: 400 1rem/1.4 var(--font-sans);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field__input::placeholder { color: var(--ink-3); opacity: 1; }
.field__input:hover { border-color: #C6D6E0; }
.field__input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50); }
.field__textarea { min-height: 108px; resize: vertical; }
.field__select-wrap { position: relative; }
.field__select { appearance: none; padding-right: 2.4rem; cursor: pointer; }
.field__chevron { position: absolute; right: .85rem; top: 50%; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }

.field.is-invalid .field__input { border-color: #C2374A; background: #FEF6F7; }
.field.is-invalid .field__input:focus { box-shadow: 0 0 0 3px rgba(194,55,74,.12); }
.field__error { margin: .3rem 0 0; font-size: .83rem; color: #B02D40; min-height: 0; }
.field__error:empty { display: none; }

.form-summary {
  margin: 0 0 1.1rem; padding: .8rem 1rem;
  background: #FEF3F4; border: 1px solid #F3CBD1; border-radius: var(--r-sm);
  color: #9C2334; font-size: .93rem; font-weight: 500;
}

.quote-form__foot { margin-top: 1.35rem; }
.quote-form__disclaimer { margin: .9rem 0 0; font-size: .82rem; color: var(--ink-3); text-align: center; line-height: 1.5; }
.hp { position: absolute; left: -9999px; }

.form-success {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem;
  background: #fff; border: 1px solid var(--brand-100); border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.35rem, 2.6vw, 2rem);
  box-shadow: var(--shadow);
}
.form-success__icon { color: var(--accent); }
.form-success__title { font-size: 1.4rem; margin: .35rem 0 0; }
.form-success__body { color: var(--ink-2); margin-bottom: 1rem; max-width: 28rem; }
.form-success__again {
  margin-top: 1rem; background: none; border: 0; cursor: pointer;
  color: var(--ink-3); font: 500 .9rem var(--font-sans); text-decoration: underline; text-underline-offset: 3px;
}
.form-success__again:hover { color: var(--brand-700); }

/* --------------------------------------------- 14. FINAL CTA & FOOTER */
.final-cta { background: var(--ink); color: #fff; padding-block: clamp(3.25rem, 6vw, 5.5rem); position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; inset: auto -10% -60% auto; width: min(60vw, 620px); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(123,211,198,.16), rgba(123,211,198,0) 70%);
  pointer-events: none;
}
.final-cta__inner { position: relative; }
.final-cta__content { max-width: 44rem; margin-inline: auto; text-align: center; }
.final-cta__title { color: #fff; font-size: clamp(1.85rem, 3.6vw, 2.8rem); margin-bottom: .6rem; }
.final-cta__sub { color: rgba(255,255,255,.78); font-size: clamp(1.02rem, 1.4vw, 1.15rem); margin-bottom: 1.9rem; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.final-cta__area { display: flex; align-items: center; justify-content: center; gap: .45rem; margin: 1.6rem 0 0; font-size: .92rem; color: rgba(255,255,255,.6); }
.final-cta__area .icon { color: var(--logo-spark); }

.site-footer { background: #0A1C31; color: rgba(255,255,255,.72); padding-block: clamp(3rem, 5vw, 4.5rem) 1.75rem; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.75rem, 3.5vw, 3rem); }
.footer__logo { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer__name { font: 800 1.12rem/1.25 var(--font-display); color: #fff; margin: 0; }
.footer__tagline { font-size: .82rem; color: rgba(255,255,255,.55); margin: 2px 0 0; }
.footer__blurb { color: rgba(255,255,255,.62); max-width: 26rem; margin-bottom: 1.2rem; font-size: .93rem; }
.footer__phone {
  display: inline-flex; align-items: center; gap: .55rem;
  color: #fff; text-decoration: none; font: 800 1.32rem/1.2 var(--font-display); letter-spacing: -.015em;
}
.footer__phone .icon { color: var(--logo-spark); }
.footer__phone:hover { color: var(--logo-spark); }
.footer__email { display: inline-flex; align-items: center; gap: .5rem; margin-top: .6rem; color: rgba(255,255,255,.72); text-decoration: none; font-size: .92rem; }
.footer__email:hover { color: #fff; }
.footer__social { display: flex; gap: .9rem; margin-top: 1rem; text-transform: capitalize; }
.footer__social a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer__social a:hover { color: #fff; }

.footer__heading { font: 700 .8rem/1 var(--font-sans); letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer__list { display: grid; gap: .6rem; }
.footer__list a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .93rem; }
.footer__list a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem;
  margin-top: clamp(2.25rem, 4vw, 3.25rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .87rem; color: rgba(255,255,255,.55);
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; align-items: center; gap: .6rem; }
.footer__legal a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer__legal a:hover { color: #fff; }

/* --------------------------------------------------- PAGE HERO & PROSE */
.page-hero {
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  padding-block: clamp(2rem, 4vw, 3.25rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__title { font-size: clamp(2rem, 4.4vw, 3.15rem); max-width: 20ch; margin-bottom: .6rem; }
.page-hero__sub { font-size: clamp(1.03rem, 1.5vw, 1.2rem); color: var(--ink-2); max-width: 46rem; margin-bottom: 0; text-wrap: pretty; }
.page-hero .cta-pair { margin-top: 1.75rem; }

.breadcrumbs { margin-bottom: 1.1rem; font-size: .86rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: .4rem; color: var(--ink-3); opacity: .55; }
.breadcrumbs a { color: var(--ink-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-700); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--ink-2); font-weight: 600; }

.prose-meta { font-size: .88rem; color: var(--ink-3); margin-bottom: 1.75rem; }
.prose h2 { font-size: 1.28rem; margin: 2rem 0 .5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); }
.prose-cta { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }

/* Location pages */
.local-intro__inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.local-intro__para { font-size: 1.05rem; color: var(--ink-2); }
.local-focus { margin-top: 1.75rem; padding: 1.35rem 1.5rem; background: var(--bg-soft); border-radius: var(--r-lg); }
.local-focus__title { font-size: 1.1rem; margin-bottom: .85rem; }
.local-aside__media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.local-aside__note { margin-top: 1.25rem; padding: 1.25rem 1.35rem; background: var(--brand-50); border-radius: var(--r-lg); }
.local-aside__title { display: flex; align-items: center; gap: .45rem; font-size: 1.02rem; margin-bottom: .4rem; color: var(--brand-700); }
.local-aside__note p { margin: 0; font-size: .95rem; color: var(--ink-2); }

/* ------------------------------------------------------- 15. STICKY CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .6rem;
  padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 22px rgba(14,37,64,.10);
  transform: translateY(110%);
  transition: transform .28s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  flex: 1; min-height: 52px; border-radius: var(--r-pill);
  font: 650 1rem/1 var(--font-sans); text-decoration: none;
  padding-inline: .9rem;
}
.sticky-cta__btn--call { background: var(--bg-soft); color: var(--ink); border: 1.5px solid var(--line); }
.sticky-cta__btn--quote { background: var(--brand); color: #fff; box-shadow: 0 4px 14px rgba(10,110,140,.3); }

/* ---------------------------------------------------------- 16. MOTION */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------ 17. RESPONSIVE */
@media (max-width: 1080px) {
  .trust__list { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2n) { border-right: 0; }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__link { padding-inline: .55rem; font-size: .93rem; }
}

@media (max-width: 940px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav { display: none; }
  .mobile-nav.is-open { display: block; }
  .header-main__inner { min-height: 66px; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: 1; max-width: 30rem; margin-inline: auto; }
  /* The wider mobile crop would clip the top of the subject's head at the
     default centre position, so bias the crop upward. */
  .hero__frame img { aspect-ratio: 4/3.1; object-position: 50% 35%; }
  .hero__badge { position: static; margin-top: 1rem; max-width: none; }
  .hero { padding-bottom: clamp(3.5rem, 7vw, 5rem); }

  .why__inner, .story__inner, .why-local__inner, .local-intro__inner,
  .quote__inner, .service-detail { grid-template-columns: 1fr; }
  .why__media, .story__media { max-width: 26rem; }
  .why__inner--noimage .why__list { grid-template-columns: 1fr; }
  .service-detail--flip .service-detail__media { order: 0; }
  .service-detail__media img { aspect-ratio: 16/10; }
  .why-local__media { order: -1; max-width: 30rem; }
  .local-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
  .local-aside__note { margin-top: 0; }

  .steps { grid-template-columns: 1fr; gap: 1.75rem; max-width: 30rem; margin-inline: auto; }
  .step:not(:last-child)::after { display: none; }

  .proof { grid-template-columns: 1fr; }
  .proof__media { max-width: 32rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 1.02rem; }
  .topbar__area { display: none; }
  .topbar__inner { justify-content: space-between; min-height: 38px; }
  .lang-switch__full { display: none; }
  .lang-switch__short { display: inline; }

  .hero__actions .btn, .final-cta__actions .btn, .cta-pair .btn { width: 100%; }
  .btn--block, .btn[style*="width"], .hero__actions .btn, .final-cta__actions .btn,
  .cta-pair .btn, .services__foot .btn, .service-detail__actions .btn {
    white-space: normal; text-align: center; padding-inline: 1.1rem;
  }
  .cta-pair, .hero__actions, .final-cta__actions { flex-direction: column; }
  .services__foot { flex-direction: column; align-items: stretch; }
  .services__foot .btn { width: 100%; }

  .cards--4, .cards--3, .cards--2, .areas__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field--span-2 { grid-column: auto; }
  .local-aside { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: 6rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .trust__list { grid-template-columns: 1fr; }
  .trust__item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .trust__item:last-child { border-bottom: 0; }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .service-detail { padding-block: 2.25rem; }
}

@media (max-width: 420px) {
  .logo__tagline { display: none; }
  .sticky-cta__btn { font-size: .93rem; }
}

@media print {
  .site-header, .sticky-cta, .final-cta, .quote-form__foot { display: none; }
  body { font-size: 11pt; }
}
