:root {
  /* Brand palette — sampled from the sage uniform and warm canvas apron */
  --ivory:      #F4F0E8;
  --cream:      #FFFFFF;
  --stone:      #E6DED1;
  --sage:       #7F8E79;
  --sage-deep:  #5E6C57;
  --olive:      #3F4B39;
  --charcoal:   #292D28;
  --charcoal-soft: #41463F;
  --clay:       #C9A88A;
  --sage-tint:  #EBEFE8;

  --font-brand: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Hanken Grotesk', -apple-system, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* sticky nav + trust bar, subtracted so the hero fills exactly one screen */
  --nav-h: 79px;
  --trust-h: 78px;
}

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

html { scroll-behavior: smooth; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--sage);
  display: inline-block;
}

/* ---------- NAV ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 240, 232, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
header.scrolled { border-color: rgba(43,46,41,0.08); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.logo { display: inline-flex; align-items: center; color: var(--charcoal); }
.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}
.brand-city {
  margin-bottom: -1px;
  padding-left: 0.19em;
  font-family: var(--font-body);
  font-size: 0.49rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.brand-name {
  font-family: var(--font-brand);
  font-size: 1.78rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
}
.spark-i {
  position: relative;
  font-family: inherit;
}
.spark-i::after {
  content: "✦";
  position: absolute;
  top: -0.12em;
  left: 52%;
  color: var(--sage-deep);
  font-family: Georgia, serif;
  font-size: 0.25em;
  line-height: 1;
  transform: translate(-50%, -100%);
}

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links > a, .services-trigger {
  font-size: 0.9rem; font-weight: 500; color: var(--charcoal-soft);
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; position: relative;
  transition: color 0.25s var(--ease);
}
.nav-links > a::after, .services-trigger::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--sage-deep); transition: width 0.3s var(--ease);
}
.nav-links > a:hover, .services-trigger:hover { color: var(--olive); }
.nav-links > a:hover::after, .dropdown:hover .services-trigger::after { width: 100%; }
.services-trigger .chev { width: 11px; height: 11px; transition: transform 0.3s var(--ease); }
.dropdown:hover .services-trigger .chev { transform: rotate(180deg); }

/* Services dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--cream); border: 1px solid rgba(43,46,41,0.08); border-radius: 18px;
  padding: 12px; width: 350px; box-shadow: 0 24px 60px -24px rgba(43,46,41,0.28);
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu::before {
  content: ""; position: absolute; top: -20px; left: 0; right: 0; height: 20px;
}
.dd-item { display: flex; gap: 13px; padding: 12px 14px; border-radius: 12px; transition: background 0.2s var(--ease); align-items: flex-start; }
.dd-item:hover { background: var(--sage-tint); }
.dd-item .ic { color: var(--sage-deep); margin-top: 2px; flex-shrink: 0; }
.dd-item .ic svg { width: 18px; height: 18px; }
.dd-item b { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: var(--charcoal); display: block; }
.dd-item span { font-size: 0.78rem; color: var(--charcoal-soft); line-height: 1.4; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  padding: 13px 26px; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--olive); color: var(--cream); box-shadow: 0 10px 30px -12px rgba(70,82,63,0.7); }
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(70,82,63,0.8); }
.btn-ghost { background: transparent; color: var(--olive); border-color: rgba(95,115,88,0.35); }
.btn-ghost:hover { background: var(--sage-tint); border-color: var(--sage); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle svg { width: 26px; height: 26px; color: var(--charcoal); }

/* Mobile drawer */
.drawer { display: none; }

/* ---------- HERO ---------- */
/* Hero + trust bar together fill one screen; min-height (not height) so it
   grows rather than clips if the copy ever outruns a very short viewport. */
.hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr; align-content: center;
  min-height: calc(100svh - var(--nav-h) - var(--trust-h));
  padding: clamp(16px, 3vh, 44px) 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, #C7D3BE, transparent 70%); top: -140px; right: -120px; }
.blob-2 { width: 440px; height: 440px; background: radial-gradient(circle, #E6D9C4, transparent 70%); bottom: -180px; left: -140px; opacity: 0.5; }
.grain {
  position: absolute; inset: 0; opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }

.hero-copy .eyebrow { margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.4rem); color: var(--charcoal); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--sage-deep); font-optical-sizing: auto; }
.hero-sub { font-size: 1.1rem; color: var(--charcoal-soft); max-width: 470px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 0.86rem; color: var(--charcoal-soft); }
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(141,162,131,0.25); }

/* Hero visual card */
.hero-visual { position: relative; padding-bottom: 54px; }
.hero-card {
  position: relative; aspect-ratio: 4/4.35; border-radius: 28px; overflow: hidden;
  /* 54px = the proof card's overhang below the photo */
  max-height: min(560px, calc(100svh - var(--nav-h) - var(--trust-h) - 88px - 54px));
  background: linear-gradient(215deg, #A9BB9E, #6E8465 60%, #4E5F49);
  box-shadow: 0 40px 90px -30px rgba(70,82,63,0.55);
  display: flex; flex-direction: column; justify-content: flex-start; padding: 34px;
}
.hero-card > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 55% 40%; z-index: 0;
}
/* scrim so the badge and rating stay legible over the photo */
.hero-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(43,46,41,0.30) 0%, rgba(43,46,41,0) 34%),
    linear-gradient(0deg, rgba(38,44,35,0.42) 0%, rgba(38,44,35,0.16) 24%, rgba(38,44,35,0) 46%);
}
.hero-card .badge { position: relative; z-index: 2; }
.hero-card .badge {
  align-self: flex-start; background: rgba(251,250,245,0.92); color: var(--olive);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; padding: 9px 16px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-card .badge svg { width: 15px; height: 15px; }
/* Floating proof card — the one place the rating lives */
.hero-proof {
  position: absolute; z-index: 3; left: -38px; bottom: 0; width: min(324px, 88%);
  background: var(--cream); border-radius: 22px; padding: 20px 22px 18px;
  box-shadow: 0 2px 4px rgba(43,46,41,0.06), 0 32px 64px -24px rgba(43,46,41,0.45);
  outline: 1px solid rgba(43,46,41,0.06); outline-offset: -1px;
}
.hero-proof-top { display: flex; align-items: center; gap: 14px; }
.hero-proof .av { display: flex; align-items: center; flex-shrink: 0; }
.hero-proof .av i {
  position: relative; width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--cream);
  margin-left: -9px; display: block; background: var(--sage-tint) center / cover no-repeat;
  box-shadow: 0 1px 3px rgba(43,46,41,0.18);
}
.hero-proof .av > :first-child { margin-left: 0; }
/* Natural customer profile photos generated specifically for the review avatars. */
.hero-proof .av .av-1 { z-index: 4; background-image: url(assets/generated/review-avatar-1.webp); }
.hero-proof .av .av-2 { z-index: 3; background-image: url(assets/generated/review-avatar-2.webp); }
.hero-proof .av .av-3 { z-index: 2; background-image: url(assets/generated/review-avatar-3.webp); }
.hero-proof .av .av-more {
  z-index: 5; background: var(--sage-tint); color: var(--sage-deep); font-style: normal;
  font-size: 0.68rem; font-weight: 700; letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: center;
}
.hero-proof-score { display: flex; align-items: baseline; gap: 9px; min-width: 0; }
.hero-proof-score b {
  font-family: var(--font-display); font-size: 2.15rem; line-height: 0.9;
  font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em;
}
.hero-proof-score small { display: flex; flex-direction: column; gap: 3px; font-size: 0.72rem; line-height: 1.3; color: var(--charcoal-soft); white-space: nowrap; }
.hero-proof-line {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(43,46,41,0.09);
  font-size: 0.85rem; line-height: 1.45; color: var(--charcoal-soft);
}
.stars { color: #C9A24A; letter-spacing: 1.5px; font-size: 0.78rem; line-height: 1; }

/* ---------- MARQUEE / TRUST ---------- */
.trust { border-top: 1px solid rgba(43,46,41,0.08); border-bottom: 1px solid rgba(43,46,41,0.08); background: var(--cream); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 500; color: var(--charcoal-soft); }
.trust-item svg { width: 22px; height: 22px; color: var(--sage-deep); flex-shrink: 0; }

/* ---------- SECTION SHELL ---------- */
section { position: relative; }
.section-pad { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); color: var(--charcoal); margin: 22px 0 20px; }
.section-head p { font-size: 1.08rem; color: var(--charcoal-soft); }

/* ---------- SERVICES ---------- */
.services { background: var(--ivory); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--cream); border: 1px solid rgba(43,46,41,0.07); border-radius: 22px;
  padding: 34px 30px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 260px;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 40%, rgba(141,162,131,0.09));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(70,82,63,0.4); border-color: rgba(141,162,131,0.4); }
.svc-card:hover::after { opacity: 1; }
.svc-ic {
  width: 52px; height: 52px; border-radius: 14px; background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep); margin-bottom: 24px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.svc-card:hover .svc-ic { background: var(--sage-deep); color: var(--cream); }
.svc-ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.4rem; color: var(--charcoal); margin-bottom: 10px; position: relative; z-index: 1; }
.svc-card p { font-size: 0.94rem; color: var(--charcoal-soft); margin-bottom: 22px; position: relative; z-index: 1; flex-grow: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 600; color: var(--olive); position: relative; z-index: 1; }
.svc-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- APPROACH / SPLIT ---------- */
.approach { background: var(--olive); color: var(--cream); overflow: hidden; }
.approach .grain { opacity: 0.15; }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.approach .eyebrow { color: #C7D3BE; }
.approach .eyebrow::before { background: #C7D3BE; }
.approach h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 22px 0 26px; color: var(--cream); }
.approach h2 em { font-style: italic; color: #C7D3BE; }
.approach .a-copy > p { color: rgba(251,250,245,0.82); font-size: 1.08rem; margin-bottom: 34px; max-width: 480px; }

.pillars { display: grid; gap: 2px; background: rgba(251,250,245,0.14); border-radius: 20px; overflow: hidden; }
.pillar { background: var(--olive); padding: 28px 30px; display: flex; gap: 20px; align-items: flex-start; transition: background 0.35s var(--ease); }
.pillar:hover { background: #3C4736; }
.pillar .num { font-family: var(--font-display); font-size: 1.2rem; color: #C7D3BE; flex-shrink: 0; width: 34px; }
.pillar h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; color: var(--cream); }
.pillar p { font-size: 0.9rem; color: rgba(251,250,245,0.72); line-height: 1.5; }

/* ---------- KIT / WHAT WE USE ---------- */
.kit { background: var(--stone); border-bottom: 1px solid rgba(43,46,41,0.07); }
.kit-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 22px; align-items: stretch; }
.kit-card {
  background: var(--ivory); border: 1px solid rgba(43,46,41,0.08); border-radius: 22px;
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.kit-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -30px rgba(70,82,63,0.35); }
.kit-card.featured {
  background: linear-gradient(155deg, #56684E, var(--olive) 60%, #3C4736);
  color: var(--cream); border-color: transparent;
  box-shadow: 0 30px 70px -30px rgba(70,82,63,0.6);
}
.kit-role {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--sage-deep);
}
.kit-card.featured .kit-role { color: #C7D3BE; }
.kit-card h3 { font-size: 1.5rem; color: var(--charcoal); margin: 10px 0 12px; }
.kit-card.featured h3 { color: var(--cream); }
.kit-card > p { font-size: 0.95rem; color: var(--charcoal-soft); margin-bottom: 20px; }
.kit-card.featured > p { color: rgba(251,250,245,0.85); }
.kit-facts { list-style: none; margin-top: auto; display: grid; gap: 10px; }
.kit-facts li {
  position: relative; padding-left: 27px; font-size: 0.88rem; line-height: 1.45;
  color: var(--charcoal-soft);
}
.kit-facts li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px; border-radius: 50%;
  background-color: var(--sage-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F7358' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.kit-card.featured .kit-facts li { color: rgba(251,250,245,0.85); }
.kit-card.featured .kit-facts li::before {
  background-color: rgba(251,250,245,0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C7D3BE' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.kit-fine { margin-top: 28px; font-size: 0.82rem; color: var(--charcoal-soft); opacity: 0.75; text-align: center; }
.kit-fine a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- CERTIFICATIONS ---------- */
.certs { background: var(--ivory); padding: 66px 0; }
.certs .section-head { margin-bottom: 34px; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cert-card {
  background: var(--cream); border: 1px solid rgba(43,46,41,0.08); border-radius: 18px;
  padding: 26px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; color: inherit; cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.cert-card:visited { color: inherit; }
.cert-card:hover { transform: translateY(-5px); box-shadow: 0 28px 56px -30px rgba(70,82,63,0.4); border-color: rgba(141,162,131,0.4); }
.cert-external {
  display: inline-block; margin-left: 5px; font-size: 0.78em;
  opacity: 0.35; transform: translateY(-1px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.cert-card:hover .cert-external { opacity: 0.9; transform: translate(1px, -3px); }
.cert-seal {
  width: 60px; height: 60px; border-radius: 50%; position: relative; flex-shrink: 0;
  background: var(--sage-tint); border: 1.5px solid rgba(95,115,88,0.28);
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep);
  margin-bottom: 16px; transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.cert-seal::after {
  content: ""; position: absolute; inset: 6px; border-radius: 50%;
  border: 1px dashed rgba(95,115,88,0.4);
}
.cert-seal svg { width: 27px; height: 27px; }
.cert-card:hover .cert-seal { background: var(--sage-deep); color: var(--cream); }
.cert-card:hover .cert-seal::after { border-color: rgba(251,250,245,0.5); }
.cert-card h3 { font-size: 1.08rem; color: var(--charcoal); margin-bottom: 7px; }
.cert-card p { font-size: 0.86rem; color: var(--charcoal-soft); line-height: 1.45; max-width: 260px; }
.cert-fine {
  margin: 26px auto 0; max-width: 640px; text-align: center;
  font-size: 0.82rem; color: var(--charcoal-soft); opacity: 0.75;
}

/* ---------- PROCESS ---------- */
/* Sits between kit (stone) and faq (stone) — ivory breaks the run. */
#process { background: var(--ivory); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 20px; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--stone); transition: border-color 0.4s var(--ease); }
.step:hover { border-color: var(--sage); }
.step .st-num { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.2em; color: var(--sage-deep); font-weight: 500; }
.step h3 { font-size: 1.55rem; margin: 14px 0 12px; color: var(--charcoal); }
.step p { font-size: 0.96rem; color: var(--charcoal-soft); }

/* ---------- TESTIMONIAL ---------- */
/* Now sits between services (ivory) and approach (olive) — stone keeps the ivory/stone alternation. */
.quote-sec { background: var(--stone); border-top: 1px solid rgba(43,46,41,0.07); border-bottom: 1px solid rgba(43,46,41,0.07); }
.quote-wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-wrap .mark { font-family: var(--font-display); font-size: 5rem; line-height: 0; color: var(--sage); height: 40px; display: block; }
.quote-wrap blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.3; color: var(--charcoal); font-weight: 300; margin: 30px 0 34px; }
.quote-wrap blockquote em { color: var(--sage-deep); font-style: italic; }
.q-author { font-weight: 600; color: var(--charcoal); }
.q-role { font-size: 0.88rem; color: var(--charcoal-soft); }

/* ---------- CTA ---------- */
.cta { padding: 120px 0; }
.cta-box {
  position: relative; overflow: hidden; border-radius: 34px; padding: 80px 60px; text-align: center;
  background: linear-gradient(155deg, #6E8465, #4E5F49 70%, #3C4736);
  box-shadow: 0 50px 100px -40px rgba(70,82,63,0.6);
}
.cta-box .grain { opacity: 0.12; }
.cta-box .blob { filter: blur(70px); opacity: 0.35; }
.cta-box .cb1 { width: 380px; height: 380px; background: radial-gradient(circle, #C7D3BE, transparent 70%); top: -120px; left: -80px; }
.cta-box .cb2 { width: 340px; height: 340px; background: radial-gradient(circle, #D9C6A8, transparent 70%); bottom: -140px; right: -60px; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box .blob, .cta-box .grain { position: absolute; z-index: 0; }
.cta-box .eyebrow { color: #C7D3BE; justify-content: center; }
.cta-box .eyebrow::before { background: #C7D3BE; }
.cta-box h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: var(--cream); margin: 22px auto 22px; max-width: 640px; }
.cta-box h2 em { font-style: italic; color: #DCE5D4; }
.cta-box p { color: rgba(251,250,245,0.85); font-size: 1.08rem; max-width: 560px; margin: 0 auto 40px; }
.cta-box .btn-light { background: var(--cream); color: var(--olive); }
.cta-box .btn-light:hover { background: #fff; transform: translateY(-2px); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-box .btn-line { background: transparent; color: var(--cream); border-color: rgba(251,250,245,0.4); }
.cta-box .btn-line:hover { background: rgba(251,250,245,0.12); }
.cta-fine { margin-top: 26px !important; font-size: 0.9rem !important; color: rgba(251,250,245,0.7) !important; }

/* ---------- FOOTER ---------- */
footer { background: var(--charcoal); color: rgba(251,250,245,0.72); padding: 80px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(251,250,245,0.12); }
.foot-brand .logo { color: var(--cream); }
.foot-brand .brand-city { color: rgba(251,250,245,0.66); }
.foot-brand .spark-i::after { color: var(--sage); }
.foot-brand .brand-name { font-size: 2rem; }
.foot-brand p { font-size: 0.94rem; margin: 20px 0 24px; max-width: 300px; line-height: 1.6; }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(251,250,245,0.2); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.foot-social a:hover { background: var(--sage-deep); border-color: var(--sage-deep); color: var(--cream); }
.foot-social svg { width: 17px; height: 17px; }
.foot-col h5 { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); margin-bottom: 20px; }
.foot-col a { display: block; font-size: 0.92rem; margin-bottom: 13px; color: rgba(251,250,245,0.7); transition: color 0.25s var(--ease); }
.foot-col a:hover { color: var(--cream); }
.foot-col span { display: block; font-size: 0.92rem; margin-bottom: 13px; color: rgba(251,250,245,0.55); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.84rem; flex-wrap: wrap; gap: 14px; }
.foot-bottom .tag { color: rgba(251,250,245,0.5); }

/* ========================================================= */
/* SERVICE PAGE COMPONENTS                                    */
/* ========================================================= */

/* Service hero + breadcrumb */
.svc-hero { position: relative; padding: 40px 0 56px; overflow: hidden; }
.breadcrumb { font-size: 0.82rem; color: var(--charcoal-soft); margin-bottom: 22px; }
.breadcrumb ol { display: flex; align-items: center; gap: 10px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li { display: flex; align-items: center; gap: 10px; }
.breadcrumb li + li::before { content: "/"; color: var(--sage); }
.breadcrumb a { transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--olive); }
.breadcrumb .current { color: var(--olive); font-weight: 600; }
.svc-hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.svc-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); color: var(--charcoal); margin: 16px 0 18px; }
.svc-hero h1 em { font-style: italic; color: var(--sage-deep); }
.svc-hero .lead { font-size: 1.1rem; color: var(--charcoal-soft); max-width: 490px; margin-bottom: 26px; }
.svc-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Photo placeholder slots */
.photo-slot {
  position: relative; border-radius: 22px; overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(141,162,131,0.05) 0 14px, transparent 14px 28px),
    var(--sage-tint);
  border: 1.5px dashed rgba(95,115,88,0.42);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 30px; gap: 13px;
}
.r-45 { aspect-ratio: 4/4.35; max-height: 480px; }
.r-11 { aspect-ratio: 1/1; }
.r-43 { aspect-ratio: 4/3; }
.r-169 { aspect-ratio: 16/9; }
.r-32 { aspect-ratio: 3/2; }

/* Real photos */
.photo {
  position: relative; border-radius: 22px; overflow: hidden; background: var(--sage-tint);
  box-shadow: 0 32px 70px -34px rgba(70,82,63,0.5);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-slot .ps-icon { width: 42px; height: 42px; color: var(--sage); }
.photo-slot .ps-tag {
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
  color: var(--sage-deep); background: rgba(251,250,245,0.7); padding: 5px 12px; border-radius: 100px;
}
.photo-slot .ps-desc { font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.45; color: var(--charcoal-soft); max-width: 300px; }

/* Intro split */
.svc-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-intro-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--charcoal); margin: 20px 0 20px; }
.svc-intro-copy h2 em { font-style: italic; color: var(--sage-deep); }
.svc-intro-copy p { font-size: 1.05rem; color: var(--charcoal-soft); margin-bottom: 18px; }

/* Included checklist */
.included { background: var(--cream); }
.inc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 48px; }
.inc-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(43,46,41,0.08); }
.inc-item .chk { width: 28px; height: 28px; border-radius: 50%; background: var(--sage-tint); color: var(--sage-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.inc-item .chk svg { width: 15px; height: 15px; }
.inc-item b { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--charcoal); display: block; margin-bottom: 2px; }
.inc-item span { font-size: 0.9rem; color: var(--charcoal-soft); line-height: 1.45; }

/* ---------- ESTIMATOR ---------- */
.est-section .section-head { margin-bottom: 40px; }
.est {
  display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.85fr); gap: 30px;
  align-items: start;
}
.est-form {
  background: var(--cream); border: 1px solid rgba(43,46,41,0.09); border-radius: 26px;
  padding: 34px 34px 30px; box-shadow: 0 40px 80px -55px rgba(70,82,63,0.5);
}
.est-step { border: 0; padding: 0; margin: 0 0 26px; }
.est-step:last-child { margin-bottom: 0; }
.est-step legend {
  display: flex; align-items: center; gap: 12px; padding: 0; margin-bottom: 15px;
  font-family: var(--font-display); font-size: 1.16rem; color: var(--charcoal);
}
.est-num {
  width: 25px; height: 25px; border-radius: 50%; background: var(--sage-tint); color: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
}
/* Radios stay focusable but invisible; the label chrome is the control */
.est input[type="radio"] { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; pointer-events: none; }

/* Steps 1 & 2 — pill rows */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }
.pill { position: relative; cursor: pointer; }
.pill span {
  display: block; min-width: 58px; text-align: center; padding: 10px 18px; border-radius: 100px;
  background: var(--ivory); border: 1px solid rgba(43,46,41,0.12);
  font-size: 0.92rem; font-weight: 500; color: var(--charcoal-soft);
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.est-hint { display: block; margin-top: 10px; font-size: 0.78rem; color: var(--charcoal-soft); }
.pill:hover span { border-color: var(--sage); color: var(--olive); }
.pill input:checked + span { background: var(--olive); border-color: var(--olive); color: var(--cream); font-weight: 600; }
.pill input:focus-visible + span { outline: 2px solid var(--sage-deep); outline-offset: 3px; }

/* Step 3 — cadence rows */
.freq-list { display: flex; flex-direction: column; gap: 10px; }
.freq-row {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: 16px; cursor: pointer;
  background: var(--ivory); border: 1px solid rgba(43,46,41,0.1);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.freq-row:hover { border-color: var(--sage); }
.freq-row:has(input:checked), .freq-row.is-selected {
  background: var(--sage-tint); border-color: var(--sage-deep);
  box-shadow: inset 0 0 0 1px var(--sage-deep);
}
.freq-row:has(input:focus-visible) { outline: 2px solid var(--sage-deep); outline-offset: 3px; }
.freq-check {
  width: 23px; height: 23px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(43,46,41,0.2); display: flex; align-items: center; justify-content: center;
  color: transparent; transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.freq-check svg { width: 12px; height: 12px; }
.freq-row:has(input:checked) .freq-check, .freq-row.is-selected .freq-check {
  background: var(--sage-deep); border-color: var(--sage-deep); color: var(--cream);
}
.freq-main { min-width: 0; }
.freq-name {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-display); font-size: 1.18rem; color: var(--charcoal);
}
.freq-tag {
  background: var(--sage-deep); color: var(--cream); font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.freq-desc { display: block; font-size: 0.86rem; color: var(--charcoal-soft); line-height: 1.5; margin-top: 3px; }
.freq-money { text-align: right; flex-shrink: 0; }
.freq-money > b {
  display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.5rem;
  color: var(--charcoal); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1.15;
}
.freq-mo { display: block; font-size: 0.78rem; color: var(--charcoal-soft); font-variant-numeric: tabular-nums; }
.freq-save {
  display: inline-block; margin-top: 6px; font-size: 0.72rem; font-weight: 600; color: var(--olive);
  background: var(--cream); border: 1px solid rgba(95,115,88,0.28); padding: 3px 10px; border-radius: 100px;
}
.freq-row:has(input:checked) .freq-save, .freq-row.is-selected .freq-save { background: var(--cream); }

/* Result panel — stays in view while the inputs change */
.est-result { position: sticky; top: calc(var(--nav-h) + 18px); }
.est-panel {
  background: linear-gradient(168deg, #56684E, var(--olive) 62%, #3C4736); color: var(--cream);
  border-radius: 26px; padding: 30px 30px 28px; box-shadow: 0 40px 80px -45px rgba(43,46,41,0.7);
}
.est-lab { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #C7D3BE; }
.est-line {
  font-family: var(--font-display); color: var(--cream); margin: 10px 0 2px;
  display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; line-height: 1.1;
}
.est-line b { font-size: clamp(2.4rem, 4.4vw, 3.1rem); font-weight: 500; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.est-line .unit { font-size: 0.95rem; color: #C7D3BE; }
.est-delta {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; color: var(--cream);
  background: rgba(255,255,255,0.16); border-radius: 100px; padding: 3px 10px;
  animation: deltaIn 0.3s var(--ease);
}
@keyframes deltaIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.est-sub { font-size: 0.95rem; color: #DCE4D5; margin-bottom: 18px; font-variant-numeric: tabular-nums; }
.est-sub b { font-weight: 600; color: var(--cream); }
.est-first {
  font-size: 0.84rem; color: #C7D3BE; line-height: 1.55;
  padding-top: 16px; border-top: 1px solid rgba(199,211,190,0.28);
}
.est-first a { color: var(--cream); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.est-first b { color: var(--cream); font-weight: 600; font-variant-numeric: tabular-nums; }
.est-go { width: 100%; margin: 20px 0 12px; background: var(--cream); color: var(--olive); box-shadow: none; }
.est-go:hover { background: #C7D3BE; color: var(--charcoal); }
.est-note { display: block; font-size: 0.78rem; color: #C7D3BE; line-height: 1.5; text-align: center; }
.est-fine { font-size: 0.86rem; color: var(--charcoal-soft); text-align: center; margin: 26px auto 0; max-width: 640px; line-height: 1.55; }
.est-fine b { color: var(--olive); font-weight: 600; }

/* Personalized-quote services reuse the recurring estimator shell. */
.quote-est-step {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(43,46,41,0.09);
}
.quote-est-step:last-child { padding-bottom: 0; border-bottom: 0; }
.quote-est-title {
  display: flex; align-items: center; gap: 12px; margin-bottom: 9px;
  font-family: var(--font-display); font-size: 1.16rem; color: var(--charcoal);
}
.quote-est-title b { font-weight: 500; }
.quote-est-step > p {
  padding-left: 37px; color: var(--charcoal-soft); font-size: 0.92rem; line-height: 1.55;
}
.quote-est-line b { font-size: clamp(2rem, 3.8vw, 2.65rem); }

/* Sticky estimate bar — mobile only, appears once the estimator scrolls away */
.est-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  background: rgba(247,244,237,0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(43,46,41,0.1); box-shadow: 0 -12px 30px -20px rgba(43,46,41,0.5);
  padding: 11px 0 calc(11px + env(safe-area-inset-bottom));
  transform: translateY(102%); visibility: hidden;
  transition: transform 0.35s var(--ease), visibility 0s linear 0.35s;
}
.est-bar.show { transform: none; visibility: visible; transition: transform 0.35s var(--ease), visibility 0s; }
.est-bar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.est-bar-txt { font-family: var(--font-display); font-size: 1.15rem; color: var(--charcoal); line-height: 1.15; }
.est-bar-txt b { font-weight: 500; font-variant-numeric: tabular-nums; }
.est-bar-txt small { display: block; font-family: var(--font-body); font-size: 0.72rem; color: var(--charcoal-soft); }
.est-bar .btn { padding: 11px 20px; flex-shrink: 0; }

/* Value flash when a number updates */
.est-bump { animation: estBump 0.4s var(--ease); }
@keyframes estBump { 0% { opacity: 0.4; } 100% { opacity: 1; } }

/* Estimate carried into the quote form */
.form-prefill {
  display: flex; align-items: center; gap: 10px; margin: 0 0 20px !important; padding: 12px 16px;
  background: var(--sage-tint); border: 1px solid rgba(95,115,88,0.28); border-radius: 14px;
  font-size: 0.86rem !important; color: var(--olive) !important; line-height: 1.45; max-width: none !important;
}
.form-prefill[hidden] { display: none; }
.form-prefill svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--sage-deep); }
.form-prefill b { font-weight: 600; }

/* "from $X" teaser on the recurring card */
.svc-price {
  display: inline-block; margin-bottom: 14px; font-size: 0.8rem; font-weight: 600; color: var(--olive);
  background: var(--sage-tint); border: 1px solid rgba(95,115,88,0.25); padding: 5px 12px; border-radius: 100px;
  position: relative; z-index: 1; align-self: flex-start; font-variant-numeric: tabular-nums;
}

/* Eco band */
.eco-band { background: var(--olive); color: var(--cream); padding: 56px 0; position: relative; overflow: hidden; }
.eco-band .grain { opacity: 0.14; }
.eco-band-inner { display: flex; align-items: center; gap: 26px; justify-content: center; text-align: center; flex-wrap: wrap; position: relative; z-index: 1; }
.eco-band .leaf-ring { width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid rgba(199,211,190,0.5); display: flex; align-items: center; justify-content: center; color: #C7D3BE; flex-shrink: 0; }
.eco-band .leaf-ring svg { width: 28px; height: 28px; }
.eco-band p { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.95rem); max-width: 780px; line-height: 1.3; }
.eco-band em { font-style: italic; color: #C7D3BE; }

/* Gallery strip */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* FAQ */
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(43,46,41,0.12); }
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 25px 52px 25px 0;
  font-family: var(--font-display); font-size: 1.22rem; line-height: 1.35;
  color: var(--charcoal); transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--olive); }
.faq-item summary:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 4px; border-radius: 4px; }
/* Plus sign drawn in CSS so it can rotate into an x on open */
.faq-item summary::after {
  content: ""; position: absolute; right: 6px; top: 30px; width: 14px; height: 14px;
  background:
    linear-gradient(var(--sage-deep), var(--sage-deep)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--sage-deep), var(--sage-deep)) center / 1.5px 14px no-repeat;
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p {
  padding: 0 52px 26px 0; color: var(--charcoal-soft); font-size: 1rem;
  animation: faq-open 0.45s var(--ease);
}
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- WHAT YOU'LL NOTICE ---------- */
.notice { background: var(--stone); }
.notice .section-head { max-width: 780px; margin-bottom: 58px; }
.notice .section-head h2 { margin-bottom: 0; }
.notice .section-head h2 em { font-style: italic; color: var(--sage-deep); }

.eyebrow.num { letter-spacing: 0.24em; }
.eyebrow.num::before { display: none; }

.notice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.notice-col {
  border-top: 1px solid rgba(43,46,41,0.2);
  padding-top: 26px;
  transition: border-color 0.4s var(--ease);
}
.notice-col:hover { border-color: var(--sage); }
.notice-num {
  display: block; font-family: var(--font-display);
  font-size: 2rem; line-height: 1; font-weight: 300;
  letter-spacing: -0.02em; color: var(--sage);
  margin-bottom: 20px;
  transition: color 0.4s var(--ease);
}
.notice-col:hover .notice-num { color: var(--sage-deep); }
.notice-col h3 {
  font-size: 1.22rem; font-weight: 500; color: var(--charcoal);
  line-height: 1.25; margin-bottom: 11px;
}
.notice-col p { font-size: 0.97rem; color: var(--charcoal-soft); }

/* ---------- FAQ SECTION ---------- */
.faq-sec { background: var(--stone); border-top: 1px solid rgba(43,46,41,0.07); }
.faq-sec .faq-item:first-child { border-top: 1px solid rgba(43,46,41,0.12); }

/* Two-column FAQ: sticky intro on the left, questions on the right */
.faq-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq-split .faq-wrap { max-width: none; margin: 0; }
.faq-head { position: sticky; top: 106px; }
.faq-head h2 { font-size: clamp(2rem, 3.4vw, 2.85rem); color: var(--charcoal); margin: 22px 0 18px; }
.faq-head > p { font-size: 1.02rem; color: var(--charcoal-soft); }
.faq-head a {
  color: var(--olive); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(95,115,88,0.38);
  transition: text-decoration-color 0.3s var(--ease);
}
.faq-head a:hover { text-decoration-color: var(--sage-deep); }

/* ---------- SERVICE AREA ---------- */
.areas { background: var(--olive); color: var(--cream); overflow: hidden; }
.areas .grain { opacity: 0.15; }
.areas-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.areas .eyebrow { color: #C7D3BE; }
.areas .eyebrow::before { background: #C7D3BE; }
.areas h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); color: var(--cream); margin: 22px 0 22px; }
.areas h2 em { font-style: italic; color: #C7D3BE; }
.areas-copy > p { font-size: 1.08rem; color: rgba(251,250,245,0.82); max-width: 460px; margin-bottom: 30px; }

.areas-hub {
  display: flex; align-items: center; gap: 18px;
  background: rgba(251,250,245,0.08);
  border: 1px solid rgba(251,250,245,0.16);
  border-radius: 18px; padding: 22px 24px;
}
.areas-hub .pin {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(199,211,190,0.5);
  display: flex; align-items: center; justify-content: center; color: #C7D3BE;
}
.areas-hub .pin svg { width: 25px; height: 25px; }
.areas-hub b {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: 1.55rem; line-height: 1.15; color: var(--cream);
}
.areas-hub span { display: block; font-size: 0.88rem; color: rgba(251,250,245,0.72); margin-top: 5px; }
.areas-note { font-size: 0.9rem; color: rgba(251,250,245,0.7); margin-top: 22px; max-width: 430px; }
.areas-note a {
  color: #DCE5D4; border-bottom: 1px solid rgba(220,229,212,0.4); padding-bottom: 1px;
  transition: border-color 0.3s var(--ease);
}
.areas-note a:hover { border-color: #DCE5D4; }

.areas-list {
  background: rgba(251,250,245,0.06);
  border: 1px solid rgba(251,250,245,0.14);
  border-radius: 20px; padding: 30px 32px;
}
.areas-list-label {
  display: block; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: #C7D3BE; margin-bottom: 10px;
}
.areas-list ul { list-style: none; columns: 2; column-gap: 34px; }
.areas-list li {
  break-inside: avoid; position: relative;
  font-size: 0.93rem; color: rgba(251,250,245,0.85);
  padding: 10px 0 10px 17px;
  border-bottom: 1px solid rgba(251,250,245,0.1);
}
.areas-list li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--sage);
}

/* ---------- QUOTE FORM ---------- */
.quote-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 58px;
  align-items: start; text-align: left; position: relative; z-index: 1;
}
.quote-copy h2 { margin: 22px 0 20px !important; max-width: 460px !important; }
.quote-copy > p { margin: 0 0 28px !important; max-width: 460px !important; }

.quote-points { list-style: none; display: grid; gap: 11px; margin-bottom: 30px; }
.quote-points li {
  position: relative; padding-left: 28px; font-size: 0.95rem;
  color: rgba(251,250,245,0.88); line-height: 1.45;
}
.quote-points li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
  border-radius: 50%; background-color: rgba(251,250,245,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DCE5D4' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

.quote-alt {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(251,250,245,0.2);
}
.quote-alt span { font-size: 0.92rem; color: rgba(251,250,245,0.7); }
.quote-alt a {
  font-family: var(--font-display); font-size: 1.28rem; color: var(--cream);
  border-bottom: 1px solid rgba(251,250,245,0.35); padding-bottom: 2px;
  transition: border-color 0.3s var(--ease);
}
.quote-alt a:hover { border-color: var(--cream); }
.quote-copy .cta-fine { margin-top: 20px !important; text-align: left; }

.quote-form {
  background: var(--cream); border-radius: 26px; padding: 34px 32px;
  box-shadow: 0 40px 80px -34px rgba(30,38,26,0.6);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; min-width: 0; }
.field label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage-deep);
}
.field-opt { font-weight: 500; letter-spacing: 0.02em; text-transform: none; opacity: 0.65; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem;
  color: var(--charcoal); background: var(--ivory);
  border: 1px solid rgba(43,46,41,0.15); border-radius: 12px;
  padding: 13px 15px; line-height: 1.4;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(43,46,41,0.38); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(95,115,88,0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--sage); box-shadow: 0 0 0 3px rgba(141,162,131,0.28);
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F7358' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 14px;
}

/* Validation states */
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #C0714C; background: #FDF6F2;
}
.field.has-error input:focus, .field.has-error select:focus, .field.has-error textarea:focus {
  border-color: #C0714C; box-shadow: 0 0 0 3px rgba(192,113,76,0.22);
}
.field-err {
  font-size: 0.78rem; color: #A85B39; font-weight: 500;
  letter-spacing: 0; text-transform: none;
}

.form-submit { width: 100%; margin-top: 6px; padding: 15px 26px; }
.form-fine {
  margin: 14px 0 0 !important; text-align: center;
  font-size: 0.8rem !important; color: var(--charcoal-soft) !important; opacity: 0.75;
  max-width: none !important;
}
.form-status {
  margin: 12px 0 0 !important; text-align: center; min-height: 1.3em;
  font-size: 0.88rem !important; font-weight: 500;
  color: #A85B39 !important; max-width: none !important;
}
.form-status.is-ok { color: var(--sage-deep) !important; }

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

.hero-copy > *, .svc-hero-copy > * { opacity: 0; animation: rise 0.9s var(--ease) forwards; }
.hero-copy .eyebrow, .svc-hero-copy .breadcrumb { animation-delay: 0.05s; }
.hero-copy h1, .svc-hero-copy .eyebrow { animation-delay: 0.16s; }
.hero-copy .hero-sub, .svc-hero-copy h1 { animation-delay: 0.28s; }
.hero-copy .hero-cta, .svc-hero-copy .lead { animation-delay: 0.4s; }
.hero-copy .hero-note, .svc-hero-copy .svc-hero-cta { animation-delay: 0.52s; }
.hero-visual, .svc-hero-visual { opacity: 0; animation: rise 1s var(--ease) 0.4s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-copy > *, .svc-hero-copy > *, .hero-visual, .svc-hero-visual { opacity: 1; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .hero-grid, .svc-hero-grid, .svc-intro-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-visual { max-width: 440px; }
  .hero-proof { left: -20px; }
  .approach-grid { grid-template-columns: 1fr; gap: 44px; }
  .svc-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .kit-grid { grid-template-columns: 1fr; }
  /* Configurator collapses to one column; the panel stops being sticky */
  .est { grid-template-columns: 1fr; gap: 20px; }
  .est-form { padding: 30px 26px 26px; }
  .est-result { position: static; }
  .est-panel { padding: 28px 26px 26px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 26px 0; border-top: 2px solid var(--stone); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .inc-grid { grid-template-columns: 1fr; }

  .notice-grid { gap: 30px; }

  .areas-grid { grid-template-columns: 1fr; gap: 42px; }

  .quote-grid { grid-template-columns: 1fr; gap: 44px; }
  .quote-copy h2, .quote-copy > p { max-width: none !important; }
  .faq-split { grid-template-columns: 1fr; gap: 38px; }
  .faq-head { position: static; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  header .btn-primary { display: none; }

  /* Mobile drawer */
  .drawer {
    display: block; position: fixed; inset: 0; z-index: 200; background: var(--ivory);
    transform: translateX(100%); transition: transform 0.45s var(--ease); padding: 26px 22px;
  }
  .drawer.open { transform: none; }
  .drawer-top { display: flex; justify-content: space-between; align-items: center; height: 52px; }
  .drawer-close { background: none; border: none; cursor: pointer; }
  .drawer-close svg { width: 28px; height: 28px; color: var(--charcoal); }
  .drawer nav { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
  .drawer nav a { font-family: var(--font-display); font-size: 1.7rem; color: var(--charcoal); padding: 12px 0; border-bottom: 1px solid rgba(43,46,41,0.08); }
  .drawer nav a small { display: block; font-family: var(--font-body); font-size: 0.8rem; color: var(--sage-deep); font-weight: 500; margin-top: 2px; }
  .drawer .btn { margin-top: 34px; width: 100%; }
  .drawer nav a.btn { color: var(--cream); font-family: var(--font-body); font-size: 0.95rem; border-bottom: 0; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  .hero-note { display: none; }
  .brand-name { font-size: 1.55rem; }
  .brand-city { font-size: 0.43rem; }
  .nav { height: 68px; }
  .section-pad { padding: 76px 0; }
  .svc-grid, .gallery-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { justify-content: flex-start; }
  .hero-proof { left: 14px; right: 14px; width: auto; padding: 18px 20px 16px; }
  .cta-box { padding: 48px 22px; }

  .notice-grid { grid-template-columns: 1fr; gap: 34px; }
  .notice-col { padding-top: 22px; }
  .notice-num { font-size: 1.8rem; margin-bottom: 14px; }
  .notice .section-head { margin-bottom: 42px; }

  .areas-list { padding: 24px 22px; }
  .areas-list ul { column-gap: 22px; }
  .areas-list li { font-size: 0.88rem; padding: 9px 0 9px 15px; }
  .areas-hub { padding: 18px 20px; gap: 15px; }
  .areas-hub b { font-size: 1.35rem; }

  .est-form { padding: 24px 20px 22px; border-radius: 22px; }
  .est-panel { padding: 24px 20px 22px; border-radius: 22px; }
  .est-step legend { font-size: 1.08rem; }
  /* Every option stays on one row, whatever the count */
  .pill-row { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 7px; }
  .pill span { min-width: 0; padding: 11px 6px; font-size: 0.9rem; }
  /* Cadence rows lose the ring and the prose; the money reads as one line */
  .freq-row { grid-template-columns: 1fr; gap: 7px; padding: 15px 16px; }
  .freq-check { display: none; }
  .freq-name { font-size: 1.1rem; }
  .freq-desc { display: none; }
  .freq-row:has(input:checked) .freq-desc, .freq-row.is-selected .freq-desc { display: block; }
  .freq-money { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; text-align: left; }
  .freq-money > b { display: inline; font-size: 1.4rem; }
  .freq-mo { display: inline; }
  .freq-save { margin-top: 0; }
  .est-first { font-size: 0.82rem; }
  .est-bar { display: block; }

  .quote-form { padding: 26px 20px; border-radius: 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  /* iOS Safari zooms the whole page when a focused control is under 16px.
     Bump to exactly 16px on touch widths so tapping a field doesn't jump. */
  .field input, .field select, .field textarea { font-size: 16px; }
  .quote-alt a { font-size: 1.15rem; }
  footer { padding: 60px 0 30px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding-bottom: 40px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-brand p { margin: 16px 0 20px; }
  .foot-col a, .foot-col span { margin-bottom: 10px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta { padding: 80px 0; }
  .faq-item summary { font-size: 1.1rem; padding-right: 42px; }
  .faq-item summary::after { top: 27px; }
  .faq-item p { padding-right: 0; }
}
@media (max-width: 440px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* A price range needs more room than a single figure */
.est-line.is-range b { font-size: clamp(1.7rem, 3.1vw, 2.3rem); }
.est-line.is-range .unit { display: block; margin-top: 2px; }


/* ==========================================================================
   THE CANDLE (candle.html)
   The one page people reach with the candle still in their hand. Darker and
   warmer than the rest of the site on purpose — it should feel like the room
   after we've left, not like another service page.
   ========================================================================== */

.cnd-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2C352A 0%, var(--olive) 58%, #35402F 100%);
  color: var(--ivory);
  padding: clamp(72px, 9vw, 118px) 0 clamp(80px, 10vw, 130px);
}
.cnd-hero-bg { position: absolute; inset: 0; pointer-events: none; }
/* Sits behind the candle in the right column so the light reads as coming
   off the flame, not off the corner of the section. */
.cnd-glow {
  position: absolute;
  top: 50%; right: 11%;
  transform: translateY(-50%);
  width: min(640px, 82vw); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 217, 174, 0.20) 0%, rgba(201, 168, 138, 0.10) 42%, rgba(201, 168, 138, 0) 72%);
  filter: blur(10px);
}
.cnd-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
}
.cnd-hero .eyebrow { color: var(--clay); }
.cnd-hero .eyebrow::before { background: var(--clay); }
.cnd-hero h1 {
  margin: 22px 0 26px;
  max-width: 13ch;
  font-size: clamp(2.5rem, 5.6vw, 4.15rem);
  text-wrap: balance;
  color: var(--ivory);
}
.cnd-hero h1 em { font-style: italic; color: #EBD3B2; }
.cnd-lede {
  max-width: 46ch;
  font-size: clamp(1.04rem, 1.5vw, 1.17rem);
  color: rgba(244, 240, 232, 0.80);
}
.cnd-lede-2 {
  margin-top: 18px;
  max-width: 44ch;
  font-family: var(--font-brand);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: #EBD3B2;
}

.cnd-hero-visual { display: flex; justify-content: center; }
.cnd-illo { width: min(320px, 74vw); }
.cnd-illo svg { width: 100%; height: auto; display: block; }
.cnd-flame { transform-origin: 130px 88px; animation: cnd-flicker 4.2s ease-in-out infinite; }
@keyframes cnd-flicker {
  0%, 100% { transform: scale(1) translateX(0); opacity: 1; }
  28%      { transform: scale(1.04, 0.97) translateX(0.7px); opacity: 0.94; }
  55%      { transform: scale(0.97, 1.05) translateX(-0.6px); opacity: 1; }
  78%      { transform: scale(1.02, 0.99) translateX(0.4px); opacity: 0.97; }
}

/* One rhythm for the whole page: every heading block sits 52px off its grid.
   Set on both sides so it doesn't depend on margin collapsing. */
.cnd-label .section-head,
.cnd-burn .section-head,
.cnd-next .section-head { margin-bottom: 52px; }
.cnd-label h2, .cnd-burn h2, .cnd-next h2 { text-wrap: balance; }

/* ---------- What's in it ---------- */
.cnd-label { background: var(--ivory); }
.cnd-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.cnd-spec-card {
  background: var(--cream);
  border: 1px solid rgba(43, 46, 41, 0.07);
  border-radius: 20px;
  padding: 30px 28px 32px;
}
.cnd-spec-role {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 14px;
}
.cnd-spec-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--olive); }
.cnd-spec-card p { color: var(--charcoal-soft); font-size: 0.95rem; }

.cnd-facts {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.cnd-facts-list {
  background: var(--sage-tint);
  border: 1px solid rgba(63, 75, 57, 0.08);
  border-radius: 20px;
  padding: 30px 32px;
}
.cnd-facts-list > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(63, 75, 57, 0.12);
}
.cnd-facts-list > div:first-child { padding-top: 0; }
.cnd-facts-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.cnd-facts-list dt {
  flex: 0 0 128px;
  font-size: 0.71rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
}
.cnd-facts-list dd { font-size: 1rem; color: var(--olive); }

.cnd-not {
  background: var(--olive);
  color: var(--ivory);
  border-radius: 20px;
  padding: 30px 32px;
}
.cnd-not-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 18px;
}
.cnd-not ul { list-style: none; }
.cnd-not li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 1rem;
  color: rgba(244, 240, 232, 0.88);
}
.cnd-not li::before {
  content: "";
  position: absolute;
  left: 0; top: 21px; /* centres on the 25.6px line box, not eyeballed */
  width: 13px; height: 1.5px;
  background: var(--clay);
}

/* ---------- Burn notes ---------- */
.cnd-burn { position: relative; background: var(--stone); overflow: hidden; }
.cnd-burn > .wrap { position: relative; }
.cnd-burn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 0;
}
.cnd-burn-step {
  background: var(--ivory);
  border-radius: 18px;
  padding: 28px 24px 30px;
}
.cnd-burn-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--clay);
  margin-bottom: 12px;
}
.cnd-burn-step h3 { font-size: 1.22rem; margin-bottom: 10px; color: var(--olive); }
.cnd-burn-step p { font-size: 0.95rem; color: var(--charcoal-soft); }
.cnd-burn-fine {
  margin-top: 30px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}

/* ---------- Owner's note ---------- */
.cnd-note { background: var(--ivory); padding-bottom: clamp(64px, 7.5vw, 88px); }
.cnd-note-box {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(43, 46, 41, 0.07);
  border-radius: 26px;
  padding: clamp(34px, 5vw, 60px) clamp(28px, 5vw, 64px);
}
/* Watermark in the far corner. Sitting top-left it collided with the eyebrow
   and read as a stray glyph rather than a quote mark. */
.cnd-note-box .mark {
  position: absolute;
  top: clamp(10px, 2vw, 22px);
  right: clamp(24px, 4vw, 48px);
  font-family: var(--font-brand);
  font-size: clamp(5rem, 8vw, 7.5rem);
  line-height: 1;
  color: var(--stone);
  opacity: 0.75;
  pointer-events: none;
  user-select: none;
}
.cnd-note-body { position: relative; }
.cnd-note-body p {
  margin-top: 18px;
  max-width: 66ch;
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  color: var(--charcoal-soft);
}
.cnd-note-sign { margin-top: 28px; }
.cnd-note-sign b {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--olive);
}
.cnd-note-sign span { font-size: 0.85rem; color: var(--sage-deep); }

/* ---------- The three doors ---------- */
/* Stone, not ivory. Against an ivory note above and an ivory CTA below, this
   section had no edge of its own and the two seams read as dead space. */
.cnd-next {
  background: var(--stone);
  padding: clamp(72px, 8.5vw, 96px) 0;
}
.cnd-next + .cta { padding-top: clamp(78px, 9vw, 100px); }
.cnd-door-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.cnd-door {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(43, 46, 41, 0.07);
  border-radius: 22px;
  padding: 32px 30px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cnd-door:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 142, 121, 0.4);
  box-shadow: 0 18px 44px rgba(41, 45, 40, 0.08);
}
.cnd-door-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--sage-tint);
  color: var(--sage-deep);
  margin-bottom: 20px;
}
.cnd-door-ic svg { width: 22px; height: 22px; }
.cnd-door h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--olive); }
.cnd-door-offer {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: -4px 0 10px;
}
.cnd-door p { font-size: 0.95rem; color: var(--charcoal-soft); margin-bottom: 20px; }
.cnd-door .svc-link { margin-top: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cnd-burn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cnd-hero { padding-top: clamp(48px, 7vw, 76px); }
  .cnd-hero-grid { grid-template-columns: 1fr; text-align: center; gap: clamp(22px, 4vw, 38px); }
  .cnd-hero .eyebrow { justify-content: center; }
  .cnd-hero h1 { margin-left: auto; margin-right: auto; }
  .cnd-lede, .cnd-lede-2 { margin-left: auto; margin-right: auto; }
  /* Candle first, but small enough that the headline still clears the fold. */
  .cnd-hero-visual { order: -1; }
  .cnd-illo { width: min(186px, 46vw); }
  .cnd-glow { top: 20%; right: auto; left: 50%; transform: translate(-50%, -50%); }
  .cnd-spec-grid { grid-template-columns: 1fr; }
  .cnd-facts { grid-template-columns: 1fr; }
  .cnd-door-grid { grid-template-columns: 1fr; }
  .cnd-label .section-head,
  .cnd-burn .section-head,
  .cnd-next .section-head { margin-bottom: 38px; }
}
@media (max-width: 560px) {
  .cnd-burn-grid { grid-template-columns: 1fr; }
  /* Full width, the numeral no longer needs a row of its own. Setting it
     beside the heading takes ~45px off each of the four stacked cards. */
  .cnd-burn-step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    padding: 24px 22px 26px;
  }
  .cnd-burn-num { font-size: 1.6rem; margin-bottom: 0; line-height: 1.15; }
  .cnd-burn-step h3 { margin-bottom: 8px; }
  .cnd-burn-step p { grid-column: 2; }
  .cnd-facts-list { padding: 24px 22px; }
  .cnd-facts-list > div { flex-direction: column; gap: 3px; }
  .cnd-facts-list dt { flex: none; }
  .cnd-not { padding: 24px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .cnd-flame { animation: none; }
}
