/* ============================================================
   Speak Forward — editorial conversation club
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --teal: #0F4C5C;
  --teal-deep: #0c3a47;
  --aqua: #3DDCBE;
  --mint: #CFF7F2;
  --bg: #F9FBFA;
  --ink: #1E1E1E;
  --muted: #51605c;
  --line: rgba(15, 76, 92, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --pad: clamp(24px, 7vw, 120px);
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- shared type ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.kicker .num, .kicker > * { white-space: nowrap; }
.kicker .num { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0; opacity: 0.75; text-transform: none; }
.kicker--light { color: var(--aqua); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; margin: 0; }
.display { font-size: clamp(44px, 6.4vw, 84px); line-height: 1.02; }
.h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.07; }
.h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; }
em.accent { font-style: italic; color: var(--teal); }
.lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6; color: var(--muted); font-weight: 300; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans); font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em;
  padding: 16px 32px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn--solid { background: var(--teal); color: #fff; }
.btn--solid:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(15,76,92,0.5); }
.btn--aqua { background: var(--aqua); color: var(--teal); font-weight: 600; }
.btn--aqua:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(61,220,190,0.6); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--text { background: none; border: none; padding: 16px 4px; color: var(--ink); }
.btn--text:hover { color: var(--teal); }
.btn--text .arrow { transition: transform .25s ease; }
.btn--text:hover .arrow { transform: translateX(5px); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- layout ---------- */
section { position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section-pad { padding-top: clamp(80px, 11vw, 168px); padding-bottom: clamp(80px, 11vw, 168px); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- placeholders / image slots ---------- */
image-slot { background: #e6efed; }
.cap {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal); opacity: 0.55; margin-top: 12px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.scrolled { background: rgba(249,251,250,0.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding-top: 16px; padding-bottom: 16px; }
.nav__word { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--teal); line-height: 1.05; }
.nav__links { display: flex; align-items: center; gap: 38px; }
.nav__links a { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); position: relative; padding: 4px 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--teal); transition: width .3s ease; }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 28px; }
.nav__cta { font-size: 13px; padding: 11px 22px; }
.nav__burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.6); cursor: pointer; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 16px; height: 1.5px; background: var(--teal); position: relative; }
.nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--teal); transition: transform .3s ease; }
.nav__burger span::before { top: -5px; } .nav__burger span::after { top: 5px; }

/* mobile menu */
.mmenu { position: fixed; inset: 0; z-index: 99; background: var(--bg); transform: translateY(-100%); transition: transform .5s cubic-bezier(.7,0,.2,1); display: flex; flex-direction: column; justify-content: center; padding: var(--pad); }
.mmenu.open { transform: translateY(0); }
.mmenu a { font-family: var(--serif); font-size: clamp(34px, 9vw, 60px); color: var(--teal); padding: 10px 0; border-bottom: 1px solid var(--line); }
.mmenu .btn { margin-top: 36px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 96px; }
.hero__grid { display: grid; grid-template-columns: 1.04fr 0.96fr; min-height: 86vh; }
.hero__left { padding: clamp(40px, 6vw, 96px) clamp(32px, 5vw, 80px) clamp(40px, 6vw, 80px) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.hero__h { margin: 26px 0 0; }
.hero__sub { max-width: 440px; margin: 28px 0 40px; }
.hero__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__right { position: relative; }
.hero__right image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__tag { position: absolute; left: 26px; bottom: 26px; background: rgba(249,251,250,0.92); backdrop-filter: blur(6px); padding: 13px 18px; font-size: 12px; letter-spacing: 0.04em; color: var(--teal); z-index: 2; }

/* schedule marquee strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--bg); }
.strip__track { display: flex; gap: 64px; white-space: nowrap; padding: 16px 0; animation: marquee 32s linear infinite; width: max-content; }
.strip__track span { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--teal); display: inline-flex; align-items: center; gap: 64px; }
.strip__track span::after { content: '✺'; font-style: normal; font-size: 12px; color: var(--aqua); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ============================================================
   GENERIC SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 720px; }
.sec-head .kicker { margin-bottom: 26px; }
.sec-head .lead { margin-top: 26px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* What This Is — statement */
.statement .big { font-family: var(--serif); font-size: clamp(28px, 3.8vw, 50px); line-height: 1.22; font-weight: 400; max-width: 1000px; letter-spacing: -0.01em; }
.statement .big b { font-weight: 500; color: var(--teal); font-style: italic; }
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: clamp(48px, 6vw, 84px); border: 1px solid var(--line); }
.triad > div { background: var(--bg); padding: clamp(28px, 3vw, 44px); }
.triad .num { font-family: var(--serif); font-style: italic; color: var(--aqua); font-size: 22px; }
.triad h3 { margin: 14px 0 8px; }
.triad p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* Difference — editorial list */
.diff-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.diff-list { display: grid; gap: 0; }
.diff-item { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: baseline; padding: 26px 0; border-top: 1px solid var(--line); }
.diff-item:last-child { border-bottom: 1px solid var(--line); }
.diff-item .idx { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--teal); opacity: 0.6; }
.diff-item .txt { font-family: var(--serif); font-size: clamp(20px, 2.1vw, 28px); font-weight: 500; line-height: 1.25; }
.diff-item .sub { display: block; font-family: var(--sans); font-size: 14.5px; font-weight: 300; color: var(--muted); margin-top: 8px; line-height: 1.55; }

/* Who For — checklist + image */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(19px, 1.9vw, 25px); font-weight: 500; line-height: 1.3; }
.checklist li:first-child { border-top: 1px solid var(--line); }
.tick { width: 30px; height: 30px; border-radius: 50%; background: var(--mint); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex: none; margin-top: 4px; }
.who-img { position: relative; }
.who-img image-slot { width: 100%; height: clamp(380px, 46vw, 600px); }

/* ============================================================
   OFFER + GUARANTEE — deep teal
   ============================================================ */
.dark { background: var(--teal); color: #fff; }
.dark .kicker { color: var(--aqua); }
.dark .lead { color: rgba(255,255,255,0.78); }
.offer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.offer h2 { color: #fff; }
.offer h2 em { font-style: italic; color: var(--aqua); }
.offer p { color: rgba(255,255,255,0.8); max-width: 460px; margin: 28px 0 0; }
.guarantee { border: 1px solid rgba(61,220,190,0.4); border-radius: 4px; padding: clamp(32px, 4vw, 52px); position: relative; background: rgba(61,220,190,0.05); }
.guarantee .seal { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--aqua); letter-spacing: 0.02em; }
.guarantee .g-h { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 34px); color: #fff; margin: 16px 0 18px; line-height: 1.18; }
.guarantee p { color: rgba(255,255,255,0.82); font-size: 16px; margin: 0; }
.guarantee .stamp { position: absolute; top: clamp(24px,3vw,40px); right: clamp(24px,3vw,40px); width: 76px; height: 76px; border: 1px solid rgba(61,220,190,0.5); border-radius: 50%; display: grid; place-items: center; text-align: center; font-size: 10px; letter-spacing: 0.08em; color: var(--aqua); text-transform: uppercase; line-height: 1.3; }

/* ============================================================
   PRICING
   ============================================================ */
.price-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(40px, 5vw, 72px); }
.card {
  border: 1px solid var(--line); border-radius: 6px; padding: clamp(28px, 2.6vw, 42px);
  background: #fff; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(15,76,92,0.32); border-color: rgba(15,76,92,0.28); }
.card__name { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--teal); }
.card__freq { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.card__price { display: flex; align-items: baseline; gap: 4px; margin: 26px 0 22px; }
.card__price .amt { font-family: var(--serif); font-size: clamp(44px, 4.4vw, 58px); font-weight: 500; letter-spacing: -0.02em; }
.card__price .per { font-size: 15px; color: var(--muted); }
.card__feat { list-style: none; margin: 0 0 32px; padding: 24px 0 0; border-top: 1px solid var(--line); display: grid; gap: 14px; flex: 1; }
.card__feat li { display: grid; grid-template-columns: auto 1fr; gap: 12px; font-size: 15px; color: var(--ink); align-items: start; }
.card__feat li .d { color: var(--aqua); margin-top: 1px; }
.card--feature { background: var(--teal); border-color: var(--teal); transform: translateY(-12px); }
.card--feature:hover { transform: translateY(-18px); box-shadow: 0 30px 60px -28px rgba(15,76,92,0.5); }
.card--feature .card__name, .card--feature .card__price .amt { color: #fff; }
.card--feature .card__freq, .card--feature .card__price .per { color: rgba(255,255,255,0.7); }
.card--feature .card__feat { border-top-color: rgba(255,255,255,0.2); }
.card--feature .card__feat li { color: rgba(255,255,255,0.92); }
.card--feature .card__feat li .d { color: var(--aqua); }
.card__badge { align-self: flex-start; white-space: nowrap; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); background: var(--aqua); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; font-weight: 500; }
.price-note { text-align: center; margin-top: 36px; font-size: 14px; color: var(--muted); }

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(40px, 5vw, 72px); }
.step { background: var(--bg); padding: clamp(30px, 3vw, 48px) clamp(24px, 2.4vw, 36px); display: flex; flex-direction: column; gap: 16px; min-height: 240px; }
.step__n { font-family: var(--serif); font-style: italic; font-size: 40px; color: var(--aqua); line-height: 1; }
.step h3 { font-size: 21px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* ============================================================
   SCHEDULE
   ============================================================ */
.sched-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.sched-list { display: grid; gap: 0; }
.sched-row { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 22px 0; border-top: 1px solid var(--line); }
.sched-row:last-child { border-bottom: 1px solid var(--line); }
.sched-row .day { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; }
.sched-row .time { font-size: 15px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.sched-row .time .live { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 4px rgba(61,220,190,0.18); }
.sched-note { font-size: 13px; color: var(--muted); margin-top: 20px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-intro .big { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 44px); line-height: 1.26; font-weight: 400; max-width: 1040px; letter-spacing: -0.01em; }
.about-intro .big b { color: var(--teal); font-weight: 500; font-style: italic; }
.approach-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.approach-list { list-style: none; margin: 0; padding: 0; }
.approach-list li { padding: 24px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: baseline; }
.approach-list li:last-child { border-bottom: 1px solid var(--line); }
.approach-list .n { font-family: var(--serif); font-style: italic; color: var(--teal); opacity: 0.6; font-size: 16px; }
.approach-list .t { font-family: var(--serif); font-size: clamp(19px, 1.9vw, 25px); font-weight: 500; }
.approach-list .s { display: block; font-family: var(--sans); font-weight: 300; font-size: 14.5px; color: var(--muted); margin-top: 6px; }

/* Founder */
.founder-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.founder-img image-slot { width: 100%; height: clamp(420px, 44vw, 560px); }
.founder blockquote { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 38px); font-weight: 400; line-height: 1.28; margin: 24px 0 0; letter-spacing: -0.01em; }
.founder .name { margin-top: 30px; font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--teal); }
.founder .role { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* Coaches */
.coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(40px, 5vw, 64px); }
.coach image-slot { width: 100%; height: auto; aspect-ratio: 4/5; }

/* production <img> equivalents (used by index.html) */
.hero__right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.who-img img { width: 100%; height: clamp(380px, 46vw, 600px); object-fit: cover; display: block; border-radius: 6px; }
.founder-img img { width: 100%; height: clamp(420px, 44vw, 560px); object-fit: cover; display: block; border-radius: 6px; }
/* honeypot — visually hidden, kept in layout flow so bots still see + fill it */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.coach__media { width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 6px; background: var(--mint, #e8efee); }
.coach__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* normalize framing so all three read as comparable head-and-shoulders portraits */
.coach__media img.fr-caro { object-position: 50% 32%; transform: scale(1.04); }
.coach__media img.fr-chris { object-position: 50% 30%; transform: scale(1.5); transform-origin: 50% 30%; }
.coach__media img.fr-vicky { object-position: 50% 24%; transform: scale(1.16); transform-origin: 50% 24%; }
.coach .cname { font-family: var(--serif); font-size: 19px; margin-top: 16px; }
.coach .cmeta { font-size: 13px; color: var(--muted); margin-top: 2px; }
.expect { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(40px, 5vw, 64px); }
.expect > div { padding-top: 24px; border-top: 1px solid var(--teal); }
.expect h3 { font-size: 19px; margin-bottom: 10px; }
.expect p { margin: 0; color: var(--muted); font-size: 15px; }

/* ============================================================
   FINAL CTA — mint
   ============================================================ */
.finalcta { background: var(--mint); text-align: center; }
.finalcta h2 { color: var(--teal); max-width: 16ch; margin: 0 auto; }
.finalcta h2 em { font-style: italic; }
.finalcta .lead { color: #2f5b63; max-width: 540px; margin: 26px auto 40px; }

/* ============================================================
   CONTACT + FOOTER
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 9px; }
.field label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px; font-weight: 300; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 12px 2px; transition: border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--teal); }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.phone-row { display: flex; gap: 14px; align-items: end; }
.phone-row .cc { flex: 0 0 auto; max-width: 180px; }
.phone-row input { flex: 1; min-width: 0; }
.footer__bottom a:hover { color: #fff; }
.form-msg { font-size: 14px; color: var(--teal); min-height: 20px; }

.footer { background: var(--teal); color: rgba(255,255,255,0.78); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(48px, 6vw, 80px); }
.footer__word { font-family: var(--serif); font-size: 30px; font-weight: 600; color: #fff; }
.footer__tag { margin-top: 16px; max-width: 320px; font-size: 15px; }
.footer h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--aqua); font-weight: 500; margin: 0 0 18px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.78); font-size: 15px; padding: 6px 0; margin: 0; transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 26px 0 34px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; }
.footer__langs { display: flex; gap: 8px; align-items: center; }
.footer__langs span { border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 4px 12px; font-size: 12px; letter-spacing: 0.1em; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__right { height: 56vh; min-height: 380px; }
  .hero__left { padding: 40px var(--pad) 48px; }
  .diff-grid, .who-grid, .offer-grid, .sched-grid, .approach-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .triad, .price-grid, .steps, .coach-grid, .expect, .footer__top { grid-template-columns: 1fr 1fr; }
  .card--feature, .card--feature:hover { transform: none; }
  .founder-img, .who-img { order: -1; }
}
@media (max-width: 680px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .triad, .price-grid, .steps, .coach-grid, .expect, .footer__top, .field-row { grid-template-columns: 1fr; }
  .price-head { align-items: flex-start; }
  body { font-size: 16px; }
}
