/* ============================================================
   E&J Clean Co — "Fresh Porcelain" design system
   Fraunces (display) + Karla (body)
   ============================================================ */
:root {
  --ink: #0b3236;
  --pine: #11454b;
  --aqua: #64c7c2;
  --aqua-soft: #a8e0dc;
  --mist: #e4f2f0;
  --porcelain: #f8f6f1;
  --white: #ffffff;
  --gold: #c8a24a;
  /* gold for TEXT — #c8a24a only hits ~2.2:1 on light backgrounds, this passes 4.5:1 (WCAG AA) */
  --gold-deep: #856724;
  --coral: #e2725b;
  --shadow: 0 24px 60px -24px rgba(11, 50, 54, 0.25);
  --radius: 22px;
  --font-display: "Fraunces", serif;
  --font-body: "Karla", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, .footer-brand {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h2 em, h1 em, .hosts h2 em { font-style: italic; font-weight: 400; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--aqua-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-solid {
  background: var(--pine);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(17, 69, 75, 0.55);
}
.btn-solid:hover { transform: translateY(-2px); background: var(--ink); box-shadow: 0 20px 38px -12px rgba(17, 69, 75, 0.6); }
.btn-ghost {
  background: transparent;
  color: var(--pine);
  border-color: rgba(17, 69, 75, 0.28);
}
.btn-ghost:hover { border-color: var(--pine); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(200, 162, 74, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); background: #d8b158; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(248, 246, 241, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -18px rgba(11, 50, 54, 0.35);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-mark { width: 40px; height: 40px; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.brand-name em { font-style: italic; font-weight: 400; color: var(--pine); }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.nav-mobile { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(168deg, #eaf6f4 0%, var(--mist) 42%, #d5ecea 100%);
  overflow: hidden;
}
#bubbles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0) 65%);
  top: -180px; right: -140px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 140px 24px 120px;
  width: 100%;
}
.hero h1 { max-width: 13ch; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(11, 50, 54, 0.12);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 162, 74, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(200, 162, 74, 0); }
}
.shimmer {
  font-style: italic;
  background: linear-gradient(100deg, var(--pine) 20%, var(--aqua) 42%, var(--gold) 55%, var(--pine) 75%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
.spark-dot { display: inline-block; width: 0.5em; height: 0.5em; margin-left: 0.12em; }
.spark-dot svg { width: 100%; height: 100%; fill: var(--gold); animation: twinkle 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(0.6) rotate(18deg); opacity: 0.65; }
}
.hero-sub {
  max-width: 46ch;
  font-size: 1.13rem;
  margin-top: 22px;
  color: rgba(11, 50, 54, 0.78);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.trust-chip { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; line-height: 1.35; color: rgba(11,50,54,0.75); font-weight: 700; }
.trust-big { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--pine); }
.trust-divider { width: 1px; height: 38px; background: rgba(11, 50, 54, 0.18); }

.float-item { position: absolute; z-index: 1; pointer-events: none; filter: drop-shadow(0 18px 28px rgba(11,50,54,0.18)); }
.float-spray { width: clamp(90px, 11vw, 150px); right: 12%; top: 22%; animation: bob 7s ease-in-out infinite; }
.float-sponge { width: clamp(100px, 12vw, 170px); right: 26%; bottom: 18%; animation: bob 9s ease-in-out 1.2s infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.hero-wave svg { display: block; width: 100%; height: clamp(40px, 7vw, 90px); }

/* ---------- marquee ---------- */
.marquee {
  background: var(--porcelain);
  overflow: hidden;
  padding: 18px 0 6px;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-style: italic;
  color: rgba(11, 50, 54, 0.4);
}
.marquee-track i { font-style: normal; color: var(--gold); font-size: 0.8em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ---------- services ---------- */
/* 5 services: 6-col grid so it reads 3-then-2 centred, never an orphan card */
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.service-card { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 2; }
  .service-card:nth-child(5) { grid-column: 2 / span 2; }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: 1; }
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  box-shadow: 0 10px 34px -20px rgba(11, 50, 54, 0.25);
  border: 1px solid rgba(11, 50, 54, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 199, 194, 0.16), transparent 70%);
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scale(1.6); }
.service-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(11, 50, 54, 0.68); /* AA contrast */
}
.service-icon { width: 44px; height: 44px; color: var(--pine); margin-bottom: 18px; }
.service-card p { font-size: 0.95rem; color: rgba(11, 50, 54, 0.72); }

/* commercial = growth priority, gets the visual weight */
.service-card-feature {
  background: linear-gradient(168deg, #ffffff 0%, var(--mist) 100%);
  border: 1.5px solid var(--aqua);
  box-shadow: 0 18px 44px -22px rgba(17, 69, 75, 0.4);
}
.service-flag {
  display: inline-block;
  background: var(--pine);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.service-price {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(11, 50, 54, 0.16);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--pine);
  position: relative;
  z-index: 1;
}
.service-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(11, 50, 54, 0.55);
  letter-spacing: 0.04em;
}
.service-price-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(11, 50, 54, 0.6);
}
.service-note {
  margin-top: 30px;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(11, 50, 54, 0.6);
  font-weight: 700;
}

/* ---------- squeegee wipe + pillars ---------- */
.difference { background: var(--porcelain); overflow: hidden; }
.wipe-stage {
  position: relative;
  text-align: center;
  padding: 10px 0 26px;
}
.wipe-text {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  font-weight: 500;
}
.wipe-blur {
  color: rgba(11, 50, 54, 0.3);
  filter: blur(6px);
}
.wipe-sharp {
  position: absolute;
  inset: 10px 0 auto;
  color: var(--ink);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.25, 1);
}
.wipe-stage.wiped .wipe-sharp { clip-path: inset(0 0 0 0); }
.squeegee {
  position: absolute;
  top: -14px;
  left: -6%;
  width: clamp(30px, 4vw, 46px);
  height: 120%;
  opacity: 0;
}
.squeegee svg { width: 100%; height: 100%; }
.wipe-stage.wiped .squeegee { animation: sweep 1.4s cubic-bezier(0.65, 0, 0.25, 1) forwards; }
@keyframes sweep {
  0% { left: -6%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 102%; opacity: 0; }
}
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-top: 64px;
  text-align: center;
}
.pillar-mark { color: var(--gold); font-size: 1.3rem; display: block; margin-bottom: 12px; }
.pillar p { font-size: 0.95rem; color: rgba(11, 50, 54, 0.72); max-width: 34ch; margin: 0 auto; }

/* ---------- about ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-photo { position: relative; max-width: 420px; }
.about-photo img {
  width: 100%;
  /* height:auto is REQUIRED — the img carries width/height attributes to reserve
     layout space, and without this the height attribute wins and stretches her photo. */
  height: auto;
  border-radius: 28px 120px 28px 28px;
  box-shadow: var(--shadow);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  left: 22px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 22px;
  box-shadow: 0 16px 34px -14px rgba(11, 50, 54, 0.35);
  border: 1px solid rgba(11, 50, 54, 0.06);
}
.about-badge span { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.about-badge small { color: rgba(11, 50, 54, 0.6); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
.about-spark {
  position: absolute;
  top: -16px; right: -14px;
  width: 40px; height: 40px;
  fill: var(--gold);
  animation: twinkle 3s ease-in-out infinite;
}
.about-copy p:not(.eyebrow) { color: rgba(11, 50, 54, 0.75); margin-bottom: 18px; max-width: 52ch; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy .btn { margin-top: 10px; }

/* ---------- gallery ---------- */
.gallery { background: var(--white); padding-top: 0; }
/* fit-content + auto margins centres the row when it fits, and scrolls from the
   true left edge when it doesn't. `justify-content: center` would strand the
   first image in unreachable overflow on narrow screens. */
.gallery-strip {
  display: flex;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 44px 24px 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip figure {
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px -16px rgba(11, 50, 54, 0.3);
  transition: transform 0.35s ease;
}
.gallery-strip figure:hover { transform: translateY(-6px) rotate(-0.5deg); }
.gallery-strip img { display: block; height: 320px; width: auto; object-fit: cover; }
.gallery-strip figure:nth-child(even) { margin-top: 26px; }
.gallery-strip figure:nth-child(2) img,
.gallery-strip figure:nth-child(4) img,
.gallery-strip figure:nth-child(6) img { height: 240px; }

/* ---------- hosts (dark) ---------- */
.hosts {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(100, 199, 194, 0.22), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, var(--pine) 100%);
  color: var(--porcelain);
  overflow: hidden;
}
.hosts h2 { color: var(--white); }
.hosts h2 em { color: var(--aqua-soft); }
.hosts-sub { color: rgba(248, 246, 241, 0.78); max-width: 44ch; margin: 20px 0 30px; }
.hosts-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hosts-list {
  list-style: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 34px 32px;
  backdrop-filter: blur(8px);
}
.hosts-list li {
  display: flex;
  gap: 14px;
  padding: 11px 0;
  font-size: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}
.hosts-list li:last-child { border-bottom: none; }
.hosts-list span { color: var(--gold); font-weight: 800; }
.hosts-bubbles span {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 224, 220, 0.35);
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.25), rgba(255,255,255,0.02) 60%);
  animation: rise linear infinite;
}
.hosts-bubbles span:nth-child(1) { left: 8%;  width: 46px; height: 46px; animation-duration: 15s; }
.hosts-bubbles span:nth-child(2) { left: 22%; width: 22px; height: 22px; animation-duration: 11s; animation-delay: 3s; }
.hosts-bubbles span:nth-child(3) { left: 45%; width: 34px; height: 34px; animation-duration: 18s; animation-delay: 6s; }
.hosts-bubbles span:nth-child(4) { left: 65%; width: 18px; height: 18px; animation-duration: 10s; animation-delay: 1.5s; }
.hosts-bubbles span:nth-child(5) { left: 80%; width: 52px; height: 52px; animation-duration: 20s; animation-delay: 4s; }
.hosts-bubbles span:nth-child(6) { left: 92%; width: 26px; height: 26px; animation-duration: 13s; animation-delay: 8s; }
@keyframes rise {
  from { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { transform: translateY(-120vh); opacity: 0; }
}

/* ---------- process ---------- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 56px;
}
.step { flex: 1; text-align: center; }
.step-bubble {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--pine);
  background: radial-gradient(circle at 30% 25%, #ffffff 0%, var(--mist) 55%, var(--aqua-soft) 100%);
  box-shadow: inset -4px -6px 12px rgba(100, 199, 194, 0.35), 0 14px 26px -12px rgba(11, 50, 54, 0.3);
  position: relative;
}
.step-bubble::after {
  content: "";
  position: absolute;
  top: 14px; left: 18px;
  width: 16px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(-28deg);
}
.step p { font-size: 0.93rem; color: rgba(11, 50, 54, 0.72); max-width: 30ch; margin: 0 auto; }
.step-connector {
  flex: 0 0 60px;
  height: 2px;
  margin-top: 37px;
  background-image: linear-gradient(to right, var(--aqua) 45%, transparent 45%);
  background-size: 12px 2px;
}

/* ---------- reviews ---------- */
.reviews { background: var(--mist); }
.reviews-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.reviews-stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 600;
  color: var(--pine);
  line-height: 1;
}
.stat-stars { color: var(--gold-deep); font-size: clamp(1.3rem, 2.4vw, 1.8rem); letter-spacing: 0.14em; }
.stat-label { max-width: 24ch; margin: 8px auto 0; font-weight: 700; color: rgba(11, 50, 54, 0.7); font-size: 0.9rem; }
.reviews-copy p { margin: 16px 0 26px; color: rgba(11, 50, 54, 0.75); max-width: 50ch; }
.trust-big .star { font-style: normal; color: var(--gold); font-size: 0.75em; }
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 54px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 12px 34px -20px rgba(11, 50, 54, 0.3);
  border: 1px solid rgba(11, 50, 54, 0.05);
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--gold-deep); letter-spacing: 0.18em; margin-bottom: 14px; font-size: 0.95rem; }
.review-card p { font-size: 0.97rem; color: rgba(11, 50, 54, 0.8); font-style: italic; flex: 1; }
.review-card cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
}

/* ---------- quote ---------- */
.quote { background: var(--porcelain); }
.quote-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  background: var(--white);
  border-radius: 30px;
  padding: clamp(34px, 5vw, 64px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 50, 54, 0.06);
}
.quote-sub { margin: 16px 0 28px; color: rgba(11, 50, 54, 0.72); }
.quote-contact { display: flex; flex-direction: column; gap: 8px; }
.quote-contact a { color: var(--pine); text-decoration: none; font-size: 1.05rem; }
.quote-contact a:hover { text-decoration: underline; }
.quote-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--pine);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--porcelain);
  border: 1.5px solid rgba(11, 50, 54, 0.12);
  border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(100, 199, 194, 0.18);
}
.quote-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hidden-field { display: none; }
.form-fine {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(11, 50, 54, 0.72); /* AA contrast */
  font-weight: 700;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(248, 246, 241, 0.85);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { font-size: 1.6rem; color: var(--white); }
.footer-brand em { font-style: italic; color: var(--aqua-soft); }
.footer-tag { font-style: italic; font-family: var(--font-display); color: rgba(248, 246, 241, 0.55); margin-top: 6px; }
.footer-head {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 14px;
}
.footer a { display: block; color: rgba(248, 246, 241, 0.85); text-decoration: none; margin-bottom: 8px; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer-fine {
  text-align: center;
  margin-top: 56px;
  font-size: 0.8rem;
  color: rgba(248, 246, 241, 0.62); /* AA contrast on ink */
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px 22px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.footer-links a {
  display: inline;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.75);
}
.nav-phone {
  text-decoration: none;
  color: var(--pine);
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-phone:hover { text-decoration: underline; }

/* ---------- legal / utility pages ---------- */
.legal-page { background: var(--porcelain); min-height: 100svh; }
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 24px 90px;
}
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 6px; }
.legal .legal-updated {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(11, 50, 54, 0.6);
  margin-bottom: 34px;
}
.legal h2 { font-size: 1.2rem; margin: 34px 0 10px; }
.legal p, .legal li { color: rgba(11, 50, 54, 0.8); margin-bottom: 14px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--pine); }
.util-hero {
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
}
.util-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 14px; }
.util-hero p { max-width: 46ch; color: rgba(11, 50, 54, 0.75); margin-bottom: 28px; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.48s; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav.open .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 24px 24px;
    background: rgba(248, 246, 241, 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 30px -20px rgba(11, 50, 54, 0.35);
  }
  .nav.open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-mobile a { padding: 12px 0; text-decoration: none; color: var(--ink); font-weight: 700; border-bottom: 1px solid rgba(11, 50, 54, 0.08); }
  .nav-mobile .btn { margin-top: 14px; text-align: center; border: none; }

  .hosts-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { flex-direction: column; align-items: center; gap: 34px; }
  .step-connector { display: none; }
  .reviews-head { grid-template-columns: 1fr; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { margin: 0 auto; }
  .reviews-copy p { margin-left: auto; margin-right: auto; }
  .quote-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-sponge { display: none; }
  .float-spray { right: 6%; top: 14%; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-trust { gap: 14px; }
  .trust-divider { display: none; }
  .float-spray { width: 74px; opacity: 0.7; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .wipe-sharp { clip-path: inset(0 0 0 0); }
  .wipe-blur { visibility: hidden; }
  #bubbles { display: none; }
}
