@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── RESET & ROOT ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink:     #1C1C1A;
  --sage:    #3D5A4A;
  --rust:    #C2552A;
  --gold:    #B8943A;
  --mist:    #8A9B91;
  --warm:    #F5F0E8;
  --stone:   #E8E3D8;
  --sage-lt: #D4E2D8;
  --white:   #FFFFFF;
  --fd: 'Fraunces', Georgia, serif;
  --fb: 'DM Sans', sans-serif;
}

body {
  background: var(--warm);
  font-family: var(--fb);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--fb); }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
.fd { font-family: var(--fd); }
.fw300 { font-weight: 300; }
.fw400 { font-weight: 400; }
.fw500 { font-weight: 500; }

/* ── NAVIGATION ───────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28,28,26,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
}
.logo {
  font-family: var(--fd); font-size: 21px; font-weight: 300;
  letter-spacing: -0.01em; color: var(--ink);
}
.logo em { font-style: italic; color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; color: var(--ink); opacity: 0.5;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { font-weight: 500; }
.nav-cta {
  background: var(--ink) !important; color: #fff !important;
  opacity: 1 !important; padding: 10px 24px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sage) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.2s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--warm); border-bottom: 1px solid rgba(28,28,26,0.08);
  padding: 0 48px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; color: var(--ink); padding: 16px 0;
  border-bottom: 1px solid rgba(28,28,26,0.06); opacity: 0.7;
}
.mobile-menu a:last-child { border-bottom: none; opacity: 1; font-weight: 500; color: var(--sage); }

/* ── UTILITIES ────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--rust); }
.eyebrow.light { color: var(--mist); }
.eyebrow.light::before { background: var(--mist); }

.sh1 {
  font-family: var(--fd); font-size: clamp(40px, 5vw, 60px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.025em;
}
.sh2 {
  font-family: var(--fd); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.02em;
}
.sh3 {
  font-family: var(--fd); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300; line-height: 1.2; letter-spacing: -0.01em;
}
.sh1 em, .sh2 em, .sh3 em { font-style: italic; }
.on-dark { color: #fff; }
.on-dark em { color: var(--mist); }
.sage-em em { color: var(--sage); }
.rust-em strong { color: var(--rust); font-weight: 400; }

.body-lg { font-size: 17px; font-weight: 300; line-height: 1.8; }
.body-md { font-size: 15px; font-weight: 300; line-height: 1.85; }
.body-sm { font-size: 13px; font-weight: 300; line-height: 1.75; }
.muted { color: rgba(28,28,26,0.6); }
.muted-dark { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 500; border: none;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: #2d4437; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--sage); }
.btn-rust { background: var(--rust); color: #fff; }
.btn-rust:hover { background: #a84422; }
.btn-white { background: #fff; color: var(--rust); }
.btn-white:hover { background: var(--warm); }
.btn-white-sage { background: #fff; color: var(--sage); }
.btn-white-sage:hover { background: var(--warm); }
.btn-ghost { background: none; border: 1px solid rgba(28,28,26,0.2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ── SECTION CHROME ───────────────────────────────────────────── */
.section { padding: 96px 48px; }
.section-sm { padding: 64px 48px; }
.section-xs { padding: 40px 48px; }
.bg-ink { background: var(--ink); }
.bg-sage { background: var(--sage); }
.bg-rust { background: var(--rust); }
.bg-stone { background: var(--stone); }
.bg-warm { background: var(--warm); }
.bg-white { background: #fff; }

/* ── CARDS ────────────────────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid rgba(28,28,26,0.07);
  border-radius: 20px; padding: 32px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: 0 12px 40px rgba(28,28,26,0.08); border-color: rgba(28,28,26,0.14); }
.card-stone { background: var(--stone); border-radius: 16px; padding: 28px; }
.card-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px; padding: 32px; }
.card-sage { background: var(--sage); border-radius: 20px; padding: 32px; }

/* ── TAGS ─────────────────────────────────────────────────────── */
.tag { font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 100px; display: inline-block; }
.tag-sage { background: var(--sage-lt); color: var(--sage); }
.tag-rust { background: #F2DDD5; color: var(--rust); }
.tag-gold { background: #F0E8D4; color: var(--gold); }
.tag-stone { background: var(--stone); color: rgba(28,28,26,0.5); }
.tag-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* ── PULL QUOTE ───────────────────────────────────────────────── */
.pull-quote {
  font-family: var(--fd); font-size: 18px; font-weight: 300;
  font-style: italic; line-height: 1.45; padding: 16px 20px;
  border-left: 3px solid var(--sage); color: var(--sage);
  background: var(--sage-lt); border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.pull-quote-dark {
  font-family: var(--fd); font-size: 20px; font-weight: 300;
  font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.4;
  border-left: 3px solid var(--mist); padding-left: 20px;
  margin: 20px 0;
}

/* ── STRAPLINE BAR ────────────────────────────────────────────── */
.strapline-bar {
  background: var(--sage); padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.strapline-bar p {
  font-family: var(--fd); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300; color: rgba(255,255,255,0.9); font-style: italic;
}
.strapline-bar p strong { font-style: normal; font-weight: 400; color: #fff; }
.strapline-bar span { font-size: 12px; color: rgba(255,255,255,0.85); max-width: 220px; text-align: right; line-height: 1.7; }

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  border-radius: 24px; padding: 72px 68px;
  display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center;
}
.cta-banner h2 { font-family: var(--fd); font-size: clamp(28px,3.5vw,44px); font-weight: 300; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-banner h2 em { font-style: italic; }
.cta-banner p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 440px; }
.cta-banner p strong { color: rgba(255,255,255,0.88); font-weight: 400; }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.65); text-align: right; line-height: 1.6; max-width: 190px; font-style: italic; font-family: var(--fd); font-weight: 300; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: var(--ink); padding: 60px 48px 0; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; }
.f-brand .logo { color: #fff; margin-bottom: 16px; display: block; font-size: 20px; }
.f-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 200px; }
.f-col h5 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; font-weight: 500; }
.f-col ul { display: flex; flex-direction: column; gap: 12px; }
.f-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.f-col ul li a:hover { color: #fff; }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin: 48px -48px 0; padding: 24px 48px; display: flex; justify-content: space-between; align-items: center; }
.f-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); }
.f-strapline { font-family: var(--fd); font-size: 13px; font-style: italic; color: rgba(255,255,255,0.8); }

/* ── MANIFESTO ────────────────────────────────────────────────── */
.manifesto-lines { border-top: 1px solid rgba(255,255,255,0.08); }
.m-line { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.m-left { font-family: var(--fd); font-size: clamp(20px,2.2vw,26px); font-weight: 300; color: #fff; line-height: 1.2; letter-spacing: -0.01em; }
.m-left em { font-style: italic; color: var(--mist); }
.m-right { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.75; padding-top: 5px; }
.m-right strong { color: rgba(255,255,255,0.75); font-weight: 400; }

/* ── PROCESS STEPS ────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.how-step { background: #fff; border-radius: 16px; padding: 28px; }
.step-n { font-family: var(--fd); font-size: 40px; font-weight: 300; font-style: italic; color: rgba(28,28,26,0.1); line-height: 1; margin-bottom: 16px; }
.how-step h4 { font-size: 15px; font-weight: 500; margin-bottom: 10px; line-height: 1.3; }
.how-step p { font-size: 13px; color: rgba(28,28,26,0.5); line-height: 1.7; margin-bottom: 18px; }
.not-this { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(194,85,42,0.5); font-weight: 500; margin-bottom: 6px; }
.not-text { font-size: 12px; color: rgba(28,28,26,0.3); font-style: italic; line-height: 1.5; text-decoration: line-through; text-decoration-color: rgba(194,85,42,0.25); }

/* ── SERVICES GRID ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc { border: 1px solid rgba(28,28,26,0.08); border-radius: 20px; padding: 30px; background: #fff; transition: all 0.2s; }
.svc:hover { border-color: var(--sage); box-shadow: 0 8px 28px rgba(28,28,26,0.07); }
.svc-n { font-family: var(--fd); font-style: italic; font-size: 13px; color: rgba(28,28,26,0.18); margin-bottom: 14px; }
.svc-dot { width: 9px; height: 9px; border-radius: 50%; margin-bottom: 14px; }
.svc h3 { font-size: 15px; font-weight: 500; margin-bottom: 12px; }
.svc-out { font-size: 12px; color: rgba(28,28,26,0.3); line-height: 1.6; margin-bottom: 12px; text-decoration: line-through; text-decoration-color: rgba(194,85,42,0.3); }
.svc-outcome { font-size: 13px; color: var(--sage); font-weight: 400; line-height: 1.6; }
.svc-outcome::before { content: '→ '; }

/* ── RESULT CARDS ─────────────────────────────────────────────── */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.result-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 32px; }
.r-context { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; font-weight: 500; }
.r-outcome { font-family: var(--fd); font-size: 19px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.35; margin-bottom: 20px; }
.r-quote { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 24px; padding-left: 14px; border-left: 2px solid rgba(61,90,74,0.5); }
.r-attr { font-size: 12px; color: rgba(255,255,255,0.55); }
.r-attr strong { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); margin-bottom: 2px; }

/* ── USER STORY CARDS ─────────────────────────────────────────── */
.story { border-radius: 24px; overflow: hidden; margin-bottom: 20px; }
.story.dark { background: var(--ink); }
.story.light { background: #fff; border: 1px solid rgba(28,28,26,0.07); }
.story.stone-bg { background: var(--stone); }
.story-top { padding: 40px 40px 32px; display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: start; }
.story-left { display: flex; flex-direction: column; gap: 10px; }
.role-block { margin-top: 8px; padding: 14px 16px; border-radius: 12px; }
.story.dark .role-block { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.story.light .role-block, .story.stone-bg .role-block { background: var(--stone); }
.role-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; }
.story.dark .role-label { color: rgba(255,255,255,0.5); }
.story:not(.dark) .role-label { color: rgba(28,28,26,0.35); }
.role-title { font-size: 13px; font-weight: 500; line-height: 1.3; }
.story.dark .role-title { color: #fff; }
.story:not(.dark) .role-title { color: var(--ink); }
.role-org { font-size: 11px; margin-top: 3px; line-height: 1.4; }
.story.dark .role-org { color: rgba(255,255,255,0.6); }
.story:not(.dark) .role-org { color: rgba(28,28,26,0.45); }
.story-headline { font-family: var(--fd); font-size: clamp(20px,2.2vw,26px); font-weight: 300; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 14px; }
.story.dark .story-headline { color: #fff; }
.story.dark .story-headline em { font-style: italic; color: var(--mist); }
.story:not(.dark) .story-headline { color: var(--ink); }
.story:not(.dark) .story-headline em { font-style: italic; color: var(--sage); }
.defining-line { font-family: var(--fd); font-size: 17px; font-weight: 300; font-style: italic; line-height: 1.45; padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 18px; }
.story.dark .defining-line { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); border-left: 3px solid var(--mist); }
.story:not(.dark) .defining-line { background: var(--sage-lt); color: var(--sage); border-left: 3px solid var(--sage); }
.story-situation { font-size: 14px; font-weight: 300; line-height: 1.75; }
.story.dark .story-situation { color: rgba(255,255,255,0.7); }
.story:not(.dark) .story-situation { color: rgba(28,28,26,0.55); }
.story-body { padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; border-top: 1px solid; padding-top: 28px; margin-top: 0; }
.story.dark .story-body { border-color: rgba(255,255,255,0.07); }
.story:not(.dark) .story-body { border-color: rgba(28,28,26,0.07); }
.col-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.story.dark .col-label { color: rgba(255,255,255,0.5); }
.story:not(.dark) .col-label { color: rgba(28,28,26,0.3); }
.col-text { font-size: 13px; line-height: 1.75; }
.story.dark .col-text { color: rgba(255,255,255,0.7); }
.story:not(.dark) .col-text { color: rgba(28,28,26,0.58); }
.story.dark .col-text strong { color: rgba(255,255,255,0.82); font-weight: 500; }
.story:not(.dark) .col-text strong { color: var(--ink); font-weight: 500; }
.story-bottom { padding: 24px 40px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid; margin-top: 28px; }
.story.dark .story-bottom { border-color: rgba(255,255,255,0.07); }
.story:not(.dark) .story-bottom { border-color: rgba(28,28,26,0.07); }
.outcomes { display: flex; flex-wrap: wrap; gap: 8px; }
.closing-line { font-family: var(--fd); font-size: 14px; font-weight: 300; font-style: italic; line-height: 1.5; max-width: 240px; text-align: right; }
.story.dark .closing-line { color: rgba(255,255,255,0.55); }
.story:not(.dark) .closing-line { color: rgba(28,28,26,0.38); }

/* ── CONTACT FORM ─────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(28,28,26,0.45); }
.form-group input, .form-group textarea {
  background: var(--stone); border: 1px solid rgba(28,28,26,0.12);
  border-radius: 12px; padding: 14px 18px; font-family: var(--fb);
  font-size: 15px; color: var(--ink); outline: none; width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--sage); background: #fff; }
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(28,28,26,0.35); }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success h3 { font-family: var(--fd); font-size: 28px; font-weight: 300; font-style: italic; color: var(--sage); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: rgba(28,28,26,0.6); }

/* ── ARTICLE CARDS ────────────────────────────────────────────── */
.thinking-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
.th-card { border-radius: 18px; padding: 32px; cursor: pointer; transition: opacity 0.2s; }
.th-card:hover { opacity: 0.88; }
.th-featured { background: var(--sage); }
.th-standard { background: #fff; border: 1px solid rgba(28,28,26,0.07); }
.th-tag { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.th-tag::before { content: ''; display: block; width: 14px; height: 1px; }
.th-featured .th-tag { color: rgba(255,255,255,0.45); }
.th-featured .th-tag::before { background: rgba(255,255,255,0.35); }
.th-standard .th-tag { color: var(--mist); }
.th-standard .th-tag::before { background: var(--mist); }
.th-card h4 { font-family: var(--fd); font-weight: 300; line-height: 1.25; margin-bottom: 14px; }
.th-featured h4 { font-size: 22px; color: #fff; font-style: italic; }
.th-standard h4 { font-size: 18px; color: var(--ink); }
.th-card p { font-size: 13px; line-height: 1.65; }
.th-featured p { color: rgba(255,255,255,0.55); }
.th-standard p { color: rgba(28,28,26,0.5); }
.th-read { font-size: 12px; font-weight: 500; margin-top: 24px; }
.th-featured .th-read { color: rgba(255,255,255,0.55); }
.th-standard .th-read { color: var(--sage); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 16px 32px; }
  .nav-links { gap: 24px; }
  .section { padding: 72px 32px; }
  .section-sm { padding: 48px 32px; }
  .strapline-bar { padding: 28px 32px; }
  footer { padding: 48px 32px 0; grid-template-columns: 1fr 1fr; gap: 36px; }
  .f-bottom { margin: 36px -32px 0; padding: 20px 32px; }
  .cta-banner { padding: 56px 48px; }
  .manifesto-lines .m-line { grid-template-columns: 1fr; gap: 16px; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .thinking-grid { grid-template-columns: 1fr 1fr; }
  .story-top { grid-template-columns: 1fr; }
  .story-body { grid-template-columns: 1fr; }
  .story-bottom { flex-direction: column; align-items: flex-start; }
  .closing-line { text-align: left; }
}

@media (max-width: 768px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { padding: 0 24px; }
  .section { padding: 56px 24px; }
  .section-sm { padding: 40px 24px; }
  .section-xs { padding: 28px 24px; }
  .strapline-bar { padding: 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .strapline-bar span { text-align: left; max-width: 100%; }
  .cta-banner { padding: 40px 28px; grid-template-columns: 1fr; gap: 32px; }
  .cta-right { align-items: flex-start; }
  footer { padding: 40px 24px 0; grid-template-columns: 1fr 1fr; gap: 28px; }
  .f-bottom { margin: 28px -24px 0; padding: 18px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .how-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .thinking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-proof { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 20px; }
  footer { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; }
}

/* ── ACCESSIBILITY ADDITIONS ──────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Improve muted text contrast to pass WCAG AA */
.muted { color: rgba(28,28,26,0.65); }
.muted-dark { color: rgba(255,255,255,0.6); }
.body-sm.muted { color: rgba(28,28,26,0.65); }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── COOKIE BANNER ────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--ink); border-top: 3px solid var(--sage);
  padding: 20px 48px; display: flex; align-items: center;
  gap: 32px; flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
  transform: translateY(0); transition: transform 0.3s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.65; flex: 1; min-width: 260px; margin: 0;
}
.cookie-banner p a { color: var(--mist); text-decoration: underline; }
.cookie-banner p strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept { background: var(--sage); color: #fff; border: none; padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: var(--fb); transition: background 0.2s; }
.btn-cookie-accept:hover { background: #2d4437; }
.btn-cookie-decline { background: none; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.2); padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: var(--fb); transition: all 0.2s; }
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.45); color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
  .cookie-banner { padding: 20px 24px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}
