/* =========================================================================
   TRUST TRANSFER METHOD — styles.css
   ========================================================================= */

/* ----------------------------- TOKENS ----------------------------------- */
:root {
  --ink:        #0f1117;
  --ink-mid:    #2d3142;
  --sage:       #6b8f71;
  --sage-light: #eef3ef;
  --muted:      #5a6070;
  --rule:       #e2e4ea;
  --rose:       #b5736a;
  --amber:      #c49a2b;
  --bg:         #f9f9fb;
  --white:      #ffffff;

  --card-dark:  #1a1f2e;
  --footer-bg:  #080b0f;
  --rose-light: #f7efee;
  --muted-light:#9aa5a8;

  --maxw: 860px;

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

  --radius-card: 8px;
  --radius-btn: 4px;

  --nav-h: 68px;
}

/* ----------------------------- RESET ------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-mid);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* ----------------------------- LAYOUT ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container--narrow { max-width: 720px; }

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

/* ----------------------------- BUTTONS ---------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  text-align: center;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn--primary:hover { background: #5c7d62; border-color: #5c7d62; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--full { width: 100%; }
.btn--large { font-size: 17px; padding: 16px 36px; }

/* ----------------------------- SECTION HEADINGS ------------------------- */
.section__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.section__headline {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section__headline--light { color: var(--white); }

.section__sub {
  font-size: 17px;
  color: var(--muted-light);
  line-height: 1.6;
  max-width: 600px;
  margin-top: 20px;
}

.section__sub--dark {
  color: var(--muted);
  font-style: italic;
}

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .3s ease, box-shadow .3s ease;
}

.nav.is-solid {
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .18s ease;
}
.nav__link:hover { color: #fff; }

.nav__cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius-btn);
  font-weight: 700;
}
.nav__cta:hover { background: #5c7d62; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  background: var(--ink);
  padding: 12px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__drawer.is-open { display: flex; }

.nav__drawer-link {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__drawer-cta {
  margin-top: 16px;
  background: var(--sage);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-btn);
  border-bottom: 0;
  font-weight: 700;
}
.nav__drawer-phone {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted-light);
}
.nav__drawer-phone a { color: var(--sage); }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(15, 17, 23, 0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.015em;
}

.hero__sub {
  font-size: 18px;
  color: var(--muted-light);
  max-width: 560px;
  margin: 28px auto 0;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}

.hero__trust {
  font-size: 13px;
  color: var(--muted-light);
  margin-top: 28px;
}
.hero__trust a { color: var(--sage); font-weight: 600; }

/* ========================================================================
   STAT BAR
   ======================================================================== */
.statbar {
  background: var(--sage);
}
.statbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .04em;
  color: #ccdacc;
  text-transform: uppercase;
}

/* ========================================================================
   SECTION 3 — PROBLEM
   ======================================================================== */
.section--problem { background: var(--bg); }

.prose {
  margin-top: 28px;
  max-width: 720px;
}
.prose p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
}
.prose p + p { margin-top: 24px; }

.mirror-question {
  font-size: 17px;
  font-style: italic;
  color: var(--sage);
  text-align: center;
  max-width: 680px;
  margin: 40px auto 0;
  line-height: 1.6;
}

.practice-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  margin: 32px auto 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 720px;
}
.practice-types span:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: var(--rule);
}

/* ========================================================================
   SECTION 4 — METHOD
   ======================================================================== */
.guide-callout {
  background: var(--sage-light);
  border-left: 4px solid var(--sage);
  padding: 24px 24px 24px 20px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  max-width: 680px;
  margin: 32px auto 0;
}
.guide-callout p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.65;
}
.guide-callout p + p { margin-top: 12px; }
.guide-callout strong { color: var(--ink); }

.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.stage-card {
  background: var(--card-dark);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius-card);
  padding: 24px;
}
.stage-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--sage);
}
.stage-card__title {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
}
.stage-card__body {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.6;
}

.method-closing {
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  text-align: center;
  margin: 48px auto 0;
  max-width: 640px;
  line-height: 1.5;
}

/* ========================================================================
   SECTION 5 — CASE STUDY
   ======================================================================== */
.section--case {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.section--case__texture {
  position: absolute;
  inset: 0;
  background-image: url("images/practice-ambient.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}
.section--case .container { position: relative; z-index: 1; }

.callout {
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-top: 28px;
}
.callout p { line-height: 1.65; }
.callout p + p { margin-top: 12px; }

.callout--rose {
  background: var(--rose-light);
  border-left: 4px solid var(--rose);
}
.callout--rose p { font-size: 16px; color: var(--ink-mid); }
.callout--rose strong { color: var(--rose); }

.callout--ink {
  background: var(--ink);
  padding: 28px 32px;
  margin: 48px auto 0;
  max-width: 680px;
  text-align: center;
}
.callout--ink p { font-size: 17px; color: var(--white); }
.callout--ink strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 4px;
}

.case-subhead {
  margin-top: 44px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 20px;
}
.case-card--sage { background: var(--sage-light); }
.case-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.case-card__body {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
}

.case-cta {
  text-align: center;
  margin-top: 32px;
}
.case-cta a {
  color: var(--sage);
  font-weight: 600;
  font-size: 16px;
}
.case-cta a:hover { text-decoration: underline; }

/* ========================================================================
   SECTION 6 — OFFER
   ======================================================================== */
.section--offer { background: var(--sage-light); }

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.price-card {
  background: var(--white);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15,17,23,.06);
}
.price-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-top: 12px;
}
.price-card__per {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}
.price-card__sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.price-card__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-mid);
  margin-top: 24px;
}
.checklist { margin-top: 12px; }
.checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 10px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-weight: 700;
}
.checklist--addon li::before {
  content: "◦";
  color: var(--amber);
  font-size: 18px;
  line-height: 1.2;
}

.not-included {
  background: var(--rose-light);
  color: var(--rose);
  font-style: italic;
  font-size: 15px;
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius-card);
  margin: 32px auto 0;
  max-width: 720px;
  line-height: 1.55;
}

.offer-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========================================================================
   SECTION 7 — WHO THIS IS FOR
   ======================================================================== */
.fit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.fit-col__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fit-col__label--sage { color: var(--sage); }
.fit-col__label--rose { color: var(--rose); }

.fit-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: rgba(255,255,255,.88);
}
.fit-list--yes li::before {
  content: "·";
  position: absolute;
  left: 6px;
  top: -2px;
  color: var(--sage);
  font-size: 24px;
  line-height: 1.1;
}
.fit-list--no li {
  color: var(--ink-mid);
}
.fit-list--no li::before {
  content: "·";
  position: absolute;
  left: 6px;
  top: -2px;
  color: var(--rose);
  font-size: 24px;
  line-height: 1.1;
}

.fit-col--wrong {
  background: var(--rose-light);
  border-radius: var(--radius-card);
  padding: 24px;
  align-self: start;
}

.fit-closing {
  font-size: 16px;
  font-style: italic;
  color: var(--muted-light);
  text-align: center;
  margin: 32px auto 0;
  max-width: 640px;
  line-height: 1.6;
}

/* ========================================================================
   SECTION 8 — ABOUT
   ======================================================================== */
.section--about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.about-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-body p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
}
.about-body p + p { margin-top: 18px; }
.about-positioning {
  color: var(--sage) !important;
  font-style: italic;
  margin-top: 24px !important;
}

/* ========================================================================
   SECTION 9 — FAQ
   ======================================================================== */
.section--faq .section__headline { margin-bottom: 20px; }

.faq { margin-top: 24px; }
.faq__item { border-bottom: 1px solid var(--card-dark); }

.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--sage);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.faq__icon::before { /* horizontal */
  top: 8px; left: 0;
  width: 18px; height: 2px;
}
.faq__icon::after { /* vertical */
  left: 8px; top: 0;
  width: 2px; height: 18px;
}
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.faq__a p {
  padding: 0 0 22px;
  font-size: 16px;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 640px;
}

/* ========================================================================
   SECTION 10 — CONTACT FORM
   ======================================================================== */
.section--contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  margin-top: 8px;
  align-items: start;
}
.contact-intro .section__headline { margin-bottom: 18px; }
.contact-intro__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 6px;
}
.field__optional { font-weight: 400; color: var(--muted); }

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-mid);
  padding: 12px;
}
.field textarea { resize: vertical; min-height: 96px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 1px var(--sage);
}

.field.has-error input,
.field.has-error select {
  border-color: var(--rose);
}
.field__error {
  display: none;
  font-size: 13px;
  color: var(--rose);
  margin-top: 6px;
}
.field.has-error .field__error { display: block; }

/* custom checkbox */
.field--checkbox { margin-top: 6px; }
.checkbox-label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: var(--ink-mid);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.checkbox-label__box {
  width: 22px;
  height: 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-btn);
  background: var(--white);
  position: relative;
  transition: background-color .15s ease, border-color .15s ease;
}
.checkbox-label__box::after {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 6px; height: 11px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .15s ease;
}
.checkbox-label input:checked + .checkbox-label__box {
  background: var(--sage);
  border-color: var(--sage);
}
.checkbox-label input:checked + .checkbox-label__box::after { transform: rotate(45deg) scale(1); }
.checkbox-label input:focus-visible + .checkbox-label__box {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.contact-form button[type="submit"] { margin-top: 8px; }

.form-success {
  margin-top: 18px;
  background: var(--sage-light);
  border-left: 4px solid var(--sage);
  color: var(--ink-mid);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius-card);
}

/* ========================================================================
   SECTION 11 — CALENDLY
   ======================================================================== */
.section--calendly { background: var(--sage-light); }
.section--calendly .section__sub { margin-bottom: 32px; }
.calendly-inline-widget {
  margin-top: 8px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
}

/* ========================================================================
   SECTION 12 — FINAL CTA
   ======================================================================== */
.section--final { text-align: center; }
.final__headline {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.final__sub {
  font-size: 17px;
  color: var(--muted-light);
  max-width: 560px;
  margin: 24px auto 36px;
  line-height: 1.6;
}
.final__phone {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted-light);
}
.final__phone a { color: var(--sage); font-weight: 600; }
.final__reassurance {
  margin-top: 16px;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--footer-bg);
  padding: 40px 0 32px;
}
.footer__row--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
}
.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color .15s ease;
}
.footer__links a:hover { color: #fff; }

.footer__row--bottom {
  margin-top: 16px;
  text-align: center;
}
.footer__row--bottom p {
  font-size: 12px;
  color: #3a3f4a;
  line-height: 1.6;
}
.footer__row--bottom a { color: #3a3f4a; }
.footer__row--bottom a:hover { color: var(--muted); }
.js-phone a { color: inherit; }

/* ========================================================================
   RESPONSIVE — 768px breakpoint
   ======================================================================== */
@media (max-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* nav */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* hero */
  .hero__headline { font-size: 36px; }
  .hero__sub { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

  /* stat bar */
  .statbar__inner { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .stat__num { font-size: 42px; }

  /* headings */
  .section__headline { font-size: 30px; }
  .final__headline { font-size: 30px; }

  /* method */
  .stages { grid-template-columns: 1fr; }

  /* case study */
  .case-grid { grid-template-columns: 1fr; }

  /* offer */
  .pricing { grid-template-columns: 1fr; }

  /* fit */
  .fit-cols { grid-template-columns: 1fr; }

  /* about */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { max-width: 320px; }

  /* contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* tap targets */
  .btn { padding: 15px 28px; }
  .footer__row--top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .practice-types { font-size: 13px; }
  .price-card { padding: 22px; }
}

/* ========================================================================
   REDUCED MOTION
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
