/* ============================================================
   UNTALENTED GENIUS, LLC — shared styles
   Palette drawn from the founder's portrait: magenta + coral
   on warm paper, cool-grey accents. Signature: the "reframe"
   wordmark — "Untalented" struck through so "Genius" remains.
   ============================================================ */

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

:root {
  --ink:      #241019;   /* deep warm plum-black text            */
  --ink-soft: #5b4650;   /* muted body text                      */
  --paper:    #FBF5F1;   /* warm off-white background            */
  --paper-2:  #F4EBE4;   /* slightly deeper warm panel           */
  --mist:     #E7E4E8;   /* cool grey (photo backdrop nod)       */
  --magenta:  #E01B76;   /* hot pink jacket                      */
  --magenta-d:#B7135E;   /* darker magenta for hover/contrast    */
  --coral:    #FF5836;   /* coral blazer                         */
  --gold:     #C99A3F;   /* her ring — used sparingly            */
  --white:    #ffffff;

  --maxw: 1180px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);

  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --shadow: 0 24px 60px -28px rgba(36,16,25,.45);
  --shadow-sm: 0 10px 30px -18px rgba(36,16,25,.4);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.04; letter-spacing: -.015em; margin: 0; }
.eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--magenta);
  margin: 0 0 1.1rem;
}
.eyebrow.on-dark { color: #ffb3d4; }

/* ---------- the signature wordmark ---------- */
/* "Untalented" sits muted; "Genius" carries the accent color. */
.mark { font-family: var(--f-display); font-weight: 700; letter-spacing: -.02em; line-height: .95; white-space: nowrap; }
.mark .strike { color: var(--ink-soft); }
.mark .keep { color: var(--magenta); }
.mark.on-dark .strike { color: rgba(255,255,255,.6); }
.mark.on-dark .keep { color: #ff8fbc; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-primary { background: var(--magenta); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--magenta-d); transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: var(--ink); }
.btn-coral:hover { background: #ff4218; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--paper); border-color: rgba(255,255,255,.55); }
.btn-ghost.on-dark:hover { background: var(--paper); color: var(--ink); }
.btn .arw { transition: transform .18s ease; }
.btn:hover .arw { transform: translateX(3px); }

.textlink {
  font-weight: 600; color: var(--magenta); text-decoration: none;
  border-bottom: 2px solid rgba(224,27,118,.28); padding-bottom: 2px;
  transition: border-color .18s ease;
}
.textlink:hover { border-color: var(--magenta); }

/* ---------- proportionate media (never skews) ---------- */
/* Every image lives in a fixed-ratio frame; object-fit:cover scales
   uniformly and crops instead of distorting. */
.media { overflow: hidden; border-radius: var(--radius); background: var(--mist); line-height: 0; position: relative; }
.media img, .media svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.ar-wide { aspect-ratio: 16 / 10; }
.ar-3x2  { aspect-ratio: 3 / 2; }
.ar-4x3  { aspect-ratio: 4 / 3; }
.ar-square { aspect-ratio: 1 / 1; }
.ar-portrait { aspect-ratio: 4 / 5; }

/* ---------- real logo lockup ---------- */
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand-icon { height: 42px; width: auto; display: block; flex-shrink: 0; }
.brand-word { font-family: var(--f-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -.01em; color: var(--ink); line-height: 1.05; }
.brand-word em { font-style: normal; color: var(--magenta); }

.foot-logo { height: 76px; width: auto; display: block; margin-bottom: 1rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,245,241,.86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(36,16,25,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { text-decoration: none; font-size: 1.28rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: .98rem; color: var(--ink);
  padding: .3rem 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--magenta); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- generic section ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.2vw, 3rem); }
.lead { font-size: 1.2rem; color: var(--ink-soft); }

.panel-paper2 { background: var(--paper-2); }
.panel-mist { background: var(--mist); }
.panel-ink { background: var(--ink); color: var(--paper); }
.panel-ink .lead, .panel-ink .section-title { color: var(--paper); }

/* ---------- hero (home) ---------- */
.hero { padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { font-size: clamp(2.9rem, 6.4vw, 5.1rem); font-weight: 600; }
.hero .mark { font-size: clamp(2.9rem, 6.4vw, 5.1rem); display: inline-block; }
.hero-sub { margin: 1.6rem 0 2.2rem; font-size: 1.2rem; color: var(--ink-soft); max-width: 34ch; }
.hero-tagline {
  display: inline-block; margin-top: 1.6rem; font-family: var(--f-display); font-style: italic;
  font-weight: 500; font-size: 1.18rem; color: var(--ink);
}
.hero-tagline b { font-style: normal; color: var(--magenta); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* hero media — proportionate scene, color-blocked accent (no distortion) */
.hero-media { position: relative; justify-self: center; width: min(100%, 480px); }
.hero-media::before {
  content: ""; position: absolute; inset: 20px -20px -20px 20px;
  background: linear-gradient(150deg, var(--coral), var(--magenta));
  border-radius: var(--radius); z-index: 0;
}
.hero-media .media { position: relative; z-index: 1; box-shadow: var(--shadow); }
.hero-media .chip {
  position: absolute; z-index: 2; bottom: -14px; left: -14px;
  background: var(--paper); color: var(--ink);
  padding: .75rem 1.1rem; border-radius: 14px; box-shadow: var(--shadow-sm);
  font-size: .82rem; line-height: 1.3; font-weight: 600; max-width: 62%;
}
.hero-media .chip { display: flex; flex-direction: column; gap: .15rem; }
.hero-media .chip .chip-sub { color: var(--magenta); font-weight: 700; }

/* ---------- audience cards ---------- */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.aud-card {
  background: var(--white); border-radius: var(--radius); padding: 0 0 1.9rem;
  border: 1px solid rgba(36,16,25,.07); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none; color: inherit; display: block;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.aud-card .aud-media { aspect-ratio: 3 / 2; border-radius: 0; margin-bottom: 1.3rem; }
.aud-card .aud-media::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--magenta); }
.aud-card:nth-child(2) .aud-media::after { background: var(--coral); }
.aud-card:nth-child(3) .aud-media::after { background: var(--gold); }
.aud-card h3 { font-size: 1.5rem; margin-bottom: .5rem; padding-inline: 1.7rem; }
.aud-card p, .aud-card .go { margin-inline: 1.7rem; }
.aud-card p { color: var(--ink-soft); font-size: .98rem; margin-top: 0; margin-bottom: 1.1rem; }
.aud-card .go { display: block; font-weight: 600; color: var(--magenta); font-size: .95rem; }

/* ---------- services list ---------- */
.svc-groups { display: grid; gap: 1.25rem; }
.svc-group {
  background: var(--white); border: 1px solid rgba(36,16,25,.08);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid; grid-template-columns: 220px 1.4fr 1fr; gap: clamp(1.2rem,3vw,2.4rem);
  align-items: center;
}
.svc-group .svc-media { aspect-ratio: 3 / 2; }
.svc-group .num { font-family: var(--f-display); font-size: 2.6rem; color: var(--coral); font-weight: 600; line-height: 1; }
.svc-group h3 { font-size: 1.65rem; margin-bottom: .4rem; }
.svc-group .grp-lead { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.svc-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 2rem; }
.svc-list li { break-inside: avoid; padding: .5rem 0 .5rem 1.6rem; position: relative; font-weight: 500; }
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: .95rem; width: 9px; height: 9px;
  border-radius: 50%; background: var(--magenta);
}
.svc-foot { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* feature blocks (microschool / lab teasers) */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.feature {
  border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.feature.magenta { background: linear-gradient(160deg, var(--magenta), var(--magenta-d)); color: #fff; }
.feature.ink { background: var(--ink); color: var(--paper); }
.feature .tag {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 700;
  padding: .3rem .7rem; border-radius: 999px; align-self: flex-start; margin-bottom: 1rem;
}
.feature.magenta .tag { background: rgba(255,255,255,.2); }
.feature.ink .tag { background: var(--coral); color: var(--ink); }
.feature h3 { font-size: 1.9rem; margin-bottom: .6rem; }
.feature p { opacity: .92; margin: 0 0 1.4rem; }
.feature .flink { margin-top: auto; font-weight: 600; text-decoration: none; color: #fff; border-bottom: 2px solid rgba(255,255,255,.5); align-self: flex-start; padding-bottom: 2px; }
.feature.magenta .flink { color: #fff; }
.feature.ink .flink { color: var(--coral); border-color: rgba(255,88,54,.5); }

/* ---------- big quote / movement ---------- */
.movement { text-align: center; }
.movement .q {
  font-family: var(--f-display); font-weight: 500; font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  line-height: 1.18; max-width: 20ch; margin: 0 auto 1.6rem; letter-spacing: -.01em;
}
.movement .q em { font-style: italic; color: var(--coral); }
.movement .attr { font-weight: 600; letter-spacing: .04em; opacity: .8; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.4rem; }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding-block: 3.5rem 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.foot-brand .mark { font-size: 1.5rem; }
.foot-brand p { color: rgba(251,245,241,.7); margin: 1rem 0 0; max-width: 32ch; font-size: .96rem; }
.foot-col h4 { font-family: var(--f-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--coral); margin: 0 0 1rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: .6rem; }
.foot-col a { text-decoration: none; color: rgba(251,245,241,.8); font-size: .96rem; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(251,245,241,.15); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .84rem; color: rgba(251,245,241,.55); }

/* ---------- interior page hero ---------- */
.page-hero { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 600; }
.page-hero .lead { margin-top: 1.2rem; max-width: 46ch; }

/* ---------- about ---------- */
.bio-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.bio-portrait { position: relative; }
.bio-portrait .media { box-shadow: var(--shadow); position: relative; z-index: 1; }
.bio-portrait::after {
  content: ""; position: absolute; inset: 22px -18px -18px 22px; z-index: 0;
  background: linear-gradient(150deg, var(--coral), var(--magenta)); border-radius: var(--radius);
}
.bio-portrait .chip {
  position: absolute; z-index: 2; bottom: -14px; left: -14px;
  background: var(--paper); color: var(--ink); padding: .75rem 1.1rem; border-radius: 14px;
  box-shadow: var(--shadow-sm); font-size: .82rem; line-height: 1.3; font-weight: 600;
}
.bio-portrait .chip span { display: block; color: var(--magenta); font-weight: 700; }
.bio-body p { margin: 0 0 1.15rem; color: var(--ink-soft); }
.bio-body p strong { color: var(--ink); }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: .5rem; }
.value { background: var(--white); border-radius: var(--radius); padding: 1.6rem; border: 1px solid rgba(36,16,25,.07); }
.value .vi { font-family: var(--f-display); font-size: 1.6rem; color: var(--magenta); font-weight: 700; }
.value h3 { font-size: 1.2rem; margin: .5rem 0 .4rem; }
.value p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- speaking ---------- */
.topic-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.topic { background: var(--white); border-radius: var(--radius); padding: 1.8rem; border: 1px solid rgba(36,16,25,.08); }
.topic .ksig { font-family: var(--f-display); font-weight: 700; color: var(--coral); font-size: 1.1rem; }
.topic h3 { font-size: 1.4rem; margin: .5rem 0 .5rem; }
.topic p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.format-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.format { text-align: center; padding: 1.8rem 1.4rem; border-radius: var(--radius); background: var(--paper); border: 1px solid rgba(36,16,25,.08); }
.format h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.format p { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.takeaways { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem 2rem; }
.takeaways li { padding-left: 2rem; position: relative; font-weight: 500; }
.takeaways li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--coral); font-weight: 700; }

/* ---------- microschool ---------- */
.focus-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; }
.focus { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(36,16,25,.07); }
.focus .fnum { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; color: var(--coral); }
.focus h3 { font-size: 1.15rem; margin: .5rem 0 .35rem; }
.focus p { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.path-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.path { border-radius: var(--radius); padding: 1.9rem 1.7rem; background: var(--white); border: 1px solid rgba(36,16,25,.08); display: flex; flex-direction: column; }
.path .plabel { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 700; color: var(--magenta); margin-bottom: .6rem; }
.path h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.path p { color: var(--ink-soft); font-size: .95rem; margin: 0 0 1.3rem; }
.path .btn { margin-top: auto; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.form-card { background: var(--white); border-radius: var(--radius); padding: clamp(1.7rem,3vw,2.5rem); box-shadow: var(--shadow-sm); border: 1px solid rgba(36,16,25,.06); }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid rgba(36,16,25,.18); border-radius: 12px; background: var(--paper);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(224,27,118,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-aside p { color: var(--ink-soft); }
.contact-aside .ci { margin: 1.4rem 0; }
.contact-aside .ci h4 { font-family: var(--f-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--magenta); margin: 0 0 .3rem; }
.contact-aside .ci a { color: var(--ink); text-decoration: none; font-weight: 600; }
.form-note { font-size: .84rem; color: var(--ink-soft); margin-top: .5rem; }
.form-success { display: none; background: var(--paper-2); border-radius: var(--radius); padding: 2rem; text-align: center; }
.form-success h3 { color: var(--magenta); margin-bottom: .5rem; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card { background: var(--white); border: 1px solid rgba(36,16,25,.08); border-radius: var(--radius); padding: 1.7rem; display: flex; flex-direction: column; }
.testi-quote { font-family: var(--f-display); font-size: 1.08rem; line-height: 1.5; color: var(--ink); margin: 0 0 1.3rem; }
.testi-quote::before { content: "\201C"; color: var(--coral); font-weight: 700; }
.testi-who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--mist); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-name { font-weight: 700; font-size: .92rem; }
.testi-role { font-size: .82rem; color: var(--ink-soft); }
.testi-note { font-size: .82rem; color: var(--ink-soft); text-align: center; margin-top: 1.5rem; opacity: .75; }

/* ---------- compact lead-capture strip ---------- */
.lead-strip { background: var(--white); border: 1px solid rgba(36,16,25,.08); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.4rem); display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; box-shadow: var(--shadow-sm); }
.lead-strip h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.lead-strip p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.lead-strip form { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.lead-strip .field { margin: 0; }
.lead-strip .field.full, .lead-strip button { grid-column: 1 / -1; }
.lead-strip .form-note { grid-column: 1/-1; margin-top: -.2rem; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) and (min-width: 901px) {
  .svc-group { grid-template-columns: 200px 1fr; }
  .svc-group .svc-media { grid-column: 1 / -1; aspect-ratio: 3 / 1.3; order: -1; }
}

@media (max-width: 900px) {
  .brand-icon { height: 34px; }
  .brand-word { font-size: 1.05rem; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--paper); padding: 1.2rem var(--gut) 1.6rem; gap: 1rem; border-bottom: 1px solid rgba(36,16,25,.1);
    box-shadow: var(--shadow-sm);
  }
  .site-header.open .nav-cta .btn { display: inline-flex; }
  .hero-grid, .bio-grid, .form-grid { grid-template-columns: 1fr; }
  .portrait { order: -1; }
  .aud-grid, .values, .topic-grid, .format-row, .path-grid, .feature-grid, .testi-grid { grid-template-columns: 1fr; }
  .lead-strip { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .svc-group { grid-template-columns: 1fr; }
  .svc-group .svc-media { aspect-ratio: 16 / 9; order: -1; }
  .svc-list { columns: 1; }
  .takeaways { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (max-width: 520px) {
  .focus-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-band .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
