/* ============================================================
   Don & John Exterior Cleaning
   Bold-sans system matching the hero; blue brand accents.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0A0A0C;
  --ink-2:      #141416;
  --paper:      #FDFBFB;
  --paper-2:    #F6F8FA;
  --paper-3:    #EDF1F5;

  --text:       #0A0A0C;
  --text-dim:   #4A4F55;
  --text-faint: #8A909B;

  --on-dark:        #FFFFFF;
  --on-dark-dim:    rgba(255, 255, 255, 0.72);
  --on-dark-faint:  rgba(255, 255, 255, 0.55);

  --line:       #E2E6EA;
  --line-soft:  #EAEDF0;
  --line-dark:  rgba(255, 255, 255, 0.14);

  --accent:       #1E4FD8;
  --accent-soft:  #5B87F2;
  --accent-dark:  #143AAD;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Archivo', system-ui, sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 5vw, 72px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #fff; color: var(--text);
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,.8); }

.section-title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--text);
}
.section-title--light { color: #fff; }

.lede {
  font-size: clamp(15.5px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 54ch;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  padding-bottom: 3px;
  border-bottom: 1.5px solid currentColor;
  transition: gap .3s var(--ease), color .25s var(--ease);
  cursor: pointer;
}
.link-arrow .material-symbols-outlined { font-size: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: 14px; color: var(--accent); }
.link-arrow:hover .material-symbols-outlined { transform: translateX(3px); }

/* ---------- Buttons (glass) ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 28px;
  border-radius: 100px;
  background: rgba(253,251,251,.8);
  color: var(--ink);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  transition: transform .35s var(--ease-out), background .3s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease-out);
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute; top: 0; left: -85%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease);
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(.97); transition-duration: .12s; }
.btn--accent {
  background: linear-gradient(180deg, rgba(56,102,238,.94), rgba(23,62,183,.94));
  border: 1px solid rgba(255,255,255,.38);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(30,79,216,.55), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--accent:hover {
  background: linear-gradient(180deg, rgba(66,112,245,.96), rgba(26,68,196,.96));
  box-shadow: 0 20px 42px -14px rgba(30,79,216,.65), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--white {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  color: var(--accent-dark);
  box-shadow: 0 10px 26px -12px rgba(10,10,12,.35), inset 0 1px 0 #fff;
}
.btn--white:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 38px -14px rgba(10,10,12,.45), inset 0 1px 0 #fff;
}
.btn .material-symbols-outlined { font-size: 18px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--accent-dark);
  transition: box-shadow .4s var(--ease);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--gutter);
  /* nudge the call + CTA cluster toward the edge */
  padding-right: max(14px, calc(var(--gutter) - 30px));
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}
.nav__brand {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.nav__brand i {
  font-style: normal;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1vw, 10px);
  margin: 0 auto;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 9px 12px;
  border-radius: 8px;
  transition: color .25s var(--ease), background .25s var(--ease);
  cursor: pointer;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}
.nav__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.nav__call-ic {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.35);
  transition: background .3s var(--ease), transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.nav__call-ic::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  animation: call-pulse 2.6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes call-pulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.nav__call-ic .material-symbols-outlined { font-size: 19px; }
.nav__call-txt { display: flex; flex-direction: column; line-height: 1.25; }
.nav__call-txt i { font-style: normal; font-size: 11px; color: rgba(255,255,255,.72); }
.nav__call-txt b { font-size: 14px; font-weight: 700; white-space: nowrap; }
.nav__call:hover .nav__call-ic {
  background: rgba(255,255,255,.3);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.45);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.nav__cta:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.35);
}
.nav__cta:active { transform: translateY(0) scale(.97); }

.nav.is-scrolled { box-shadow: 0 14px 34px -18px rgba(10,10,12,.55); }

.nav__toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper-2);
  color: var(--text);
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(92deg,
    rgba(178, 199, 242, 0.78) 0%,
    rgba(192, 211, 246, 0.46) 38%,
    rgba(205, 221, 248, 0) 66%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding: clamp(120px, 15vh, 160px) var(--gutter) clamp(56px, 8vh, 88px);
}
.hero__copy { position: relative; width: 100%; max-width: 620px; display: flex; flex-direction: column; align-items: flex-start; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.hero__eyebrow .material-symbols-outlined { font-size: 19px; }
.hero__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(34px, 3.9vw, 56px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 15ch;
}
.hero__body { margin-top: 20px; max-width: 52ch; font-size: clamp(15px, 1.15vw, 16.5px); line-height: 1.62; color: var(--text-dim); }
.hero__ctas { margin-top: 30px; display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap; }

/* ============================================================
   SERVICES (blue band)
   ============================================================ */
.services {
  background: var(--accent-dark);
  color: #fff;
  padding: clamp(64px, 9vh, 104px) var(--gutter);
}
.services__inner { max-width: var(--max); margin: 0 auto; }
.services__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vh, 40px);
}
.services__lede { max-width: 40ch; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,.78); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 24px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  transition: background .3s var(--ease), transform .35s var(--ease-out), border-color .3s var(--ease), box-shadow .35s var(--ease-out);
}
.service-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.service-card__ic {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(255,255,255,.12);
  margin-bottom: 16px;
}
.service-card__ic .material-symbols-outlined { font-size: 23px; color: #fff; }
.service-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.service-card p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.78); }
.service-card__price {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
}
.services__note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.65); }
.services__seasonal {
  margin-top: 18px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.services__seasonal .material-symbols-outlined { font-size: 24px; color: #fff; flex: none; }
.services__seasonal b { display: block; font-size: 14.5px; font-weight: 700; }
.services__seasonal span:not(.material-symbols-outlined) { font-size: 13.5px; color: rgba(255,255,255,.75); }

/* ============================================================
   WORK
   ============================================================ */
.work { padding: clamp(64px, 9vh, 104px) var(--gutter); background: var(--paper-2); }
.work__inner { max-width: var(--max); margin: 0 auto; }
.work__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(24px, 4vh, 36px);
}
.work__note { margin: -10px 0 20px; font-size: 13.5px; color: var(--text-faint); }
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.work-card {
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--ink); aspect-ratio: 4 / 3;
  transition: transform .4s var(--ease);
}
.work-card:hover { transform: translateY(-4px); }
.work-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card:hover img { transform: scale(1.05); }
.work-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,16,.84) 4%, rgba(10,12,16,.22) 42%, rgba(10,12,16,0) 68%); }
.work-card__tag { position: absolute; top: 13px; left: 13px; padding: 6px 12px; border-radius: 100px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-dark); background: rgba(255,255,255,.94); }
.work-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; color: var(--on-dark); }
.work-card__title { font-size: 16.5px; font-weight: 700; letter-spacing: 0; line-height: 1.15; }
.work-card__meta { margin-top: 5px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--on-dark-dim); }
.work-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--accent-soft); }

/* ============================================================
   OUR STORY
   ============================================================ */
.story { padding: clamp(64px, 9vh, 104px) var(--gutter); background: var(--paper); }
.story__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.story__lead { font-size: clamp(17px, 1.5vw, 20px); font-weight: 600; line-height: 1.5; color: var(--text); margin-bottom: 14px; }
.story__body p:not(.story__lead) { font-size: 15px; line-height: 1.66; color: var(--text-dim); margin-bottom: 12px; max-width: 62ch; }
.story__sig {
  display: block; margin-top: 12px;
  font-family: var(--ff-display); font-style: italic;
  font-size: 19px; font-weight: 600;
  color: var(--accent-dark);
}

/* ============================================================
   TRUST (testimonial + points)
   ============================================================ */
.trust { padding: 0 var(--gutter); }
.trust__inner {
  position: relative; max-width: var(--max); margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  background: var(--ink); color: #fff;
}
.trust__bg { position: absolute; inset: 0; }
.trust__bg img { width: 100%; height: 100%; object-fit: cover; }
.trust__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,14,32,.94) 0%, rgba(13,25,66,.82) 55%, rgba(20,58,173,.55) 100%); }
.trust__content { position: relative; padding: clamp(36px, 5vw, 64px); }
.trust__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: clamp(20px, 3vh, 28px);
}
.trust__label {
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.trust__nav { display: flex; align-items: center; gap: 12px; }
.trust__count { font-size: 12.5px; font-weight: 600; color: var(--on-dark-dim); min-width: 42px; text-align: center; font-variant-numeric: tabular-nums; }
.trust__arrow {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
  transition: background .25s var(--ease), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  cursor: pointer;
}
.trust__arrow .material-symbols-outlined { font-size: 19px; }
.trust__arrow:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.3); }
.trust__arrow:active { transform: translateY(0) scale(.94); }
.trust__slider { overflow: hidden; }
.trust__track { display: flex; transition: transform .5s var(--ease); }
.trust__slide { flex: 0 0 100%; min-width: 100%; margin: 0; }
.trust__stars { display: flex; gap: 3px; color: var(--accent-soft); margin-bottom: 18px; }
.trust__stars .material-symbols-outlined { font-size: 17px; }
.trust__quote {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.01em;
  max-width: 46ch;
  margin: 0;
}
.trust__by { display: block; margin-top: 14px; font-size: 13.5px; color: var(--on-dark-dim); }
.trust__by b { color: #fff; font-weight: 700; margin-right: 6px; }
.trust__sources {
  display: flex; align-items: center; gap: 12px 22px; flex-wrap: wrap;
  margin-top: clamp(18px, 2.5vh, 24px);
}
.trust__source-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.82);
}
.trust__source-note .material-symbols-outlined { font-size: 17px; color: var(--accent-soft); }
.trust__source {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.82);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.trust__source .material-symbols-outlined { font-size: 15px; }
.trust__source:hover { color: #fff; border-color: rgba(255,255,255,.7); }
.trust__points {
  margin-top: clamp(28px, 4vh, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust__point {
  display: flex; flex-direction: column; gap: 3px;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  transition: background .3s var(--ease), transform .35s var(--ease-out);
}
.trust__point:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.trust__point .material-symbols-outlined { font-size: 22px; color: var(--accent-soft); margin-bottom: 6px; }
.trust__point b { font-size: 14.5px; font-weight: 700; }
.trust__point span { font-size: 13px; line-height: 1.5; color: var(--on-dark-dim); }

/* ============================================================
   ESTIMATE FORM
   ============================================================ */
.estimate {
  padding: clamp(72px, 10vh, 120px) var(--gutter);
  background:
    radial-gradient(70% 80% at 88% 15%, rgba(30,79,216,.1), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(91,135,242,.08), transparent 60%),
    var(--paper);
}
.estimate__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px); }
@media (min-width: 900px) { .estimate__inner { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.estimate__copy .section-title { margin-bottom: 16px; }
.price-list {
  margin-top: 24px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 16px;
  padding: 8px 20px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 44px -28px rgba(20,58,173,.3), inset 0 1px 0 #fff;
  max-width: 460px;
}
.price-list__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.price-list__row span { font-weight: 600; color: var(--text); }
.price-list__row span i { font-style: normal; font-weight: 500; font-size: 12px; color: var(--text-faint); margin-left: 6px; }
.price-list__row b { font-weight: 700; color: var(--accent-dark); font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-list__note { padding-top: 11px; }
.price-list__note p { font-size: 12.5px; line-height: 1.5; color: var(--text-faint); padding: 2px 0; }
.estimate__points { margin-top: 22px; display: grid; gap: 11px; }
.estimate__points { margin-top: 22px; display: grid; gap: 11px; }
.estimate__points li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-dim); }
.estimate__points .material-symbols-outlined { color: var(--accent); font-size: 20px; }
.estimate__call { margin-top: 26px; }
.estimate-form {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px); display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px -30px rgba(20,58,173,.25), inset 0 1px 0 #fff;
}
.estimate-form__row { display: flex; flex-direction: column; gap: 6px; }
.estimate-form__row--full { grid-column: 1 / -1; }
.estimate-form__row label, .estimate-form__row legend { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
fieldset.estimate-form__row { border: none; margin: 0; padding: 0; }
fieldset.estimate-form__row legend { margin-bottom: 8px; }
.svc-picks { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; }
.svc-pick { position: relative; }
.svc-pick input {
  position: absolute; inset: 0;
  opacity: 0; margin: 0;
  cursor: pointer;
}
.svc-pick span {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  font-size: 14px; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  color: var(--text-dim);
  transition: color .2s var(--ease);
  pointer-events: none;
}
.svc-pick span::before {
  content: "";
  display: block;
  width: 21px; height: 21px; flex: none;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background-color: var(--paper);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0 0;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.svc-pick:hover span { color: var(--text); }
.svc-pick:hover span::before { border-color: var(--accent-soft); }
.svc-pick input:checked + span { color: var(--text); font-weight: 600; }
.svc-pick input:checked + span::before {
  background-color: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 13px 13px;
}
.svc-pick input:focus-visible + span::before { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 480px) { .svc-picks { grid-template-columns: 1fr; } }
.estimate-form__row input, .estimate-form__row select, .estimate-form__row textarea {
  font-family: var(--ff-body); font-size: 16px; padding: 13px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.estimate-form__row textarea { resize: vertical; min-height: 90px; }
.estimate-form__row input:focus, .estimate-form__row select:focus, .estimate-form__row textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,79,216,.16);
}
.estimate-form__submit { grid-column: 1 / -1; }
.estimate-form__note { grid-column: 1 / -1; margin: 0; font-size: 14px; font-weight: 600; color: var(--accent); min-height: 1.2em; }

@media (max-width: 640px) { .estimate-form { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(56px, 8vh, 90px) var(--gutter) clamp(72px, 10vh, 110px); background: var(--paper-2); border-top: 1px solid var(--line-soft); }
.faq__inner { max-width: 800px; margin: 0 auto; }
.faq__head { margin-bottom: clamp(20px, 3vh, 30px); }
.faq__list { display: grid; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; padding: 18px 4px;
  font-weight: 600;
  font-size: clamp(15.5px, 1.6vw, 17.5px); color: var(--text);
  transition: color .25s var(--ease); cursor: pointer;
}
.faq__q:hover { color: var(--accent); }
.faq__icon { flex: none; position: relative; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: currentColor; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.faq__icon::before { width: 15px; height: 1.7px; }
.faq__icon::after { width: 1.7px; height: 15px; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq__a-inner { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p { padding: 0 40px 20px 4px; font-size: 15px; line-height: 1.6; color: var(--text-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--accent-dark);
  color: var(--on-dark);
  padding: clamp(48px, 7vh, 76px) var(--gutter) 26px;
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 5vw, 72px); padding-bottom: clamp(32px, 5vh, 52px); border-bottom: 1px solid var(--line-dark); }
.footer__brand { font-family: var(--ff-display); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; }
.footer__brand i { font-style: normal; display: block; font-family: var(--ff-body); font-weight: 500; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--on-dark-faint); margin-top: 7px; }
.footer__pitch { margin-top: 18px; max-width: 40ch; font-size: 14.5px; line-height: 1.6; color: var(--on-dark-dim); }
.footer__stack { display: flex; flex-direction: column; align-items: center; width: fit-content; }
.footer__social { margin-top: 20px; display: flex; gap: 10px; }
.footer__social-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  transition: background .25s var(--ease), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.footer__social-btn:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.22);
}
.footer__nd {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: #3FD35F;
  transform: translateY(-1px);
}
.footer__cta { margin-top: 22px; }
.footer__stack .footer__cta { margin-top: 18px; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.footer__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 12px; }
.footer__cols a, .footer__cols p { font-size: 14.5px; color: var(--on-dark-dim); line-height: 1.9; }
.footer__cols a { transition: color .25s var(--ease); }
.footer__cols a:hover { color: var(--on-dark); }
.footer__base { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 13px; color: var(--on-dark-faint); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
[data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .05s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .1s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .15s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: .2s; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: .25s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* mid widths: compress the nav so the CTA never runs off-screen */
@media (max-width: 1180px) and (min-width: 861px) {
  .nav__brand i { display: none; }
  .nav__links a { padding: 9px 7px; font-size: 11.5px; letter-spacing: .04em; }
  .nav__call-txt { display: none; }
  .nav__actions { gap: 12px; }
  .nav__cta { padding: 10px 16px; font-size: 12px; }
  .nav__inner { gap: 12px; }
}

@media (max-width: 1024px) {
  .story__inner { grid-template-columns: 1fr; gap: 20px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__inner { padding: 10px var(--gutter); }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; margin-left: auto; }
  .nav__toggle span { display: block; width: 24px; height: 2px; background: var(--on-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); opacity: 1; }
  .nav.is-open .nav__links {
    display: flex; position: fixed; inset: 72px 14px auto 14px;
    flex-direction: column; align-items: stretch; gap: 2px; margin: 0; padding: 14px;
    background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 18px;
    box-shadow: 0 30px 60px -24px rgba(0,0,0,.7);
  }
  .nav.is-open .nav__inner { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav.is-open .nav__links a { font-size: 16px; padding: 13px 14px; }
  .nav.is-open .nav__actions {
    display: flex; position: fixed; inset: auto 14px 14px 14px; z-index: 101; gap: 10px;
  }
  .nav.is-open .nav__actions .nav__call {
    flex: none; padding: 8px 14px 8px 8px; border-radius: 100px;
    background: var(--ink-2); border: 1px solid var(--line-dark);
  }
  .nav.is-open .nav__actions .nav__call-ic { width: 32px; height: 32px; }
  .nav.is-open .nav__actions .nav__call-txt i { display: none; }
  .nav.is-open .nav__actions .nav__cta { flex: 1; justify-content: center; }

  .hero { min-height: 0; }
  .hero__inner { padding-top: clamp(104px, 14vh, 130px); }
  .hero__copy { max-width: none; }
  .hero__bg { object-position: 24% center; }
  .hero::after {
    background: linear-gradient(180deg, rgba(178,199,242,.8) 0%, rgba(192,211,246,.52) 55%, rgba(205,221,248,.22) 100%);
  }

  .trust { padding: 0 14px; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .trust__points { grid-template-columns: 1fr; gap: 16px; }
  .trust { padding: 0; }
  .trust__inner { border-radius: 0; }
  .hero__title { font-size: clamp(29px, 8.2vw, 36px); }
  .footer__cols { grid-template-columns: 1fr; }
  .hero__ctas .btn, .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1; }
}

/* ============================================================
   SUBPAGES (services · reviews · thanks · 404)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--accent-dark);
  color: #fff;
  padding: calc(clamp(64px, 9vh, 104px) + 66px) var(--gutter) clamp(56px, 8vh, 88px);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 90% at 85% 0%, rgba(91,135,242,.28), transparent 60%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.page-hero__title {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .005em;
  max-width: 18ch;
}
.page-hero__lede { margin-top: 16px; max-width: 56ch; font-size: clamp(15px, 1.2vw, 17px); line-height: 1.6; color: rgba(255,255,255,.82); }
.page-hero__ctas { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.crumb { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.crumb a { border-bottom: 1px solid rgba(255,255,255,.4); }
.crumb a:hover { color: #fff; }

/* services detail */
.svc-detail { padding: clamp(56px, 8vh, 92px) var(--gutter); }
.svc-detail:nth-of-type(even) { background: var(--paper-2); }
.svc-detail__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: start; }
.svc-detail__ic { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(30,79,216,.1); color: var(--accent); margin-bottom: 16px; }
.svc-detail__ic .material-symbols-outlined { font-size: 25px; }
.svc-detail h2 { font-family: var(--ff-body); font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); text-transform: uppercase; line-height: 1.1; margin-bottom: 14px; }
.svc-detail__lede { font-size: 15.5px; line-height: 1.65; color: var(--text-dim); max-width: 54ch; }
.svc-detail__price { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.svc-detail__tier {
  display: inline-flex; flex-direction: column; gap: 2px;
  padding: 12px 18px; border-radius: 12px;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 12px 26px -20px rgba(10,10,12,.3);
}
.svc-detail__tier b { font-size: 17px; font-weight: 700; color: var(--accent-dark); }
.svc-detail__tier span { font-size: 12px; color: var(--text-faint); }
.svc-detail__list { display: grid; gap: 10px; margin-top: 4px; }
.svc-detail__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--text-dim); }
.svc-detail__list .material-symbols-outlined { font-size: 19px; color: var(--accent); flex: none; }
.svc-detail__fine { margin-top: 14px; font-size: 12.5px; line-height: 1.5; color: var(--text-faint); }
.svc-detail__quote {
  margin-top: 22px; padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(30,79,216,.05);
  border-radius: 0 12px 12px 0;
}
.svc-detail__quote p { font-size: 14.5px; line-height: 1.55; color: var(--text); font-weight: 500; }
.svc-detail__quote span { display: block; margin-top: 8px; font-size: 12.5px; color: var(--text-faint); }

/* reviews page */
.rev-page { padding: clamp(56px, 8vh, 92px) var(--gutter); }
.rev-page__inner { max-width: var(--max); margin: 0 auto; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev-card {
  padding: 26px 24px; border-radius: 16px;
  background: var(--paper-2); border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.rev-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(10,10,12,.3); }
.rev-card__stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 12px; }
.rev-card__stars .material-symbols-outlined { font-size: 15px; }
.rev-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-dim); }
.rev-card footer { margin-top: 14px; font-size: 13px; }
.rev-card footer b { display: block; color: var(--text); font-weight: 700; }
.rev-card footer span { color: var(--text-faint); }
.rev-page__foot { margin-top: 32px; display: flex; align-items: center; gap: 14px 24px; flex-wrap: wrap; }
.rev-page__note { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text-dim); }
.rev-page__note .material-symbols-outlined { font-size: 18px; color: var(--accent); }
.rev-page__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--accent-dark); border-bottom: 1px solid rgba(20,58,173,.4); padding-bottom: 2px; }
.rev-page__link .material-symbols-outlined { font-size: 15px; }
.rev-page__link:hover { border-color: var(--accent-dark); }

/* thanks + 404 */
.msg-page { min-height: 78vh; display: grid; place-items: center; padding: 140px var(--gutter) 90px; text-align: center; background: var(--paper-2); }
.msg-page__inner { max-width: 620px; }
.msg-page__ic { display: inline-grid; place-items: center; width: 74px; height: 74px; border-radius: 50%; background: var(--accent); color: #fff; margin-bottom: 24px; box-shadow: 0 18px 40px -16px rgba(30,79,216,.6); }
.msg-page__ic .material-symbols-outlined { font-size: 38px; }
.msg-page h1 { font-family: var(--ff-body); font-weight: 700; font-size: clamp(28px, 3.6vw, 44px); text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; }
.msg-page p { font-size: 16px; line-height: 1.6; color: var(--text-dim); max-width: 46ch; margin: 0 auto 10px; }
.msg-page__meta { margin-top: 20px; font-size: 14px; color: var(--text-faint); }
.msg-page__ctas { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .svc-detail__inner { grid-template-columns: 1fr; gap: 22px; }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .rev-grid { grid-template-columns: 1fr; }
}
a.service-card { display: block; color: inherit; }
a.service-card:hover h3 { text-decoration: underline; text-underline-offset: 3px; }
.link-arrow--light { color: #fff; border-color: rgba(255,255,255,.5); }
.link-arrow--light:hover { color: #fff; border-color: #fff; }
.services__head > div:last-child { display: flex; flex-direction: column; align-items: flex-start; }

/* ---------- form label hints ---------- */
.estimate-form__row label i, .estimate-form__row legend i {
  font-style: normal;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--text-faint);
  margin-left: 7px;
}
.estimate-form__row input::placeholder,
.estimate-form__row textarea::placeholder { color: #B4BAC4; }

/* ---------- submit success overlay ---------- */
.sent {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(10, 14, 32, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: sent-fade .3s var(--ease-out);
}
.sent[hidden] { display: none; }
.sent__card {
  position: relative;
  width: 100%; max-width: 460px;
  padding: 40px 34px 34px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 90px -30px rgba(10,14,32,.6), inset 0 1px 0 #fff;
  text-align: center;
  animation: sent-pop .45s var(--ease-out);
}
.sent__check {
  display: grid; place-items: center;
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #37D67A, #1FA855);
  color: #fff;
  box-shadow: 0 18px 38px -12px rgba(31,168,85,.65), inset 0 1px 0 rgba(255,255,255,.5);
  animation: sent-check .5s .1s var(--ease-out) both;
}
.sent__check .material-symbols-outlined { font-size: 48px; font-variation-settings: 'wght' 700; }
.sent__title {
  font-family: var(--ff-body);
  font-weight: 700; font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase; letter-spacing: .005em;
  color: var(--ink); margin-bottom: 12px;
}
.sent__body { font-size: 15.5px; line-height: 1.6; color: var(--text-dim); max-width: 34ch; margin: 0 auto; }
.sent__meta { margin-top: 14px; font-size: 14px; color: var(--text-faint); }
.sent__meta a { font-weight: 700; color: var(--accent-dark); }
.sent__close { margin-top: 26px; min-width: 150px; }

@keyframes sent-fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes sent-pop { from { opacity: 0; transform: translateY(16px) scale(.96) } to { opacity: 1; transform: none } }
@keyframes sent-check { from { transform: scale(.4); opacity: 0 } to { transform: scale(1); opacity: 1 } }
@media (prefers-reduced-motion: reduce) {
  .sent, .sent__card, .sent__check { animation: none !important; }
}

/* ---------- service area ---------- */
.area { padding: clamp(56px, 8vh, 92px) var(--gutter); background: var(--paper-2); }
.area__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 68px); align-items: start;
}
.area__list { display: flex; flex-wrap: wrap; gap: 9px; }
.area__list li {
  padding: 9px 17px; border-radius: 100px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--text-dim);
}
@media (max-width: 900px) { .area__inner { grid-template-columns: 1fr; gap: 22px; } }
