/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REMOVAL SERVICES LEICESTER · GENESIS PRO · STYLE 03 SAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Architectural sans, warm stone palette, sage green accent.
   Manrope throughout. Structured, confident, considered.
   
   This file is built to ship — every rule that mattered for
   Impact is here from day one.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


/* ──────────────────────────────────────────────────────
   1. RESET + LIGHT MODE LOCK + DESIGN TOKENS
   ────────────────────────────────────────────────────── */

:root {
  color-scheme: light;
  
  /* PALETTE — warm stone with sage accent */
  --stone:        #ECE7DD;  /* primary background */
  --stone-2:      #DDD5C3;  /* slightly darker for stat bands */
  --stone-3:      #C9C0AB;  /* dividers, lines */
  --warm:         #DDD3BD;  /* card backgrounds */
  --warm-2:       #F2EDE0;  /* subtle alternate background */
  --paper:        #FFFFFF;  /* sparingly used, only where needed */
  
  --ink:          #2A2620;  /* primary text */
  --ink-2:        #4F4838;  /* secondary text */
  --ink-3:        #7A7160;  /* tertiary, captions */
  --ink-4:        #A39A85;  /* faint, decorative */
  
  --line:         #C9C0AB;  /* borders */
  --line-2:       #D9D2BE;  /* lighter borders */
  
  --sage:         #5A6B47;  /* primary accent */
  --sage-2:       #4A5A3A;  /* hover/darker */
  --sage-3:       #6F8459;  /* lighter */
  --sage-soft:    #DDE3D2;  /* sage tinted background */
  
  /* CTA-specific colour — richer, punchier sage for buttons */
  --cta:          #4F7B3B;  /* primary CTA — saturated forest */
  --cta-hover:    #3F6A2D;  /* CTA hover */
  --cta-on:       #FFFFFF;  /* text on CTA */
  
  /* TYPOGRAPHY */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  
  /* SPATIAL */
  --container:    1240px;
  --container-px: max(1.5rem, env(safe-area-inset-left, 0px) + 1rem);
  
  /* RADII */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  
  /* TRANSITIONS */
  --t-fast: 160ms ease;
  --t-base: 220ms ease;
  
  /* Z-INDEX */
  --z-nav:    50;
  --z-sticky: 60;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--stone); color: var(--ink); color-scheme: light; }
body {
  background: var(--stone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }


/* ──────────────────────────────────────────────────────
   2. CONTAINER + RHYTHM
   ────────────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-px);
}

.section { padding-block: 96px; }
@media (max-width: 880px) { .section { padding-block: 64px; } }
.section--bg-warm   { background: var(--warm-2); }
.section--bg-stone-2 { background: var(--stone-2); }
.section--bg-paper  { background: var(--paper); }
.section--bg-sage-soft { background: var(--sage-soft); }


/* ──────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: 22px; letter-spacing: -0.01em; line-height: 1.2; }
h4 { font-size: 16px; letter-spacing: 0; line-height: 1.3; }

p { color: var(--ink-2); line-height: 1.65; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}

.text-center { text-align: center; }


/* ──────────────────────────────────────────────────────
   4. BUTTONS
   ────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { 
  background: var(--cta); 
  color: var(--cta-on); 
  box-shadow: 0 1px 2px rgba(42,38,32,0.08), 0 4px 12px rgba(79,123,59,0.18);
}
.btn--primary:hover { 
  background: var(--cta-hover); 
  color: var(--cta-on); 
  box-shadow: 0 2px 4px rgba(42,38,32,0.10), 0 8px 20px rgba(79,123,59,0.28);
}

.btn--sage { background: var(--sage); color: var(--stone); }
.btn--sage:hover { background: var(--sage-2); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--stone); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--sage); transform: none; }

.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }

.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; }


/* ──────────────────────────────────────────────────────
   5. NAV + TRUST BAR
   ────────────────────────────────────────────────────── */

.c-trust-bar {
  background: var(--ink);
  color: var(--stone);
  padding: 10px 0;
  font-size: 13px;
}
.c-trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.c-trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.c-trust-bar-item::before {
  content: '◆';
  font-size: 9px;
  color: var(--sage-3);
}
.c-trust-bar-item:first-child::before { display: none; }
@media (max-width: 880px) {
  .c-trust-bar { padding: 8px 0; font-size: 11px; }
  .c-trust-bar-inner { gap: 14px; }
}

.c-nav {
  background: var(--stone);
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  border-bottom: 1px solid var(--line);
}
.c-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.c-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.c-nav-brand-mark {
  width: 18px;
  height: 18px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}
.c-nav-brand-tag {
  font-weight: 500;
  color: var(--ink-3);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 4px;
}

.c-nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.c-nav-links a {
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.c-nav-links a:hover { color: var(--ink); }
.c-nav-links a.is-active { color: var(--ink); }
.c-nav-links a.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--sage);
}

.c-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: var(--cta-on);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.c-nav-cta:hover { background: var(--cta-hover); }
.c-nav-cta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.4; }

.c-nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--stone-2);
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

@media (max-width: 880px) {
  .c-nav-links { display: none; }
  .c-nav-burger { display: flex; }
  .c-nav-cta { display: none; }
  .c-nav-brand-tag { display: none; }
}


/* ──────────────────────────────────────────────────────
   6. BREADCRUMB
   ────────────────────────────────────────────────────── */

.c-breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--ink-3);
}
.c-breadcrumb a { color: var(--ink-3); }
.c-breadcrumb a:hover { color: var(--ink); }
.c-breadcrumb .sep { color: var(--ink-4); margin-inline: 8px; }
.c-breadcrumb .current { color: var(--ink); font-weight: 500; }


/* ──────────────────────────────────────────────────────
   7. HERO
   ────────────────────────────────────────────────────── */

.c-hero {
  padding: 64px 0 80px;
  background: var(--stone);
}
.c-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.c-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.c-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.c-hero h1 {
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 14ch;
  text-wrap: balance;
}
.c-hero h1 .accent { color: var(--sage); }
.c-hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 40px;
  max-width: 50ch;
}
.c-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.c-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-3);
}
.c-hero-trust-stars {
  color: var(--sage);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.c-hero-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #8b9978 0%, #5d6c4a 100%);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.c-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 880px) {
  .c-hero { padding: 48px 0 56px; }
  .c-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .c-hero h1 { max-width: 18ch; }
}


/* ──────────────────────────────────────────────────────
   8. STAT STRIP
   ────────────────────────────────────────────────────── */

.c-stat-strip {
  background: var(--stone-2);
  padding: 36px 0;
}
.c-stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-px);
}
.c-stat-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--sage);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.c-stat-item .label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

@media (max-width: 880px) {
  .c-stat-strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .c-stat-item .num { font-size: 32px; }
}


/* ──────────────────────────────────────────────────────
   9. SECTION HEADERS
   ────────────────────────────────────────────────────── */

.section-h {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-h.text-center {
  margin-inline: auto;
  text-align: center;
}
.section-h .eyebrow { margin-bottom: 16px; display: inline-block; }
.section-h h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.section-h p {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
  max-width: 56ch;
}


/* ──────────────────────────────────────────────────────
   10. SERVICE CARDS (3-up grid)
   ────────────────────────────────────────────────────── */

.c-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .c-service-grid { grid-template-columns: 1fr; gap: 14px; }
}

.c-service-card {
  background: var(--warm);
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--t-base), border-color var(--t-base);
}
.c-service-card:hover {
  transform: translateY(-2px);
  border-color: var(--sage);
}
.c-service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--stone);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}
.c-service-card h3 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.c-service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  flex-grow: 1;
}
.c-service-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.c-service-card-price {
  font-weight: 700;
  color: var(--sage);
}
.c-service-card-arrow {
  color: var(--ink-3);
  transition: color var(--t-fast), transform var(--t-fast);
}
.c-service-card:hover .c-service-card-arrow {
  color: var(--sage);
  transform: translateX(2px);
}


/* ──────────────────────────────────────────────────────
   11. PROCESS STRIP (How it works)
   ────────────────────────────────────────────────────── */

.c-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .c-process-grid { grid-template-columns: 1fr; gap: 16px; }
}

.c-process-card {
  position: relative;
  padding: 32px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
}
.c-process-card-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: var(--sage);
  color: var(--stone);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.c-process-card h3 {
  font-weight: 700;
  font-size: 19px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.c-process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}


/* ──────────────────────────────────────────────────────
   12. WHAT-IS-INCLUDED / WHAT-AFFECTS BLOCKS
   ────────────────────────────────────────────────────── */

.c-what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .c-what-grid { grid-template-columns: 1fr; gap: 24px; }
}

.c-what-block {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
}
.c-what-block .eyebrow { margin-bottom: 12px; display: block; }
.c-what-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.c-what-list {
  display: grid;
  gap: 14px;
}
.c-what-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.c-what-item::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 9px;
  flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────
   13. AREA / LOCATION CARDS
   ────────────────────────────────────────────────────── */

.c-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .c-area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .c-area-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

.c-area-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
  color: var(--ink);
}
.c-area-card:hover {
  border-color: var(--sage);
  transform: translateY(-1px);
}
.c-area-card-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  display: block;
}
.c-area-card-meta {
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}


/* ──────────────────────────────────────────────────────
   14. AREA CONTEXT BLOCK (intersection pages)
   ────────────────────────────────────────────────────── */

.c-area-context {
  background: var(--warm-2);
  padding: 40px;
  border-radius: var(--r-lg);
  border-left: 4px solid var(--sage);
}
.c-area-context .eyebrow { display: block; margin-bottom: 12px; }
.c-area-context h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.c-area-context p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
  max-width: 70ch;
}
.c-area-context p:last-child { margin-bottom: 0; }


/* ──────────────────────────────────────────────────────
   15. TESTIMONIAL CARDS (no stars, no placeholder tags)
   ────────────────────────────────────────────────────── */

.c-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .c-testimonial-grid { grid-template-columns: 1fr; }
}

.c-testimonial {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  position: relative;
}
.c-testimonial-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.7;
  color: var(--sage);
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}
.c-testimonial-quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
}
.c-testimonial-author {
  font-size: 13px;
  color: var(--ink-3);
}
.c-testimonial-author b {
  color: var(--ink);
  font-weight: 600;
}


/* ──────────────────────────────────────────────────────
   16. FAQ
   ────────────────────────────────────────────────────── */

.c-faq {
  border-top: 1px solid var(--line);
}
.c-faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: 4px;
}
.c-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
}
.c-faq-question .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.c-faq-question .icon::before,
.c-faq-question .icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transition: transform var(--t-base);
}
.c-faq-question .icon::before {
  width: 12px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.c-faq-question .icon::after {
  width: 1.5px; height: 12px;
  transform: translate(-50%, -50%);
}
.c-faq-item[open] .c-faq-question .icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.c-faq-answer {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 70ch;
}


/* ──────────────────────────────────────────────────────
   17. PRICING / VALUE PRINCIPLE BAND
   ────────────────────────────────────────────────────── */

.c-principle {
  background: var(--ink);
  color: var(--stone);
  padding: 64px 48px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.c-principle * { color: var(--stone); }
.c-principle .eyebrow { color: var(--sage-3); }
.c-principle h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 28ch;
  line-height: 1.15;
  text-wrap: balance;
}
.c-principle p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--stone);
  opacity: 0.85;
  max-width: 60ch;
}
.c-principle::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,107,71,0.4), transparent 70%);
}
@media (max-width: 880px) {
  .c-principle { padding: 40px 28px; }
}


/* ──────────────────────────────────────────────────────
   18. CTA BAND (dual: phone + form)
   ────────────────────────────────────────────────────── */

.c-cta-band {
  background: var(--sage-soft);
  padding: 56px 48px;
  border-radius: var(--r-xl);
  border: 1px solid var(--sage-3);
}
.c-cta-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.c-cta-band h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
  max-width: 24ch;
  line-height: 1.1;
}
.c-cta-band p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 50ch;
}
.c-cta-band .eyebrow { margin-bottom: 12px; }
.c-cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.c-cta-band-trust {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 12px;
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .c-cta-band { padding: 40px 28px; }
  .c-cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .c-cta-band-actions { width: 100%; }
  .c-cta-band-actions .btn { width: 100%; max-width: 360px; margin-inline: auto; }
}


/* ──────────────────────────────────────────────────────
   19. STICKY MOBILE CTA
   ────────────────────────────────────────────────────── */

.c-sticky-cta { display: none; }

@media (max-width: 880px) {
  .c-sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: var(--z-sticky);
    background: var(--stone);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .c-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background var(--t-fast);
  }
  .c-sticky-cta-call {
    background: var(--cta);
    color: var(--cta-on);
    margin-right: 5px;
  }
  .c-sticky-cta-call:hover { background: var(--cta-hover); }
  .c-sticky-cta-quote {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    margin-left: 5px;
  }
  .c-sticky-cta-quote:hover { background: var(--ink); color: var(--stone); }
  .c-sticky-cta svg {
    width: 14px; height: 14px;
    fill: none; stroke: currentColor; stroke-width: 2.4;
  }
  
  /* Footer needs bottom padding on mobile to clear sticky bar */
  .c-footer { padding-bottom: 100px; }
}


/* ──────────────────────────────────────────────────────
   20. FOOTER
   ────────────────────────────────────────────────────── */

.c-footer {
  background: var(--ink);
  color: var(--stone);
  padding: 56px 0 24px;
}
.c-footer * { color: var(--stone); }

.c-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}

.c-footer-brand { font-family: var(--font-display); }
.c-footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.c-footer-brand-name::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--sage-3);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.c-footer-tagline {
  color: rgba(236, 231, 221, 0.65);
  font-size: 13px;
  line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 18px;
}

/* Phone block — proper component, not orphaned text */
.c-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(111, 132, 89, 0.12);
  border: 1px solid rgba(111, 132, 89, 0.4);
  border-radius: 999px;
  font-family: var(--font-display);
  text-decoration: none;
  transition: all var(--t-fast);
}
.c-footer-phone:hover {
  background: rgba(111, 132, 89, 0.25);
  border-color: var(--sage-3);
}
.c-footer-phone svg {
  width: 14px;
  height: 14px;
  color: var(--sage-3);
  flex-shrink: 0;
}
.c-footer-phone-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-3);
}
.c-footer-phone-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--stone);
}

.c-footer-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-3);
  margin-bottom: 14px;
}
.c-footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-footer-links a {
  color: rgba(236, 231, 221, 0.82);
  transition: color var(--t-fast);
  text-decoration: none;
}
.c-footer-links a:hover { color: var(--stone); }

.c-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(236, 231, 221, 0.5);
}
.c-footer-bottom a {
  color: rgba(236, 231, 221, 0.5);
  text-decoration: none;
}
.c-footer-bottom a:hover { color: var(--stone); }

/* TABLET — 2 columns, brand spans full width as a header band */
@media (max-width: 1024px) {
  .c-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
  }
  .c-footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
  }
}

/* MOBILE — single column, tight spacing, no excess whitespace */
@media (max-width: 640px) {
  .c-footer { padding: 36px 0 20px; }
  .c-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .c-footer-brand {
    padding-bottom: 16px;
  }
  .c-footer-brand-name { font-size: 17px; }
  .c-footer-tagline { font-size: 13px; margin-bottom: 14px; }
  .c-footer-h {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .c-footer-links {
    gap: 8px;
    font-size: 14px;
  }
  .c-footer-bottom {
    padding-top: 20px;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
  }
}


/* ──────────────────────────────────────────────────────
   21. FORM
   ────────────────────────────────────────────────────── */

.c-form-input,
.c-form-textarea,
.c-form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color var(--t-fast);
}
.c-form-input:focus,
.c-form-textarea:focus,
.c-form-select:focus {
  outline: 0;
  border-color: var(--sage);
}
.c-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 6px;
}
.c-form-textarea { resize: vertical; min-height: 120px; }
.c-form-row { display: grid; gap: 20px; margin-bottom: 24px; }


/* ──────────────────────────────────────────────────────
   22. PROSE PAGE (about, faq, legal)
   ────────────────────────────────────────────────────── */

.c-prose-page {
  padding: 64px 0;
}
.c-prose-page .eyebrow { margin-bottom: 16px; display: inline-block; }
.c-prose-page h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 20ch;
  text-wrap: balance;
}
.c-prose-page .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 56ch;
}
.c-prose-page h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.c-prose-page h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 16px;
}
.c-prose-page p {
  margin-bottom: 24px;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.7;
}


/* ──────────────────────────────────────────────────────
   23. UTILITY HELPERS
   ────────────────────────────────────────────────────── */

.mt-0   { margin-top: 0 !important; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-0   { margin-bottom: 0 !important; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }

.hide-mobile  { display: initial; }
.hide-desktop { display: none; }
@media (max-width: 880px) {
  .hide-mobile  { display: none !important; }
  .hide-desktop { display: initial; }
}


/* ──────────────────────────────────────────────────────
   24. PRINT
   ────────────────────────────────────────────────────── */

@media print {
  .c-nav, .c-trust-bar, .c-sticky-cta, .c-footer, .c-cta-band { display: none; }
  body { background: white; color: black; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   25. INLINE CONTACT FORM SECTION
   Used on conversion pages (home, service hubs, location hubs, intersections)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.c-form-section { padding: 0; }
.c-form-section-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
}
.c-form-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.c-form-section-aside {
  padding: 48px;
  background: var(--warm-2);
  border-right: 1px solid var(--line);
}
.c-form-section-aside .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.c-form-section-aside h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 18ch;
  letter-spacing: -0.02em;
}
.c-form-section-aside p {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 38ch;
}

.c-form-aside-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.c-form-aside-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.c-form-aside-bullet svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 1px;
}
.c-form-aside-bullet b {
  color: var(--ink);
  font-weight: 600;
}

.c-form-section-body {
  padding: 48px;
}
.c-form-section-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.c-form {
  display: grid;
  gap: 18px;
}
.c-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.c-form-field label .req {
  color: var(--sage);
  margin-left: 2px;
}
.c-form-field label .opt {
  color: var(--ink-4);
  margin-left: 4px;
  font-weight: 500;
  font-size: 12px;
}
.c-form-input,
.c-form-select,
.c-form-textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--t-fast);
  width: 100%;
}
.c-form-input:focus,
.c-form-select:focus,
.c-form-textarea:focus {
  outline: 0;
  border-color: var(--sage);
}
.c-form-textarea {
  resize: vertical;
  min-height: 100px;
}
.c-form-submit { margin-top: 8px; }
.c-form-disclaimer {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}
.c-form-disclaimer a {
  color: var(--ink);
  text-decoration: underline;
}

@media (max-width: 880px) {
  .c-form-section-grid { grid-template-columns: 1fr; }
  .c-form-section-aside {
    padding: 36px 24px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .c-form-section-body { padding: 36px 24px; }
  .c-form-row { grid-template-columns: 1fr !important; }
}
@media (min-width: 881px) {
  .c-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   26. FALLBACK SVG SAFETY
   Force fill:none on all stroke-icons to prevent black-triangle bugs
   if any future SVG forgets explicit fill attribute.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn svg,
.c-nav-cta svg,
.c-sticky-cta svg,
.c-form-aside-bullet svg,
.c-trust-bar-item svg,
.c-isection-side-card-ctas svg,
.c-cta-band svg {
  fill: none;
  stroke: currentColor;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   27. INTERSECTION HERO + SIDE CARD
   60 intersection pages were rendering with unstyled side card.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.c-isection-hero {
  padding: 48px 0 64px;
}
.c-isection-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) {
  .c-isection-hero { padding: 32px 0 48px; }
  .c-isection-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.c-isection-side-card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
}
.c-isection-side-card .eyebrow {
  margin-bottom: 16px;
  display: block;
}
.c-isection-side-card h3 {
  font-size: 19px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.c-isection-side-card-meta {
  display: grid;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.c-isection-side-card-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.c-isection-side-card-meta-row .label {
  color: var(--ink-3);
}
.c-isection-side-card-meta-row .value {
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 500;
}

.c-isection-side-card-ctas {
  display: grid;
  gap: 10px;
}
.c-isection-side-card-ctas .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.c-isection-side-card-whatsapp {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
  padding: 6px;
}
.c-isection-side-card-whatsapp:hover {
  color: var(--sage);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   28. HERO TRUST ITEMS (small chips below hero CTAs)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.c-hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.c-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.c-hero-trust-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   29. FIX: STAT STRIP — was overflowing screen edges
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.c-stat-strip-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-px);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   27. INTERSECTION HERO V2 — full-width, no side card
   Used on intersection pages only. Visitor has high intent.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.c-isection-hero-v2 {
  padding: 64px 0 56px;
  background: var(--stone);
}
.c-isection-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 16ch;
  text-wrap: balance;
}
.c-isection-lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 40px;
  max-width: 60ch;
}
@media (max-width: 880px) {
  .c-isection-hero-v2 { padding: 40px 0 40px; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   28. FACT STRIP — replaces side card on intersections
   Horizontal, dense, factual. LLM-friendly structure.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.c-fact-strip {
  background: var(--ink);
  color: var(--stone);
  padding: 28px 0;
}
.c-fact-strip * { color: var(--stone); }
.c-fact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: baseline;
}
.c-fact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-3);
}
.c-fact-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--stone);
}
@media (max-width: 880px) {
  .c-fact-strip { padding: 20px 0; }
  .c-fact-strip-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .c-fact-value { font-size: 18px; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   29. PAGE-TYPE DIFFERENTIATION
   Each page type gets a distinct hero composition.
   - Homepage: hero image RIGHT (existing .c-hero-grid)
   - Service hub: hero image LEFT (.c-hero-grid--mirror)
   - Location hub: full-width banner hero (.c-hero-banner)
   - Intersection: full-width text hero (.c-isection-hero-v2 above)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* SERVICE HUB · mirror flip */
.c-hero-grid--mirror {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
}
.c-hero-grid--mirror .c-hero-image { order: 0; }
.c-hero-grid--mirror > div:not(.c-hero-image) { order: 1; }
@media (max-width: 880px) {
  .c-hero-grid--mirror { grid-template-columns: 1fr; gap: 32px; }
  .c-hero-grid--mirror .c-hero-image { order: 1; }
  .c-hero-grid--mirror > div:not(.c-hero-image) { order: 0; }
}

/* LOCATION HUB · full-width banner with image as background */
.c-hero-banner {
  position: relative;
  padding: 96px 0;
  background-color: #2a2620;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.c-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 18, 14, 0.78) 0%, rgba(42, 38, 32, 0.55) 50%, rgba(20, 18, 14, 0.75) 100%);
  z-index: 0;
}
.c-hero-banner-content {
  position: relative;
  z-index: 1;
  color: var(--stone);
  max-width: 720px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.c-hero-banner-content * { color: var(--stone); }
.c-hero-banner-content .c-hero-eyebrow {
  color: var(--sage-3);
}
.c-hero-banner-content .c-hero-eyebrow::before { background: var(--sage-3); }
.c-hero-banner-content h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 14ch;
  color: var(--stone);
}
.c-hero-banner-content h1 .accent { color: var(--sage-3); }
.c-hero-banner-content .c-hero-lead {
  font-size: 19px;
  color: var(--stone);
  opacity: 0.92;
  max-width: 50ch;
  margin-bottom: 40px;
}
.c-hero-banner-content .btn--outline {
  color: var(--stone);
  border-color: var(--stone);
}
.c-hero-banner-content .btn--outline:hover {
  background: var(--stone);
  color: var(--ink);
}
@media (max-width: 880px) {
  .c-hero-banner { padding: 64px 0; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   30. CONTACT METHODS LIST
   Vertical list of contact options on /contact/ page.
   Replaces the broken 3-up card grid.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.c-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}
.c-contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--ink);
  transition: all var(--t-fast);
}
.c-contact-method:hover {
  border-color: var(--cta);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42,38,32,0.06);
}
.c-contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--stone);
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.c-contact-method-icon svg {
  width: 22px;
  height: 22px;
}
.c-contact-method-icon--sage {
  background: var(--sage);
}
.c-contact-method-icon--cta {
  background: var(--cta);
  color: var(--cta-on);
}
.c-contact-method-body {
  flex-grow: 1;
  min-width: 0; /* allow text to wrap */
}
.c-contact-method-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.c-contact-method-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2px;
}
.c-contact-method-help {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}
.c-contact-method-arrow {
  font-size: 20px;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform var(--t-fast), color var(--t-fast);
}
.c-contact-method:hover .c-contact-method-arrow {
  color: var(--cta);
  transform: translateX(2px);
}

@media (max-width: 640px) {
  .c-contact-method {
    padding: 16px 18px;
    gap: 14px;
  }
  .c-contact-method-icon {
    width: 40px;
    height: 40px;
  }
  .c-contact-method-icon svg {
    width: 18px;
    height: 18px;
  }
  .c-contact-method-value {
    font-size: 17px;
  }
  .c-contact-method-help {
    font-size: 12px;
  }
}


/* ═══════════════════════════════════════════════════════
   FORM-FIRST CONTACT PAGE
   /contact/ specific layout — form is the page.
   Phone + WhatsApp as compact escape row at bottom of form.
   Reassurance bullets BELOW form, not competing.
   ═══════════════════════════════════════════════════════ */

/* Compact page hero (user has declared intent, no marketing pitch needed) */
.c-page-hero--compact {
  padding: 56px 0 24px;
  background: var(--stone);
}
.c-breadcrumb-compact {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.c-breadcrumb-compact a { color: var(--sage); text-decoration: none; }
.c-breadcrumb-compact a:hover { color: var(--ink); }
.c-page-h1--compact {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 8px;
  max-width: 18ch;
  color: var(--ink);
}
.c-page-lede--compact {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 50ch;
  margin: 0;
  line-height: 1.55;
}

/* Narrower container for form-first layout */
.container--narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Form-first section */
.c-form-first-section {
  padding: 32px 0 80px;
  background: var(--stone);
}
.c-form-first {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 40px 28px;
  position: relative;
}
.c-form-first-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.c-form-first-sub {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

/* Form fields */
.c-form-first-group { margin-bottom: 16px; }
.c-form-first-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.c-form-first-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -0.005em;
}
.c-req { color: var(--sage); }
.c-opt {
  color: var(--ink-3);
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}
.c-form-first-input {
  width: 100%;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 11px 13px;
  font-size: 14px;
  font-family: var(--body);
  color: var(--ink);
  transition: border-color 150ms;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.c-form-first-input::placeholder { color: var(--ink-3); }
.c-form-first-input:focus { border-color: var(--sage); }
select.c-form-first-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231F1B16' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.c-form-first-textarea {
  resize: vertical;
  min-height: 88px;
  font-family: var(--body);
}

/* Submit button */
.c-form-first-submit {
  display: block;
  width: 100%;
  padding: 16px 28px;
  background: var(--sage);
  color: var(--stone);
  border: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: background 150ms;
  cursor: pointer;
}
.c-form-first-submit:hover { background: var(--sage-2, #4A5C40); }

/* Escape-hatch row (Phone + WhatsApp at bottom of form) */
.c-form-first-escape {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.c-form-first-escape-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.c-form-first-escape-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--ink);
  transition: all 150ms;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.c-form-first-escape-link:hover {
  color: var(--sage);
  border-color: var(--sage);
}
.c-form-first-escape-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Form footer (privacy + reply expectation) */
.c-form-first-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 12px;
}
.c-form-first-foot a { color: var(--sage); text-decoration: none; }

/* Success state */
.c-form-first-success {
  background: var(--paper);
  border: 1px solid var(--sage);
  padding: 36px 40px;
}
.c-form-first-success h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.c-form-first-success p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
.c-form-first-success a { color: var(--sage); }

/* Reassurance strip BELOW the form (single horizontal row) */
.c-form-first-reassure {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--stone-2);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.c-form-first-reassure-item {
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.c-form-first-reassure-item::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.c-form-first-reassure-item strong { color: var(--ink); font-weight: 600; }

/* Mobile responsive */
@media (max-width: 720px) {
  .c-form-first { padding: 24px 22px 22px; }
  .c-form-first-row { grid-template-columns: 1fr; gap: 0; }
  .c-page-hero--compact { padding: 32px 0 16px; }
  .c-form-first-section { padding: 24px 0 64px; }
  .c-form-first-escape { gap: 16px; }
  .c-form-first-reassure { padding: 16px; gap: 12px; flex-direction: column; align-items: flex-start; }
  .c-form-first-foot { flex-direction: column; align-items: flex-start; }
}
