/* =========================================================================
   HOST CLEANING SERVICES — Design System
   Palette:  Deep Forest #1F2D26 · Dark Olive #3F4D2A · Earthy Sage #6B7F68
             Soft Sage #A8B89A · Warm Sand #C9B99A · Earth Brown #7A5E41
             Warm Ivory #FAFAF8 · Soft Cream #F5F1E8 · White #FFFFFF · Soft Gray #E6E6E4
   Type:     Fraunces (display) + Archivo (body / utility caps)
   ========================================================================= */

:root{
  --forest:#1F2D26;
  --olive:#3F4D2A;
  --sage:#6B7F68;
  --soft-sage:#A8B89A;
  --sand:#C9B99A;
  --brown:#7A5E41;
  --ivory:#FAFAF8;
  --cream:#F5F1E8;
  --white:#FFFFFF;
  --gray:#E6E6E4;

  --ink:#1B241E;              /* body text on light */
  --ink-soft:#4B5A4F;         /* secondary text on light */
  --on-dark:#F2EFE6;          /* body text on dark */
  --on-dark-soft:#B9C4B4;     /* secondary text on dark */

  --font-display:"Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:"Archivo", "Helvetica Neue", Arial, sans-serif;

  --container:1240px;
  --radius-sm:4px;
  --radius-md:10px;
  --radius-lg:22px;

  --shadow-soft: 0 20px 50px -25px rgba(31,45,38,0.35);
  --shadow-card: 0 12px 32px -18px rgba(31,45,38,0.28);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{ overflow-x:hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
body{ margin:0; }
img{ max-width:100%; display:block; }
svg{ width:1em; height:1em; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5,p,figure{ margin:0; }
button{ font:inherit; }
input,textarea,select{ font:inherit; }

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--ivory);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}

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

/* ---------- Type scale ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--forest);
  line-height:1.08;
  letter-spacing:-0.01em;
  font-weight:600;
}
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4,
.on-dark{ color:var(--on-dark); }

h1{ font-size:clamp(2.4rem, 4.6vw, 4.4rem); font-weight:560; }
h2{ font-size:clamp(1.9rem, 3.2vw, 3rem); }
h3{ font-size:clamp(1.35rem, 2vw, 1.9rem); }
h4{ font-size:1.15rem; font-weight:600; }

p{ color:var(--ink-soft); }
.on-dark p{ color:var(--on-dark-soft); }

.lede{ font-size:clamp(1.05rem,1.6vw,1.25rem); max-width:56ch; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family:var(--font-body);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.19em;
  text-transform:uppercase;
  color:var(--brown);
}
.on-dark .eyebrow{ color:var(--sand); }
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:currentColor;
  display:inline-block;
}

.italic-accent{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:440;
  color:var(--sage);
}
.on-dark .italic-accent{ color:var(--soft-sage); }

/* ---------- Layout helpers ---------- */
.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:24px;
}
@media (min-width:900px){ .container{ padding-inline:40px; } }

.section{ padding-block:clamp(64px,9vw,120px); }
.section-tight{ padding-block:clamp(40px,6vw,72px); }
.bg-ivory{ background:var(--ivory); }
.bg-cream{ background:var(--cream); }
.bg-forest{ background:var(--forest); }
.bg-olive{ background:var(--olive); }
.bg-white{ background:var(--white); }

.grid{ display:grid; gap:28px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:960px){ .grid-3{ grid-template-columns:repeat(2,1fr);} .grid-4{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

.stack{ display:flex; flex-direction:column; }
.cluster{ display:flex; flex-wrap:wrap; align-items:center; }

.text-center{ text-align:center; margin-inline:auto; }

.section-head{ max-width:680px; margin-bottom:48px; }
.section-head.text-center{ margin-inline:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55em;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.86rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:15px 30px;
  border-radius:999px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:var(--sand);
  color:var(--forest);
  box-shadow:0 14px 30px -14px rgba(122,94,65,0.55);
}
.btn-primary:hover{ background:#d8c8a9; }
.btn-outline{
  border-color:currentColor;
  background:transparent;
  color:var(--forest);
}
.on-dark .btn-outline, .mobile-nav .btn-outline{ color:var(--on-dark); }
.btn-outline:hover{ background:rgba(31,45,38,0.06); }
.on-dark .btn-outline:hover, .mobile-nav .btn-outline:hover{ background:rgba(255,255,255,0.08); }
.btn-ghost{
  color:var(--forest);
  padding:10px 4px;
  border-radius:0;
  text-transform:none;
  letter-spacing:0;
  font-weight:600;
  font-size:.95rem;
  border-bottom:1.5px solid var(--sand);
}
.btn-ghost:hover{ color:var(--brown); }
.btn-sm{ padding:11px 22px; font-size:.75rem; }
.btn-block{ width:100%; }

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(250,250,248,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.site-header.is-scrolled{
  background:rgba(250,250,248,0.97);
  border-bottom-color:var(--gray);
  box-shadow:0 10px 30px -20px rgba(31,45,38,0.3);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  padding-block:14px;
  max-width:1600px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:1; min-width:0; }
.brand img{ height:52px; width:auto; flex-shrink:0; }
.brand > span{ min-width:0; overflow:hidden; }
.brand-word{ font-family:var(--font-display); font-weight:600; font-size:1.28rem; color:var(--forest); line-height:1.1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.brand-tag{ display:block; font-family:var(--font-body); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--sage); font-weight:600; margin-top:2px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

.nav-primary{ display:flex; align-items:center; gap:2px; }
.nav-primary > li{ position:relative; }
.nav-link{
  display:flex; align-items:center; gap:5px;
  padding:12px 14px;
  font-size:.83rem; font-weight:600;
  color:var(--forest);
  border-radius:999px;
  white-space:nowrap;
  transition:background .25s ease, color .25s ease;
}
.nav-link:hover, .nav-link[aria-current="page"]{ background:var(--cream); color:var(--brown); }
.nav-caret{ width:9px; height:9px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform:rotate(45deg); margin-top:-3px; opacity:.65; transition:transform .25s ease; }

.nav-dropdown{
  position:absolute; top:calc(100% + 8px); left:50%; transform:translateX(-50%) translateY(6px);
  min-width:300px;
  background:var(--white);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-soft);
  padding:10px;
  opacity:0; visibility:hidden;
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  border:1px solid var(--gray);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}
.has-dropdown:hover .nav-caret{ transform:rotate(225deg); }
.nav-dropdown a{
  display:block;
  padding:10px 14px;
  border-radius:var(--radius-sm);
  font-size:.86rem; font-weight:600; color:var(--ink);
  transition:background .2s ease, color .2s ease;
}
.nav-dropdown a small{ display:block; font-weight:400; color:var(--ink-soft); font-size:.78rem; margin-top:2px; }
.nav-dropdown a:hover{ background:var(--cream); color:var(--brown); }

.header-cta{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.header-book-btn{ display:none; padding:12px 20px; }
@media (min-width:1500px){ .header-book-btn{ display:inline-flex; } }
.header-phone{ display:flex; flex-direction:column; text-align:right; font-size:.82rem; white-space:nowrap; }
.header-phone span{ display:block; font-size:.66rem; text-transform:uppercase; letter-spacing:.12em; color:var(--sage); font-weight:700; }
.header-phone strong{ font-family:var(--font-display); font-size:1.05rem; color:var(--forest); font-weight:600; }

.nav-toggle{
  display:none;
  width:46px; height:46px;
  border-radius:50%;
  border:1.5px solid var(--gray);
  background:var(--white);
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
  cursor:pointer;
}
.nav-toggle span{ width:19px; height:2px; background:var(--forest); transition:transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:1300px){
  .nav-primary, .header-phone{ display:none; }
  .nav-toggle{ display:flex; }
  .header-cta .btn-primary{ padding:12px 18px; font-size:.72rem; }
}
@media (max-width:480px){
  .header-cta .btn-primary{ display:none; }
  .brand img{ height:42px; }
  .brand-word{ font-size:1.08rem; }
  .brand-tag{ display:none; }
  .header-inner{ gap:10px; }
}

/* Mobile drawer */
.mobile-nav{
  position:fixed; inset:0 0 0 auto; width:min(360px,86vw); height:100vh;
  background:var(--forest);
  color:var(--on-dark);
  transform:translateX(100%);
  transition:transform .45s var(--ease);
  z-index:200;
  overflow-y:auto;
  padding:28px 26px 40px;
}
.mobile-nav.is-open{ transform:translateX(0); }
.mobile-nav-scrim{
  position:fixed; inset:0; background:rgba(15,20,16,0.55); z-index:190;
  opacity:0; visibility:hidden; transition:opacity .35s ease, visibility .35s ease;
}
.mobile-nav-scrim.is-open{ opacity:1; visibility:visible; }
.mobile-nav-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.mobile-nav-close{ width:40px; height:40px; border-radius:50%; border:1.5px solid rgba(242,239,230,0.35); background:transparent; color:var(--on-dark); font-size:1.1rem; cursor:pointer; }
.mobile-nav a{ display:block; padding:13px 2px; font-size:1.02rem; font-weight:600; border-bottom:1px solid rgba(242,239,230,0.14); }
.mobile-nav .mn-sub{ padding-left:14px; }
.mobile-nav .mn-sub a{ font-size:.9rem; font-weight:500; color:var(--on-dark-soft); border-bottom:none; padding:9px 2px; }
.mobile-nav-cta{ margin-top:26px; display:flex; flex-direction:column; gap:12px; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(107,127,104,0.55), transparent 60%),
    radial-gradient(90% 70% at 8% 110%, rgba(122,94,65,0.35), transparent 55%),
    linear-gradient(160deg, var(--forest) 0%, #223228 55%, var(--olive) 130%);
  color:var(--on-dark);
  padding-top:clamp(70px,10vw,120px);
  padding-bottom:clamp(90px,11vw,140px);
}
.hero-grain{ position:absolute; inset:0; opacity:.5; pointer-events:none; mix-blend-mode:overlay; }
.hero-video-wrap{
  position:absolute;
  inset:-18% 0 -30% 0;
  z-index:0;
  overflow:hidden;
  pointer-events:none;
  will-change:transform;
  background:var(--forest);
}
.hero-video-wrap video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:1;
}
.hero-video-wrap::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(17,26,20,0.92) 0%, rgba(17,26,20,0.68) 32%, rgba(17,26,20,0.38) 55%, rgba(17,26,20,0.22) 78%, rgba(17,26,20,0.4) 100%),
    linear-gradient(0deg, rgba(17,26,20,0.55) 0%, transparent 30%);
}
@media (max-width:640px){
  .hero-video-wrap{ display:none; }
}
@media (prefers-reduced-motion:reduce){
  .hero-video-wrap{ transform:none !important; }
}
.hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; }
@media (max-width:980px){ .hero-inner{ grid-template-columns:1fr; } }

.hero-ghost{
  font-family:var(--font-display);
  font-weight:340;
  color:transparent;
  -webkit-text-stroke:1.4px rgba(242,239,230,0.55);
  text-stroke:1.4px rgba(242,239,230,0.55);
  font-size:clamp(3.4rem,9vw,7.6rem);
  line-height:.92;
  letter-spacing:-.01em;
  margin-block:14px 6px;
  text-transform:uppercase;
}
.hero-sub{ font-size:clamp(1.06rem,1.6vw,1.28rem); max-width:52ch; color:var(--on-dark-soft); margin-top:18px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-top:34px; align-items:center; }

.hero-panel{
  position:relative;
  border-radius:var(--radius-lg);
  padding:2px;
  background:linear-gradient(155deg, rgba(201,185,154,0.55), rgba(107,127,104,0.25));
}
.hero-panel-inner{
  border-radius:calc(var(--radius-lg) - 2px);
  overflow:hidden;
  background:linear-gradient(155deg, #2a3a30, #1a2620);
  aspect-ratio:4/5;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.hero-panel-inner img{ width:100%; height:100%; object-fit:cover; }
.hero-panel-caption{
  position:absolute; left:18px; right:18px; bottom:18px;
  background:rgba(31,45,38,0.72);
  backdrop-filter:blur(6px);
  border:1px solid rgba(242,239,230,0.18);
  border-radius:var(--radius-md);
  padding:14px 16px;
  font-size:.82rem;
  color:var(--on-dark);
  display:flex; align-items:center; gap:10px;
}
.hero-panel-content{
  flex-direction:column;
  text-align:center;
  gap:26px;
  padding:48px 34px;
  aspect-ratio:auto;
}
.hero-panel-stats{ display:flex; flex-wrap:wrap; gap:16px 0; width:100%; border-top:1px solid rgba(242,239,230,0.16); padding-top:26px; }
.hero-panel-stats .stat{ flex:1 1 30%; min-width:80px; text-align:center; }
.hero-panel-stats .stat .stat-num{ font-size:1.7rem; }
@media (max-width:480px){
  .hero-panel-content{ padding:32px 20px; gap:18px; }
  .hero-panel-stats{ gap:18px 0; }
  .hero-panel-stats .stat{ flex:1 1 45%; }
  .hero-panel-stats .stat .stat-num{ font-size:1.4rem; }
  .hero-panel-stats .stat .stat-label{ font-size:.68rem; letter-spacing:.04em; }
}

/* ---------- Video showcase ---------- */
.video-showcase-wrap{ display:flex; justify-content:center; }
.video-showcase{
  position:relative;
  width:100%; max-width:340px;
  aspect-ratio:9/16;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--forest);
  box-shadow:var(--shadow-soft);
  border:1px solid var(--gray);
}
.video-showcase video{ width:100%; height:100%; object-fit:cover; display:block; }
.video-showcase-wide{ max-width:560px; aspect-ratio:16/9; }
@media (max-width:640px){ .video-showcase-wide{ aspect-ratio:4/3; } }
.video-showcase::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(31,45,38,0.55) 0%, rgba(31,45,38,0) 30%);
  pointer-events:none;
}
.video-badge{
  position:absolute; left:12px; top:12px; z-index:2;
  display:flex; align-items:center; gap:6px;
  background:rgba(31,45,38,0.55);
  backdrop-filter:blur(6px);
  color:var(--ivory);
  font-size:.6rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  padding:6px 11px;
  border-radius:999px;
  border:1px solid rgba(242,239,230,0.25);
}
.video-badge::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--sand); box-shadow:0 0 0 2px rgba(201,185,154,0.3); flex-shrink:0; }
.video-badge svg{ width:13px; height:13px; }
.video-mute-btn{
  position:absolute; right:14px; bottom:14px; z-index:2;
  width:44px; height:44px;
  border-radius:50%;
  background:rgba(31,45,38,0.6);
  backdrop-filter:blur(6px);
  border:1.5px solid rgba(242,239,230,0.35);
  color:var(--ivory);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}
.video-mute-btn:hover{ background:rgba(31,45,38,0.8); transform:scale(1.06); }
.video-mute-btn svg{ width:19px; height:19px; }
.video-showcase-caption{
  position:absolute; left:14px; right:14px; bottom:14px; z-index:2;
  color:var(--on-dark);
  font-size:.86rem; font-weight:600;
}
.video-highlights{ display:flex; flex-direction:column; gap:16px; margin-top:26px; }
.video-highlights li{ display:flex; gap:12px; align-items:flex-start; font-size:.98rem; color:var(--ink); }
.video-highlights svg{ width:19px; height:19px; flex-shrink:0; margin-top:3px; color:var(--sage); }

/* ---------- Illustrated scene card (stand-in for photography) ---------- */
.scene-card{
  position:relative;
  width:100%; max-width:380px;
  aspect-ratio:4/5;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(201,185,154,0.35), transparent 60%),
    linear-gradient(155deg, var(--cream) 0%, var(--soft-sage) 145%);
  border:1px solid var(--gray);
  box-shadow:var(--shadow-soft);
  display:flex; align-items:center; justify-content:center;
  padding:32px;
}
.scene-card > svg{ width:100%; height:100%; max-width:300px; }
.why-host-logo{ background:var(--ivory); border-radius:20px; padding:16px; flex-shrink:0; box-shadow:0 12px 30px rgba(0,0,0,0.22); }
.why-host-logo img{ display:block; height:88px; width:auto; }
@media (max-width:640px){ .why-host-logo{ display:none; } }
.scene-badge{ position:absolute; left:14px; top:14px; right:auto; bottom:auto; background:rgba(31,45,38,0.78); }

/* ---------- Before / after comparison slider ---------- */
.ba-slider{
  position:relative;
  max-width:440px;
  margin:0 auto;
  aspect-ratio:9/16;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--gray);
  box-shadow:var(--shadow-soft);
  background:var(--forest);
  cursor:ew-resize;
  touch-action:none;
  user-select:none;
}
.ba-slider-img{ position:absolute; inset:0; }
.ba-slider-img img{ width:100%; height:100%; object-fit:cover; display:block; pointer-events:none; user-select:none; -webkit-user-drag:none; }
.ba-slider-before{ clip-path:inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-slider-handle{
  position:absolute;
  top:0; bottom:0;
  left:var(--pos, 50%);
  transform:translateX(-50%);
  width:3px;
  background:var(--ivory);
  z-index:3;
  cursor:ew-resize;
  box-shadow:0 0 0 1px rgba(31,45,38,0.18);
}
.ba-slider-handle-grip{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:42px; height:42px;
  border-radius:50%;
  background:var(--ivory);
  color:var(--forest);
  display:flex; align-items:center; justify-content:center;
  gap:2px;
  box-shadow:0 10px 22px -8px rgba(15,20,16,0.5);
  pointer-events:none;
}
.ba-slider-handle-grip svg{ width:18px; height:18px; }
.ba-slider-handle:focus-visible .ba-slider-handle-grip{ outline:2px solid var(--sand); outline-offset:2px; }
.ba-badge{
  position:absolute; top:14px; z-index:4;
  display:flex; align-items:center; gap:8px;
  font-size:.68rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  padding:8px 14px;
  border-radius:999px;
  backdrop-filter:blur(6px);
  color:var(--ivory);
}
.ba-badge svg{ width:14px; height:14px; }
.ba-badge.ba-before{ left:14px; background:rgba(122,94,65,0.75); }
.ba-badge.ba-after{ right:14px; background:rgba(63,77,42,0.82); }
@media (max-width:640px){
  .ba-slider{ max-width:340px; }
}

/* ---------- Media carousel (auto-advancing photos + clip) ---------- */
.media-carousel{
  position:relative;
  max-width:420px;
  margin:0 auto;
  aspect-ratio:9/16;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--gray);
  box-shadow:var(--shadow-soft);
  background:var(--forest);
}
.media-carousel-track{
  display:flex;
  width:100%; height:100%;
  transition:transform .65s cubic-bezier(.65,0,.35,1);
}
.media-carousel-slide{
  position:relative;
  flex:0 0 100%;
  width:100%; height:100%;
}
.media-carousel-slide img,
.media-carousel-slide video{ width:100%; height:100%; object-fit:cover; display:block; }
.media-carousel-slide.is-photo img{
  position:absolute; left:0; top:-14px;
  width:100%; height:calc(100% + 28px);
  animation:media-float 6.5s ease-in-out infinite;
}
.media-carousel:hover .media-carousel-slide.is-photo img,
.media-carousel:focus-within .media-carousel-slide.is-photo img{
  animation-play-state:paused;
}
@keyframes media-float{
  0%, 100%{ transform:translateY(-8px); }
  50%{ transform:translateY(8px); }
}
@media (prefers-reduced-motion:reduce){
  .media-carousel-slide.is-photo img{ animation:none; top:0; height:100%; }
}
.media-carousel-slide::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(31,45,38,0.55) 0%, rgba(31,45,38,0) 30%);
  pointer-events:none;
}
.media-carousel .video-badge{ left:14px; top:14px; }
.media-carousel-dots{
  position:absolute; left:0; right:0; bottom:16px; z-index:3;
  display:flex; justify-content:center; gap:9px;
}
.media-carousel-dot{
  width:8px; height:8px; border-radius:50%;
  background:rgba(242,239,230,0.4);
  border:none; padding:0; cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}
.media-carousel-dot:hover{ background:rgba(242,239,230,0.65); }
.media-carousel-dot.is-active{ background:var(--sand); transform:scale(1.3); }
.media-carousel-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(31,45,38,0.55);
  backdrop-filter:blur(6px);
  border:1.5px solid rgba(242,239,230,0.35);
  color:var(--ivory);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:background .25s ease;
}
.media-carousel-arrow:hover{ background:rgba(31,45,38,0.8); }
.media-carousel-arrow svg{ width:18px; height:18px; }
.media-carousel-prev{ left:12px; }
.media-carousel-next{ right:12px; }
@media (max-width:640px){
  .media-carousel{ max-width:340px; }
  .media-carousel-arrow{ width:32px; height:32px; }
  .media-carousel-arrow svg{ width:15px; height:15px; }
}

.hero-badges{ display:flex; flex-wrap:wrap; gap:26px; margin-top:44px; padding-top:30px; border-top:1px solid rgba(242,239,230,0.16); }
.hero-badge{ display:flex; align-items:center; gap:10px; font-size:.82rem; color:var(--on-dark-soft); font-weight:600; }
.hero-badge svg{ flex-shrink:0; width:20px; height:20px; color:var(--sand); }

/* Inner page banner (smaller, non-home hero) */
.page-banner{
  position:relative;
  background:
    radial-gradient(110% 140% at 90% 0%, rgba(107,127,104,0.5), transparent 55%),
    linear-gradient(155deg, var(--forest), var(--olive) 130%);
  color:var(--on-dark);
  padding-block:clamp(58px,8vw,96px);
  overflow:hidden;
}
.page-banner::before{
  content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(250,250,248,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(250,250,248,0.045) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(75% 100% at 75% 20%, black, transparent);
}
.page-banner .container{ position:relative; z-index:2; }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:.78rem; color:var(--on-dark-soft); margin-bottom:18px; text-transform:uppercase; letter-spacing:.08em; font-weight:600; }
.breadcrumb span{ opacity:.5; }
.page-banner h1{ max-width:18ch; }
.page-banner .lede{ margin-top:16px; }

/* ---------- Rotating seal (signature element) ---------- */
.seal{
  --seal-size:150px;
  width:var(--seal-size); height:var(--seal-size);
  position:relative;
  flex-shrink:0;
}
.seal svg{ width:100%; height:100%; }
.seal .seal-ring{ animation:seal-spin 34s linear infinite; transform-origin:50% 50%; }
.seal:hover .seal-ring{ animation-play-state:paused; }
@keyframes seal-spin{ to{ transform:rotate(360deg); } }
.seal-mark{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.seal-mark::before{
  content:"";
  position:absolute;
  width:58%; height:58%;
  border-radius:50%;
  background:var(--ivory);
  box-shadow:0 6px 16px rgba(0,0,0,0.22);
}
.seal-mark img{ width:46%; height:auto; position:relative; z-index:1; }
.seal--light .seal-ring text{ fill:var(--on-dark-soft); }
.seal--light .seal-ring circle.seal-dot{ fill:var(--sand); }
.seal--dark .seal-ring text{ fill:var(--sage); }
.seal--dark .seal-ring circle.seal-dot{ fill:var(--brown); }
.seal-lockup{ display:flex; align-items:center; gap:20px; }
.seal-lockup p{ margin:0; max-width:24ch; font-size:.86rem; }
@media (max-width:640px){ .seal{ --seal-size:118px; } }

/* ---------- Sprig divider (signature element) ---------- */
.sprig-divider{
  display:flex; align-items:center; gap:16px;
  margin-block:0;
  color:var(--soft-sage);
}
.sprig-divider .line{ flex:1; height:1px; background:currentColor; opacity:.55; }
.sprig-divider svg{ width:30px; height:30px; flex-shrink:0; color:var(--sage); }
.on-dark .sprig-divider{ color:rgba(242,239,230,0.25); }
.on-dark .sprig-divider svg{ color:var(--soft-sage); }

/* ---------- Trust strip ---------- */
.trust-strip{ border-top:1px solid var(--gray); border-bottom:1px solid var(--gray); background:var(--white); }
.trust-strip .container{ display:flex; flex-wrap:wrap; gap:32px; justify-content:space-between; align-items:center; padding-block:26px; }
.trust-item{ display:flex; align-items:center; gap:10px; font-size:.82rem; font-weight:700; color:var(--olive); letter-spacing:.02em; }
.trust-item svg{ width:20px; height:20px; color:var(--brown); flex-shrink:0; }

/* ---------- Cards ---------- */
.card{
  background:var(--white);
  border:1px solid var(--gray);
  border-radius:var(--radius-lg);
  padding:34px 30px;
  box-shadow:var(--shadow-card);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
  height:100%;
}
.card:hover{ transform:translateY(-6px); border-color:var(--sand); }

.service-card{ display:flex; flex-direction:column; gap:16px; }
.service-card .icon{
  width:56px; height:56px; border-radius:16px;
  background:var(--cream);
  display:flex; align-items:center; justify-content:center;
  color:var(--olive);
  transition:transform .45s var(--ease), background .45s ease;
}
.service-card .icon svg{ width:28px; height:28px; transition:transform .45s var(--ease); }
.card:hover .icon{ transform:scale(1.12); background:var(--sand); }
.card:hover .icon svg{ transform:scale(1.08); }
@media (prefers-reduced-motion: reduce){
  .service-card .icon, .service-card .icon svg{ transition:none; }
}
.service-card h3{ font-size:1.28rem; }
.service-card .tag{ font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--brown); }
.service-card-link{ margin-top:auto; display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.86rem; color:var(--brown); }
.service-card-link svg{ width:15px; height:15px; transition:transform .3s var(--ease); }
.card:hover .service-card-link svg{ transform:translateX(4px); }

.value-card{ text-align:left; }
.value-card .num{ font-family:var(--font-display); font-style:italic; font-size:1.6rem; color:var(--sand); display:block; margin-bottom:10px; }

.audience-card{ background:var(--cream); border:1px solid var(--gray); border-radius:var(--radius-md); padding:22px 22px; }
.audience-card h4{ font-size:1rem; margin-bottom:6px; }
.audience-card p{ font-size:.9rem; margin:0; }

/* Testimonial */
.testimonial{
  background:var(--cream);
  border-radius:var(--radius-lg);
  padding:36px 32px;
  height:100%;
  border:1px solid var(--gray);
}
.testimonial blockquote{ font-family:var(--font-display); font-style:italic; font-size:1.18rem; color:var(--forest); margin:0 0 20px; line-height:1.45; }
.testimonial-who strong{ display:block; font-size:.9rem; color:var(--forest); }
.testimonial-who span{ display:block; font-size:.78rem; color:var(--olive); margin-top:2px; }
.testimonial-stars{ display:flex; gap:3px; margin-bottom:14px; }
.testimonial-stars svg{ width:16px; height:16px; color:var(--sand); fill:currentColor; }
.rating-line{ display:inline-flex; align-items:center; gap:10px; margin-top:16px; font-size:.88rem; color:var(--ink-soft); text-decoration:none; }
.rating-line:hover{ color:var(--brown); }
.rating-line strong{ color:var(--forest); }
.rating-stars{ display:inline-flex; gap:2px; }
.rating-stars svg{ width:15px; height:15px; color:var(--sand); fill:currentColor; }
.review-links{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.review-links .rating-line{ margin-top:16px; }
.review-pill{ padding:10px 18px; border:1.5px solid var(--gray); border-radius:999px; font-weight:600; }
.review-pill svg{ width:15px; height:15px; color:var(--olive); }
.review-pill:hover{ border-color:var(--olive); background:var(--cream); color:var(--brown); }

/* ---------- Process steps ---------- */
.process-list{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; counter-reset:step; }
@media (max-width:900px){ .process-list{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .process-list{ grid-template-columns:1fr; } }
.process-step{ position:relative; padding:26px 24px 26px 0; border-top:2px solid var(--sand); }
.process-step .step-no{ font-family:var(--font-display); font-style:italic; font-size:2rem; color:var(--sand); display:block; margin-bottom:14px; }
.process-step h4{ margin-bottom:8px; }
.process-step p{ font-size:.92rem; }

/* ---------- Checklist ---------- */
.checklist{ display:grid; grid-template-columns:1fr 1fr; gap:14px 26px; }
@media (max-width:640px){ .checklist{ grid-template-columns:1fr; } }
.checklist li{ display:flex; gap:12px; align-items:flex-start; font-size:.96rem; color:var(--ink); }
.checklist svg{ width:19px; height:19px; flex-shrink:0; margin-top:3px; color:var(--sage); }

/* ---------- CTA band ---------- */
.cta-band{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:linear-gradient(135deg, var(--forest), var(--olive));
  color:var(--on-dark);
  padding:clamp(36px,6vw,60px);
  display:flex; flex-wrap:wrap; gap:28px; align-items:center; justify-content:space-between;
}
.cta-band::after{
  content:""; position:absolute; right:-60px; top:-60px; width:220px; height:220px; border-radius:50%;
  border:1px solid rgba(242,239,230,0.18);
}
.cta-band h3{ max-width:22ch; color:var(--on-dark); }
.cta-band p{ color:var(--on-dark-soft); }
.cta-band .eyebrow{ color:var(--sand); }
.cta-band .btn-outline{ color:var(--on-dark); border-color:rgba(242,239,230,0.55); }
.cta-band .btn-outline:hover{ background:rgba(255,255,255,0.08); }
.cta-band .cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:.78rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--olive); }
.field input, .field select, .field textarea{
  border:1.5px solid var(--gray);
  background:var(--white);
  border-radius:var(--radius-sm);
  padding:13px 15px;
  font-size:.96rem;
  color:var(--ink);
  transition:border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--sage);
  box-shadow:0 0 0 4px rgba(107,127,104,0.18);
}
.field textarea{ resize:vertical; min-height:120px; }
.field-hint{ font-size:.76rem; color:var(--ink-soft); opacity:.8; }
.form-note{ font-size:.8rem; color:var(--ink-soft); margin-top:14px; }
.form-success, .form-error{
  display:none;
  border-radius:var(--radius-md);
  padding:16px 18px;
  font-size:.9rem;
  margin-top:18px;
}
.form-success{ background:#e7efe3; color:var(--olive); border:1px solid var(--soft-sage); }
.form-error{ background:#f6e9e2; color:#7a3b28; border:1px solid #e0b8a3; }
.form-success.is-visible, .form-error.is-visible{ display:block; }

/* ---------- FAQ accordion ---------- */
.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:var(--white); border:1px solid var(--gray); border-radius:var(--radius-md); overflow:hidden; }
.faq-q{
  width:100%; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 22px;
  background:transparent; border:none; cursor:pointer;
  font-family:var(--font-display); font-size:1.06rem; color:var(--forest); font-weight:600;
}
.faq-q .plus{ width:26px; height:26px; border-radius:50%; border:1.5px solid var(--sand); position:relative; flex-shrink:0; transition:transform .35s var(--ease), background .3s ease; }
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background:var(--brown); transition:transform .3s ease; }
.faq-q .plus::before{ left:7px; right:7px; top:50%; height:1.5px; transform:translateY(-50%); }
.faq-q .plus::after{ top:7px; bottom:7px; left:50%; width:1.5px; transform:translateX(-50%); }
.faq-item[data-open="true"] .plus{ background:var(--sand); }
.faq-item[data-open="true"] .plus::after{ transform:translateX(-50%) rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a-inner{ padding:0 22px 22px; }
.faq-a-inner p{ margin:0; font-size:.95rem; }
.faq-category-tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:34px; }
.faq-tab{ padding:10px 20px; border-radius:999px; border:1.5px solid var(--gray); font-size:.82rem; font-weight:700; background:var(--white); cursor:pointer; transition:all .25s ease; }
.faq-tab[aria-pressed="true"]{ background:var(--forest); border-color:var(--forest); color:var(--ivory); }

/* ---------- Policy page ---------- */
.policy-block{ display:grid; grid-template-columns:.55fr 1fr; gap:40px; padding-block:38px; border-top:1px solid var(--gray); }
.policy-block:first-of-type{ border-top:none; }
@media (max-width:800px){ .policy-block{ grid-template-columns:1fr; gap:14px; } }
.policy-block .policy-num{ font-family:var(--font-display); font-style:italic; font-size:1.5rem; color:var(--sand); }
.policy-block h3{ margin-bottom:4px; }
.policy-note{ display:flex; align-items:flex-start; gap:12px; background:var(--cream); border-left:3px solid var(--brown); border-radius:0 var(--radius-md) var(--radius-md) 0; padding:18px 22px; font-size:.92rem; margin-top:16px; color:var(--ink); }
.policy-note svg{ width:19px; height:19px; flex-shrink:0; margin-top:2px; color:var(--brown); }

/* ---------- Service area list ---------- */
.town-pill-list{ display:flex; flex-wrap:wrap; gap:10px; }
.town-pill{ padding:9px 18px; border-radius:999px; background:var(--white); border:1px solid var(--gray); font-size:.84rem; font-weight:600; color:var(--olive); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--forest); color:var(--on-dark); padding-top:clamp(56px,7vw,88px); }
.footer-grid{ display:grid; grid-template-columns:1.3fr .8fr .8fr 1fr; gap:40px; padding-bottom:50px; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:flex-start; gap:14px; margin-bottom:16px; }
.footer-logo-plate{ background:var(--ivory); border-radius:16px; padding:8px; flex-shrink:0; }
.footer-logo-plate img{ height:44px; width:auto; }
.footer-word{ font-family:var(--font-display); font-size:1.2rem; font-weight:600; color:var(--ivory); }
.footer-tag{ font-size:.68rem; letter-spacing:.13em; text-transform:uppercase; color:var(--sand); font-weight:700; margin-top:3px; }
.footer-col h5{ font-family:var(--font-body); font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--sand); margin-bottom:18px; font-weight:700; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a, .footer-col p{ font-size:.9rem; color:var(--on-dark-soft); }
.footer-col a:hover{ color:var(--ivory); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:.9rem; color:var(--on-dark-soft); }
.footer-contact svg{ width:17px; height:17px; flex-shrink:0; margin-top:2px; color:var(--sand); }
.footer-bottom{ border-top:1px solid rgba(242,239,230,0.14); padding-block:22px; display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; align-items:center; font-size:.78rem; color:var(--on-dark-soft); }
.footer-bottom a{ color:var(--on-dark-soft); }
.footer-bottom a:hover{ color:var(--ivory); }

/* ---------- Reveal on scroll ----------
   Elements are fully visible by default (no-JS / crawlers / reduced motion all see
   full content immediately). JS opts individual elements into the hidden->visible
   fade only when it can guarantee they'll be revealed. */
.reveal{ transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.reveal-armed{ opacity:0; transform:translateY(16px); }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal.reveal-armed{ opacity:1; transform:none; } }

/* ---------- Misc ---------- */
.divider-space{ height:0; }
.tag-row{ display:flex; flex-wrap:wrap; gap:10px; }
.tag{ font-size:.74rem; font-weight:700; letter-spacing:.04em; padding:7px 14px; border-radius:999px; background:var(--cream); color:var(--olive); }
.on-dark .tag{ background:rgba(242,239,230,0.1); color:var(--sand); }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; gap:32px; } }
.stat{ text-align:left; }
.stat .stat-num{ font-family:var(--font-display); font-size:clamp(2.2rem,3.6vw,3.2rem); color:var(--forest); font-weight:600; }
.on-dark .stat .stat-num{ color:var(--sand); }
.stat .stat-label{ font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; color:var(--sage); font-weight:700; margin-top:4px; }

.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--forest); color:var(--ivory); padding:14px 20px; border-radius:8px; z-index:1000;
}
.skip-link:focus{ left:24px; top:24px; }

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed;
  right:22px;
  bottom:68px;
  z-index:60;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1.5px solid rgba(31,45,38,0.14);
  background:var(--forest);
  color:var(--ivory);
  box-shadow:0 12px 26px -10px rgba(31,45,38,0.45);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s ease, background .3s ease;
}
.back-to-top svg{ width:19px; height:19px; }
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--olive); }
@media (max-width:640px){
  .back-to-top{ right:16px; bottom:88px; width:44px; height:44px; }
}
@media (prefers-reduced-motion: reduce){
  .back-to-top{ transition:opacity .2s ease, visibility .2s ease; }
}
