/* ============================================================
   Johnson's Homes — Pressure Washing, Cincinnati OH
   ============================================================ */

:root {
  /* ---- palette (drawn from the JH logo: deep navy + spray-blue) ---- */
  --navy-deep:   #0d1e30;
  --navy-1:      #142e46;
  --navy-2:      #1c3c59;
  --navy-3:      #27506f;
  --black:       #081420;
  --cream:       #f3efe3;
  --cream-dim:   #cfd6d6;
  --slate:       #93a2ab;
  --sky:         #35c2f2;
  --sky-soft:    #bfeaf9;
  --amber:       #ff7a3d;
  --line:        rgba(243, 239, 227, 0.14);
  --line-soft:   rgba(243, 239, 227, 0.08);

  /* ---- type ---- */
  --font-display: 'Archivo', Arial, sans-serif;
  --font-accent: 'Fraunces', Georgia, serif;

  --text-impact: clamp(5rem, 14vw, 11rem);
  --text-h1: clamp(2.6rem, 6vw, 4.75rem);
  --text-h2: clamp(2.1rem, 4.4vw, 3.4rem);
  --text-h3: clamp(1.5rem, 2.6vw, 2.1rem);
  --text-h4: clamp(1.2rem, 1.6vw, 1.5rem);
  --text-eyebrow: 0.78rem;

  /* ---- layout ---- */
  --container: 1360px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --radius-sm: 0.9rem;
  --radius-med: 2.25rem;
  --radius-lg: 5rem;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
}

/* ---- reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-deep);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--sky); color: var(--black); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-size: var(--text-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}
.eyebrow::before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--sky);
  display: inline-block;
}

.accent-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--sky);
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.loader.is-done {
  animation: loader-wipe 3s var(--ease) forwards;
}
@keyframes loader-wipe {
  to { clip-path: inset(0 0 0 100%); }
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.loader__logo {
  height: 160px;
  width: auto;
  margin: -30px 0;
}
.loader__text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.loader__dots i {
  font-style: normal;
  animation: dot-pulse 1.2s infinite;
}
.loader__dots i:nth-child(2) { animation-delay: 0.2s; }
.loader__dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-pulse {
  0%, 60%, 100% { opacity: 0.2; }
  30% { opacity: 1; }
}
.loader__bar {
  width: 180px;
  height: 4px;
  border-radius: 4px;
  background: var(--navy-2);
  overflow: hidden;
}
.loader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sky), var(--sky-soft));
  transform-origin: left;
  animation: pressure-build 2.9s var(--ease) forwards;
}
@keyframes pressure-build {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.loader__spray {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.loader__spray i {
  position: absolute;
  left: -12%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--sky));
  animation: spray-shot 2s linear infinite;
}
@keyframes spray-shot {
  to { transform: translateX(130vw); }
}
.loader.is-done .loader__inner {
  opacity: 0;
  transition: opacity 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 30, 48, 0.88);
  backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__brand img { height: 42px; width: auto; }
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav__brand-text b {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.nav__brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}
.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream-dim);
  transition: color 0.25s;
  position: relative;
}
.nav__links a:hover { color: var(--cream); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav__phone {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--cream);
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sky);
  color: var(--black);
  animation: btn-shake 0.45s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(53,194,242,.55); }
@keyframes btn-shake {
  0%, 100% { rotate: 0deg; }
  25% { rotate: 1.5deg; }
  75% { rotate: -1.5deg; }
}
.btn svg { width: 15px; height: 15px; }

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
  padding: 0.85rem 0.2rem;
  border-bottom: 1.5px solid var(--line);
  transition: border-color 0.3s, color 0.3s, gap 0.3s;
}
.hero__link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.hero__link:hover { color: var(--sky); border-color: var(--sky); gap: 0.75rem; }
.hero__link:hover svg { transform: translate(2px, -2px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__burger span {
  width: 22px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 7rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 45% at 82% 8%, rgba(53,194,242,0.16), transparent 60%),
    linear-gradient(200deg, var(--navy-1) 0%, var(--navy-deep) 45%, var(--black) 100%);
}
.hero__bg svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* falling water streaks — the spray in the air on wash day */
.hero__rain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  /* fade the rain out before it reaches the headline area */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 90%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 90%);
}
.hero__rain i {
  position: absolute;
  top: -15%;
  width: 1.5px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, var(--sky));
  animation: rain-fall linear infinite;
}
@keyframes rain-fall {
  to { transform: translateY(130vh); }
}

.hero__top-row {
  position: relative; z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(2rem, 7vw, 4.5rem);
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__badges { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.hero__badge {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero__badge svg { width: 13px; height: 13px; color: var(--sky); }

.hero__headline-wrap { position: relative; z-index: 2; }
.hero__headline {
  font-size: var(--text-h1);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 15ch;
  clip-path: inset(-5% 100% -5% 0);
}
body.is-ready .hero__headline {
  animation: wipe-in 1.3s var(--ease) 0.15s both;
}
/* squeegee pass: the headline is revealed left-to-right like a clean streak */
@keyframes wipe-in {
  from { clip-path: inset(-5% 100% -5% 0); }
  to { clip-path: inset(-5% 0% -5% 0); }
}
/* arch from the logo, ghosted behind the hero's right side */
.hero::after {
  content: '';
  position: absolute;
  top: 14vh;
  right: -10vw;
  width: 42vw;
  aspect-ratio: 1;
  border: 2px solid rgba(53, 194, 242, 0.13);
  border-radius: 50%;
  clip-path: inset(0 0 46% 0);
  z-index: 1;
  pointer-events: none;
}
.hero__headline .lt { font-weight: 300; color: var(--slate); }
.hero__headline .accent-italic { text-transform: none; font-size: 0.9em; }

.hero__sub {
  position: relative; z-index: 2;
  margin-top: 1.6rem;
  max-width: 40ch;
  font-size: 1.1rem;
  color: var(--cream-dim);
}

.hero__actions {
  position: relative; z-index: 2;
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero__bottom-row {
  position: relative; z-index: 2;
  margin-top: clamp(3rem, 8vw, 6rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.6rem;
  flex-wrap: wrap;
}
.hero__scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
.hero__scroll-cue svg { width: 16px; height: 16px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

.hero__service-area {
  font-size: 0.85rem;
  color: var(--cream-dim);
  text-align: right;
  max-width: 26ch;
}
.hero__service-area b { color: var(--cream); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy-1);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}
.marquee__group { display: flex; }
.marquee--platforms .marquee__track {
  animation-direction: reverse;
  animation-duration: 38s;
}
.marquee--platforms .marquee__track span::after { background: var(--slate); }
.marquee__stars {
  color: var(--sky);
  font-weight: 400;
  letter-spacing: 0.12em;
}
.marquee__track span {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}
.marquee__track span::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sky);
  display: inline-block;
  margin-left: 2rem;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   IMPACT STAT
   ============================================================ */
.impact {
  padding: var(--section-pad) 0 4rem;
}
.impact__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.impact__num {
  font-size: var(--text-impact);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.02em;
  display: flex;
}
.impact__num span { display: inline-block; }
.impact__label {
  padding-bottom: 0.8rem;
}
.impact__label b {
  display: block;
  font-size: var(--text-h4);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.impact__label small {
  display: block;
  color: var(--slate);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  max-width: 34ch;
}

.stat-grid {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat-grid__item {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-right: 1px solid var(--line);
}
.stat-grid__item:last-child { border-right: none; }
.stat-grid__item b {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--sky);
}
.stat-grid__item span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: var(--text-h2);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: 0.6rem;
}
.section-head p {
  max-width: 34ch;
  color: var(--cream-dim);
  font-size: 0.98rem;
}

section { padding: var(--section-pad) 0; }
.section-alt { background: var(--navy-1); }

/* ============================================================
   YEAR TABLE (jobs completed)
   ============================================================ */
.year-table {
  border-top: 1px solid var(--line);
}
.year-table__row {
  display: grid;
  grid-template-columns: 5rem 1fr 10rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.year-table__row:hover { background: var(--line-soft); }
.year-table__row.head {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  padding-top: 0;
}
.year-table__row.head span:last-child { text-align: right; }
.year-table__note {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--slate);
}
.year-table__row b { font-size: 1.1rem; font-weight: 800; }
.year-table__bar {
  height: 6px;
  border-radius: 4px;
  background: var(--navy-2);
  overflow: hidden;
}
.year-table__bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--sky-soft));
  border-radius: 4px;
}
.year-table__count { text-align: right; font-weight: 700; color: var(--sky); }

/* ============================================================
   SERVICES TABLE
   ============================================================ */
.services-table { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 8rem 1.4fr 1.6fr 8rem 2.5rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
  cursor: pointer;
}
.service-row:hover {
  background: linear-gradient(90deg, var(--line-soft), transparent);
  padding-left: 1.2rem;
}
.service-row__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  border: 1px solid rgba(53,194,242,0.4);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
  width: fit-content;
}
.service-row__name {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
}
.service-row__desc { color: var(--cream-dim); font-size: 0.92rem; }
.service-row__price {
  text-align: right;
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
}
.service-row__arrow {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease), background 0.35s, border-color .35s;
  margin-left: auto;
}
.service-row__arrow svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.service-row:hover .service-row__arrow {
  background: var(--sky);
  border-color: var(--sky);
}
.service-row:hover .service-row__arrow svg { transform: rotate(45deg); color: var(--black); }

/* ============================================================
   GALLERY COLLAGE
   ============================================================ */
.gallery { overflow: hidden; }
.gallery__collage {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 3rem 0 2rem;
  flex-wrap: nowrap;
}
.gallery__card {
  width: clamp(120px, 14vw, 180px);
  aspect-ratio: 3/4.4;
  border-radius: var(--radius-sm);
  margin-left: -2.2rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), z-index 0s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.gallery__card:first-child { margin-left: 0; }
.gallery__card video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__card.is-playing video { opacity: 1; }
.gallery__card b {
  position: relative; z-index: 2;
  font-size: 0.82rem; font-weight: 800; text-transform: uppercase; line-height: 1.15;
}
.gallery__card span {
  position: relative; z-index: 2;
  font-size: 0.68rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.06em;
}
.gallery__card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.55) 100%);
}
.gallery__card:nth-child(1) { transform: rotate(-9deg); background: var(--navy-2); }
.gallery__card:nth-child(2) { transform: rotate(-5deg) translateY(10px); background: var(--navy-3); }
.gallery__card:nth-child(3) { transform: rotate(-1deg) translateY(-14px); background: linear-gradient(160deg, var(--sky), var(--navy-3)); }
.gallery__card:nth-child(4) { transform: rotate(3deg) translateY(-18px); background: var(--navy-2); }
.gallery__card:nth-child(5) { transform: rotate(7deg) translateY(4px); background: var(--navy-3); }
.gallery__card:nth-child(6) { transform: rotate(11deg) translateY(16px); background: var(--navy-2); }
.gallery__card:hover { transform: translateY(-22px) scale(1.05); z-index: 20; }

.gallery__cta { text-align: center; margin-top: 3rem; }
.gallery__cta p { color: var(--cream-dim); margin-bottom: 1.2rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process__list { border-top: 1px solid var(--line); }
.process__item {
  display: grid;
  grid-template-columns: 6rem 1fr 2fr;
  gap: 2rem;
  align-items: start;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}
.process__item b.num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--navy-3);
}
.process__item h3 {
  font-size: var(--text-h4);
  font-weight: 800;
  text-transform: uppercase;
}
.process__item p { color: var(--cream-dim); max-width: 46ch; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--navy-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-med) var(--radius-med) var(--radius-med) 0.4rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.review-card__stars { display: flex; gap: 0.25rem; color: var(--sky); }
.review-card__stars svg { width: 16px; height: 16px; }
.review-card p.quote { color: var(--cream); font-size: 1rem; line-height: 1.6; flex: 1; }
.review-card__who { display: flex; align-items: center; gap: 0.8rem; }
.review-card__avatar {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: linear-gradient(160deg, var(--sky), var(--navy-3));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: var(--black);
}
.review-card__who b { display: block; font-size: 0.92rem; }
.review-card__who span { display: block; font-size: 0.78rem; color: var(--slate); }

.reviews__more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
  transition: color 0.25s;
}
.faq__item summary:hover { color: var(--sky); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--sky);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0.25rem 1.6rem;
  color: var(--cream-dim);
  max-width: 68ch;
}

/* skip link: hidden until focused via keyboard */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--sky);
  color: var(--black);
  font-weight: 700;
  padding: 0.8rem 1.4rem;
  border-radius: 100px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: 0 var(--pad);
  background: linear-gradient(155deg, var(--navy-2), var(--navy-deep) 60%);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: none;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(53,194,242,0.18), transparent 70%);
  top: -30%; right: -10%;
}
.cta-band h2 {
  position: relative; z-index: 1;
  font-size: var(--text-h1);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.03;
  max-width: 18ch;
  margin: 0 auto 0.6rem;
}
.cta-band p {
  position: relative; z-index: 1;
  color: var(--cream-dim);
  max-width: 40ch;
  margin: 1rem auto 2.2rem;
}
.cta-band .btn { position: relative; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding-top: clamp(3rem, 7vw, 5rem);
  position: relative;
}
.footer__headline {
  text-align: center;
  padding: 0 var(--pad) clamp(2.5rem, 6vw, 4rem);
}
.footer__headline .sig {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.5rem;
  transform: rotate(-2deg);
}
.footer__headline h2 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
}
.footer__headline h2 em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--sky);
  font-weight: 500;
}

.footer__grid {
  border-top: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.1rem;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 0.92rem;
  color: var(--cream-dim);
  margin-bottom: 0.7rem;
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--sky); }
.footer__brand-block { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer__brand-block img { height: 40px; }
.footer__brand-block b { font-size: 1rem; }
.footer__desc { max-width: 30ch; color: var(--slate); font-size: 0.88rem; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--slate);
}
.footer__bottom a { color: var(--slate); }
.footer__bottom a:hover { color: var(--sky); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__glow {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  box-shadow: 0 0 24px 2px rgba(53,194,242,.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .nav__phone { display: inline-flex; align-items: center; gap: 0.4rem; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta .btn-primary { display: none; }
  .nav__brand-text { white-space: nowrap; }
  .nav__brand-text b { font-size: 0.92rem; }
  .nav__brand-text span { font-size: 0.56rem; }
  .impact__row { grid-template-columns: 1fr; gap: 1rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid__item:nth-child(2) { border-right: none; }
  .stat-grid__item { border-bottom: 1px solid var(--line); }
  .year-table__row { grid-template-columns: 3.5rem 1fr 5rem; }
  .year-table__row span.hide-sm { display: none; }
  .service-row { grid-template-columns: 1fr 2.5rem; grid-template-areas: "tag tag" "name arrow" "desc desc" "price price"; row-gap: 0.5rem; }
  .service-row__tag { grid-area: tag; }
  .service-row__name { grid-area: name; }
  .service-row__arrow { grid-area: arrow; }
  .service-row__desc { grid-area: desc; }
  .service-row__price { grid-area: price; text-align: left; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process__item { grid-template-columns: 4rem 1fr; }
  .process__item p { grid-column: 1 / -1; }

  .gallery__collage {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-left: var(--pad);
    padding-right: var(--pad);
    -webkit-overflow-scrolling: touch;
  }
  .gallery__collage::-webkit-scrollbar { display: none; }
  .gallery__card {
    width: 150px;
    margin-left: 1rem;
    scroll-snap-align: start;
    transform: none !important;
  }
  .gallery__card:first-child { margin-left: 0; }
  .gallery__card:hover { transform: translateY(0) !important; }
}

@media (max-width: 560px) {
  .hero__bottom-row { flex-direction: column; align-items: flex-start; }
  .hero__service-area { text-align: left; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { margin: 0 0.75rem; border-radius: var(--radius-med) var(--radius-med) 0 0; }
}

/* mobile nav panel */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  padding: 5.5rem var(--pad) 2rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.nav__mobile a:first-child { margin-top: auto; }
.nav__mobile .btn-primary { margin-bottom: auto; }
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile a {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}
.nav__mobile .btn {
  align-self: flex-start;
  margin-top: 1rem;
  font-size: 1rem;
  text-transform: none;
}

/* ============================================================
   MOTION & SMALL-SCREEN GUARDS
   ============================================================ */
@media (max-width: 900px) {
  .hero::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; width: auto; flex-wrap: wrap; }
  .hero__scroll-cue svg { animation: none; }
  .hero__headline, body.is-ready .hero__headline { animation: none; clip-path: none; }
  .hero__rain { display: none; }
  .btn-primary { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery__card,
  .service-row,
  .btn,
  .hero__link { transition: none; }
}
