:root{
  --navy:#3568C4;
  --navy-deep:#15417A;
  --navy-mid:#1E5296;
  --ink:#12151A;
  --emerald:#1B8F5C;
  --emerald-deep:#0F6B44;
  --paper:#F5F7F9;
  --paper-deep:#EAEEF2;
  --white:#FFFFFF;
  --line: rgba(18,21,26,.12);
  --line-on-dark: rgba(255,255,255,.16);

  --font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'IBM Plex Mono', 'Roboto Mono', ui-monospace, Menlo, monospace;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:76px; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--font-body); -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
::selection{ background:var(--emerald); color:var(--white); }
a{ color:inherit; }
img,svg{ max-width:100%; }
button{ font:inherit; }

.wrap{ max-width:1160px; margin:0 auto; padding:0 32px; }
section{ padding:100px 0; }
section + section{ border-top:1px solid var(--line); }
.on-dark + .on-dark{ border-top:1px solid var(--line-on-dark); }

.eyebrow{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--emerald-deep); display:flex; align-items:center; gap:10px; margin:0 0 18px;
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--navy); display:inline-block; }
.on-dark .eyebrow{ color:#6FD9A8; }
.on-dark .eyebrow::before{ background:#6FD9A8; }

.breadcrumb{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin:0 0 20px;
}
.breadcrumb a{ color:rgba(255,255,255,.8); text-decoration:none; }
.breadcrumb a:hover{ text-decoration:underline; }

h1,h2,h3{ font-family:var(--font-display); text-wrap:balance; margin:0; }

.btn{
  font-family:var(--font-body); font-weight:600; font-size:15px; padding:14px 26px; border-radius:11px;
  text-decoration:none; display:inline-flex; align-items:center; gap:8px; border:1px solid transparent;
  cursor:pointer;
}
.btn-primary{ background:var(--emerald); color:var(--white); transition:background .2s ease, box-shadow .2s ease, transform .2s ease; }
.btn-primary:hover{ background:var(--emerald-deep); box-shadow:0 10px 24px -8px rgba(27,143,92,.55); transform:translateY(-1px); }
.btn-ghost{ border-color:rgba(255,255,255,.4); color:var(--white); background:transparent; }
.btn-ghost:hover{ background:rgba(255,255,255,.1); }
.btn-line{ border-color:var(--navy); color:var(--navy); background:transparent; }
.btn-line:hover{ background:rgba(31,74,133,.08); }
.btn[disabled]{ opacity:.45; cursor:not-allowed; }
:focus-visible{ outline:2px solid var(--emerald); outline-offset:3px; }

/* ---------- NAV ---------- */
header.site{
  position:sticky; top:0; z-index:50; background:rgba(21,65,122,.94); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line-on-dark);
}
.nav{ max-width:1160px; margin:0 auto; padding:14px 32px; display:flex; align-items:center; justify-content:space-between; gap:24px; position:relative; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--white); }
.brand-name{ font-family:var(--font-display); font-size:18px; letter-spacing:.02em; }
.mini-seal{
  width:34px; height:34px; flex:none; border-radius:50%; object-fit:cover; display:block;
  box-shadow: 0 0 0 1.5px rgba(27,143,92,.6), 0 0 9px 2px rgba(27,143,92,.35);
}
.nav-links{ display:flex; gap:26px; font-size:14px; align-items:center; }
.nav-links > a{ text-decoration:none; color:rgba(255,255,255,.75); }
.nav-links > a:hover{ color:var(--white); }
.nav-cta{ font-size:13.5px; padding:10px 18px; }

.has-dropdown{ position:relative; }
.dd-trigger{ background:none; border:none; color:rgba(255,255,255,.75); font-size:14px; font-family:var(--font-body); cursor:pointer; display:flex; align-items:center; gap:5px; padding:0; }
.dd-trigger:hover{ color:var(--white); }
.dd-trigger .caret{ font-size:10px; transition:transform .2s ease; }
.has-dropdown.is-open .dd-trigger .caret{ transform:rotate(180deg); }
.dropdown{
  display:none; position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%);
  background:var(--white); border-radius:6px; box-shadow:0 24px 48px -20px rgba(11,32,56,.4);
  min-width:280px; padding:10px; z-index:60;
}
.has-dropdown.is-open .dropdown{ display:block; }
.dropdown a{ display:block; padding:10px 14px; border-radius:4px; text-decoration:none; color:var(--ink); font-size:14px; }
.dropdown a:hover{ background:var(--paper-deep); }
.dropdown a.view-all{ margin-top:6px; border-top:1px solid var(--line); padding-top:12px; color:var(--emerald-deep); font-weight:600; font-family:var(--font-mono); font-size:12px; letter-spacing:.05em; text-transform:uppercase; }

.nav-toggle{
  display:none; background:none; border:1px solid var(--line-on-dark); border-radius:4px; width:40px; height:36px;
  color:var(--white); cursor:pointer; align-items:center; justify-content:center;
}
.mobile-panel{ display:none; }

@media (max-width:900px){
  .nav-links{ display:none; }
  .nav-cta.desktop-only{ display:none; }
  .nav-toggle{ display:flex; }
  .mobile-panel.is-open{
    display:flex; flex-direction:column; gap:2px; background:var(--navy-deep); border-top:1px solid var(--line-on-dark);
    padding:10px 20px 20px;
  }
  .mobile-panel a, .mobile-panel button.mp-link{
    text-align:left; background:none; border:none; color:rgba(255,255,255,.85); font-size:15px; padding:12px 4px;
    text-decoration:none; border-bottom:1px solid var(--line-on-dark); font-family:var(--font-body); cursor:pointer;
  }
  .mobile-panel .mp-sub{ padding-left:16px; }
  .mobile-panel .mp-sub a{ font-size:14px; color:rgba(255,255,255,.65); border-bottom:none; padding:8px 4px; }
  .mobile-panel .btn{ margin-top:14px; justify-content:center; }
}

/* ---------- SEAL ---------- */
/* Back to the original treatment: one big badge, permanently centered over
   the photo (right of the now-narrower text column), tilting in 3D as the
   mouse moves.
   The box is always rendered at its largest native size (360px — the
   hover/full size) and everything smaller is a transform:scale() *down*
   from that. Scaling down a raster never blurs it; only scaling *up* from
   an under-sized box does (that's what made the badge look soft/"distorted"
   on hover before, when the box itself was the small size and hover grew
   it). This gets the same crisp result via `transform` alone, so sizing
   never touches layout (width/height/margin/padding) — transform+opacity
   are the only properties that animate on the compositor without triggering
   layout/paint on every frame. --seal-scale is the one thing breakpoints
   and :hover change. */
.seal-scene{
  --seal-scale: 0.8333;
  position:absolute; left:44%; top:38%; z-index:3;
  transform:translate(-50%, -50%) scale(var(--seal-scale));
  perspective:1200px; width:360px; height:360px;
  display:flex; justify-content:center; align-items:center;
  transition:transform .25s ease;
}
@media (max-width:1100px){ .seal-scene{ --seal-scale: 0.6667; } }

/* Hover enlarges it to its full native size — same crisp, transform-only approach. */
.seal-scene:hover{ --seal-scale: 1; }

/* Mobile: no spare gap between text and photo subject for a floating badge,
   so it becomes its own simple section above the headline instead — static
   in normal document flow, no tilt/wobble (touch devices don't hover anyway,
   and this is one less moving piece to get wrong on the smallest screens). */
.seal-scene-mobile{ display:none; }
@media (max-width:900px){
  .seal-scene{ display:none; }
  .seal-scene-mobile{
    display:flex; justify-content:center; margin:0 auto 22px; position:relative; z-index:2;
  }
  .seal-scene-mobile img{
    width:110px; height:110px; display:block; border-radius:50%;
    box-shadow: 0 0 0 3px rgba(27,143,92,.55), 0 0 22px 5px rgba(27,143,92,.32);
  }
}
@media (max-width:560px){ .seal-scene-mobile img{ width:92px; height:92px; } }

/* One-time entrance: a quick coin-wobble on load (rotation only — no size or
   position change, since the badge already sits at its permanent spot) that
   settles into the normal mouse-tilt behavior. Runs on .seal-intro (not
   .seal-tilt) so it never fights the JS-driven mousemove tilt transform,
   which stays on its own nested element.
   The wobble is capped well short of 90deg on purpose: a flat image (unlike
   a real coin, which has thickness and catches light edge-on) just looks
   squashed/warped if rotated near edge-on, so the spin decays like a coin
   settling rather than doing a full end-over-end flip. */
.seal-intro{
  width:100%; height:100%; transform-style:preserve-3d;
  animation: sealIntro 3s cubic-bezier(.34,1.56,.64,1) 1 both;
}
@keyframes sealIntro{
  0%   { transform: rotateY(0deg); }
  16%  { transform: rotateY(38deg); }
  32%  { transform: rotateY(-32deg); }
  48%  { transform: rotateY(22deg); }
  64%  { transform: rotateY(-12deg); }
  80%  { transform: rotateY(6deg); }
  100% { transform: rotateY(0deg); }
}
@media (prefers-reduced-motion: reduce){ .seal-intro{ animation:none; } }

.seal-tilt{ transform-style:preserve-3d; transition:transform .15s ease-out; will-change:transform; width:100%; height:100%; }
.seal-tilt svg, .seal-tilt img{
  display:block; width:100%; height:100%; border-radius:50%;
  filter:drop-shadow(0 14px 26px rgba(0,0,0,.45));
  box-shadow: 0 0 0 3px rgba(27,143,92,.55), 0 0 22px 5px rgba(27,143,92,.32);
}
.sparkle{ transform-origin:center; animation:sparkle 3.2s ease-in-out infinite; }
.sparkle.s2{ animation-delay:1.1s; }
@keyframes sparkle{
  0%,100%{ opacity:.55; transform:scale(.85) rotate(0deg); }
  50%{ opacity:1; transform:scale(1.15) rotate(12deg); }
}
@media (prefers-reduced-motion: reduce){ .sparkle{ animation:none; } }

/* ---------- ANIMATED CLEAN-SWEEP VISUAL ---------- */
.sweep-visual{
  position:relative; overflow:hidden; border-radius:8px; background:linear-gradient(120deg,#1c2530 0%, #0B2038 100%);
  isolation:isolate;
}
.sweep-visual::before{
  content:""; position:absolute; inset:-25%;
  background:
    radial-gradient(circle at 25% 30%, rgba(140,148,158,.4), transparent 55%),
    radial-gradient(circle at 72% 65%, rgba(90,102,116,.35), transparent 55%);
  filter: blur(22px) grayscale(.6) brightness(.8);
  animation: driftDirty 14s ease-in-out infinite alternate;
}
.sweep-visual::after{
  content:""; position:absolute; top:0; bottom:0; left:-40%; width:34%;
  background:linear-gradient(100deg, transparent, rgba(111,217,168,.5), rgba(255,255,255,.75), rgba(111,217,168,.5), transparent);
  filter: blur(3px); mix-blend-mode:screen;
  animation: sweepPass 4.2s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes sweepPass{ 0%{ left:-40%; } 55%{ left:106%; } 100%{ left:106%; } }
@keyframes driftDirty{ 0%{ transform:translate(0,0) scale(1);} 100%{ transform:translate(3%,-2%) scale(1.06);} }
.sweep-icon{ position:relative; z-index:2; display:flex; align-items:center; justify-content:center; height:100%; }
.sweep-icon svg{ filter:drop-shadow(0 12px 20px rgba(0,0,0,.4)); }
@media (prefers-reduced-motion: reduce){
  .sweep-visual::before, .sweep-visual::after{ animation:none; }
}

.hero-photo-bg{ position:absolute; inset:0; overflow:hidden; background:var(--navy-deep); }
.hero-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 20%;
  opacity:0; animation: heroPhotoFade 18s ease-in-out infinite, heroPhotoZoom 36s ease-in-out infinite alternate;
}
.hero-photo.p1{ animation-delay:0s, 0s; }
.hero-photo.p2{ animation-delay:9s, 0s; }
.hero-photo-overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(11,32,56,.93) 0%, rgba(11,32,56,.8) 34%, rgba(11,32,56,.45) 62%, rgba(11,32,56,.22) 100%);
}
@keyframes heroPhotoFade{
  0%{ opacity:0; } 8%{ opacity:1; } 42%{ opacity:1; } 50%{ opacity:0; } 100%{ opacity:0; }
}
@keyframes heroPhotoZoom{ 0%{ transform:scale(1); } 100%{ transform:scale(1.08); } }
@media (prefers-reduced-motion: reduce){
  .hero-photo{ animation:none; opacity:0; }
  .hero-photo.p1{ opacity:1; }
}

/* ---------- HERO (index) ---------- */
.hero{
  position:relative;
  background:radial-gradient(120% 140% at 78% 20%, #2A5DA8 0%, var(--navy-deep) 55%, #0E3564 100%);
  color:var(--white); padding:96px 0 108px; overflow:hidden;
}
.hero-grid{ position:relative; z-index:2; max-width:44ch; margin-left:0; margin-right:auto; }
.hero h1{ font-size:clamp(32px,3.6vw,44px); line-height:1.15; }
.hero p.lede{ font-size:18px; line-height:1.65; color:rgba(255,255,255,.78); max-width:48ch; margin:22px 0 32px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }
.trust-line{ margin-top:36px; font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.55); }
/* The source photos are 1920x1080 (16:9). On a tall, high-DPI phone the hero
   is taller than that in physical pixels, so object-fit:cover has to stretch
   the image a bit past its native resolution — that's the mobile "quality"
   softness, not a bug. Tightening the mobile hero's height reduces how much
   upscaling is needed (can't eliminate it without a higher-res source photo
   shot for portrait/mobile use, but this meaningfully narrows the gap). */
@media (max-width:640px){
  .hero{ padding:56px 0 60px; }
  .hero p.lede{ margin:14px 0 20px; }
  .trust-line{ margin-top:20px; }
  .seal-scene-mobile{ margin:0 auto 14px; }
}

/* ---------- SERVICE HERO (subpages) ---------- */
.service-hero{ background:var(--navy-deep); color:var(--white); padding:64px 0 60px; }
.service-hero-grid{ display:grid; grid-template-columns:1fr .8fr; gap:48px; align-items:center; }
.service-hero h1{ font-size:clamp(32px,4.4vw,48px); line-height:1.1; margin-bottom:16px; }
.service-hero p{ font-size:17px; line-height:1.6; color:rgba(255,255,255,.8); max-width:52ch; }
.service-hero .sweep-visual{ height:220px; }
@media (max-width:860px){ .service-hero-grid{ grid-template-columns:1fr; } .service-hero .sweep-visual{ order:-1; height:180px; } }

/* ---------- TRUST STRIP ---------- */
.trust-strip{ padding:44px 0; background:var(--white); }
.trust-row{ display:flex; flex-wrap:wrap; gap:32px; justify-content:space-between; }
.trust-item{ display:flex; align-items:center; gap:12px; font-size:14.5px; color:var(--ink); flex:1 1 200px; }
.trust-item .dot{ width:7px; height:7px; border-radius:50%; background:var(--emerald); flex:none; }
.trust-icon{
  width:38px; height:38px; flex:none; color:#FFFFFF; background:var(--emerald); border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding:8px;
  box-shadow:0 0 0 1px rgba(27,143,92,.25), 0 6px 16px -6px rgba(27,143,92,.55);
  transition:transform .2s ease;
}
.trust-icon svg{ width:100%; height:100%; }
.trust-item:hover .trust-icon{ transform:scale(1.08); }
.trust-item:nth-child(2) .trust-icon{ background:var(--ink); box-shadow:0 0 0 1px rgba(18,21,26,.25), 0 6px 16px -6px rgba(18,21,26,.55); }
.trust-item:nth-child(3) .trust-icon{ background:var(--white); color:var(--ink); box-shadow:0 0 0 1.5px var(--ink), 0 6px 16px -6px rgba(18,21,26,.35); }
.trust-item:nth-child(4) .trust-icon{ background:var(--emerald); box-shadow:0 0 0 1px rgba(27,143,92,.25), 0 6px 16px -6px rgba(27,143,92,.55); }

/* ---------- SERVICES GRID (hub + teaser) ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:48px; }
.service-card{
  background:var(--white); border:1px solid var(--line); border-radius:18px; overflow:hidden;
  transform-style:preserve-3d; transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
  display:flex; flex-direction:column; text-decoration:none; color:var(--ink);
  box-shadow:0 1px 0 rgba(11,32,56,.04);
}
.service-card:hover{ transform:translateY(-6px) rotateX(3deg) rotateY(-3deg); box-shadow:0 26px 44px -24px rgba(11,32,56,.35); }
.service-card .sweep-visual{ height:120px; border-radius:0; }
.service-card .service-card-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.service-card h3{ font-size:18px; color:var(--navy); }
.service-card p{ font-size:14.5px; line-height:1.55; color:#4B5563; margin:0; flex:1; }
.service-card .book-link{
  align-self:flex-start; font-family:var(--font-mono); font-size:12px; letter-spacing:.05em; text-transform:uppercase;
  color:var(--emerald-deep); text-decoration:none; border-bottom:1px solid var(--emerald-deep); padding-bottom:2px;
  background:none; border-top:none; border-left:none; border-right:none; cursor:pointer;
}

/* Rotating brand-color panels: white, emerald, black — every 3rd card (no blue, per brand direction) */
.service-card:nth-of-type(3n+2){ background:var(--emerald); border-color:var(--emerald); }
.service-card:nth-of-type(3n+2) h3{ color:#FFFFFF; }
.service-card:nth-of-type(3n+2) p{ color:rgba(255,255,255,.82); }
.service-card:nth-of-type(3n+2) .book-link{ color:#FFFFFF; border-color:rgba(255,255,255,.6); }
.service-card:nth-of-type(3n+2):hover{ box-shadow:0 30px 50px -22px rgba(27,143,92,.6); }

.service-card:nth-of-type(3n){ background:var(--ink); border-color:var(--ink); }
.service-card:nth-of-type(3n) h3{ color:#FFFFFF; }
.service-card:nth-of-type(3n) p{ color:rgba(255,255,255,.7); }
.service-card:nth-of-type(3n) .book-link{ color:#6FD9A8; border-color:#6FD9A8; }
.service-card:nth-of-type(3n):hover{ box-shadow:0 30px 50px -22px rgba(0,0,0,.6); }
@media (max-width:880px){ .services-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .services-grid{ grid-template-columns:1fr; } }

/* ---------- SERVICE DETAIL: INCLUDES LIST ---------- */
.includes-grid{ display:grid; grid-template-columns:1.3fr .7fr; gap:56px; margin-top:44px; align-items:start; }
.includes-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.includes-list li{ display:flex; gap:12px; font-size:15.5px; line-height:1.55; color:#333A44; }
.includes-list li::before{ content:"✓"; color:var(--emerald-deep); font-weight:700; flex:none; }
.info-card{ background:var(--paper-deep); border-radius:6px; padding:26px; }
.info-card .row{ display:flex; justify-content:space-between; gap:14px; padding:12px 0; border-bottom:1px solid var(--line); font-size:14px; }
.info-card .row:last-child{ border-bottom:none; }
.info-card .row .k{ color:#6B7280; font-family:var(--font-mono); font-size:11.5px; letter-spacing:.05em; text-transform:uppercase; }
.info-card .row .v{ font-weight:600; text-align:right; }
@media (max-width:860px){ .includes-grid{ grid-template-columns:1fr; } }

.related-row{ display:flex; gap:16px; flex-wrap:wrap; margin-top:20px; }
.related-pill{
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:.03em; text-decoration:none; color:var(--navy);
  border:1px solid var(--line); border-radius:999px; padding:9px 16px;
}
.related-pill:hover{ border-color:var(--navy); background:rgba(31,74,133,.06); }

.cta-band{ background:var(--navy); color:var(--white); text-align:center; padding:64px 0; }

.gov-teaser{ background:var(--ink); color:var(--white); padding:60px 0; }
.gov-teaser-ids{ display:flex; gap:22px; flex-wrap:wrap; margin-top:22px; font-family:var(--font-mono); font-size:13px; letter-spacing:.03em; color:rgba(255,255,255,.75); }
.gov-teaser-ids b{ color:var(--emerald); font-weight:600; margin-right:6px; }
.cta-band h2{ font-size:30px; margin-bottom:18px; }
.cta-band .btn-primary{ background:var(--emerald); }

/* ---------- PILLARS ---------- */
.pillars{ background:var(--paper-deep); }
.pillars-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; position:relative; }
.pillar{
  padding:32px 28px; border-radius:18px; position:relative; background:var(--white); border:1px solid var(--line);
  transition:transform .25s ease, box-shadow .25s ease;
}
.pillar:hover{ transform:translateY(-4px); }
.pillar .num{ font-family:var(--font-mono); font-size:12px; color:var(--emerald-deep); letter-spacing:.1em; }
.pillar h3{ font-size:24px; color:var(--navy); margin:10px 0 12px; }
.pillar p{ font-size:15px; line-height:1.6; color:#4B5563; margin:0; }

/* Three pillars, three colors: emerald, black, white — no blue */
.pillar:nth-child(1){ background:var(--emerald); border-color:var(--emerald); box-shadow:0 20px 40px -24px rgba(27,143,92,.5); }
.pillar:nth-child(1) .num{ color:rgba(255,255,255,.7); }
.pillar:nth-child(1) h3{ color:#FFFFFF; }
.pillar:nth-child(1) p{ color:rgba(255,255,255,.85); }

.pillar:nth-child(2){ background:var(--ink); border-color:var(--ink); box-shadow:0 20px 40px -24px rgba(0,0,0,.5); }
.pillar:nth-child(2) .num{ color:#6FD9A8; }
.pillar:nth-child(2) h3{ color:#FFFFFF; }
.pillar:nth-child(2) p{ color:rgba(255,255,255,.75); }

.pillar:nth-child(3){ box-shadow:0 0 0 1.5px var(--ink), 0 20px 40px -26px rgba(0,0,0,.35); }
.pillar:nth-child(3) .num{ color:var(--emerald-deep); }
.pillar:nth-child(3) h3{ color:var(--ink); }

@media (max-width:820px){ .pillars-grid{ grid-template-columns:1fr; gap:20px; } }

/* ---------- BOOKING ---------- */
.book-shell{
  margin-top:44px; background:var(--white); border:1px solid var(--line); border-radius:6px;
  box-shadow:0 30px 60px -34px rgba(11,32,56,.35); overflow:hidden;
}
.book-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 30px; border-bottom:1px solid var(--line); }
.steps{ display:flex; gap:22px; font-family:var(--font-mono); font-size:12px; letter-spacing:.05em; text-transform:uppercase; color:#9AA3AE; }
.steps .step.is-active{ color:var(--navy); font-weight:700; }
.steps .step.is-done{ color:var(--emerald-deep); }
.book-body{ padding:34px 30px 30px; }
.book-step{ display:none; }
.book-step.is-active{ display:block; }
.chip-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  font-family:var(--font-body); font-size:14px; padding:10px 16px; border-radius:999px; border:1.5px solid var(--line);
  background:var(--white); cursor:pointer; color:var(--ink);
}
.chip.is-selected{ border-color:var(--emerald); background:rgba(27,143,92,.08); color:var(--emerald-deep); font-weight:600; }
.time-groups{ display:flex; flex-direction:column; gap:14px; }
.time-group-label{ font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:#6B7280; display:block; margin-bottom:8px; }
.field-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:22px; }
.field-grid .full{ grid-column:1/-1; }
.field label{ font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:#6B7280; display:block; margin-bottom:6px; }
.field input, .field select{
  width:100%; font-size:15px; font-family:var(--font-body); padding:10px 12px; border:1.5px solid var(--line);
  border-radius:4px; background:var(--white); color:var(--ink);
}
.field input:focus, .field select:focus{ border-color:var(--emerald); outline:none; }
.square-pay-card{ margin-top:8px; border:1.5px solid var(--line); border-radius:8px; padding:22px; background:var(--white); }
#squareCardContainer{ min-height:44px; font-size:14px; color:#6B7280; }
.square-pay-note{ font-size:12.5px; color:#B3261E; margin:10px 0 0; min-height:1em; }

.cal-widget{ border:1.5px solid var(--line); border-radius:14px; padding:18px; background:var(--white); max-width:340px; }
.cal-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.cal-month-label{ font-family:var(--font-mono); font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink); font-weight:600; }
.cal-nav{ width:30px; height:30px; border-radius:50%; border:1.5px solid var(--line); background:var(--white); cursor:pointer; font-size:16px; line-height:1; color:var(--navy-mid); display:flex; align-items:center; justify-content:center; padding:0; }
.cal-nav:hover:not(:disabled){ border-color:var(--emerald); color:var(--emerald-deep); }
.cal-nav:disabled{ opacity:.3; cursor:not-allowed; }
.cal-weekdays{ display:grid; grid-template-columns:repeat(7,1fr); gap:4px; margin-bottom:6px; }
.cal-weekdays span{ text-align:center; font-family:var(--font-mono); font-size:10px; letter-spacing:.05em; color:#6B7280; text-transform:uppercase; display:block; }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.cal-day{ aspect-ratio:1; border:none; background:none; border-radius:8px; font-size:13.5px; font-family:var(--font-body); color:var(--ink); cursor:pointer; display:flex; align-items:center; justify-content:center; padding:0; }
.cal-day:hover:not(:disabled):not(.is-blank){ background:rgba(27,143,92,.08); }
.cal-day.is-blank{ visibility:hidden; cursor:default; }
.cal-day:disabled{ color:#C7CBD1; cursor:not-allowed; }
.cal-day.is-today{ box-shadow:inset 0 0 0 1.5px var(--navy-mid); }
.cal-day.is-selected{ background:var(--emerald); color:#FFFFFF; font-weight:700; }
.cal-legend{ display:flex; gap:16px; margin-top:12px; font-size:11.5px; color:#6B7280; }
.cal-legend span{ display:inline-flex; align-items:center; gap:6px; }
.cal-legend i{ width:10px; height:10px; border-radius:3px; display:inline-block; }
.cal-legend .lg-today i{ box-shadow:inset 0 0 0 1.5px var(--navy-mid); }
.cal-legend .lg-selected i{ background:var(--emerald); }
.cal-picker-layout{ display:grid; grid-template-columns:340px 1fr; gap:28px; align-items:start; }
@media (max-width:720px){ .cal-picker-layout{ grid-template-columns:1fr; } }
.card-brand-row{ display:flex; gap:10px; margin-top:18px; padding-top:16px; border-top:1px solid var(--line); }
.book-foot{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; }
.book-confirm{ display:none; text-align:center; padding:26px 10px; }
.book-confirm.is-active{ display:block; }
.book-confirm h3{ font-size:24px; color:var(--navy); margin-bottom:10px; }
.book-confirm p{ color:#4B5563; font-size:15px; }
.note{ font-size:12.5px; color:#8A93A0; margin-top:16px; }
.fee-notice{
  margin-top:22px; padding:14px 18px; background:rgba(27,143,92,.08); border:1px solid rgba(27,143,92,.3);
  border-radius:6px; font-size:14px; line-height:1.5; color:#1E4030;
}
.fee-notice strong{ color:var(--emerald-deep); }

/* ---------- COMMUNITY ---------- */
.community{ background:var(--navy-deep); color:var(--white); }
.community-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; margin-top:48px; align-items:start; }
.proto-tag{
  display:inline-block; font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase;
  color:rgba(255,255,255,.55); border:1px solid var(--line-on-dark); border-radius:999px; padding:4px 10px; margin-bottom:18px;
}
.carousel-stage{ perspective:1400px; width:100%; height:250px; position:relative; }
.carousel-ring{ position:absolute; inset:0; transform-style:preserve-3d; transition:transform .6s cubic-bezier(.22,1,.36,1); }
.tcard{
  position:absolute; inset:0; background:rgba(255,255,255,.06); border:1px solid var(--line-on-dark); border-radius:6px;
  padding:28px 30px; display:flex; flex-direction:column; justify-content:space-between; backface-visibility:hidden;
  opacity:.3; transition:opacity .6s ease;
}
.tcard.is-active{ opacity:1; }
.tcard .stars{ color:#F5C451; font-size:15px; letter-spacing:2px; }
.tcard q{ font-family:var(--font-display); font-size:18px; line-height:1.5; quotes:"\201C" "\201D"; display:block; margin-top:10px; }
.tcard .who{ font-family:var(--font-mono); font-size:11.5px; color:rgba(255,255,255,.6); margin-top:14px; }
.carousel-nav{ display:flex; gap:16px; margin-top:24px; align-items:center; }
.cnav-btn{ width:36px; height:36px; border-radius:50%; border:1.5px solid rgba(255,255,255,.5); background:transparent; color:var(--white); cursor:pointer; font-size:15px; }
.cnav-btn:hover{ background:rgba(255,255,255,.12); }
.dots{ display:flex; gap:8px; }
.dot{ width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.25); }
.dot.is-active{ background:#6FD9A8; }
.real-links{ margin-top:18px; font-size:13px; color:rgba(255,255,255,.6); }
.real-links a{ color:#6FD9A8; text-decoration:none; }

.rating-summary{ display:flex; align-items:baseline; gap:12px; margin-bottom:18px; flex-wrap:wrap; }
.rating-score{ font-family:var(--font-display); font-size:32px; color:var(--white); }
.rating-stars{ color:#F5C451; font-size:17px; letter-spacing:2px; }
.rating-count{ font-family:var(--font-mono); font-size:12px; color:rgba(255,255,255,.55); }

.social-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.social-chip{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.03em; text-decoration:none; color:var(--white);
  border:1px solid var(--line-on-dark); border-radius:999px; padding:7px 14px;
}
.social-chip:not(.is-disabled):hover{ border-color:#6FD9A8; color:#6FD9A8; }
.social-chip.is-disabled{ color:rgba(255,255,255,.35); cursor:default; }

.rate-form{ display:none; margin-top:16px; background:rgba(255,255,255,.06); border:1px solid var(--line-on-dark); border-radius:6px; padding:18px; }
.rate-form.is-open{ display:block; }
.star-picker{ display:flex; gap:6px; margin-bottom:12px; }
.star-picker button{
  background:none; border:none; font-size:24px; color:rgba(255,255,255,.3); cursor:pointer; padding:0; line-height:1;
}
.star-picker button.is-filled{ color:#F5C451; }
.rate-form textarea{
  width:100%; min-height:70px; border-radius:4px; border:1px solid var(--line-on-dark); background:rgba(255,255,255,.06);
  color:var(--white); padding:10px 12px; font-family:var(--font-body); font-size:14px;
}
.rate-form textarea::placeholder{ color:rgba(255,255,255,.4); }
.rate-field-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.rate-field label{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.55); display:block; margin-bottom:6px; }
.rate-field label span{ color:#6FD9A8; }
.rate-field input, .rate-field select{
  width:100%; border-radius:4px; border:1px solid var(--line-on-dark); background:rgba(255,255,255,.06);
  color:var(--white); padding:9px 11px; font-family:var(--font-body); font-size:13.5px;
}
.rate-field input::placeholder{ color:rgba(255,255,255,.35); }
.rate-field select option{ color:var(--ink); }
.rate-field input:focus, .rate-field select:focus{ outline:2px solid #6FD9A8; outline-offset:1px; }
@media (max-width:520px){ .rate-field-grid{ grid-template-columns:1fr; } }
.rate-error{ display:none; font-size:12.5px; color:#F5A0A0; margin:0 0 10px; }
.rate-error.is-visible{ display:block; }
.msg-panel{ background:rgba(255,255,255,.06); border:1px solid var(--line-on-dark); border-radius:14px; overflow:hidden; min-height:280px; display:flex; flex-direction:column; }
.msg-setup{ padding:22px; }
.msg-thread-wrap{ display:flex; flex-direction:column; height:280px; }
.msg-thread{ display:flex; flex-direction:column; padding:16px; gap:10px; flex:1; overflow-y:auto; }
.bubble{ max-width:78%; padding:9px 13px; border-radius:14px; font-size:13.5px; line-height:1.4; }
.bubble.customer{ background:rgba(255,255,255,.1); align-self:flex-end; }
.bubble.team{ background:var(--emerald-deep); align-self:flex-start; }
.bubble .meta{ font-size:10px; opacity:.6; margin-top:4px; }
.msg-input{ display:flex; gap:8px; padding:14px 16px; border-top:1px solid var(--line-on-dark); }
.msg-input input{ flex:1; border-radius:20px; border:1px solid var(--line-on-dark); background:transparent; color:var(--white); padding:8px 14px; font-size:13px; }
.msg-input input::placeholder{ color:rgba(255,255,255,.4); }
.msg-input input:disabled{ opacity:.5; }
@media (max-width:900px){ .community-grid{ grid-template-columns:1fr; } }

/* ---------- ABOUT ---------- */
.about-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; align-items:center; }
.about-copy p{ font-size:17px; line-height:1.7; color:#3E4451; max-width:58ch; }
.about-copy p.lead{ font-size:19px; color:var(--ink); }
.stat-row{ display:flex; gap:36px; margin-top:28px; flex-wrap:wrap; }
.stat{ font-family:var(--font-mono); }
.stat .n{ font-size:28px; color:var(--navy); font-variant-numeric:tabular-nums; display:block; }
.stat .l{ font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:#6B7280; }
.founder-card{ background:var(--white); border:1px solid var(--line); border-radius:6px; padding:30px; box-shadow:0 24px 44px -28px rgba(11,32,56,.3); }
.founder-card .role{ font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--emerald-deep); }
.founder-card h3{ font-size:22px; color:var(--navy); margin:8px 0 14px; }
.founder-card p{ font-size:14.5px; line-height:1.6; color:#4B5563; }
@media (max-width:900px){ .about-grid{ grid-template-columns:1fr; } }

/* ---------- CONTACT ---------- */
.contact{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; }
.contact h2{ font-size:32px; color:var(--navy); }
.contact-info{ margin-top:24px; font-size:15px; line-height:2; }
.contact-info a{ text-decoration:none; color:var(--navy); font-weight:600; }
.quote-form{ background:var(--white); border:1px solid var(--line); border-radius:6px; padding:30px; }
.quote-form .field{ margin-bottom:16px; }
.quote-form textarea{ width:100%; border:1.5px solid var(--line); border-radius:4px; padding:10px 12px; font-family:var(--font-body); font-size:15px; min-height:80px; }
.quote-done{ display:none; text-align:center; padding:20px 0; }
.quote-form.is-sent .fields-wrap{ display:none; }
.quote-form.is-sent .quote-done{ display:block; }
@media (max-width:900px){ .contact{ grid-template-columns:1fr; } }

/* ---------- FOOTER ---------- */
footer{ background:var(--navy-deep); color:rgba(255,255,255,.7); padding:52px 0 30px; }
.foot-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:30px; }
.foot-brand{ display:flex; align-items:center; gap:10px; color:var(--white); font-family:var(--font-display); font-size:17px; }
.foot-col h4{ font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.5); margin:0 0 12px; }
.foot-col{ display:flex; flex-direction:column; gap:9px; font-size:14px; }
.foot-col a{ text-decoration:none; color:rgba(255,255,255,.75); }
.foot-col a:hover{ color:var(--white); }
.pay-badges{ display:flex; gap:10px; margin-top:14px; }
.pay-badge{ font-family:var(--font-mono); font-size:11px; border:1px solid var(--line-on-dark); border-radius:4px; padding:5px 9px; color:rgba(255,255,255,.65); }
footer .rule{ height:1px; background:var(--line-on-dark); margin:32px 0 20px; border:none; }
.foot-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-family:var(--font-mono); font-size:11px; color:rgba(255,255,255,.45); }

/* ---------- SERVICE ICON MICRO-ANIMATIONS ---------- */
@keyframes vacDust{ 0%{ transform:translate(0,0) scale(1); opacity:1; } 75%{ opacity:.7; } 100%{ transform:translate(-13px,-7px) scale(.25); opacity:0; } }
.icon-dust{ animation:vacDust 1.6s ease-in infinite; transform-box:fill-box; }
.icon-dust.d2{ animation-delay:.45s; }
.icon-dust.d3{ animation-delay:.9s; }

@keyframes wipeSweep{ 0%{ transform:translateX(0); } 100%{ transform:translateX(30px); } }
.icon-wipe-bar{ animation:wipeSweep 2.2s ease-in-out infinite; transform-box:fill-box; }
@keyframes grimeFade{ 0%{ opacity:1; } 38%{ opacity:1; } 52%{ opacity:0; } 100%{ opacity:0; } }
.icon-grime{ animation:grimeFade 2.2s ease-in-out infinite; }
.icon-grime.g2{ animation-delay:.18s; }
.icon-grime.g3{ animation-delay:.34s; }

@keyframes flapOpenL{ 0%,100%{ transform:rotate(0deg); } 50%{ transform:rotate(-32deg); } }
@keyframes flapOpenR{ 0%,100%{ transform:rotate(0deg); } 50%{ transform:rotate(32deg); } }
.icon-flap-l{ animation:flapOpenL 2.4s ease-in-out infinite; }
.icon-flap-r{ animation:flapOpenR 2.4s ease-in-out infinite; }

@keyframes sprayFlow{ to{ stroke-dashoffset:-12; } }
.icon-spray{ animation:sprayFlow .7s linear infinite; }
@keyframes impactPulse{ 0%,100%{ transform:scale(.6); opacity:.35; } 50%{ transform:scale(1.3); opacity:.9; } }
.icon-impact{ animation:impactPulse 1.4s ease-in-out infinite; transform-box:fill-box; }

@media (prefers-reduced-motion: reduce){
  .icon-dust, .icon-wipe-bar, .icon-grime, .icon-flap-l, .icon-flap-r, .icon-spray, .icon-impact{ animation:none !important; }
}

@media (prefers-reduced-motion: reduce){ *{ transition:none !important; } }
