/* ===================================================================
   Serene Touch Pest Control — Stylesheet
   Brand: Navy #0e3a6b · Gold #f6c324 · Emerald #22c55e
=================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0a2c54;
  --navy-800: #0e3a6b;
  --navy-700: #15448a;
  --navy-600: #1b56a8;
  --blue-100: #e8f1fb;
  --gold:     #f6c324;
  --gold-dark:#e0ab06;
  --green:    #22c55e;
  --green-dark:#16a34a;
  --ink:      #1c2a3a;
  --muted:    #5b6b7d;
  --line:     #e4e9f0;
  --bg:       #ffffff;
  --bg-soft:  #f5f8fc;

  --radius:   16px;
  --radius-sm:10px;
  --shadow-sm: 0 2px 10px rgba(14, 58, 107, .06);
  --shadow:    0 14px 40px rgba(14, 58, 107, .12);
  --shadow-lg: 0 24px 60px rgba(14, 58, 107, .18);

  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: "Poppins", sans-serif; line-height: 1.18; margin: 0; color: var(--navy-900); }

p { margin: 0; }

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

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

ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .2px;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { fill: currentColor; }

.btn--primary { --btn-bg: var(--green); --btn-fg: #06371c; }
.btn--primary:hover { --btn-bg: var(--green-dark); --btn-fg:#fff; }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #4a3500; }
.btn--gold:hover { --btn-bg: var(--gold-dark); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .55);
}
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.12); border-color:#fff; }

.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ===================================================================
   TOP BAR
=================================================================== */
.topbar {
  background: var(--navy-900);
  color: #cdddf0;
  font-size: .85rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
}
.topbar__right { display: flex; gap: 22px; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cdddf0;
  transition: color .15s;
}
.topbar__item svg { fill: var(--gold); }
a.topbar__item:hover { color: #fff; }

/* ===================================================================
   HEADER / NAV
=================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, background .25s;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--navy-800);
  color: var(--green);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: inset 0 0 0 3px #fff;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 1.5px;
  color: var(--navy-900);
}
.logo__sub {
  font-size: .62rem;
  letter-spacing: 2.6px;
  color: var(--muted);
  font-weight: 600;
}

/* Nav */
.nav__list { display: flex; gap: 6px; }
.nav__link {
  display: inline-block;
  padding: 9px 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: .96rem;
  color: var(--navy-900);
  border-radius: 8px;
  position: relative;
  transition: color .15s, background .15s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--navy-700); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

/* Compact "Log In" button in the header actions */
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.header__login { color: var(--navy-800); }
.header__login:hover { color: var(--green-dark); }

/* Services dropdown */
.nav__has-sub { position: relative; }
.nav__caret { vertical-align: -2px; margin-left: 1px; fill: currentColor; transition: transform .2s var(--ease); }
.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 236px;
  margin: 8px 0 0; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 110;
}
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__has-sub:hover .nav__caret,
.nav__has-sub:focus-within .nav__caret { transform: rotate(180deg); }
.nav__sub a {
  display: block; padding: 10px 14px; border-radius: 9px;
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: .92rem; color: var(--navy-900);
  transition: background .15s, color .15s;
}
.nav__sub a:hover { background: var(--bg-soft); color: var(--green-dark); }
.nav__sub a[aria-current="page"] { background: var(--bg-soft); color: var(--green-dark); }

/* "Log In" in the top utility bar */
.topbar__login { font-weight: 600; }
.topbar__login svg { fill: var(--gold); }

/* Items that should only appear inside the mobile drawer */
.nav__mobile-only { display: none; }
@media (max-width: 880px) {
  .nav__mobile-only { display: block; }
  .nav__mobile-only .nav__link { color: var(--green-dark); font-weight: 600; }
}
/* Give the top bar room on mid-size screens */
@media (max-width: 1040px) {
  .topbar__hours { display: none; }
}
.nav__sub-all { border-top: 1px solid var(--line); margin-top: 4px; color: var(--navy-700) !important; font-weight: 600 !important; }

/* Mobile: show the sub-links inline inside the drawer */
@media (max-width: 880px) {
  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; border: none; border-radius: 0;
    min-width: 0; margin: 0; padding: 0 0 6px 12px;
  }
  .nav__sub a { padding: 12px 16px; font-size: 1.02rem; color: var(--navy-800); }
  .nav__sub-all { border-top: none !important; }
  .nav__caret { display: none; }
}

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--navy-800);
}
.header__phone svg { fill: var(--green); }
.header__phone:hover { color: var(--green-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================================================================
   HERO
=================================================================== */
.hero {
  position: relative;
  color: #eaf2fb;
  padding: clamp(56px, 9vw, 110px) 0 clamp(120px, 14vw, 170px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(246, 195, 36, .18), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(34, 197, 94, .20), transparent 55%),
    linear-gradient(115deg, rgba(10, 44, 84, .95) 0%, rgba(14, 58, 107, .9) 42%, rgba(10, 44, 84, .74) 100%),
    url("../images/photos/hero-living-room.webp") center / cover no-repeat;
  background-color: var(--navy-800);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  background: rgba(246, 195, 36, .15);
  border: 1px solid rgba(246, 195, 36, .4);
  color: var(--gold);
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: .3px;
}
.hero__eyebrow svg { fill: var(--gold); }

.hero__title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin: 18px 0 0;
  letter-spacing: -.5px;
}
.hero__title span { color: var(--gold); }

.hero__text {
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: #c8d8ec;
  max-width: 36em;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 500;
  color: #dfeaf7;
}
.hero__chips svg { fill: var(--green); flex: none; }

/* Hero card */
.hero__visual { display: flex; justify-content: center; }
.hero__card {
  width: 100%;
  max-width: 360px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.hero__card-icon {
  width: 70px; height: 70px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
}
.hero__card-icon svg { fill: #fff; }
.hero__card-title { color: #fff; font-size: 1.4rem; }
.hero__card-text { color: #c8d8ec; font-size: .96rem; margin-top: 8px; }
.hero__card-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.hero__card-stats strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  color: var(--gold);
}
.hero__card-stats span { font-size: .72rem; color: #b9cae0; }

/* Wave dividers */
.wave { position: absolute; left: 0; width: 100%; line-height: 0; z-index: -1; }
.wave--bottom { bottom: -1px; }
.wave svg { width: 100%; height: clamp(60px, 8vw, 110px); }

/* ===================================================================
   FEATURE STRIP
=================================================================== */
.features {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--navy-700);
  margin-bottom: 16px;
}
.feature__icon svg { fill: var(--navy-700); }
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .94rem; }

/* ===================================================================
   SECTION SHARED
=================================================================== */
.section { padding: clamp(64px, 9vw, 110px) 0; }

.section__head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.55rem); font-weight: 800; }
.section__lead { margin-top: 14px; color: var(--muted); font-size: 1.08rem; }
.section__head--light .section__title,
.section__head--light .section__lead { color: #fff; }
.section__head--light .section__eyebrow { color: var(--gold); }

/* ===================================================================
   SERVICES
=================================================================== */
.services { background: var(--bg-soft); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(34, 197, 94, .4);
}
.service-card--featured {
  border-color: var(--gold);
  box-shadow: 0 14px 40px rgba(246, 195, 36, .22);
}
.service-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: #4a3500;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .4px;
  padding: 5px 10px;
  border-radius: 999px;
}
.service-card__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: #fff;
  margin-bottom: 18px;
}
.service-card__icon svg { fill: var(--gold); }
.service-card--featured .service-card__icon { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.service-card--featured .service-card__icon svg { fill: #fff; }
.service-card__title { font-size: 1.3rem; }
.service-card__tag {
  color: var(--green-dark);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 4px;
}
.service-card__text { color: var(--muted); font-size: .95rem; margin-top: 12px; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy-700);
  transition: gap .2s, color .2s;
}
.service-card__link svg { fill: currentColor; }
.service-card__link:hover { color: var(--green-dark); gap: 9px; }

.services__note { text-align: center; margin-top: 36px; color: var(--muted); }
.services__note a { color: var(--navy-700); font-weight: 600; text-decoration: underline; }

/* ===================================================================
   WHY CHOOSE US
=================================================================== */
.why__inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
}
.why__media-card {
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  color: #fff;
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.why__media-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(246,195,36,.25), transparent 70%);
}
.why__media-card svg { fill: var(--gold); margin: 0 auto 18px; }
.why__media-card h3 { color: #fff; font-size: 1.5rem; }
.why__media-card p { color: #c8d8ec; margin-top: 10px; }

.why__list { margin: 26px 0 32px; display: grid; gap: 16px; }
.why__list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; color: var(--ink); }
.why__list svg { fill: var(--green); flex: none; margin-top: 2px; }
.why__list strong { color: var(--navy-900); }

/* ===================================================================
   PROCESS
=================================================================== */
.process {
  position: relative;
  color: #fff;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(34,197,94,.18), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .25s var(--ease), background .25s;
}
.process-step:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .09); }
.process-step__num {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #4a3500;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.process-step h3 { color: #fff; font-size: 1.18rem; }
.process-step p { color: #c2d3e8; font-size: .95rem; margin-top: 8px; }

/* connector line */
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px; right: -14px;
  width: 28px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
}

/* ===================================================================
   TESTIMONIALS
=================================================================== */
.testimonials { background: var(--bg-soft); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.testimonial__stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }
.testimonial blockquote { margin: 14px 0 20px; font-size: 1.04rem; color: var(--ink); }
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial figcaption strong { font-family: "Poppins", sans-serif; color: var(--navy-900); }
.testimonial figcaption span { font-size: .86rem; color: var(--muted); }

/* ===================================================================
   CTA BANNER
=================================================================== */
.cta-banner {
  background:
    radial-gradient(700px 300px at 0% 50%, rgba(246,195,36,.2), transparent 60%),
    linear-gradient(120deg, var(--green-dark), var(--navy-800));
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(40px, 6vw, 64px) 0;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-banner p { color: #e7f3ec; margin-top: 8px; font-size: 1.06rem; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================================================================
   CONTACT
=================================================================== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact__list { margin-top: 28px; display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 15px; align-items: center; }
.contact__icon {
  width: 50px; height: 50px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
}
.contact__icon svg { fill: var(--navy-700); }
.contact__label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 600;
}
.contact__list a { font-weight: 600; color: var(--navy-800); }
.contact__list a:hover { color: var(--green-dark); }

/* Form */
.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-group label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy-900);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font: inherit;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9aa8b8; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
}
.form-group textarea { resize: vertical; }
.form-note { margin-top: 14px; text-align: center; font-size: .9rem; color: var(--muted); }
.form-note.is-success { color: var(--green-dark); font-weight: 600; }
.form-note.is-error { color: #d33; font-weight: 600; }

/* invalid state */
.form-group input:user-invalid,
.form-group select:user-invalid {
  border-color: #e06363;
  box-shadow: 0 0 0 4px rgba(224, 99, 99, .12);
}

/* ===================================================================
   FOOTER
=================================================================== */
.footer { background: var(--navy-900); color: #b9cae0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: clamp(48px, 7vw, 76px) 0 44px;
}
.logo--light .logo__name { color: #fff; }
.logo--light .logo__sub { color: #8fa6c2; }
.logo--light .logo__mark { border-color: #fff; }
.footer__brand p { margin-top: 16px; max-width: 32ch; font-size: .95rem; }
.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: .95rem; transition: color .15s; }
.footer__col a:hover { color: var(--gold); }
.footer__contact li { font-size: .95rem; }

.footer__bar { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: .88rem;
}
.footer__safe { color: #8fa6c2; }

/* ===================================================================
   FLOATING CALL BUTTON
=================================================================== */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px; height: 58px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(22, 163, 74, .5);
  animation: pulse 2.4s infinite;
}
.fab svg { fill: #fff; }
@keyframes pulse {
  0%   { box-shadow: 0 10px 26px rgba(22,163,74,.5), 0 0 0 0 rgba(34,197,94,.45); }
  70%  { box-shadow: 0 10px 26px rgba(22,163,74,.5), 0 0 0 16px rgba(34,197,94,0); }
  100% { box-shadow: 0 10px 26px rgba(22,163,74,.5), 0 0 0 0 rgba(34,197,94,0); }
}

/* ===================================================================
   SCROLL REVEAL
=================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { justify-content: flex-start; }
  .hero__card { max-width: 420px; }
}

@media (max-width: 880px) {
  .topbar { display: none; }
  .header__phone { display: none; }
  .header__cta { display: none; }

  /* Mobile nav drawer */
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 0; padding: 12px; }
  .nav__link { display: block; padding: 14px 16px; border-radius: 10px; font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__link:hover { background: var(--bg-soft); }

  .nav-toggle { display: flex; }

  .why__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .fab { display: grid; }
}

@media (max-width: 560px) {
  .features__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { flex: 1 1 100%; }
  .logo__sub { display: none; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

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

/* ===================================================================
   WHY-US ILLUSTRATION
=================================================================== */
.why__illu { width: min(250px, 72%); height: auto; margin: 0 auto 10px; display: block; }

/* ===================================================================
   BLOG
=================================================================== */
/* Blog index hero */
.blog-hero {
  position: relative;
  color: #eaf2fb;
  text-align: center;
  padding: clamp(54px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(246,195,36,.18), transparent 60%),
    radial-gradient(700px 400px at 10% 120%, rgba(34,197,94,.20), transparent 55%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
}
.blog-hero__eyebrow {
  display: inline-block; font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: .8rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.blog-hero__title { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; }
.blog-hero__text { margin: 14px auto 0; max-width: 640px; color: #c8d8ec; font-size: 1.1rem; }

.blog-section { padding-top: clamp(40px, 6vw, 70px); }
.blog-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* Post grid + cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-800); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 44, 84, .34), rgba(10, 44, 84, 0) 45%);
}
.post-card__cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: #4a3500; font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: .68rem; letter-spacing: .4px; padding: 5px 11px; border-radius: 999px;
}
.post-card__body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .8rem; color: var(--muted); font-weight: 500; }
.post-card__title { font-size: 1.18rem; margin: 8px 0 0; line-height: 1.3; }
.post-card__title a { color: var(--navy-900); transition: color .15s; }
.post-card__title a:hover { color: var(--green-dark); }
.post-card__excerpt { color: var(--muted); font-size: .94rem; margin-top: 10px; flex: 1; }
.post-card__link { margin-top: 16px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: .92rem; color: var(--navy-700); transition: color .15s; }
.post-card__link:hover { color: var(--green-dark); }

/* Featured (first) post on the blog index */
.post-card--featured { display: grid; grid-template-columns: 1.15fr 1fr; margin-bottom: 26px; }
.post-card--featured .post-card__media { aspect-ratio: auto; min-height: 300px; height: 100%; }
.post-card--featured .post-card__body { padding: clamp(24px, 3vw, 40px); justify-content: center; }
.post-card--featured .post-card__title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.post-card--featured .post-card__excerpt { font-size: 1rem; }

/* Homepage teaser */
.blog-teaser__more { text-align: center; margin-top: 40px; }

/* ===================================================================
   SINGLE ARTICLE
=================================================================== */
.post-narrow { width: min(100% - 40px, 760px); }
.post-hero {
  color: #eaf2fb;
  padding: clamp(40px, 7vw, 80px) 0 clamp(56px, 8vw, 90px);
  background:
    radial-gradient(700px 360px at 85% -20%, rgba(246,195,36,.16), transparent 60%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
}
.post-back { display: inline-block; color: var(--gold); font-weight: 600; font-size: .92rem; margin-bottom: 18px; }
.post-back:hover { color: #fff; }
.post-cat {
  display: inline-block; background: rgba(246,195,36,.18); border: 1px solid rgba(246,195,36,.45);
  color: var(--gold); font-family: "Poppins", sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: .5px; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.post-title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.2; }
.post-meta { margin-top: 14px; color: #b9cae0; font-size: .95rem; }

.post-cover {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius);
  margin-top: -44px; box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}

.post-content { font-size: 1.07rem; line-height: 1.8; color: #2a3a4d; margin-top: 34px; }
.post-content h2 { font-size: clamp(1.3rem, 2.4vw, 1.55rem); margin: 36px 0 12px; color: var(--navy-900); }
.post-content p { margin: 0 0 18px; }
.post-content a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.post-content ul, .post-content ol { margin: 0 0 18px; padding-left: 22px; }
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--navy-900); }

.post-cta {
  margin: 46px 0 10px; padding: clamp(26px, 4vw, 40px); border-radius: var(--radius); text-align: center;
  color: #fff;
  background:
    radial-gradient(500px 220px at 10% 0%, rgba(246,195,36,.2), transparent 60%),
    linear-gradient(120deg, var(--green-dark), var(--navy-800));
}
.post-cta h3 { color: #fff; font-size: 1.5rem; }
.post-cta p { color: #e7f3ec; margin: 8px auto 20px; max-width: 46ch; }
.post-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.related { padding: clamp(40px, 6vw, 64px) 0 0; }
.related-h { font-size: 1.5rem; margin-bottom: 22px; text-align: center; }
.post-notfound { text-align: center; padding: 80px 0; }
.post-notfound h1 { font-size: 2rem; margin-bottom: 12px; }

/* ===================================================================
   SERVICE PAGES
=================================================================== */
.svc-hero {
  position: relative; color: #eaf2fb; overflow: hidden; isolation: isolate;
  padding: clamp(48px, 7vw, 86px) 0 clamp(52px, 7vw, 88px);
  background-color: var(--navy-900);
  background-image:
    radial-gradient(800px 420px at 82% -20%, rgba(246,195,36,.16), transparent 60%),
    radial-gradient(700px 460px at 8% 120%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(155deg, rgba(21,68,138,.9), rgba(10,44,84,.95)),
    var(--svc-hero-img, none);
  background-size: auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mid-page photo band */
.svc-band {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0;
  color: #fff;
  background-color: var(--navy-800);
  background-image: linear-gradient(rgba(10, 44, 84, .72), rgba(10, 44, 84, .78)), var(--svc-band-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.svc-band__inner { display: flex; justify-content: center; }
.svc-band__card { max-width: 640px; text-align: center; }
.svc-band__card h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.svc-band__card p { color: #e4eefb; font-size: 1.08rem; margin: 12px auto 22px; max-width: 52ch; }
.svc-hero__inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 44px; align-items: center; }
.svc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; margin-bottom: 16px;
  background: rgba(246,195,36,.15); border: 1px solid rgba(246,195,36,.4); color: var(--gold);
  border-radius: 999px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: .82rem;
}
.svc-hero__eyebrow svg { fill: var(--gold); }
.svc-hero__title { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; line-height: 1.15; }
.svc-hero__text { margin-top: 16px; color: #c8d8ec; font-size: clamp(1.02rem, 1.4vw, 1.16rem); max-width: 40em; }
.svc-hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.svc-hero__visual { display: flex; justify-content: center; }
.svc-hero__badge {
  width: clamp(160px, 22vw, 220px); aspect-ratio: 1; border-radius: 30px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.svc-hero__badge svg { width: 56%; height: 56%; fill: var(--gold); }

.breadcrumb { font-size: .85rem; color: var(--muted); padding: 16px 0 0; }
.breadcrumb a { color: var(--navy-700); font-weight: 600; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span { margin: 0 6px; opacity: .6; }

/* Intro / split-with-photo */
.svc-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 54px); align-items: center; }
.svc-split--reverse .svc-split__media { order: 2; }
.svc-split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.svc-split__body h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.svc-split__body p { color: var(--muted); margin-top: 14px; }

.svc-list { display: grid; gap: 13px; margin-top: 20px; }
.svc-list li { display: flex; gap: 12px; align-items: flex-start; }
.svc-list svg { fill: var(--green); flex: none; margin-top: 3px; }
.svc-list strong { color: var(--navy-900); }

/* Signs grid */
.signs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.sign-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.sign-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sign-card__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; background: var(--blue-100); margin-bottom: 14px; }
.sign-card__icon svg { fill: var(--navy-700); }
.sign-card h3 { font-size: 1.08rem; }
.sign-card p { color: var(--muted); font-size: .94rem; margin-top: 6px; }

/* Process steps (light) */
.svc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
.svc-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.svc-step__n { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--navy-700), var(--navy-800)); color: #fff; font-family: "Poppins", sans-serif; font-weight: 800; margin-bottom: 14px; }
.svc-step h3 { font-size: 1.05rem; }
.svc-step p { color: var(--muted); font-size: .92rem; margin-top: 6px; }

/* FAQ (native accordion) */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; position: relative;
  font-family: "Poppins", sans-serif; font-weight: 600; color: var(--navy-900); font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--green-dark); font-weight: 400; transition: transform .2s;
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item summary:hover { color: var(--green-dark); }
.faq__answer { padding: 0 20px 18px; color: var(--muted); }
.faq__answer p { margin-bottom: 10px; }

/* Mid-page CTA */
.svc-cta-mid { text-align: center; }
.svc-cta-mid .btn { margin: 4px; }

@media (max-width: 900px) {
  .svc-hero__inner { grid-template-columns: 1fr; }
  .svc-hero__visual { justify-content: flex-start; }
  .svc-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-split { grid-template-columns: 1fr; }
  .svc-split--reverse .svc-split__media { order: 0; }
}
@media (max-width: 540px) {
  .svc-steps { grid-template-columns: 1fr; }
}

/* Blog responsive */
@media (max-width: 980px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card--featured { grid-template-columns: 1fr; }
  .post-card--featured .post-card__media { min-height: 220px; aspect-ratio: 16 / 9; }
}
@media (max-width: 620px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   POLISH PASS — micro-interactions, a11y, visual upgrades
=================================================================== */
::selection { background: var(--gold); color: var(--navy-900); }
html { accent-color: var(--green); }

/* Skip-to-content (injected by JS, appears on keyboard focus) */
.skip-link {
  position: fixed; top: -56px; left: 16px; z-index: 300;
  background: var(--navy-900); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .92rem;
  padding: 12px 20px; border-radius: 0 0 12px 12px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* Header compacts slightly once you scroll */
.header__inner { transition: min-height .25s var(--ease); }
.header.is-scrolled .header__inner { min-height: 62px; }

/* Richer primary / gold buttons */
.btn--primary { background-image: linear-gradient(135deg, #34d399, var(--green-dark)); }
.btn--primary:hover { box-shadow: 0 14px 30px rgba(22, 163, 74, .38); }
.btn--gold { background-image: linear-gradient(135deg, #ffd84d, var(--gold-dark)); }
.btn--gold:hover { box-shadow: 0 14px 30px rgba(224, 171, 6, .4); }

/* Service cards: photo headers with overlapping icon */
.service-card__media {
  display: block; position: relative;
  margin: -30px -26px 0;
  aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 44, 84, .2), transparent 55%);
}
.service-card__media + .service-card__icon,
.service-card__media ~ .service-card__icon {
  position: relative; z-index: 2; margin-top: -32px;
  border: 3px solid #fff; box-shadow: var(--shadow-sm);
}
.service-card__badge { z-index: 3; }

/* Testimonials: avatars + decorative quote mark */
.testimonial { position: relative; }
.testimonial::before {
  content: "\201C"; position: absolute; top: 2px; right: 22px;
  font-family: Georgia, serif; font-size: 4.8rem; line-height: 1;
  color: var(--blue-100); pointer-events: none;
}
.testimonial figcaption { flex-direction: row; align-items: center; gap: 12px; }
.testimonial figcaption .testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: .92rem; color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
}
.testimonials__grid .testimonial:nth-child(2) .testimonial__avatar { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.testimonials__grid .testimonial:nth-child(3) .testimonial__avatar { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #4a3500; }
.testimonial figcaption .testimonial__who { display: flex; flex-direction: column; }

/* Back-to-top (injected by JS) */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 89;
  width: 46px; height: 46px; border-radius: 14px;
  border: 1px solid var(--line); background: #fff; color: var(--navy-800);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s, color .15s;
}
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--green-dark); transform: translateY(-2px); }
.to-top svg { fill: currentColor; }
@media (max-width: 880px) { .to-top { right: 18px; bottom: 88px; } }

/* Reading progress bar on blog articles (injected by JS) */
.read-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 320;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

/* Required-field marker */
.req { color: #d33; margin-left: 2px; }

/* Areas-we-serve pills */
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.area-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line, #e7e1d1);
  font-family: var(--font-display, Georgia), serif; font-size: 1.06rem; color: var(--ink-900, #0a2240);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .2s, border-color .2s;
}
a.area-pill::before { content: "📍"; font-size: 1rem; }
a.area-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--green-dark); border-color: #dcd2b8; }
.area-pill--more { background: transparent; border-style: dashed; color: var(--muted); font-family: var(--font-body, sans-serif); font-size: 1rem; font-weight: 700; }

/* Legal pages (privacy / terms) */
.legal-hero { background: var(--ink-950, #0a2c54); color: #eaf2fb; padding: clamp(42px, 6vw, 76px) 0 clamp(34px, 4vw, 52px); }
.legal-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.legal-hero p { color: #b9cae0; margin-top: 10px; }
.legal { width: min(100% - 40px, 820px); margin: 0 auto; padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 7vw, 80px); }
.legal h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin: 34px 0 10px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: #404b56; line-height: 1.75; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.legal__updated { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.legal__note { margin-top: 30px; padding: 16px 18px; border-left: 3px solid var(--gold); background: #fffaf0; border-radius: 0 12px 12px 0; font-size: .92rem; color: #6a5a2e; }

/* ===================================================================
   ULTIMATE REDESIGN — premium editorial layer
   Fraunces display serif + Manrope body, warm paper surfaces,
   deep-ink darks, grain texture, new homepage components.
   (Loaded last: overrides the base theme; legacy classes keep working.)
=================================================================== */
:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Inter", system-ui, sans-serif;

  --ink-950: #061528;
  --ink-900: #0a2240;
  --ink-800: #103059;

  --paper: #faf8f2;
  --bg-soft: #f3efe5;
  --line: #e7e1d1;

  --gold: #f2b517;
  --gold-dark: #d59a05;
  --green: #1fb45c;
  --green-dark: #0f8a43;

  --navy-900: #0a2240;
  --navy-800: #103059;
  --navy-700: #174478;

  --ink: #23303b;
  --muted: #6e695c;

  --shadow-sm: 0 2px 12px rgba(10, 25, 47, .06);
  --shadow: 0 18px 44px rgba(10, 25, 47, .12);
  --shadow-lg: 0 30px 70px rgba(6, 21, 40, .22);
}

body { font-family: var(--font-body); background: var(--paper); }
/* Clip decorative bleed (tilted marquee, hero orbs) without breaking the
   sticky header, which lives outside <main>. */
main { overflow-x: clip; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
em { font-style: italic; }

/* Re-skin shared UI to the new body font */
.btn, .nav__link, .logo__name, .section__eyebrow, .form-group label,
.service-card__badge, .post-card__cat, .tl-item__date, .hero__chips li,
.footer__col h4 { font-family: var(--font-body); }
.btn { font-weight: 800; letter-spacing: .01em; }
.logo__name { font-weight: 800; }
.footer__col h4 { font-weight: 800; }

/* Eyebrow: small caps with a gold dash */
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800;
}
.section__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }

/* Header & topbar on warm paper */
.header { background: rgba(250, 248, 242, .9); border-bottom-color: var(--line); }
.topbar { background: var(--ink-950); }
.footer { background: var(--ink-950); }
.footer__bar { border-top-color: rgba(255, 255, 255, .08); }

/* Grain texture utility (dark sections) */
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 1; }

/* Split section headers (title left, action right) */
.head-split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 26px; margin-bottom: clamp(30px, 4vw, 46px);
}
.head-split .section__title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.head-split__action { flex: none; }
@media (max-width: 700px) {
  .head-split { flex-direction: column; align-items: flex-start; }
}

/* ============================ HERO 2 ============================ */
.hero2 {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(1000px 520px at 88% -12%, rgba(242, 181, 23, .14), transparent 60%),
    radial-gradient(820px 560px at -8% 112%, rgba(31, 180, 92, .14), transparent 55%),
    var(--ink-950);
  color: #e8eef8;
  padding: clamp(64px, 8.5vw, 110px) 0 clamp(78px, 9vw, 124px);
}
.hero2__inner {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(36px, 5vw, 70px); align-items: center;
}
.hero2__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  font-weight: 700; font-size: .85rem; letter-spacing: .04em; color: #d9e4f3;
}
.hero2__eyebrow .dotg { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero2__title {
  margin-top: 24px; color: #fff;
  font-size: clamp(2.7rem, 6.4vw, 4.7rem);
  line-height: 1.04; font-weight: 600; letter-spacing: -.02em;
}
.hero2__title em { color: var(--gold); font-weight: 500; }
.hero2__sub {
  margin-top: 22px; max-width: 33em;
  color: #bfcde1; font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.7;
}
.hero2__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero2__trust { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.hero2__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.hero2__trust span:last-child { color: #a9bbd4; font-size: .92rem; font-weight: 600; }

/* hero media: organic blob photo + floating glass chips + dashed ring */
.hero2__media { position: relative; }
.hero2__frame {
  position: relative; overflow: hidden;
  border-radius: 47% 53% 50% 50% / 41% 44% 56% 59%;
  box-shadow: 0 44px 90px rgba(0, 0, 0, .5);
}
.hero2__frame img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; display: block; }
.hero2__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(6, 21, 40, .05) 40%, rgba(6, 21, 40, .5));
}
.hero2__ring {
  position: absolute; inset: -7% -9% auto auto; width: 62%; aspect-ratio: 1;
  border: 2px dashed rgba(242, 181, 23, .4); border-radius: 50%; z-index: -1;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hchip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 16px;
  background: rgba(13, 31, 56, .72); border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  font-weight: 700; font-size: .88rem; color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
  animation: float 6s ease-in-out infinite alternate;
}
.hchip small { display: block; font-weight: 600; color: #a9bbd4; font-size: .74rem; }
.hchip--rating { top: 6%; right: -4%; }
.hchip--guarantee { bottom: 9%; left: -6%; animation-delay: 1.6s; }
.hchip--eco { top: 38%; left: -10%; animation-delay: .8s; }
.hchip .em { font-size: 1.25rem; }
@keyframes float { to { transform: translateY(-13px); } }

/* ====================== GOLD MARQUEE STRIP ====================== */
.marquee {
  position: relative; z-index: 5;
  background: var(--gold); color: var(--ink-950);
  transform: rotate(-1.4deg) scale(1.03);
  margin: -26px 0 8px; padding: 13px 0;
  box-shadow: 0 18px 40px rgba(6, 21, 40, .18);
  overflow: hidden;
}
.marquee__track {
  display: flex; width: max-content;
  animation: marq 30s linear infinite;
}
.marquee__group {
  display: flex; align-items: center; gap: 44px; padding-right: 44px;
  font-weight: 800; font-size: .92rem; letter-spacing: .16em; white-space: nowrap;
}
.marquee__group .sep { color: rgba(6, 21, 40, .55); font-size: 1.05rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ========================= SERVICES v2 ========================= */
.scards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.scard {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.scard:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: #dcd2b8; }
.scard__imgwrap { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.scard__imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.scard:hover .scard__imgwrap img { transform: scale(1.07); }
.scard__imgwrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(185deg, rgba(6, 21, 40, .28), transparent 45%);
}
.scard__num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-style: italic; font-size: 1rem; color: #fff;
  background: rgba(6, 21, 40, .55); backdrop-filter: blur(5px);
  padding: 4px 13px; border-radius: 999px;
}
.scard__flag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: #4a3500;
  font-weight: 800; font-size: .68rem; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px;
}
.scard__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.scard__body h3 { font-size: 1.5rem; }
.scard__body p { color: var(--muted); font-size: .94rem; line-height: 1.65; margin-top: 8px; flex: 1; }
.scard__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-weight: 800; font-size: .94rem; color: var(--ink-900);
}
.scard__link svg { fill: currentColor; transition: transform .25s var(--ease); }
.scard__link:hover { color: var(--green-dark); }
.scard__link:hover svg { transform: translateX(5px); }

/* =========================== BENTO =========================== */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.tile {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tile h3 { font-size: 1.4rem; }
.tile p { color: var(--muted); margin-top: 9px; font-size: .96rem; line-height: 1.65; }
.tile__icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px;
  display: grid; place-items: center; background: var(--bg-soft);
}
.tile--photo { grid-column: span 7; grid-row: span 2; padding: 0; min-height: 420px; }
.tile--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile--photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 45%, rgba(6, 21, 40, .55));
}
.tile__cap {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(250, 248, 242, .92); backdrop-filter: blur(6px);
  padding: 11px 17px; border-radius: 999px;
  font-weight: 800; font-size: .88rem; color: var(--ink-900);
}
.tile--dark { grid-column: span 5; background: var(--ink-900); border: none; color: #dbe6f5; }
.tile--dark h3 { color: #fff; }
.tile--dark p { color: #b4c4dc; }
.tile--dark .tile__icon { background: rgba(255, 255, 255, .09); }
.tile--eco { grid-column: span 5; background: linear-gradient(140deg, #ecf6ec, #f7f3e3); }
.tile--third { grid-column: span 4; }
.tile--stat { display: flex; flex-direction: column; justify-content: center; text-align: center; }
.tile--stat strong {
  font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--green-dark); line-height: 1.1;
}
.tile--stat span { color: var(--muted); font-weight: 700; font-size: .9rem; margin-top: 4px; }
.tile__minis { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tile__minis span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 13px; font-weight: 700; font-size: .78rem; color: var(--ink-900);
}

/* ========================= PROCESS v2 ========================= */
.steps2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 3vw, 38px); }
.step2 { position: relative; }
.step2__num {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(3rem, 5vw, 4.2rem); line-height: 1; color: var(--gold-soft, #f4e3b0);
}
@supports (-webkit-text-stroke: 1px black) {
  .step2__num { color: transparent; -webkit-text-stroke: 1.6px var(--gold); }
}
.step2 h3 { font-size: 1.32rem; margin-top: 12px; }
.step2 p { color: var(--muted); font-size: .95rem; line-height: 1.65; margin-top: 8px; }

/* ========================= STATS BAND ========================= */
.statband {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 320px at 12% 0%, rgba(31, 180, 92, .14), transparent 60%),
    radial-gradient(700px 320px at 88% 100%, rgba(242, 181, 23, .12), transparent 60%),
    var(--ink-950);
  color: #fff; padding: clamp(50px, 7vw, 84px) 0;
}
.statband__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.stat2 strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.4vw, 4.2rem); color: var(--gold); line-height: 1.05;
}
.stat2 span {
  display: inline-block; margin-top: 8px;
  color: #aebfd8; font-weight: 800; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
}

/* ======================= TESTIMONIALS v2 ======================= */
.quotes { display: grid; grid-template-columns: 1.15fr 1fr; gap: 22px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(26px, 3vw, 36px); margin: 0;
}
.quote--featured {
  grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(165deg, #fff 55%, #fbf4dd);
}
.quote__stars { color: var(--gold); letter-spacing: 3px; }
.quote blockquote { margin: 16px 0 24px; color: #404b56; line-height: 1.7; }
.quote--featured blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 2.1vw, 1.65rem); line-height: 1.5; color: var(--ink-900);
}
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__av {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  font-weight: 800; font-size: .92rem;
  background: linear-gradient(135deg, var(--navy-700), var(--ink-900));
}
.quote__av--g { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.quote__av--y { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #4a3500; }
.quote__who strong { font-family: var(--font-body); color: var(--ink-900); display: block; }
.quote__who small { color: var(--muted); font-weight: 600; }

/* ========================== MEGA CTA ========================== */
.mega-wrap { padding: clamp(20px, 4vw, 40px) 0 clamp(64px, 8vw, 100px); }
.mega {
  position: relative; overflow: hidden; isolation: isolate;
  width: min(100% - 40px, 1180px); margin-inline: auto;
  background:
    radial-gradient(640px 300px at 86% -10%, rgba(242, 181, 23, .16), transparent 60%),
    radial-gradient(520px 300px at 4% 110%, rgba(31, 180, 92, .16), transparent 55%),
    var(--ink-900);
  border-radius: 32px; color: #fff;
  padding: clamp(44px, 6vw, 78px) clamp(24px, 6vw, 80px);
  text-align: center;
}
.mega h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.12; }
.mega h2 em { color: var(--gold); font-weight: 500; }
.mega p { color: #b9c8de; margin-top: 14px; font-size: 1.05rem; }
.mega__phone {
  display: inline-block; margin-top: 22px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 5.4vw, 3.6rem); color: var(--gold);
  border-bottom: 3px solid rgba(242, 181, 23, .35);
  transition: border-color .2s, transform .2s var(--ease);
}
.mega__phone:hover { border-color: var(--gold); transform: translateY(-2px); }
.mega__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ================= RESPONSIVE (redesign layer) ================= */
@media (max-width: 1024px) {
  .scards { grid-template-columns: repeat(2, 1fr); }
  .hero2__inner { grid-template-columns: 1fr; }
  .hero2__media { max-width: 480px; margin-inline: auto; }
  .hchip--eco { left: -2%; }
  .hchip--guarantee { left: -2%; }
  .steps2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .tile--photo, .tile--dark, .tile--eco, .tile--third { grid-column: span 6; }
  .tile--photo { grid-row: span 1; min-height: 320px; }
}
@media (max-width: 800px) {
  .quotes { grid-template-columns: 1fr; }
  .quote--featured { grid-row: auto; }
}
@media (max-width: 620px) {
  .scards { grid-template-columns: 1fr; }
  .steps2 { grid-template-columns: 1fr; }
  .statband__grid { grid-template-columns: 1fr; gap: 30px; }
  .tile--photo, .tile--dark, .tile--eco, .tile--third { grid-column: span 12; }
  .marquee { transform: rotate(0) ; margin-top: -12px; }
  .hchip--rating { right: 2%; }
}
