/* ============================================================
   R&J Exterior Cleaning — bespoke front end.
   Identity: "the clean reveal" — water, shine, before/after.
   Blues & whites (client brand), friendly + professional.
   Bricolage Grotesque (display) / Figtree (body).
   ============================================================ */

:root {
  /* palette — eyedropped from the client's real logo (blue letters, green banner, splash) */
  --ink:      #0A1E44;   /* logo outline navy — text, header, footer */
  --ink-soft: #3a5378;
  --blue:     #1567CE;   /* logo letter blue */
  --aqua:     #51BCEA;   /* logo splash */
  --spray:    #AEE1F7;   /* pale spray */
  --foam:     #F2F8FC;   /* section tint */
  --white:    #ffffff;
  --sun:      #88C335;   /* logo green — CTA accent */
  --line:     rgba(10, 30, 68, .1);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -12px rgba(11, 37, 64, .18);
  --shadow-lg: 0 24px 60px -20px rgba(11, 37, 64, .3);
  --wrap: 1180px;

  --ease-out: cubic-bezier(.22, .9, .3, 1);
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
a { color: var(--blue); }
ul { padding-left: 1.2em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 4vw, 36px); }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ── buttons ── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s, color .2s;
}
.btn::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .45) 50%, transparent 60%);
  background-size: 280% 100%; background-position: 120% 0; transition: background-position .7s var(--ease-out); }
.btn:hover::after { background-position: -80% 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-solid { background: var(--sun); color: var(--ink); box-shadow: 0 8px 22px -8px rgba(136, 195, 53, .6); }
.btn-solid:hover { box-shadow: 0 12px 28px -8px rgba(136, 195, 53, .7); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }

.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--blue);
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--aqua); }
.js .reveal .eyebrow::before { width: 0; transition: width .6s var(--ease-out) .25s; }
.js .reveal.in .eyebrow::before { width: 26px; }
html { scroll-behavior: smooth; }

/* ── header ── */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .3s;
}
.site-head.scrolled { box-shadow: 0 8px 30px -18px rgba(10, 30, 68, .35); }
.site-head.head-hidden { transform: translateY(-100%); }
.head-row { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-logo-foot { height: 74px; filter: drop-shadow(0 2px 10px rgba(255, 255, 255, .18)); }

.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.site-nav > a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .97rem;
  position: relative; padding: 6px 0;
}
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2.5px;
  border-radius: 2px; background: var(--aqua); transition: right .28s var(--ease-out);
}
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff !important; border-radius: 999px;
  padding: 10px 18px !important; font-size: .92rem !important;
  transition: background .2s, transform .25s var(--ease-out);
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--ink); margin: 5px 0; transition: transform .25s, opacity .2s; }

/* ── hero ── */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #EAF6FD 0%, var(--white) 55%, #F5FBFF 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob-a { width: 480px; height: 480px; background: var(--spray); top: -160px; right: -120px; animation: blob-drift 16s ease-in-out infinite alternate; }
.blob-b { width: 380px; height: 380px; background: #cfe9fa; bottom: -180px; left: -140px; animation: blob-drift 20s ease-in-out infinite alternate-reverse; }
@keyframes blob-drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(-40px, 30px) scale(1.08); } }

.drop { position: absolute; width: 14px; height: 18px; background: var(--aqua); opacity: .28;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; animation: drop-float 7s ease-in-out infinite; }
.drop::after { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-bottom: 10px solid var(--aqua); }
.d1 { top: 18%; left: 6%; animation-delay: 0s; }
.d2 { top: 60%; left: 12%; animation-delay: 1.4s; transform: scale(.7); }
.d3 { top: 26%; left: 46%; animation-delay: 2.8s; transform: scale(1.25); }
.d4 { top: 70%; right: 14%; animation-delay: .8s; }
.d5 { top: 12%; right: 30%; animation-delay: 2s; transform: scale(.6); }
@keyframes drop-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -18px; } }

.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 70px); align-items: center;
  padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(70px, 8vw, 104px);
}
.hero-copy .lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 22px; }
.hero-ticks { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 0; margin: 0; }
.hero-ticks li { font-weight: 600; font-size: .92rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero-ticks li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; flex: none;
  background: var(--aqua);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 7"/></svg>') center/100% no-repeat;
          mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 7"/></svg>') center/100% no-repeat;
}

/* the word "shine" gets a periodic light sweep */
.shine-word { position: relative; white-space: nowrap; color: var(--blue);
  background: linear-gradient(110deg, var(--blue) 40%, var(--aqua) 50%, var(--blue) 60%);
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shine-sweep 4.5s var(--ease-out) infinite; }
@keyframes shine-sweep { 0%, 55% { background-position: 110% 0; } 85%, 100% { background-position: -60% 0; } }
.shine-spark { position: absolute; top: -14px; right: -20px; width: 20px; height: 20px; color: var(--sun);
  animation: spark-pop 4.5s ease infinite; transform-origin: center; }
@keyframes spark-pop { 0%, 70% { transform: scale(0) rotate(0deg); opacity: 0; }
  80% { transform: scale(1.25) rotate(20deg); opacity: 1; } 88%, 100% { transform: scale(1) rotate(24deg); opacity: 0; } }

/* entrance stagger */
.rise { opacity: 0; translate: 0 26px; animation: rise .8s var(--ease-out) forwards; }
.rise-1 { animation-delay: .08s; }
.rise-2 { animation-delay: .18s; }
.rise-3 { animation-delay: .3s; }
.rise-4 { animation-delay: .42s; }
@keyframes rise { to { opacity: 1; translate: 0 0; } }

/* ── before/after slider ── */
.ba { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y; background: var(--foam); }
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { z-index: 2; clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0); }
.ba img, .ba-texture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-tag { position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--font-display); font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(11, 37, 64, .82); color: #fff; padding: 5px 12px; border-radius: 999px; }
.ba-tag-after { left: auto; right: 14px; background: var(--aqua); color: var(--ink); }
.ba-handle { position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--ba-pos, 50%);
  width: 3px; background: #fff; cursor: ew-resize; box-shadow: 0 0 0 1px rgba(11,37,64,.15); }
.ba-handle:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }
.ba-grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--blue);
  display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .2s var(--ease-out); }
.ba:hover .ba-grip { transform: translate(-50%, -50%) scale(1.08); }
.ba-grip svg { width: 22px; height: 22px; }

/* ── hero van showcase ── */
.hero-visual { position: relative; }
.van-scene { position: relative; }
.van-splash { position: absolute; inset: -8% -6% -8% -6%; border-radius: 46% 54% 52% 48% / 54% 46% 54% 46%;
  background: linear-gradient(140deg, var(--spray), rgba(81, 188, 234, .25) 55%, rgba(136, 195, 53, .22));
  animation: splash-morph 12s ease-in-out infinite alternate; }
@keyframes splash-morph {
  from { border-radius: 46% 54% 52% 48% / 54% 46% 54% 46%; transform: rotate(-1.5deg); }
  to   { border-radius: 54% 46% 48% 52% / 46% 54% 46% 54%; transform: rotate(1.5deg) scale(1.02); }
}
.van-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  transform-style: preserve-3d; will-change: transform; transition: transform .3s var(--ease-out);
  animation: card-wipe 1.1s var(--ease-out) .35s both; }
@keyframes card-wipe { from { clip-path: inset(0 100% 0 0 round var(--radius)); }
                       to   { clip-path: inset(0 0 0 0 round var(--radius)); } }
.van-card img { width: 100%; display: block; }
.van-sheen { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .38) 50%, transparent 58%);
  background-size: 300% 100%; animation: van-gleam 6s ease-in-out 1.6s infinite; }
@keyframes van-gleam { 0% { background-position: 120% 0; } 40%, 100% { background-position: -80% 0; } }
.van-chip { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-lg); white-space: nowrap;
  opacity: 0; animation: chip-in .6s var(--ease-out) forwards, chip-bob 5s ease-in-out infinite; }
.van-chip svg { width: 17px; height: 17px; color: var(--blue); flex: none; }
.chip-1 { top: 6%; left: -4%; animation-delay: 1.1s, 1.7s; }
.chip-2 { right: -4%; top: 40%; animation-delay: 1.3s, 1.9s; }
.chip-2 svg { color: var(--sun); }
.chip-3 { bottom: 7%; left: 8%; animation-delay: 1.5s, 2.3s; }
.chip-3 svg { color: var(--aqua); }
@keyframes chip-in { from { opacity: 0; translate: 0 14px; } to { opacity: 1; translate: 0 0; } }
@keyframes chip-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.ba-hint { text-align: center; font-size: .88rem; color: var(--ink-soft); margin-top: 14px; }


/* wave section edge */
.wave-edge { display: block; position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(28px, 5vw, 70px); color: var(--white); }
.hero .wave-edge { color: var(--white); }
.page-head .wave-edge { color: var(--white); }

/* ── trust strip ── */
.trust-strip { padding: clamp(20px, 3vw, 34px) 0 0; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start;
  background: var(--foam); border-radius: var(--radius); padding: 20px 22px; }
.trust-item p { margin: 4px 0 0; font-size: .92rem; color: var(--ink-soft); }
.trust-dot { flex: none; margin-top: 5px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--aqua); box-shadow: 0 0 0 5px rgba(81, 188, 234, .18); animation: dot-pulse 3.2s ease-in-out infinite; }
@keyframes dot-pulse { 0%, 100% { box-shadow: 0 0 0 5px rgba(81, 188, 234, .18); }
  50% { box-shadow: 0 0 0 9px rgba(81, 188, 234, .06); } }

/* ── sections ── */
.section { padding: clamp(44px, 6vw, 76px) 0; }
.section-tint { background: linear-gradient(180deg, var(--foam), #fff); }
.sec-head { max-width: 720px; margin-bottom: clamp(22px, 3vw, 36px); }
.sec-lede { color: var(--ink-soft); font-size: 1.08rem; }

/* ── services grid ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 18px; }
.svc-card { position: relative; display: block; text-decoration: none; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 46px; overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s; }
.svc-card::before { content: ""; position: absolute; inset: auto -30% -60% -30%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(56, 182, 227, .16), transparent 65%);
  opacity: 0; transition: opacity .35s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--spray); }
.svc-card:hover::before { opacity: 1; }
.svc-icon { width: 44px; height: 44px; color: var(--blue); margin-bottom: 16px;
  transition: transform .3s var(--ease-out), color .3s; }
.svc-card:hover .svc-icon { transform: translateY(-3px) scale(1.06); color: var(--aqua); }
.svc-card h3 { margin-bottom: 6px; }
.svc-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.svc-more { position: absolute; left: 24px; bottom: 16px; font-family: var(--font-display);
  font-weight: 700; font-size: .85rem; color: var(--aqua); opacity: 0; translate: -6px 0;
  transition: opacity .3s, translate .3s var(--ease-out); }
.svc-card:hover .svc-more { opacity: 1; translate: 0 0; }

/* ── page head + services feature rows ── */
.page-head { position: relative; background: linear-gradient(160deg, #EAF6FD, #F5FBFF);
  padding: clamp(34px, 5vw, 60px) 0 clamp(60px, 8vw, 96px); overflow: hidden; }
.page-head-slim { padding-bottom: clamp(52px, 7vw, 80px); }
.page-head .lede { color: var(--ink-soft); max-width: 40em; font-size: 1.1rem; }
.section-snug { padding: clamp(36px, 5vw, 64px) 0; }

.svc-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.svc-jump a { font-family: var(--font-display); font-weight: 600; font-size: .82rem; text-decoration: none;
  color: var(--blue); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  transition: background .2s, color .2s, transform .25s var(--ease-out); }
.svc-jump a:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.svc-features { display: flex; flex-direction: column; gap: clamp(30px, 4.5vw, 56px); }
.svc-feature { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(22px, 3.5vw, 48px);
  align-items: center; scroll-margin-top: 96px; }
.svc-flip .svc-feature-media { order: 2; }
.svc-feature-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.svc-feature-tile { aspect-ratio: 5 / 4; border-radius: var(--radius); display: grid; place-items: center;
  background: linear-gradient(150deg, var(--foam), var(--spray)); color: var(--blue); }
.svc-feature-tile .svc-icon { width: 84px; height: 84px; margin: 0; opacity: .85; }
.svc-feature:target .svc-feature-media img, .svc-feature:target .svc-feature-tile { box-shadow: 0 0 0 4px rgba(81, 188, 234, .35), var(--shadow-lg); }
.svc-feature-badge { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 16px;
  background: var(--foam); color: var(--blue); margin-bottom: 14px; }
.svc-feature-badge .svc-icon { width: 28px; height: 28px; margin: 0; }
.svc-feature-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.svc-feature-body > p { color: var(--ink-soft); max-width: 46em; }
.svc-feature-body .tick-list { margin: 14px 0 20px; }

/* ── before/after rows + gallery ── */
.ba-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 34px; }
.ba-item figcaption, .gal-item figcaption { font-size: .9rem; color: var(--ink-soft); margin-top: 10px; text-align: center; }
.ba-item, .gal-item { margin: 0; }
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.gal-item > img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.ba-placeholder { background: var(--foam); border: 2px dashed var(--spray); border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px); text-align: center; max-width: 680px; margin: 0 auto 34px; }
.ba-placeholder p { margin: 0; color: var(--ink-soft); }

/* ── steps ── */
.steps-grid { display: grid; grid-template-columns: minmax(240px, .8fr) 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.step { display: flex; gap: 20px; align-items: flex-start; padding: 18px 0; position: relative; }
.step:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 68px; bottom: -6px;
  width: 2px; background: linear-gradient(var(--spray), transparent); }
.js .reveal .step::after { transform: scaleY(0); transform-origin: top; transition: transform .9s var(--ease-out) .5s; }
.js .reveal.in .step::after { transform: scaleY(1); }
.step-num { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  background: var(--ink); color: #fff; box-shadow: 0 6px 16px -6px rgba(11, 37, 64, .4); }
.js .reveal .step-num { scale: .4; opacity: 0; transition: scale .5s var(--ease-out), opacity .4s; }
.js .reveal.in .step-num { scale: 1; opacity: 1; }
.js .reveal.in .step:nth-child(2) .step-num { transition-delay: .18s; }
.js .reveal.in .step:nth-child(3) .step-num { transition-delay: .36s; }
.step h3 { margin-bottom: 4px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ── areas marquee ── */
.areas-band { padding: clamp(32px, 4.5vw, 54px) 0; background: var(--ink); color: #fff; overflow: hidden; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; white-space: nowrap; animation: marquee 36s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 22px; padding-right: 22px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2.6vw, 1.9rem); color: #fff; opacity: .92; }
.marquee-drop { width: 12px; height: 15px; color: var(--aqua); flex: none; }
.areas-note { text-align: center; margin: 26px auto 0; max-width: 620px; color: var(--spray); font-size: .95rem; }

/* ── CTA band ── */
.cta-band { position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(150deg, var(--blue), var(--aqua)); color: #fff;
  padding: clamp(48px, 7vw, 84px) 0; }
.cta-inner h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.cta-inner p { font-size: 1.1rem; opacity: .92; max-width: 34em; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
.cta-band .btn-ghost { border-color: #fff; color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--blue); }
.bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubbles i { position: absolute; bottom: -60px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .08);
  animation: bubble-up 9s linear infinite; }
.bubbles i:nth-child(1) { left: 8%;  width: 26px; height: 26px; animation-duration: 9s; }
.bubbles i:nth-child(2) { left: 22%; width: 14px; height: 14px; animation-duration: 7s;  animation-delay: 2s; }
.bubbles i:nth-child(3) { left: 45%; width: 34px; height: 34px; animation-duration: 11s; animation-delay: 1s; }
.bubbles i:nth-child(4) { left: 64%; width: 18px; height: 18px; animation-duration: 8s;  animation-delay: 3.5s; }
.bubbles i:nth-child(5) { left: 80%; width: 24px; height: 24px; animation-duration: 10s; animation-delay: .5s; }
.bubbles i:nth-child(6) { left: 92%; width: 12px; height: 12px; animation-duration: 6.5s; animation-delay: 2.6s; }
@keyframes bubble-up { to { transform: translateY(calc(-100vh + -120px)); opacity: 0; } }

/* ── about page ── */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.about-body p { font-size: 1.06rem; color: var(--ink-soft); }
.about-body p:first-child { font-size: 1.18rem; color: var(--ink); }
.about-aside { display: flex; flex-direction: column; gap: 18px; }
.about-van { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.stat-block { background: var(--foam); border-radius: var(--radius-sm); padding: 18px 16px; text-align: center; }
.stat-block strong { display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--blue); line-height: 1.1; }
.stat-block span { font-size: .82rem; color: var(--ink-soft); }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.about-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.about-card { background: var(--foam); border-radius: var(--radius); padding: 26px; }
.about-card-accent { background: var(--ink); color: #fff; }
.about-card-accent a.btn-solid { margin-top: 6px; }
.about-card-accent p { color: var(--spray); }
.tick-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tick-list li { padding-left: 28px; position: relative; font-size: .95rem; color: var(--ink-soft); }
.tick-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px;
  background: var(--aqua); border-radius: 50%;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 7"/></svg>') center/100% no-repeat;
          mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 7"/></svg>') center/100% no-repeat;
  background-color: var(--aqua); }
.tick-list strong { color: var(--ink); }
.about-card-accent .tick-list strong { color: #fff; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1.5fr .9fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.faq-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 96px; }
.faq-aside .contact-big a { color: #fff; }
.faq-aside .contact-big a:hover { color: var(--sun); }
.faq-wrap { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--spray); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; flex: none; color: var(--blue); transition: transform .3s var(--ease-out); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-a { padding: 0 22px 18px; color: var(--ink-soft); }
.faq-a p { margin: 0; }

/* ── contact ── */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-big a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; }
.contact-big a:hover { color: var(--sun); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 36px); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: .92rem; }
.contact-form .hint { font-weight: 400; color: var(--ink-soft); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--foam); color: var(--ink); transition: border-color .2s, background .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--aqua); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin: 0; }
.hp-field { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }

/* ── legal ── */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.3rem; margin-top: 1.6em; }
.legal-table { border-collapse: collapse; width: 100%; font-size: .92rem; margin: 1em 0; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.legal-table th { background: var(--foam); font-family: var(--font-display); }

/* ── footer ── */
.site-foot { background: var(--ink); color: #cfe0ee; padding: clamp(44px, 6vw, 72px) 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.brand-foot { color: #fff; }
.brand-foot .brand-text em { color: var(--spray); }
.foot-blurb { font-size: .92rem; margin-top: 14px; max-width: 30em; color: #9db8cf; }
.site-foot h3 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.foot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; font-size: .92rem; }
.foot-list a { text-decoration: none; }
.site-foot .foot-list a { color: #cfe0ee; }
.site-foot .foot-list a:hover { color: var(--aqua); }
.foot-base { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: clamp(30px, 4vw, 48px); padding-top: 20px; padding-bottom: 24px; }
.foot-base p { margin: 0; font-size: .82rem; color: #7e99b3; }

/* ── flash + cookie ── */
.flash-wrap { padding-top: 18px; }
.flash { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; margin-bottom: 10px; }
.flash-success { background: #e5f7ee; color: #12694a; border: 1px solid #b5e6cf; }
.flash-error { background: #fdeeee; color: #9c2b2b; border: 1px solid #f2c7c7; }

.cookie-banner { position: fixed; z-index: 150; left: 16px; right: 16px; bottom: 16px;
  max-width: 520px; margin: 0 auto; background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 16px 20px; display: flex; gap: 16px; align-items: center;
  box-shadow: var(--shadow-lg); }
.cookie-banner p { margin: 0; font-size: .85rem; }
.cookie-banner a { color: var(--aqua); }
.cookie-banner { transition: opacity .35s, translate .35s var(--ease-out); }
.cookie-banner.gone { opacity: 0; translate: 0 12px; pointer-events: none; }
/* CRITICAL: display:flex above would override the hidden attribute's UA
   display:none, resurrecting the banner on every page. Never remove this. */
.cookie-banner[hidden] { display: none !important; }

/* mobile sticky call bar */
.call-bar { position: fixed; z-index: 140; left: 12px; right: 12px; bottom: 12px;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--sun); color: var(--ink); font-family: var(--font-display); font-weight: 800;
  padding: 15px; border-radius: 999px; text-decoration: none; box-shadow: var(--shadow-lg);
  translate: 0 90px; transition: translate .4s var(--ease-out); }
.call-bar svg { width: 18px; height: 18px; }
.call-bar.show { translate: 0 0; }

/* ── scroll reveal (only when JS is running — no-JS users see everything) ── */
.js .reveal { opacity: 0; translate: 0 28px; transition: opacity .7s var(--ease-out), translate .7s var(--ease-out); }
.js .reveal.in { opacity: 1; translate: 0 0; }
.svc-card.reveal { transition-delay: calc(var(--i, 0) * 70ms); }

/* ── reduced motion: calm things down but never break them ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { animation-duration: .01s; animation-delay: 0s; }
  .js .reveal { transition-duration: .01s; opacity: 1; translate: 0 0; }
  .blob, .drop, .bubbles i, .shine-spark, .van-splash, .van-sheen, .trust-dot { animation: none; }
  .van-card { animation-duration: .01s; animation-delay: 0s; }
  .van-chip { animation: chip-in .01s forwards; }
  .shine-word { animation: none; background-position: 50% 0; }
  /* marquee keeps moving (it's the content), just gently */
  .marquee-track { animation-duration: 90s; }
}

/* ── responsive ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: clamp(56px, 8vw, 84px); }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .trust-row { grid-template-columns: 1fr; }
  .steps-grid, .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .about-cards, .about-strip { grid-template-columns: 1fr 1fr; }
  .svc-feature { grid-template-columns: 1fr; }
  .svc-flip .svc-feature-media { order: 0; }
  .svc-feature-media img, .svc-feature-tile { aspect-ratio: 16 / 9; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .about-cards, .about-strip { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto 0; z-index: 99; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px clamp(18px, 4vw, 36px) 26px;
    gap: 4px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; translate: 0 -12px;
    transition: opacity .3s var(--ease-out), translate .3s var(--ease-out), visibility .3s; }
  .site-nav.open { opacity: 1; visibility: visible; translate: 0 0; }
  .site-nav > a { padding: 12px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .site-nav > a:last-of-type { border-bottom: 0; }
  .nav-cta { justify-content: center; margin-top: 10px; }
  .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); }

  .call-bar { display: flex; }
  .site-foot { padding-bottom: 70px; }
  .cookie-banner { bottom: 78px; }
  .field-row { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: auto 1fr; }
  .svc-detail .btn { grid-column: 2; justify-self: start; }
}
