/* ====================================================================
   The Kitchen Base — site stylesheet
   Pure CSS, no framework dependencies.
   Brand: Foundation Charcoal #2C3539, Oatmeal #F2F0EB,
          Domestic Sage #7C9082, Hearth Taupe #B5A89A, Clean White #FFFFFF
   ==================================================================== */

:root {
  --color-charcoal: #2C3539;
  --color-oatmeal:  #F2F0EB;
  --color-sage:     #7C9082;
  --color-sage-dark:#6B7D70;
  --color-sage-light:#9AAA9F;
  --color-taupe:    #B5A89A;
  --color-white:    #FFFFFF;

  --color-bg:       var(--color-oatmeal);
  --color-surface:  var(--color-white);
  --color-text:     var(--color-charcoal);
  --color-muted:    rgba(44, 53, 57, 0.72);
  --color-soft:     rgba(44, 53, 57, 0.55);
  --color-border:   rgba(181, 168, 154, 0.32);

  --shadow-sm: 0 1px 2px rgba(44, 53, 57, 0.05);
  --shadow-md: 0 8px 30px rgba(44, 53, 57, 0.07);
  --shadow-lg: 0 24px 60px rgba(44, 53, 57, 0.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --font-sans: 'Outfit', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  /* Unified section padding rhythm — 40 mobile / 56 tablet / 80 desktop */
  --section-y: 2.5rem;
  /* Grid gap rhythm — 28 mobile / 32 tablet / 48 desktop */
  --grid-gap: 1.75rem;
  --split-gap: 2rem;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture { max-width: 100%; height: auto; display: block; }
a { color: var(--color-charcoal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-sage); }
::selection { background: var(--color-sage); color: var(--color-white); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--color-charcoal); color: white;
  padding: 0.5rem 1rem; border-radius: 8px;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus { top: 0.75rem; color: white; }

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section,
.section-sm {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.bg-white { background: var(--color-white); }
.bg-oatmeal { background: var(--color-oatmeal); }

/* Responsive section padding — 40/56/80 — applied uniformly so homepage
   sections all share the same vertical rhythm. */
@media (min-width: 768px) {
  :root { --section-y: 3.5rem; --grid-gap: 2rem; --split-gap: 2.5rem; }
}
@media (min-width: 1024px) {
  :root { --section-y: 5rem;   --grid-gap: 3rem; --split-gap: 3rem; }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-sage);
}
.display {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.heading-1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.heading-2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  text-wrap: balance;
}
.heading-3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.3;
}
.lede {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 60ch;
}
.small { font-size: 0.875rem; color: var(--color-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-sage-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--color-white);
  color: var(--color-charcoal);
  border-color: rgba(181, 168, 154, 0.4);
}
.btn-secondary:hover {
  border-color: var(--color-sage);
  background: var(--color-oatmeal);
  color: var(--color-charcoal);
}
.btn-ghost {
  background: transparent;
  color: var(--color-charcoal);
}
.btn-ghost:hover { color: var(--color-sage); background: rgba(124,144,130,0.08); }
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn-arrow::after { content: '→'; font-size: 1.05rem; margin-left: 0.1rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 240, 235, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}
.header-logo img { height: 48px; width: auto; }

.site-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(44,53,57,0.78);
}
.nav-link:hover { color: var(--color-sage); }
.nav-link.is-active { color: var(--color-sage); }
.nav-cta-li { margin-left: 0.5rem; }

/* Mobile nav (CSS-only via checkbox toggle) */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}
.nav-toggle-label:hover { border-color: var(--color-sage); }
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s, top 0.3s, opacity 0.2s;
}
.nav-toggle-bars { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top: 6px; }
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bars { background: transparent; }
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bars::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bars::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle-label { display: inline-flex; align-items: center; justify-content: center; order: 2; }
  .site-nav {
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-toggle:checked ~ .site-nav { max-height: 540px; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem var(--pad-x);
    gap: 0.25rem;
  }
  .nav-link {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }
  .nav-link.is-active, .nav-link:hover { background: var(--color-oatmeal); color: var(--color-sage); }
  .nav-cta-li { margin: 0.75rem 0 0; }
  .nav-cta-li .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--split-gap);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: var(--split-gap); }
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;        /* landscape — no longer 4:5 portrait */
  max-height: 460px;          /* hard cap on desktop so the hero never feels oversized */
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,53,57,0.3), transparent 50%);
}
.hero-mini-card {
  position: absolute;
  left: -1rem; bottom: -1.5rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.5rem 1rem 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
}
@media (min-width: 640px) { .hero-mini-card { display: inline-flex; } }
.hero-mini-icon {
  width: 48px; height: 48px;
  border-radius: 16px;
  background: var(--color-oatmeal);
  color: var(--color-sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-mini-card p { margin: 0; line-height: 1.25; }
.hero-mini-label { font-size: 0.85rem; color: var(--color-muted); }
.hero-mini-price { font-size: 1.25rem; font-weight: 600; }
.hero-mini-meta { font-size: 0.75rem; color: var(--color-soft); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.hero-trust { font-size: 0.9rem; color: var(--color-soft); margin-top: 1.5rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-soft {
  background: var(--color-oatmeal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.icon-pill {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: 16px;
  background: var(--color-oatmeal);
  color: var(--color-sage);
  align-items: center;
  justify-content: center;
}
.icon-pill svg { width: 22px; height: 22px; }
.icon-pill.sage-bg { background: rgba(124,144,130,0.12); }

/* ---------- Trust chip strip (homepage hero) ---------- */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 0;        /* 28px mobile */
  padding: 0;
  list-style: none;
}
@media (min-width: 768px)  { .trust-chips { margin-top: 2rem; } }   /* 32px tablet */
@media (min-width: 1024px) { .trust-chips { margin-top: 3rem; } }   /* 48px desktop */
.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  font-weight: 500;
  line-height: 1.2;
}
.trust-chips li svg { width: 16px; height: 16px; color: var(--color-sage); flex-shrink: 0; }

/* ---------- Notes / callouts (Pricing page utilities, delivery, VAT) ---------- */
.callout {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-sage);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 0 0 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.callout svg { width: 22px; height: 22px; color: var(--color-sage); flex-shrink: 0; margin-top: 0.15rem; }
.callout p { margin: 0; line-height: 1.55; color: rgba(44,53,57,0.85); }
.callout strong { color: var(--color-charcoal); }
.callout.vat { border-left-color: var(--color-taupe); background: var(--color-oatmeal); }
.callout.vat svg { color: var(--color-taupe); }

/* ---------- Trust points (homepage replaces fake reviews) ---------- */
.trust-points {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
}
@media (min-width: 640px) { .trust-points { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .trust-points { grid-template-columns: repeat(3, 1fr); } }
.trust-points li {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trust-points li svg { width: 22px; height: 22px; color: var(--color-sage); flex-shrink: 0; margin-top: 0.2rem; }
.trust-points p { margin: 0; font-weight: 500; color: var(--color-charcoal); line-height: 1.4; }

/* Radio group for utility access question */
.radio-group { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(181,168,154,0.5);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-size: 0.95rem;
}
.radio-group label:hover { border-color: var(--color-sage); }
.radio-group input[type="radio"] {
  appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--color-taupe);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.radio-group input[type="radio"]:checked { border-color: var(--color-sage); }
.radio-group input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--color-sage);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.radio-group label:has(input:checked) { border-color: var(--color-sage); background: rgba(124,144,130,0.08); color: var(--color-sage); }

/* ---------- Conditional follow-up message under utility-access ---------- */
/* Always-visible helper note under the utility-access question.
   Plain CSS — visible by default, no JS required. */
.utility-helper {
  display: block;
  margin: 0.85rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(124,144,130,0.10);
  border-left: 3px solid var(--color-sage);
  border-radius: 12px;
  color: var(--color-charcoal);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: var(--grid-gap); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Two-column section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--split-gap);
  align-items: center;
}
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.split-5-7 { grid-template-columns: 5fr 7fr; }
  .split.split-7-5 { grid-template-columns: 7fr 5fr; }
}
/* Top-align modifier — used on Contact page where the left column is shorter than the form */
.split.align-start { align-items: start; }
.split img.rounded {
  border-radius: var(--radius-xl);
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.aspect-portrait {
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.aspect-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Feature card (icon + label) ---------- */
.feature-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-row .icon-pill { flex-shrink: 0; }
.feature-row p { margin: 0.3em 0 0; font-size: 1.05rem; font-weight: 500; color: var(--color-charcoal); }

/* ---------- Step card ---------- */
.step-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-sage);
}
.step-card .icon-pill { background: rgba(124,144,130,0.12); margin-top: 1.25rem; }

/* ---------- Pricing card ---------- */
.pricing-card {
  background: var(--color-white);
  border: 2px solid rgba(124,144,130,0.18);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3vw, 3rem);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.pricing-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--color-oatmeal);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(44,53,57,0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.price-big {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.price-big .price-amount { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600; line-height: 1; }
.price-big .price-unit { color: var(--color-muted); }
.price-sub { color: var(--color-muted); margin: 0.3rem 0 0; }
.price-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
}
.price-divider span { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-soft); }
.price-divider::before,
.price-divider::after { content: ''; flex: 1; height: 1px; background: rgba(181,168,154,0.4); }
.price-second .price-amount { color: var(--color-sage); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
.pricing-includes { margin: 2rem 0 0; padding: 0; list-style: none; }
.pricing-includes li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.45rem 0;
  color: rgba(44,53,57,0.85);
}
.pricing-includes li::before {
  content: '✓';
  display: inline-flex;
  width: 22px; height: 22px;
  background: rgba(124,144,130,0.18);
  color: var(--color-sage);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.pricing-note { font-size: 0.875rem; color: var(--color-soft); margin-top: 1.5rem; }

/* Example pricing table */
.pricing-table { padding: 0; margin: 0; list-style: none; }
.pricing-table li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(181,168,154,0.3);
  font-size: 1.05rem;
}
.pricing-table li:last-child { border-bottom: 0; }
.pricing-table li span:last-child { font-weight: 500; }

/* ---------- Who we help chips ---------- */
.chip-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .chip-list { grid-template-columns: 1fr 1fr; } }
.chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-oatmeal);
  border: 1px solid var(--color-border);
  font-weight: 500;
}
.chip::before {
  content: '';
  width: 32px; height: 32px;
  background: rgba(124,144,130,0.18);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237C9082' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ---------- FAQ accordion (native <details>) ---------- */
.faq-list {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 0.5rem 0.75rem;
}
.faq-item { border-bottom: 1px solid rgba(181,168,154,0.3); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1rem;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-sage);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item[open] summary { color: var(--color-sage); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--color-sage); }
.faq-answer {
  padding: 0 1rem 1.5rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ---------- Form ---------- */
.form-wrap { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.5rem); }
.form-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-size: 0.95rem; font-weight: 500; color: rgba(44,53,57,0.85); }
.form-label .required { color: var(--color-sage); margin-left: 0.15rem; }
.form-control {
  background: var(--color-white);
  border: 1px solid rgba(181,168,154,0.5);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-charcoal);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus { outline: none; border-color: var(--color-sage); box-shadow: 0 0 0 3px rgba(124,144,130,0.18); }
.form-control::placeholder { color: rgba(44,53,57,0.4); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%237C9082'><path d='M5.5 7.5L10 12l4.5-4.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}
.checkbox-row { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.checkbox-row input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--color-sage); }
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: -10000px !important;
  top: auto !important;
}
.form-errors {
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-md);
  color: #9b1c1c;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.form-errors ul { margin: 0.35rem 0 0 1.25rem; padding: 0; }
.form-success {
  background: rgba(124,144,130,0.1);
  border: 1px solid rgba(124,144,130,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.final-cta::after {
  content: '';
  position: absolute;
  right: -120px; bottom: -160px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(124,144,130,0.18);
  filter: blur(60px);
  pointer-events: none;
}
.final-cta h2 { color: var(--color-white); font-size: clamp(1.875rem, 4vw, 3rem); line-height: 1.1; text-wrap: balance; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.125rem; max-width: 36rem; }
.final-cta .eyebrow { color: var(--color-sage); }
.final-cta .btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.25); }
.final-cta .btn-secondary:hover { background: white; color: var(--color-charcoal); border-color: white; }

/* ---------- Trust strip ---------- */
.trust-quotes {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .trust-quotes { grid-template-columns: repeat(3, 1fr); } }
.trust-quotes figure { margin: 0; }
.trust-quotes blockquote { margin: 0 0 0.75rem; font-style: normal; line-height: 1.65; color: rgba(44,53,57,0.85); }
.trust-quotes figcaption { font-size: 0.875rem; color: rgba(44,53,57,0.55); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; gap: 1.75rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 5 / 3; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; font-size: 0.8rem; color: var(--color-soft); margin-bottom: 0.75rem; }
.blog-card-meta .category { background: var(--color-oatmeal); padding: 0.2rem 0.7rem; border-radius: var(--radius-pill); color: rgba(44,53,57,0.7); font-weight: 500; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.blog-card h3:hover { color: var(--color-sage); }
.blog-read { font-size: 0.9rem; color: var(--color-sage); margin-top: auto; font-weight: 500; }

.blog-article { max-width: 720px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) var(--pad-x); }
.blog-article h1 { margin-top: 1rem; }
.blog-article .blog-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 2rem 0 2.5rem;
  aspect-ratio: 16 / 9;
}
.blog-article .blog-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-article p { font-size: 1.1rem; line-height: 1.75; color: rgba(44,53,57,0.85); margin-bottom: 1.25rem; }
.blog-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.blog-back:hover { color: var(--color-sage); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-oatmeal);
  border-top: 1px solid var(--color-border);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; } }
.footer-logo { height: 96px; width: auto; }
.footer-tagline { max-width: 24rem; color: var(--color-muted); margin-top: 1.25rem; }
.footer-heading {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44,53,57,0.7);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-links ul, .footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact-list li { padding: 0.4rem 0; }
.footer-links a { color: rgba(44,53,57,0.8); }
.footer-contact-list li { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.55rem 0; }
.footer-contact-label { font-size: 0.8rem; color: var(--color-soft); }
.footer-divider { height: 1px; background: rgba(181,168,154,0.3); margin: 2.5rem 0 1.5rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between; font-size: 0.9rem; color: var(--color-soft); }
.footer-bottom p { margin: 0; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem; left: 1rem;
  z-index: 60;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(44,53,57,0.12);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 640px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 28rem; padding: 1.5rem 1.75rem; }
}
.cookie-banner[hidden] { display: none; }
.cookie-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-oatmeal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.cookie-content { flex: 1; }
.cookie-title { font-size: 1.1rem; margin: 0 0 0.4rem; line-height: 1.3; }
.cookie-body { font-size: 0.9rem; color: var(--color-muted); margin: 0 0 1rem; line-height: 1.5; }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(44,53,57,0.5);
  cursor: pointer;
  padding: 0;
  margin-top: -0.25rem;
}
.cookie-close:hover { color: var(--color-charcoal); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Meta pill (blog cards date/time replacement) ---------- */
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-soft);
}
.meta-pill .meta-icon { width: 14px; height: 14px; color: var(--color-sage); flex-shrink: 0; }

/* ---------- Cookie banner icon (SVG replaces 🍪 emoji) ---------- */
.cookie-icon .cookie-svg { width: 22px; height: 22px; color: var(--color-sage); }

/* ---------- Thank-you tick (SVG replaces ✓ unicode) ---------- */
.thankyou-icon {
  display: inline-flex;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(124,144,130,0.15);
  color: var(--color-sage);
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.thankyou-icon .thankyou-check { width: 40px; height: 40px; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }
.mt-7 { margin-top: 3.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.center { text-align: center; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 1rem; }
.divider { height: 1px; background: rgba(181,168,154,0.3); margin: 2rem 0; }

/* ---------- 404 ---------- */
.page-404 { text-align: center; padding: clamp(4rem, 10vw, 8rem) var(--pad-x); }
.page-404 .display { color: var(--color-sage); font-size: clamp(4rem, 12vw, 8rem); margin-bottom: 0; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cookie-banner, .final-cta { display: none !important; }
  body { background: white; color: black; }
}

/* =====================================================================
   SCROLL-REVEAL ANIMATIONS
   - Gated by html.js-ready, which is set ONLY when main.js successfully
     runs. If JS is disabled, fails to load, or throws an error, this class
     never appears and the rules below never apply — content stays visible.
   - The reveal-animation system NEVER hides content permanently, even if
     IntersectionObserver fails: main.js immediately shows everything in
     that case.
   - prefers-reduced-motion forces all animations off.
   ===================================================================== */
html.js-ready .hero-grid > *,
html.js-ready .trust-chips li,
html.js-ready .feature-row,
html.js-ready .step-card,
html.js-ready .pricing-card,
html.js-ready .card,
html.js-ready .card-soft,
html.js-ready .chip,
html.js-ready .trust-points li,
html.js-ready .faq-item,
html.js-ready .form-wrap,
html.js-ready .callout,
html.js-ready .blog-card,
html.js-ready .final-cta {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity   0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
html.js-ready .is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Mobile tuning — slightly snappier, shorter travel so the reveal feels at home
   on smaller viewports. Same gentle fade + lift; no bounce, no parallax. */
@media (max-width: 720px) {
  html.js-ready .hero-grid > *,
  html.js-ready .trust-chips li,
  html.js-ready .feature-row,
  html.js-ready .step-card,
  html.js-ready .pricing-card,
  html.js-ready .card,
  html.js-ready .card-soft,
  html.js-ready .chip,
  html.js-ready .trust-points li,
  html.js-ready .faq-item,
  html.js-ready .form-wrap,
  html.js-ready .callout,
  html.js-ready .blog-card,
  html.js-ready .final-cta {
    transform: translateY(12px);
    transition:
      opacity   0.45s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

/* Staggered reveal — children of common parents fade in one after another */
html.js-ready .trust-chips li:nth-child(1).is-visible,
html.js-ready .grid > *:nth-child(1).is-visible,
html.js-ready .chip-list > *:nth-child(1).is-visible,
html.js-ready .trust-points > *:nth-child(1).is-visible { transition-delay: 0.00s; }

html.js-ready .trust-chips li:nth-child(2).is-visible,
html.js-ready .grid > *:nth-child(2).is-visible,
html.js-ready .chip-list > *:nth-child(2).is-visible,
html.js-ready .trust-points > *:nth-child(2).is-visible { transition-delay: 0.07s; }

html.js-ready .trust-chips li:nth-child(3).is-visible,
html.js-ready .grid > *:nth-child(3).is-visible,
html.js-ready .chip-list > *:nth-child(3).is-visible,
html.js-ready .trust-points > *:nth-child(3).is-visible { transition-delay: 0.14s; }

html.js-ready .grid > *:nth-child(4).is-visible,
html.js-ready .chip-list > *:nth-child(4).is-visible,
html.js-ready .trust-points > *:nth-child(4).is-visible { transition-delay: 0.21s; }

html.js-ready .grid > *:nth-child(5).is-visible,
html.js-ready .chip-list > *:nth-child(5).is-visible,
html.js-ready .trust-points > *:nth-child(5).is-visible { transition-delay: 0.28s; }

html.js-ready .grid > *:nth-child(6).is-visible,
html.js-ready .chip-list > *:nth-child(6).is-visible { transition-delay: 0.35s; }

/* Hero — slight stagger so the headline land first */
html.js-ready .hero-grid > *:nth-child(1).is-visible { transition-delay: 0.05s; }
html.js-ready .hero-grid > *:nth-child(2).is-visible { transition-delay: 0.15s; }

/* Respect prefers-reduced-motion — disable all reveal transitions */
@media (prefers-reduced-motion: reduce) {
  html.js-ready .hero-grid > *,
  html.js-ready .trust-chips li,
  html.js-ready .feature-row,
  html.js-ready .step-card,
  html.js-ready .pricing-card,
  html.js-ready .card,
  html.js-ready .card-soft,
  html.js-ready .chip,
  html.js-ready .trust-points li,
  html.js-ready .faq-item,
  html.js-ready .form-wrap,
  html.js-ready .callout,
  html.js-ready .blog-card,
  html.js-ready .final-cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
