/* ==========================================================================
   Sapling Fertilizer — saplingfertilizer.co.za
   Design system: warm cream base · deep soil dark · brand orange accent
   Type: Fraunces (display) + Inter (body)
   ========================================================================== */

:root {
  /* Colour */
  --orange:        #E9530D;
  --orange-deep:   #C94409;
  --orange-tint:   #FBE9DD;
  --cream:         #FAF7F1;
  --paper:         #FFFFFF;
  --ink:           #1E1B16;
  --soil:          #181410;
  --soil-2:        #221D17;
  --grey:          #6B655D;
  --line:          #E7E0D4;
  --cream-on-dark: #F5F0E6;
  --muted-on-dark: #B5AC9D;
  --line-on-dark:  rgba(245, 240, 230, 0.14);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --radius: 20px;
  --radius-lg: 28px;
  --section: clamp(72px, 9vw, 128px);
  --nav-h: 100px;
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

::selection { background: var(--orange); color: #fff; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.hidden { display: none !important; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.35;
}

p + p { margin-top: 1em; }

strong { color: var(--ink); font-weight: 600; }

.lead {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.mb-0 { margin-bottom: 0; }

/* ---------- Layout ---------- */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section { padding: var(--section) 0; }

.section--paper { background: var(--paper); }

.section--dark {
  background: var(--soil);
  color: var(--muted-on-dark);
}
.section--dark h2, .section--dark h3 { color: var(--cream-on-dark); }
.section--dark h4 { color: var(--cream-on-dark); }
.section--dark strong { color: var(--cream-on-dark); }

.section__header {
  max-width: 780px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section__header h2 { margin-bottom: 18px; }
.section__header h3 { margin-bottom: 14px; }
.section__header h2:last-child { margin-bottom: 0; }

/* ---------- Buttons & links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1;
  padding: 17px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.22s ease, border-color 0.22s ease,
              color 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-deep); }

.btn--secondary { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--secondary:hover { border-color: var(--ink); }

.btn--ghost-light { border-color: rgba(245, 240, 230, 0.35); color: var(--cream-on-dark); background: transparent; }
.btn--ghost-light:hover { border-color: var(--cream-on-dark); }

.btn--small { padding: 12px 22px; font-size: 14.5px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.text-link {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: var(--orange);
  margin-top: 22px;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 4px; }

.section-cta { margin-top: clamp(32px, 4vw, 48px); }
.section-cta .text-link { margin-top: 0; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--soil);
  box-shadow: 0 1px 0 rgba(245, 240, 230, 0.08);
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__logo img { height: 84px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  white-space: nowrap;
}
.nav__links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream-on-dark);
  opacity: 0.92;
  transition: opacity 0.2s ease;
  padding: 6px 0;
}
.nav__links a:hover { opacity: 1; }
.nav__links a.active { opacity: 1; position: relative; }
.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Products dropdown */
.nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-h);
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -28px;
  min-width: 230px;
  background: var(--soil);
  border: 1px solid var(--line-on-dark);
  border-top: 0;
  padding: 8px 0 10px;
  display: none;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  display: block;
}
.nav__dropdown a {
  display: block;
  padding: 11px 28px;
  font-size: 15px;
}

.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream-on-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Home hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--soil);
  color: var(--muted-on-dark);
  overflow: hidden;
}

.hero__bg,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__bg img { object-fit: cover; object-position: center 65%; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(24, 20, 16, 0.55) 0%, rgba(24, 20, 16, 0.15) 20%, rgba(24, 20, 16, 0) 36%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 64px);
}

.hero__panel {
  display: block;
  width: fit-content;
  background: var(--soil);
  border-radius: 64px var(--radius) var(--radius) var(--radius);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 60px);
  max-width: 760px;
}

.hero__content h1 {
  color: #fff;
  max-width: 13ch;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero__panel h1:last-child { margin-bottom: 0; }

.hero__lead {
  max-width: 560px;
  color: var(--cream-on-dark);
  font-size: clamp(17px, 1.6vw, 20px);
}

/* Stat strip embedded at the bottom of the hero */
.hero__stats {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 7vw, 88px);
  background: var(--soil);
  border-top: 1px solid var(--line-on-dark);
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 28px 0 34px;
}
.stat__title {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.8vw, 24px);
  color: #fff;
  margin-bottom: 6px;
}
.stat__body { font-size: 15px; line-height: 1.55; }

/* ---------- Subpage hero ---------- */

.page-hero {
  padding: calc(var(--nav-h) + clamp(56px, 8vw, 104px)) 0 clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 18ch;
  text-wrap: balance;
  font-size: clamp(38px, 4.8vw, 62px);
}
.page-hero__btn { margin-top: 28px; }

.page-hero__lead {
  max-width: 640px;
  margin-top: 24px;
  font-size: clamp(17px, 1.5vw, 19px);
}

/* ---------- Split (text + media) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split h2 { margin-bottom: 22px; }
.split h3 { margin-bottom: 14px; }

/* Offset frame behind the photo — the cover motif carried over from the
   original landing page. Soil-dark block on cream sections; orange on
   white and dark sections. */
.split__media {
  position: relative;
  isolation: isolate;
}
.split__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -8px 8px 8px -8px;
  border-radius: 64px var(--radius) var(--radius) var(--radius);
  background: var(--soil);
}
.section--paper .split__media::before,
.section--dark .split__media::before { background: var(--orange); }

.split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: 64px var(--radius) var(--radius) var(--radius);
}

.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child { order: 1; }

/* Two-column prose (no media) */
.cols-2 h3 { margin-bottom: 14px; }
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
}

/* ---------- Numbered feature grid ---------- */

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 4vw, 56px) clamp(40px, 5vw, 72px);
}
.features--3 { grid-template-columns: repeat(3, 1fr); }

.feature {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.section--dark .feature { border-top-color: var(--line-on-dark); }

.feature__num {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.feature h4 { font-size: 19px; margin-bottom: 10px; }
.feature p { font-size: 16px; }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.cards--3 { grid-template-columns: repeat(3, 1fr); margin-top: 0; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(30, 27, 22, 0.18);
}

.card .icon-chip { width: 52px; height: 52px; margin-bottom: 22px; }

.card__tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-tint);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 12px; }
.card p { font-size: 16px; }

/* Reference cards */
.ref-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(30, 27, 22, 0.18);
}
.ref-card__type {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.ref-card h3 { font-size: 21px; margin-bottom: 10px; }
.ref-card p { font-size: 15.5px; }
.ref-card__source { margin-top: 14px; font-size: 13.5px; opacity: 0.75; }
.ref-card .text-link { margin-top: auto; padding-top: 18px; font-size: 15px; }

/* ---------- Big stat (the 60% moment) ---------- */

.bigstat {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.bigstat__number {
  font-family: var(--font-display);
  font-size: clamp(110px, 16vw, 220px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--orange);
}
.bigstat__caption {
  margin-top: 18px;
  font-size: 16px;
  max-width: 34ch;
}

/* 40 / 60 split bar */
.lossbar { margin-top: clamp(40px, 5vw, 56px); }
.lossbar__track {
  display: flex;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
}
.lossbar__absorbed {
  flex: 0 0 40%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
}
.lossbar__lost {
  flex: 1;
  background: var(--soil-2);
  border: 1px solid var(--line-on-dark);
  border-left: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-on-dark);
  font-weight: 600;
  font-size: 14.5px;
}
.lossbar__legend {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  font-size: 14px;
}

/* ---------- FAQ accordion ---------- */

.faq { max-width: 840px; }

.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--orange); }
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 28px; max-width: 70ch; }
.faq__item a { color: var(--orange); font-weight: 500; }
.faq__item a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Field notes ---------- */

.note {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding: clamp(36px, 5vw, 56px) 0;
}
.note:last-of-type { border-bottom: 1px solid var(--line); }

.note__meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  padding-top: 8px;
}
.note h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 16px;
}
.note p { max-width: 70ch; }
.note__source { font-size: 14px; opacity: 0.75; margin-top: 18px; }

/* ---------- CTA card ---------- */

.cta { padding-bottom: var(--section); }

.cta__card {
  position: relative;
  overflow: hidden;
  background: var(--soil);
  border-radius: 96px var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 6vw, 96px);
  text-align: center;
}
.cta__card h2 {
  color: #fff;
  max-width: 22ch;
  margin: 0 auto 18px;
  text-wrap: balance;
}
.cta__card p {
  color: var(--muted-on-dark);
  max-width: 56ch;
  margin: 0 auto;
}
.cta__card .btn { margin-top: 36px; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.form,
.form-success {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__field { margin-bottom: 20px; }
.form__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.req { color: var(--orange); margin-left: 2px; }

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.form__field textarea { min-height: 150px; resize: vertical; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--paper);
}

.form__error {
  color: #B3330E;
  background: var(--orange-tint);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 18px;
}

.form__submit .btn { width: 100%; }

.form-success h3 { margin-bottom: 12px; }

/* Honeypot — visually removed, still in the DOM for bots */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-info { padding-top: 8px; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info__item { margin-top: 28px; }
.contact-info__label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.contact-info__item a {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--ink);
}
.contact-info__item a:hover { color: var(--orange); }

/* ---------- Footer ---------- */

.footer {
  background: var(--soil);
  color: var(--muted-on-dark);
  padding: clamp(56px, 7vw, 88px) 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.footer__logo-stacked { width: 150px; }

.footer h4 {
  color: var(--cream-on-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 15.5px;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer ul a:hover { opacity: 1; color: var(--orange); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 28px;
  font-size: 13.5px;
  opacity: 0.7;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .ref-card, .btn { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199px) {
  .nav__links { gap: 24px; }
}

@media (max-width: 1024px) {

  /* Nav — overlay menu (hamburger): horizontal nav can't fit the larger logo below this width */
  .nav__toggle { display: flex; }
  .nav__links,
  .nav__cta { display: none; }

  .nav.is-open {
    background: var(--soil);
  }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--soil);
    padding: 24px clamp(20px, 4vw, 48px) 40px;
    overflow-y: auto;
  }
  .nav.is-open .nav__links a {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-on-dark);
    opacity: 1;
  }
  .nav.is-open .nav__links a.active { color: var(--orange); }
  .nav.is-open .nav__links a.active::after { display: none; }

  /* Products dropdown flattens into indented sub-links in the overlay menu */
  .nav__item--dropdown { display: block; height: auto; position: static; }
  .nav__dropdown {
    display: block;
    position: static;
    border: 0;
    min-width: 0;
    padding: 0 0 0 22px;
  }
  .nav.is-open .nav__dropdown a {
    font-family: var(--font-body);
    font-size: 18px;
    padding: 13px 0;
  }
  .nav.is-open .nav__cta {
    display: block;
    position: fixed;
    left: clamp(20px, 4vw, 48px);
    right: clamp(20px, 4vw, 48px);
    bottom: 32px;
  }
  .nav.is-open .nav__cta .btn { width: 100%; }
}

@media (max-width: 767px) {

  body { font-size: 16px; }

  /* Hero */
  .hero { min-height: 88svh; }
  .hero__stats-grid { grid-template-columns: 1fr; gap: 20px; padding: 24px 0 28px; }

  /* Grids collapse */
  .split,
  .cols-2,
  .features,
  .cards,
  .cards--3,
  .bigstat,
  .contact-grid { grid-template-columns: 1fr; }

  .split { gap: 28px; }
  .split--reverse > :first-child { order: 1; }
  .split--reverse > :last-child { order: 2; }
  .split__media::before { inset: -6px 6px 6px -6px; }
  .split__media::before,
  .split__media img { border-radius: 48px 16px 16px 16px; }
  .split__media img { aspect-ratio: 4 / 3; }

  .cta__card { border-radius: 64px var(--radius-lg) var(--radius-lg) var(--radius-lg); }

  .note { grid-template-columns: 1fr; gap: 10px; }
  .note__meta { padding-top: 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }

  .btn-row .btn { width: 100%; }
}
