/* =====================================================================
   Gärtnerei Kleensang – Design System
   Botanical editorial · Fir green + terracotta on warm paper
   ===================================================================== */

:root {
  /* palette */
  --green-900: #1c2f22;
  --green-800: #26402d;
  --green-700: #32543a;   /* primary */
  --green-600: #436e4c;
  --green-500: #5a8862;
  --sage-300: #c7d4bd;
  --sage-200: #dbe4d0;
  --sage-100: #e9efe0;

  --clay-700: #8f4526;
  --clay-600: #a8532f;    /* accent */
  --clay-500: #c06b40;
  --gold-500: #c39a54;

  --paper:   #f6f1e6;     /* page bg */
  --paper-2: #fdfaf3;     /* cards / raised */
  --paper-3: #efe8d8;

  --ink:      #221e16;
  --ink-soft: #4f4839;
  --ink-mute: #756c58;
  --line:     rgba(34, 30, 22, .13);
  --line-2:   rgba(34, 30, 22, .07);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1160px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(28,47,34,.06), 0 4px 14px rgba(28,47,34,.06);
  --shadow-md: 0 8px 30px rgba(28,47,34,.12);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--clay-600); text-decoration: none; }
a:hover { color: var(--clay-700); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--green-900); letter-spacing: -.01em; margin: 0 0 .5em; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

/* paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: var(--ink-soft); }
.muted { color: var(--ink-mute); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--clay-500);
}
.eyebrow.is-center { justify-content: center; }

.h-xl { font-size: clamp(2.3rem, 5.4vw, 4rem); }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.section-head { max-width: 640px; margin: 0 0 clamp(38px, 5vw, 60px); }
.section-head.is-center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  --pad: .92em 1.5em;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  padding: var(--pad); border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s var(--ease), color .25s, box-shadow .25s;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green-700); color: #fbf9f2; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-800); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--clay-600); color: #fdf4ee; box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--clay-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: rgba(50,84,58,.35); color: var(--green-800); background: transparent; }
.btn--ghost:hover { background: var(--green-700); color: #fff; border-color: var(--green-700); transform: translateY(-2px); }
.btn--lg { --pad: 1.05em 1.85em; font-size: 1.02rem; }
.btn--light { background: #fbf9f2; color: var(--green-900); }
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { border-color: rgba(255,255,255,.5); color: #fbf9f2; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,241,230,.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px rgba(28,47,34,.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--green-900); }
.brand:hover { color: var(--green-900); }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; letter-spacing: -.01em; }
.brand-text span { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink-soft); font-weight: 500; font-size: .95rem;
  padding: .55em .85em; border-radius: 999px; position: relative; transition: color .2s;
}
.nav a:hover { color: var(--green-800); }
.nav a.is-active { color: var(--green-800); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: .28em; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--clay-600);
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--green-800); font-size: .95rem;
}
.header-phone svg { width: 17px; height: 17px; color: var(--clay-600); }
.header-phone:hover { color: var(--clay-700); }

.nav-toggle { display: none; }
.icon-btn {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px; background: var(--paper-2); color: var(--green-800); cursor: pointer;
}
.icon-btn svg { width: 22px; height: 22px; }

/* mobile drawer */
.scrim { position: fixed; inset: 0; background: rgba(28,32,24,.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 70; }
.scrim.is-open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100%; width: min(88vw, 360px);
  background: var(--paper-2); z-index: 80; padding: 22px; transform: translateX(105%);
  transition: transform .38s var(--ease); display: flex; flex-direction: column; gap: 6px;
  box-shadow: -12px 0 40px rgba(28,47,34,.16);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-nav a { color: var(--ink-soft); font-weight: 500; padding: .85em .4em; border-bottom: 1px solid var(--line-2); font-size: 1.05rem; }
.mobile-nav a.is-active { color: var(--clay-600); }
.mobile-nav .btn { margin-top: 16px; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #eef1e4 0%, var(--paper) 62%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; padding: clamp(56px, 8vw, 104px) 0 clamp(60px, 8vw, 100px); }
.hero-copy { max-width: 620px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 600; margin-bottom: .32em; }
.hero h1 em { font-style: italic; color: var(--clay-600); }
.hero .u { position: relative; white-space: nowrap; }
.hero .u::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .28em;
  background: linear-gradient(90deg, rgba(195,154,84,.55), rgba(192,107,64,.45));
  border-radius: 3px; z-index: -1;
}
.hero-lead { font-size: clamp(1.06rem, 1.7vw, 1.28rem); color: var(--ink-soft); max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-meta li { display: flex; align-items: center; gap: .6em; font-size: .92rem; color: var(--ink-soft); font-weight: 500; }
.hero-meta svg { width: 19px; height: 19px; color: var(--green-600); flex: none; }

/* hero visual: layered botanical medallion */
.hero-visual { position: relative; align-self: stretch; min-height: 380px; display: flex; align-items: center; justify-content: center; }
.hero-medallion { width: min(100%, 460px); aspect-ratio: 1; position: relative; }
.hero-medallion .frame {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 20%, #fdfaf2, #eef1e3 70%, #e3e8d6);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(50,84,58,.12);
  overflow: hidden;
}
.hero-badge {
  position: absolute; z-index: 3; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.hero-badge .n { font-family: var(--font-display); font-size: 1.9rem; color: var(--clay-600); line-height: 1; }
.hero-badge .t { font-size: .78rem; color: var(--ink-soft); line-height: 1.25; }
.hero-badge--tl { top: 6%; left: -4%; }
.hero-badge--br { bottom: 8%; right: -5%; }

/* =====================================================================
   Reveal animations
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .28s; }
.reveal[data-d="4"] { transition-delay: .38s; }
.reveal[data-d="5"] { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* =====================================================================
   Intro / story split
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split-media { order: 2; }
.story-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  aspect-ratio: 4/5; box-shadow: var(--shadow-md);
}
.story-figure .caption {
  position: absolute; left: 22px; bottom: 22px; right: 22px; color: #f4f0e4;
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1.3; z-index: 2;
}
.pull { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: var(--green-800); line-height: 1.35; border-left: 3px solid var(--clay-500); padding-left: 22px; margin: 0 0 1.2em; }

/* =====================================================================
   Service editorial rows
   ===================================================================== */
.services { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 96px); }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
.svc-row:nth-child(even) .svc-art { order: 2; }
.svc-copy .num { font-family: var(--font-display); font-size: .95rem; color: var(--clay-600); letter-spacing: .05em; }
.svc-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: .18em; }
.svc-list { margin-top: 1.1em; display: grid; gap: .55em; }
.svc-list li { display: flex; gap: .7em; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.svc-list svg { width: 18px; height: 18px; color: var(--green-600); flex: none; margin-top: .28em; }
.svc-art {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--paper-2); border: 1px solid var(--line); aspect-ratio: 5/4;
  display: flex; align-items: center; justify-content: center; padding: 8px;
}
.svc-art svg { width: 100%; height: 100%; }

/* =====================================================================
   Feature grid (bespoke, not a plain card stack)
   ===================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile {
  position: relative; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px 28px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.tile::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--clay-500);
  transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.tile:hover::before { transform: scaleY(1); }
.tile .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-100); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tile .ic svg { width: 24px; height: 24px; color: var(--green-700); }
.tile h3 { font-size: 1.25rem; margin-bottom: .3em; }
.tile p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* =====================================================================
   Since-1965 band (dark)
   ===================================================================== */
.band { background: var(--green-900); color: #eef1e5; position: relative; overflow: hidden; }
.band::after {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background:
    radial-gradient(60% 80% at 88% -10%, rgba(195,154,84,.16), transparent 60%),
    radial-gradient(50% 70% at 6% 110%, rgba(90,136,98,.28), transparent 60%);
}
.band .eyebrow { color: var(--gold-500); }
.band .eyebrow::before { background: var(--gold-500); }
.band h2 { color: #f6f2e6; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; position: relative; z-index: 2; }
.stat { padding: 8px 0; }
.stat .n { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: #fff; line-height: 1; }
.stat .n span { color: var(--gold-500); }
.stat .l { color: #c9d2c1; font-size: .95rem; margin-top: .4em; }

/* =====================================================================
   Process / steps
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 54px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0; font-family: var(--font-display); font-size: 1.05rem; color: #fff;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: var(--green-700); border-radius: 50%;
}
.step::after {
  content: ""; position: absolute; top: 18px; left: 46px; right: -10px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.12rem; margin-bottom: .2em; }
.step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* =====================================================================
   Seasonal strip
   ===================================================================== */
.season { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.season-card {
  border-radius: var(--radius-lg); padding: 22px 20px 24px; border: 1px solid var(--line);
  background: var(--paper-2); position: relative; overflow: hidden;
}
.season-card .s-ic { width: 38px; height: 38px; color: var(--green-600); margin-bottom: 14px; }
.season-card h3 { font-size: 1.1rem; margin-bottom: .25em; }
.season-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.season-card .tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-600); font-weight: 600; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta {
  background: linear-gradient(155deg, var(--clay-600), var(--clay-700));
  color: #fdf4ee; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 68px) clamp(28px, 5vw, 64px);
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.cta::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 260px; height: 260px; opacity: .16;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 6C40 30 20 34 20 58a30 30 0 0 0 60 0c0-24-20-28-30-52z' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
}
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta p { color: #f7e6dc; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.info-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--sage-100); display: flex; align-items: center; justify-content: center; }
.info-row .ic svg { width: 21px; height: 21px; color: var(--green-700); }
.info-row .k { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.info-row .v { color: var(--ink); font-weight: 500; }
.info-row .v a { color: var(--green-800); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table th, .hours-table td { text-align: left; padding: 7px 0; font-size: .95rem; border-bottom: 1px solid var(--line-2); }
.hours-table th { font-weight: 500; color: var(--ink-soft); }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }

/* form */
.form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: .96rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(67,110,76,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 4px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); }
.check input { width: auto; margin-top: 4px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 26px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.2) sepia(.08); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--green-900); color: #cdd6c6; padding: clamp(56px, 7vw, 84px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-grid h4 { color: #f2eee2; font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .04em; margin-bottom: 1em; }
.footer-brand .brand-text strong { color: #f4f0e4; }
.footer-brand .brand-text span { color: #9aa892; }
.footer-brand p { font-size: .92rem; color: #a9b39f; margin-top: 16px; max-width: 34ch; }
.footer-links { display: grid; gap: .6em; }
.footer-links a { color: #bcc6b2; font-size: .94rem; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; font-size: .92rem; margin-bottom: .8em; color: #bcc6b2; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green-500); flex: none; margin-top: .25em; }
.footer-contact a { color: #bcc6b2; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: #93a089;
}
.footer-bottom a { color: #93a089; }
.footer-bottom a:hover { color: #fff; }

/* =====================================================================
   Page hero (subpages)
   ===================================================================== */
.page-hero { background: linear-gradient(180deg, #eef1e4, var(--paper)); padding: clamp(52px, 7vw, 92px) 0 clamp(30px, 4vw, 48px); border-bottom: 1px solid var(--line-2); position: relative; overflow: hidden; }
.breadcrumb { font-size: .82rem; color: var(--ink-mute); margin-bottom: 14px; }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--clay-600); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); max-width: 16ch; }
.page-hero p { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--ink-soft); max-width: 56ch; margin-top: .3em; }

/* prose */
.prose { max-width: 720px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2em; list-style: none; }
.prose ul li { position: relative; padding-left: 1.4em; margin-bottom: .5em; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--clay-500); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 940px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; order: -1; }
  .hero-medallion { width: min(74%, 360px); }
  .split, .svc-row, .contact-grid { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-art, .split--reverse .split-media { order: 0; }
  .grid-3, .stats { grid-template-columns: repeat(2, 1fr); }
  .steps, .season { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .grid-3, .stats, .steps, .season, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge--tl { left: 0; }
  .hero-badge--br { right: 0; }
  .header-cta .btn--accent { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
