/* ============================================================
   D'S LANDSCAPING LLC — Design System & Styles
   Palette: Deep forest/ink green + warm stone + brass/earth accent
   Type: Fraunces (display, editorial serif) + General Sans (body)
   Art direction: image-free, topographic contour texture, generous whitespace
   ============================================================ */

/* ---------- Type Scale (fluid clamp, per design-tokens.md) ---------- */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.9rem + 6vw, 6.75rem);

  /* 4px Spacing System */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.3rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.85rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1040px;
  --content-wide: 1280px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'General Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ---------- Custom Palette: Ink Forest / Warm Stone / Brass ---------- */
:root,
[data-theme='light'] {
  /* Surfaces — warm limestone/stone, not white */
  --color-bg: #f4f0e6;
  --color-surface: #faf7ef;
  --color-surface-2: #ffffff;
  --color-surface-offset: #ece5d4;
  --color-surface-offset-2: #e3dac4;
  --color-surface-dynamic: #dcd2b9;
  --color-divider: #ded4bd;
  --color-border: #d2c6a8;

  /* Text — deep ink green-black */
  --color-text: #17241c;
  --color-text-muted: #4d5b4f;
  --color-text-faint: #8b9488;
  --color-text-inverse: #f4f0e6;

  /* Primary — deep forest ink green */
  --color-primary: #16302a; /* deep forest */
  --color-primary-strong: #0d1e17;
  --color-primary-hover: #0d1e17;
  --color-primary-highlight: #cddbd0;

  /* Brand surface — fixed deep forest, used for hero/CTA/footer blocks. Stays dark in both themes (unlike --color-primary, which inverts for link contrast). */
  --color-brand: #16302a;
  --color-brand-strong: #0d1e17;
  --color-brand-edge: #23402f;

  /* Accent — restrained brass/earth */
  --color-accent: #a9803f;
  --color-accent-hover: #8c692f;
  --color-accent-active: #6f521f;
  --color-accent-highlight: #ecdfc4;

  /* Semantic (used sparingly — form states only) */
  --color-error: #8a3324;
  --color-error-highlight: #ecd8d2;
  --color-success: #3f6b3a;
  --color-success-highlight: #dbe6d5;

  --shadow-sm: 0 1px 2px oklch(0.2 0.03 140 / 0.08);
  --shadow-md: 0 6px 20px oklch(0.2 0.03 140 / 0.12);
  --shadow-lg: 0 16px 40px oklch(0.18 0.03 140 / 0.18);
}

[data-theme='dark'] {
  --color-bg: #0e1712;
  --color-surface: #131f19;
  --color-surface-2: #17251e;
  --color-surface-offset: #1b2a22;
  --color-surface-offset-2: #223327;
  --color-surface-dynamic: #2a3c2e;
  --color-divider: #263a2c;
  --color-border: #304535;

  --color-text: #e9e5d6;
  --color-text-muted: #a9b3a5;
  --color-text-faint: #6d7d6e;
  --color-text-inverse: #17241c;

  --color-primary: #a9c4b0;
  --color-primary-strong: #d7e6da;
  --color-primary-hover: #c4d9c9;
  --color-primary-highlight: #24352a;

  /* Brand surface stays fixed deep forest in dark mode too — these blocks are already dark, they don't invert. */
  --color-brand: #0d1811;
  --color-brand-strong: #08100b;
  --color-brand-edge: #16261b;

  --color-accent: #d3ac6c;
  --color-accent-hover: #e3c188;
  --color-accent-active: #f0d6a4;
  --color-accent-highlight: #3a3120;

  --color-error: #d98c78;
  --color-error-highlight: #3a2620;
  --color-success: #8fc088;
  --color-success-highlight: #223122;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 6px 20px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0e1712;
    --color-surface: #131f19;
    --color-surface-2: #17251e;
    --color-surface-offset: #1b2a22;
    --color-surface-offset-2: #223327;
    --color-surface-dynamic: #2a3c2e;
    --color-divider: #263a2c;
    --color-border: #304535;
    --color-text: #e9e5d6;
    --color-text-muted: #a9b3a5;
    --color-text-faint: #6d7d6e;
    --color-text-inverse: #17241c;
    --color-primary: #a9c4b0;
    --color-primary-strong: #d7e6da;
    --color-primary-hover: #c4d9c9;
    --color-primary-highlight: #24352a;
    --color-brand: #0d1811;
    --color-brand-strong: #08100b;
    --color-brand-edge: #16261b;
    --color-accent: #d3ac6c;
    --color-accent-hover: #e3c188;
    --color-accent-active: #f0d6a4;
    --color-accent-highlight: #3a3120;
    --color-error: #d98c78;
    --color-error-highlight: #3a2620;
    --color-success: #8fc088;
    --color-success-highlight: #223122;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 6px 20px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
  }
}

/* ============================================================
   Global type rules
   ============================================================ */
body {
  font-optical-sizing: auto;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

h1 {
  font-size: var(--text-hero);
  line-height: 1.03;
}
h2 {
  font-size: var(--text-2xl);
  line-height: 1.08;
}
h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  font-family: var(--font-body);
}

p {
  color: var(--color-text-muted);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

[data-theme='dark'] .eyebrow {
  color: var(--color-accent);
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
}

a {
  color: var(--color-primary);
  text-decoration-color: oklch(from var(--color-primary) l c h / 0.35);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--color-accent);
}

[data-theme='dark'] a {
  color: var(--color-primary-strong);
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--wide {
  max-width: var(--content-wide);
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
}
.section--tight {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 200;
  background: var(--color-brand);
  color: #f4f0e6;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: top var(--transition-interactive);
}
.skip-link:focus-visible {
  top: var(--space-4);
}

/* ============================================================
   Topographic contour texture (CSS/SVG only — no photography)
   ============================================================ */
.contour-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  color: #d9c99a;
}
.contour-field svg {
  width: 100%;
  height: 100%;
  display: block;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
}
[data-theme='dark'] .grain-overlay {
  opacity: 0.08;
  mix-blend-mode: overlay;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(120deg, oklch(from var(--color-bg) l c h / 0.78), oklch(from var(--color-surface) l c h / 0.62));
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.12);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.site-header--hidden {
  transform: translateY(-100%);
}
.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.brand:hover {
  color: var(--color-text);
}
.brand-logo-frame {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 14px;
  background: oklch(1 0 0 / 0.78);
  border: 1px solid oklch(1 0 0 / 0.62);
  box-shadow:
    inset 0 1px 0 oklch(1 0 0 / 0.85),
    0 5px 14px oklch(0.18 0.04 140 / 0.13);
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.brand-word strong {
  display: block;
  font-size: var(--text-base);
}
.brand-word span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--color-accent);
  transition: right var(--transition-interactive);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}
.nav-links a:hover {
  color: var(--color-text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--color-text);
  background: oklch(from var(--color-surface) l c h / 0.44);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
}
.nav-toggle:hover {
  background: var(--color-surface-offset);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text);
  border: 1px solid oklch(from var(--color-text) l c h / 0.14);
  background: oklch(from var(--color-surface) l c h / 0.44);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  border-color: oklch(from var(--color-text) l c h / 0.22);
}

/* Mobile nav drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  padding: var(--space-24) var(--space-6) var(--space-8);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}
.mobile-drawer[data-open='true'] {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  opacity: 1;
  transform: translateY(0);
}
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  /* Header phone CTA collapses to an icon-only button — full "Call" CTA already lives in the mobile drawer and hero. */
  .nav-actions .btn-primary {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
  }
  .nav-call-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .nav-actions .btn-primary svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
  }
}

@media (max-width: 420px) {
  .brand-word span {
    display: none;
  }
  .nav {
    gap: var(--space-3);
  }
  .nav-actions {
    gap: var(--space-2);
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  min-height: 48px;
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}
.btn-primary {
  border: 1px solid oklch(1 0 0 / 0.2);
  background: linear-gradient(135deg, oklch(from var(--color-accent) l c h / 0.92), oklch(from var(--color-accent-hover) l c h / 0.88));
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  box-shadow:
    inset 0 1px 0 oklch(1 0 0 / 0.3),
    0 9px 20px oklch(0.18 0.04 80 / 0.18);
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-accent);
  color: #1a1207;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #1a1207;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  /* Always placed on fixed-dark brand surfaces (hero, CTA band) — use fixed light values, not the theme-flipping inverse token. */
  background: oklch(1 0 0 / 0.07);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  color: #f4f0e6;
  border: 1.5px solid oklch(from #f4f0e6 l c h / 0.45);
}
.btn-outline:hover {
  background: oklch(from #f4f0e6 l c h / 0.1);
  border-color: oklch(from #f4f0e6 l c h / 0.7);
  color: #f4f0e6;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid oklch(from var(--color-text) l c h / 0.18);
}
.btn-ghost:hover {
  background: var(--color-surface-offset);
  border-color: oklch(from var(--color-text) l c h / 0.3);
}

.btn-block {
  width: 100%;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--color-brand-strong) 0%, var(--color-brand) 62%, var(--color-brand-edge) 100%);
  color: #f4f0e6;
  padding-block: clamp(var(--space-24), 14vw, var(--space-32)) clamp(var(--space-16), 8vw, var(--space-24));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 290px);
  align-items: end;
  gap: var(--space-10);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9c99a;
  margin-bottom: var(--space-5);
}
.hero-location svg {
  width: 14px;
  height: 14px;
  color: #d9c99a;
}

.hero h1 {
  color: #faf7ee;
  max-width: 18ch;
}
.hero h1 em {
  font-style: italic;
  color: #d9c99a;
}

.hero-lede {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  color: oklch(from #faf7ee l c h / 0.82);
  max-width: 52ch;
}

.hero-actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-meta {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  border-top: 1px solid oklch(from #faf7ee l c h / 0.16);
  padding-top: var(--space-8);
  max-width: 46rem;
}
.hero-meta--glass {
  padding: var(--space-6);
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, oklch(1 0 0 / 0.1), oklch(1 0 0 / 0.025));
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.17);
}
.hero-logo-glass {
  align-self: center;
  justify-self: end;
  width: min(100%, 270px);
  padding: var(--space-5);
  border: 1px solid oklch(1 0 0 / 0.32);
  border-radius: 32px;
  background: linear-gradient(135deg, oklch(1 0 0 / 0.92), oklch(1 0 0 / 0.64));
  backdrop-filter: blur(28px) saturate(155%);
  -webkit-backdrop-filter: blur(28px) saturate(155%);
  box-shadow:
    inset 0 1px 0 oklch(1 0 0 / 0.9),
    0 24px 56px oklch(0 0 0 / 0.24);
  transform: rotate(2deg);
}
.hero-logo-glass img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 22px;
}
.hero-meta dt {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9c99a;
  margin-bottom: var(--space-2);
}
.hero-meta dd {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #faf7ee;
}

@media (max-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .hero-logo-glass {
    display: none;
  }
}

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: linear-gradient(135deg, oklch(from var(--color-surface) l c h / 0.84), oklch(from var(--color-surface-2) l c h / 0.48));
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition:
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive),
    border-color var(--transition-interactive);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.42);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: oklch(from var(--color-accent) l c h / 0.4);
}

.service-index {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  font-style: italic;
}

.service-card h3 {
  font-size: var(--text-lg);
}

.service-card p {
  font-size: var(--text-base);
}

.service-list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.08);
}
.service-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-2);
  align-items: baseline;
}
.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Why D's — asymmetric editorial layout
   ============================================================ */
.why-section {
  background: var(--color-surface-offset);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  padding-block: var(--space-2);
}

.why-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-accent);
  line-height: 1;
}

.why-item h3 {
  margin-bottom: var(--space-2);
}
.why-item p {
  font-size: var(--text-base);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Care Plans
   ============================================================ */
.care-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: stretch;
}

.care-copy .lede {
  margin-top: var(--space-5);
}

.care-points {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.care-point {
  display: flex;
  gap: var(--space-4);
}
.care-point svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.care-point h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.care-point p {
  font-size: var(--text-sm);
}

.care-panel {
  background: var(--color-brand-strong);
  color: #f4f0e6;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.care-panel .contour-field {
  opacity: 0.5;
}

.care-panel-content {
  position: relative;
  z-index: 2;
}

.care-tag {
  display: inline-flex;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: oklch(from #faf7ee l c h / 0.12);
  color: #e7d9b3;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.care-panel h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #faf7ee;
  font-weight: 560;
  margin-bottom: var(--space-4);
}

.care-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.care-season {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-top: 1px solid oklch(from #faf7ee l c h / 0.14);
}
.care-season:first-child {
  border-top: none;
}
.care-season dt {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9c99a;
}
.care-season dd {
  font-size: var(--text-sm);
  color: oklch(from #faf7ee l c h / 0.85);
}

@media (max-width: 900px) {
  .care-wrap {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Service Area
   ============================================================ */
.area-section {
  position: relative;
  overflow: hidden;
}

.area-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-10), 6vw, var(--space-16));
  align-items: center;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.area-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
}
.area-chip svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.area-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 44ch;
}

.area-visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(155deg, var(--color-brand-strong), var(--color-brand));
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
}
.area-visual .contour-field {
  opacity: 0.9;
}
.area-visual-label {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  z-index: 2;
  color: #faf7ee;
}
.area-visual-label .eyebrow {
  color: #d9c99a;
}
.area-visual-label p {
  color: oklch(from #faf7ee l c h / 0.82);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
}

.area-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px oklch(from var(--color-accent) l c h / 0.25);
  z-index: 2;
}

@media (max-width: 900px) {
  .area-wrap {
    grid-template-columns: 1fr;
  }
  .area-visual {
    order: -1;
  }
}
@media (max-width: 520px) {
  .area-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Estimate section
   ============================================================ */
.estimate-section {
  background: var(--color-surface-offset);
}

.estimate-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(var(--space-10), 6vw, var(--space-16));
  align-items: start;
}

.estimate-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.contact-card svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: var(--space-1);
}
.contact-card h3 {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}
.contact-card a.contact-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  text-decoration: none;
}
.contact-card a.contact-value:hover {
  color: var(--color-accent);
}
.contact-card p {
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

.estimate-form-panel {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.field .hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--color-border);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  min-height: 48px;
  color: var(--color-text);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-faint);
}

fieldset.field {
  border: none;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.checkbox-chip {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  cursor: pointer;
  transition:
    border-color var(--transition-interactive),
    background var(--transition-interactive);
}
.checkbox-chip:has(input:checked) {
  border-color: var(--color-accent);
  background: var(--color-accent-highlight);
}
.checkbox-chip input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}

.form-footer {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.form-status {
  font-size: var(--text-sm);
  min-height: 1.4em;
}
.form-status[data-state='success'] {
  color: var(--color-success);
}
.form-status[data-state='error'] {
  color: var(--color-error);
}

.form-alt {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.1);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.form-alt a {
  font-weight: 600;
}

@media (max-width: 900px) {
  .estimate-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--color-brand-strong), var(--color-brand));
  color: #f4f0e6;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  margin-inline: var(--space-5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.cta-band-text h2 {
  color: #faf7ee;
  font-size: var(--text-xl);
  max-width: 20ch;
}
.cta-band-text p {
  color: oklch(from #faf7ee l c h / 0.78);
  margin-top: var(--space-3);
  max-width: 42ch;
}
.cta-band-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-brand-strong);
  color: oklch(from #faf7ee l c h / 0.82);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid oklch(from #faf7ee l c h / 0.14);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.footer-brand .brand-mark {
  color: #d9c99a;
}
.footer-brand strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #faf7ee;
  display: block;
}
.footer-brand p {
  font-size: var(--text-sm);
  color: oklch(from #faf7ee l c h / 0.7);
  margin-top: var(--space-2);
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d9c99a;
  margin-bottom: var(--space-4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  color: oklch(from #faf7ee l c h / 0.82);
  text-decoration: none;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.footer-col a:hover {
  color: #faf7ee;
}
.footer-col a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: oklch(from #faf7ee l c h / 0.55);
}
.footer-bottom a {
  color: oklch(from #faf7ee l c h / 0.55);
}
.footer-bottom a:hover {
  color: #faf7ee;
}

/* ============================================================
   Note card (Google profile / photo placeholder guidance — internal, not user-visible content bragging)
   ============================================================ */
.notice-inline {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: var(--color-accent-highlight);
  border: 1px solid oklch(from var(--color-accent) l c h / 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.notice-inline svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   Scroll reveal (opacity/clip-path only — no CLS)
   ============================================================ */
.reveal {
  opacity: 1;
}
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}
@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}

/* ============================================================
   Utility
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
