@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");

:root {
  --ink: #162236;
  --muted: #647386;
  --paper: #ffffff;
  --wash: #f4fbfd;
  --blue: #4f66a3;
  --blue-2: #283d73;
  --navy: #171c3f;
  --orange: #ff9a3d;
  --green: #3f9678;
  --line: rgba(22, 34, 54, 0.12);
  --shadow: 0 24px 60px rgba(22, 34, 54, 0.16);
  --radius: 8px;
  --title-font:
    "Michroma", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 251, 253, 0.8), rgba(255, 255, 255, 0) 420px),
    var(--paper);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  font: inherit;
}

main {
  flex: 1 0 auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(22, 34, 54, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(22, 34, 54, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--blue-2);
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #32415b;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--blue-2);
}

.site-nav a.is-active {
  opacity: 1;
  color: var(--blue-2);
}

.site-nav a.is-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.header-cta,
.button,
.contact-line,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 26px rgba(79, 102, 163, 0.22);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--blue-2);
  padding: 8px;
  justify-self: end;
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: clamp(590px, 78svh, 790px);
  padding: clamp(54px, 8vw, 94px) max(18px, calc((100% - 1120px) / 2));
  color: #fff;
  background: var(--navy);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background: url("assets/ice-bath.jpg") center / cover;
  transform: scale(1.02);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(14, 20, 42, 0.86), rgba(14, 20, 42, 0.44) 56%, rgba(14, 20, 42, 0.18)),
    linear-gradient(180deg, rgba(14, 20, 42, 0.22), rgba(14, 20, 42, 0.62));
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(730px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 8.5rem);
  line-height: 0.9;
  color: #fff;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.header-cta:hover,
.contact-line:hover,
.floating-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(255, 154, 61, 0.28);
}

.button.secondary {
  color: var(--blue-2);
  background: #fff;
  border-color: rgba(79, 102, 163, 0.24);
}

.button.secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 0;
}

.hero-facts div {
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.35;
}

.method-strip {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(42px, 5vw, 62px) 0;
}

.method-chip {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(22, 34, 54, 0.08);
  color: var(--blue-2);
  font-weight: 900;
  text-align: center;
}

.method-chip img {
  width: 74px;
  height: 58px;
  object-fit: contain;
}

.split-section,
.two-column-section,
.trinity-section,
.contact-section {
  padding-left: max(18px, calc((100% - 1120px) / 2));
  padding-right: max(18px, calc((100% - 1120px) / 2));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(32px, 7vw, 78px);
  align-items: center;
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
  background: var(--wash);
}

.split-section.reverse {
  background: #fff;
}

.section-media.framed {
  position: relative;
}

.section-media.framed::before {
  content: none;
  display: none;
}

.section-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#about .section-media.framed::before {
  display: none;
}

#about .section-media.framed::after {
  content: none;
  display: none;
}

#about .section-media img {
  z-index: 1;
  box-shadow: var(--shadow);
}

.copy-block {
  max-width: 720px;
  min-width: 0;
}

h2 {
  margin: 0;
  color: var(--blue-2);
  font-family: var(--title-font);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.contact-hero h1,
.wim-hero h1,
.buteyko-hero h1,
.oa-hero h1,
.talks-hero h1,
.online-hero h1 {
  font-family: var(--title-font);
  font-weight: 400;
  line-height: 1.08;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
}

p {
  line-height: 1.72;
}

.copy-block p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 1040px;
  margin: 0 auto 36px;
  text-align: center;
  min-width: 0;
}

.section-heading h2 {
  margin: 0 auto;
  max-width: 980px;
}

.split-section .copy-block h2 {
  max-width: 760px;
  font-size: clamp(1.6rem, 2.75vw, 2.5rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-grid article,
.feature-card,
.info-panel,
.review-grid figure {
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.1);
}

.benefit-grid article {
  min-height: 250px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(79, 102, 163, 0.92), rgba(23, 28, 63, 0.95)),
    var(--blue);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.benefit-grid article:hover {
  transform: translateY(-7px);
  background:
    linear-gradient(145deg, rgba(79, 102, 163, 0.98), rgba(23, 28, 63, 1)),
    var(--blue);
  box-shadow: 0 28px 62px rgba(22, 34, 54, 0.22);
}

.benefit-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--orange);
}

.benefit-grid h3 {
  color: #fff;
}

.benefit-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.quote-band {
  padding: clamp(34px, 5vw, 48px) 18px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 28, 63, 0.94), rgba(79, 102, 163, 0.94)),
    var(--blue);
  text-align: center;
}

.quote-band p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
}

.step-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.step-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 950;
}

.step-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.feature-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 44px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(23, 28, 63, 0.12), rgba(23, 28, 63, 0.92)),
    url("assets/IMG_4957-scaled.jpg") center 32% / cover;
}

.feature-card h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.feature-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  width: max-content;
  margin-top: 22px;
  color: #fff;
  font-weight: 950;
  border-bottom: 2px solid var(--orange);
}

.trinity-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(64px, 9vw, 110px);
  padding-bottom: clamp(64px, 9vw, 110px);
  background: var(--wash);
}

.trinity-launch {
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: 0.92rem;
}

.trinity-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
}

.trinity-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trinity-list article {
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.trinity-list article:hover {
  transform: translateY(-7px);
  background: #3f5797;
  box-shadow: 0 30px 64px rgba(22, 34, 54, 0.22);
}

.trinity-list svg {
  width: 36px;
  height: 36px;
  color: var(--orange);
}

.trinity-list h3 {
  color: #fff;
  font-size: 1.18rem;
}

.service-grid {
  display: grid;
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.09);
}

.service-card-link {
  color: inherit;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.service-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(22, 34, 54, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--wash);
}

.service-card img[src$="buteyko.png"],
.service-card:first-child img,
.service-card:last-child img {
  object-fit: contain;
  padding: 20px;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-card ul,
.clean-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.clean-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.45;
}

.service-card li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8d939b;
}

.quote-panel {
  padding: clamp(54px, 8vw, 86px) max(18px, calc((100% - 980px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 28, 63, 0.96), rgba(79, 102, 163, 0.9)),
    var(--navy);
  text-align: center;
}

.quote-panel blockquote {
  margin: 0 auto;
  max-width: 920px;
  font-size: clamp(1.6rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1.06;
}

.quote-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  text-transform: uppercase;
}

.two-column-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
  background: #fff;
}

.info-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 560px;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), #fff 44%),
    url("assets/mic.png") right 24px bottom 24px / 180px auto no-repeat,
    var(--wash);
}

.info-panel.dark {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(23, 28, 63, 0.66), rgba(23, 28, 63, 0.95)),
    url("assets/speaker.jpg") center / cover;
}

.info-panel h2 {
  max-width: 560px;
}

.info-panel.dark h2,
.info-panel.dark h3 {
  color: #fff;
}

.info-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.info-panel.dark p,
.info-panel.dark li {
  color: rgba(255, 255, 255, 0.82);
}

.info-panel .button {
  align-self: flex-start;
  margin-top: auto;
}

.info-panel .clean-list {
  margin-bottom: 38px;
}

.reviews {
  padding-top: clamp(64px, 9vw, 106px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.review-grid a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.review-grid figure {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  min-height: 260px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.review-grid a:hover figure,
.review-grid a:focus-visible figure {
  border-color: rgba(255, 154, 61, 0.5);
  box-shadow: 0 22px 50px rgba(22, 34, 54, 0.14);
  transform: translateY(-3px);
}

.review-grid a:focus-visible {
  outline: 3px solid rgba(255, 154, 61, 0.45);
  outline-offset: 4px;
}

.review-grid blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-grid figcaption {
  margin-top: 14px;
  color: var(--blue-2);
  font-weight: 950;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.66fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(58px, 8vw, 92px);
  padding-bottom: clamp(58px, 8vw, 92px);
  background: var(--wash);
}

.contact-section p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-line {
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 18px;
  color: var(--blue-2);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(22, 34, 54, 0.08);
}

.contact-line svg {
  color: var(--orange);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: 54px max(18px, calc((100% - 1120px) / 2));
  color: rgba(255, 255, 255, 0.86);
  background: var(--blue-2);
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.site-footer img {
  width: clamp(180px, 17vw, 260px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer nav,
.footer-socials {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer a.is-active {
  color: #fff;
}

.about-page {
  background: #fff;
}

.about-intro {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 84px) 0 0;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.about-kicker a {
  color: var(--blue);
}

.about-kicker span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(22, 34, 54, 0.28);
}

.about-title {
  max-width: 830px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(46px, 7vw, 92px) max(18px, calc((100% - 1120px) / 2));
}

.mission-section {
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.vision-section {
  padding-top: clamp(28px, 4vw, 48px);
}

.about-split.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.82fr);
  background: linear-gradient(180deg, #fff, var(--wash));
}

.about-copy {
  max-width: 610px;
}

.about-copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.about-copy strong {
  display: block;
  max-width: 440px;
  margin-top: 20px;
  color: var(--blue-2);
  font-size: 1.08rem;
  line-height: 1.55;
}

.about-image-card {
  position: relative;
}

.about-image-card::before {
  display: none;
}

.about-image-card::after {
  content: none;
  display: none;
}

.about-image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image-card.wide img {
  aspect-ratio: 1.35 / 1;
}

.about-quote {
  padding: clamp(54px, 8vw, 82px) 18px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(79, 102, 163, 0.95), rgba(40, 61, 115, 0.95)),
    var(--blue);
  text-align: center;
}

.about-quote p {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1.34;
}

.about-quote p + p {
  margin-top: 10px;
}

.about-reviews {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.about-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
}

.review-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.09);
}

.review-card blockquote {
  margin: 0;
  color: var(--muted);
  font-style: italic;
  line-height: 1.72;
}

.about-review-grid .review-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 253, 0.92)),
    var(--wash);
}

.about-review-grid .reviewer {
  margin-top: auto;
}

.feature-review {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 253, 0.92)),
    var(--wash);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer img {
  width: 64px;
  height: 54px;
  object-fit: contain;
}

.reviewer figcaption {
  color: var(--blue-2);
  font-weight: 950;
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 72px) max(18px, calc((100% - 1120px) / 2));
  background: var(--wash);
}

.about-contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-page {
  background:
    linear-gradient(180deg, rgba(244, 251, 253, 0.92), rgba(255, 255, 255, 0) 560px),
    #fff;
}

.contact-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 66px) 0 clamp(18px, 3vw, 30px);
  text-align: center;
}

.contact-hero .about-kicker {
  margin-bottom: 28px;
}

.contact-hero h1 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.contact-hero h1 span {
  display: inline;
}

.contact-hero h1 span + span::before {
  content: " ";
}

.contact-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--muted);
}

.contact-layout {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(16px, 3vw, 32px) 0 clamp(76px, 10vw, 132px);
}

.contact-brand-panel,
.contact-form-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-brand-panel {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(40, 61, 115, 0.94), rgba(79, 102, 163, 0.9)),
    var(--blue);
}

.contact-brand-panel img {
  width: min(260px, 80%);
  margin: 0 auto;
  border-radius: var(--radius);
}

.contact-mini-list {
  display: grid;
  gap: 14px;
}

.contact-mini-list a,
.contact-mini-list span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.contact-mini-list svg {
  color: var(--orange);
}

.contact-form-panel {
  padding: clamp(28px, 4vw, 46px);
  background: #eef2f8;
}

.contact-form-panel p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--blue-2);
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(79, 102, 163, 0.32);
  border-radius: 0;
  padding: 9px 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--orange);
}

.submit-button {
  justify-self: end;
  min-width: 220px;
  min-height: 44px;
}

.screen-reader-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--blue-2);
  background: #fff;
  border: 1px solid rgba(79, 102, 163, 0.22);
  font-weight: 850;
}

.form-status.is-success {
  color: #145235;
  border-color: rgba(63, 150, 120, 0.38);
  background: rgba(63, 150, 120, 0.11);
}

.form-status.is-error {
  color: #7f2a18;
  border-color: rgba(255, 154, 61, 0.42);
  background: rgba(255, 154, 61, 0.14);
}

.wim-page {
  background: #fff;
}

.wim-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0 clamp(54px, 8vw, 96px);
}

.wim-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.wim-hero-copy,
.wim-hero-media {
  min-width: 0;
}

.wim-hero-media {
  position: relative;
}

.wim-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.wim-hero h1 span {
  display: block;
}

.wim-hero p:not(.eyebrow) {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.wim-hero-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wim-page-divider {
  height: clamp(38px, 6vw, 68px);
  background:
    linear-gradient(90deg, rgba(23, 28, 63, 0.96), rgba(79, 102, 163, 0.94)),
    var(--blue);
}

.wim-page .section-media.framed::before {
  display: none;
}

.wim-page .section-media.framed::after {
  content: none;
  display: none;
}

.wim-page .section-media img {
  z-index: 1;
  box-shadow: var(--shadow);
}

.wim-story {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
  padding: clamp(64px, 9vw, 112px) max(18px, calc((100% - 1120px) / 2));
}

.wim-copy p {
  color: var(--muted);
}

.record-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--wash);
  box-shadow: var(--shadow);
}

.record-card img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(1);
  box-shadow: var(--shadow);
}

.record-card blockquote {
  margin: 18px 0 0;
  color: var(--blue-2);
  font-style: italic;
  line-height: 1.55;
}

.record-card h3 {
  margin-top: 22px;
  color: var(--blue-2);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.record-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.record-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.48;
}

.record-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.wim-method,
.wim-effect {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.wim-method-layout {
  display: grid;
  gap: 28px;
}

.wim-method-photo,
.wim-method-pillars {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wim-method-pillars {
  display: block;
  background: #04424c;
}

.wim-effect {
  text-align: center;
}

.wim-effect .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
}

.video-panel {
  position: relative;
  display: block;
  width: min(760px, 100%);
  margin: 36px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

a.video-panel {
  cursor: pointer;
}

.wim-page .video-panel {
  box-shadow: var(--shadow);
}

.video-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-panel iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 154, 61, 0.94);
  transform: translate(-50%, -50%);
}

.play-button svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.documentary-section .play-button {
  top: 25%;
}

.wim-start {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.84fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) max(18px, calc((100% - 1120px) / 2));
  background: var(--wash);
}

.wim-start .button {
  margin-top: 18px;
}

.wim-certified {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 3fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  color: #fff;
  background: #fff;
}

.wim-certified img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  max-width: none;
  background: #fff;
  padding: 34px;
  object-fit: contain;
}

.wim-certified > div {
  display: grid;
  align-content: center;
  min-height: 188px;
  padding: clamp(28px, 5vw, 46px) clamp(28px, 6vw, 70px);
  background: #416f88;
}

.wim-certified p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  line-height: 1.35;
}

.wim-certified .certified-lede {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 900;
}

.wim-certified a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 3px;
}

.buteyko-page {
  background: #fff;
}

.buteyko-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0 clamp(38px, 6vw, 72px);
}

.buteyko-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.buteyko-hero-grid > *,
.buteyko-story > *,
.buteyko-basics > *,
.legacy-section > *,
.home-story > *,
.buteyko-final > * {
  min-width: 0;
}

.buteyko-hero h1 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.buteyko-hero h1 span {
  display: block;
}

.buteyko-hero p:not(.eyebrow) {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.buteyko-hero-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.buteyko-story,
.buteyko-basics,
.legacy-section,
.home-story,
.buteyko-final {
  display: grid;
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) max(18px, calc((100% - 1120px) / 2));
}

.buteyko-story {
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
  background: var(--wash);
}

.buteyko-basics,
.home-story {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
}

.legacy-section {
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.78fr);
  background: var(--wash);
}

.buteyko-copy p,
.buteyko-final p {
  color: var(--muted);
}

.buteyko-aside {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.buteyko-aside img {
  width: 100%;
  border-radius: var(--radius);
}

.buteyko-aside h3 {
  margin-top: 18px;
  color: var(--blue-2);
  line-height: 1.35;
}

.buteyko-aside p {
  margin: 12px 0 0;
  color: var(--muted);
}

.symptom-section {
  background: #fff;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 154, 61, 0.14);
}

.children-section,
.buteyko-help,
.buteyko-faq,
.documentary-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.children-section .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
}

.children-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.children-image-stack {
  display: grid;
  grid-template-columns: 0.74fr 0.56fr;
  gap: 14px;
  align-items: end;
}

.children-image-stack img:first-child {
  margin-bottom: 44px;
}

.children-image-stack img:last-child {
  margin-top: 64px;
}

.children-grid img,
.legacy-section img,
.home-story img,
.buteyko-transform img,
.buteyko-final > img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card.soft {
  min-height: auto;
  color: var(--ink);
  background: #fff;
}

.feature-card.soft h3 {
  color: var(--blue-2);
}

.feature-card.soft p {
  color: var(--muted);
}

.buteyko-transform {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) max(18px, calc((100% - 1120px) / 2));
  background: var(--wash);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.help-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.09);
}

.help-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--orange);
}

.help-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.condition-grid article {
  display: grid;
  align-content: start;
}

.condition-grid article > img {
  width: calc(100% + 52px);
  max-width: none;
  height: clamp(220px, 21vw, 260px);
  margin: -26px -26px 24px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius) var(--radius) 0 0;
}

.condition-grid article:nth-child(1) > img {
  object-position: center 34%;
}

.condition-grid article:nth-child(5) > img {
  object-position: center 48%;
}

.condition-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.condition-grid li {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(79, 102, 163, 0.1);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  border-radius: var(--radius);
  background: var(--wash);
  border: 1px solid rgba(79, 102, 163, 0.18);
  box-shadow: 0 12px 30px rgba(22, 34, 54, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-2);
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.documentary-section {
  text-align: center;
}

.buteyko-final {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  background: linear-gradient(180deg, #fff, var(--wash));
}

.buteyko-final .button {
  margin-top: 20px;
}

.instructor-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  padding: 30px max(18px, calc((100% - 1120px) / 2));
  color: #fff;
  background: #416f88;
}

.instructor-strip img {
  width: 100%;
  max-width: 260px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
}

.instructor-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.oa-page {
  background: #fff;
}

.oa-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0 clamp(54px, 7vw, 88px);
}

.oa-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.oa-hero-grid > *,
.oa-change > *,
.oa-process > *,
.oa-dimensions > *,
.oa-pillars > * {
  min-width: 0;
}

.oa-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.oa-hero h1 span {
  display: block;
}

.oa-hero p:not(.eyebrow) {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.oa-hero-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.oa-what {
  padding: clamp(64px, 9vw, 112px) max(18px, calc((100% - 1120px) / 2));
  color: #fff;
  background:
    linear-gradient(180deg, rgba(36, 36, 38, 0.88), rgba(36, 36, 38, 0.94)),
    var(--ink);
}

.oa-what h2,
.oa-what .eyebrow {
  color: #fff;
}

.oa-what .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.oa-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: -44px auto 0;
  position: relative;
  z-index: 1;
}

.pillar-card {
  min-height: 330px;
  padding: 28px;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pillar-card.body {
  background: linear-gradient(135deg, #5fbf5c, #9dde62);
}

.pillar-card.mind {
  background: linear-gradient(135deg, #4e86d8, #74b8f0);
}

.pillar-card.sport {
  background: linear-gradient(135deg, #e42626, #ff5b45);
}

.pillar-card h3 {
  color: #fff;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.oa-dimensions,
.oa-activities {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dimension-grid article {
  min-height: 360px;
  padding: 28px;
  border-radius: var(--radius);
  background: #f1f3f7;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.08);
}

.dimension-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--orange);
}

.dimension-grid p,
.oa-activities .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.dimension-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--blue-2);
}

.oa-change {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.84fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) max(18px, calc((100% - 1120px) / 2));
  background: var(--wash);
}

.oa-placeholder-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 340px;
  padding: 30px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(79, 102, 163, 0.12), rgba(255, 154, 61, 0.12)),
    #fff;
  box-shadow: var(--shadow);
}

.oa-placeholder-panel span {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue-2);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 950;
  background: rgba(79, 102, 163, 0.1);
}

.oa-fire {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--orange);
  background: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(26px);
}

.oa-fire p {
  margin: 0;
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 950;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.activity-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(22, 34, 54, 0.08), rgba(22, 34, 54, 0.84)),
    var(--activity-image) center / cover;
  box-shadow: var(--shadow);
}

.activity-grid h3 {
  color: #fff;
  font-size: 1.25rem;
}

.activity-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.oa-process {
  display: grid;
  gap: 32px;
  padding: clamp(64px, 9vw, 104px) max(18px, calc((100% - 1120px) / 2));
  background: #9eb2d0;
}

.oa-process h2 {
  color: var(--blue-2);
}

.oa-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oa-process li {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.22);
}

.oa-process li span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--blue-2);
  font-weight: 950;
  background: #fff;
  box-shadow: inset 0 -4px 0 var(--orange);
}

.oa-process p {
  color: rgba(22, 34, 54, 0.72);
}

.oa-final {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(54px, 8vw, 90px) 18px;
  text-align: center;
  background: linear-gradient(180deg, #819ac4, var(--wash));
}

.oa-final h2 {
  max-width: 820px;
}

.talks-page {
  background: #fff;
}

.talks-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0 clamp(54px, 8vw, 96px);
}

.talks-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.talks-hero-grid > *,
.talks-audience-card > *,
.talks-process > *,
.talks-practical > *,
.talks-final > * {
  min-width: 0;
}

.talks-hero h1 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.talks-hero h1 span {
  display: block;
}

.talks-hero p:not(.eyebrow) {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.talks-hero-media {
  position: relative;
}

.talks-hero-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.talks-reach {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(48px, 8vw, 86px) 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 61, 115, 0.94), rgba(79, 102, 163, 0.92)),
    var(--blue);
  text-align: center;
}

.talks-reach p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 3.8rem);
  font-weight: 950;
  line-height: 1.06;
}

.talks-reach span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.talks-audiences,
.talks-outcomes,
.talks-reviews {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.talks-audiences .section-heading p:not(.eyebrow),
.talks-outcomes .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
}

.talks-audience-grid {
  display: grid;
  gap: 22px;
}

.talks-audience-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.09);
}

.talks-audience-card.reverse {
  grid-template-columns: minmax(0, 0.52fr) minmax(280px, 0.48fr);
}

.talks-audience-card.reverse > img,
.talks-audience-card.reverse > .talks-placeholder {
  order: 2;
}

.talks-audience-card.muted {
  background: var(--wash);
}

.talks-audience-card img,
.talks-placeholder {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.talks-audience-card img {
  object-fit: cover;
}

.talks-audience-card.reverse > img {
  object-position: center 38%;
}

.talks-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--blue-2);
  border: 1px solid rgba(255, 154, 61, 0.22);
  background:
    linear-gradient(135deg, rgba(79, 102, 163, 0.16), rgba(255, 154, 61, 0.22)),
    #fff;
  box-shadow: 0 28px 64px rgba(22, 34, 54, 0.14);
}

.talks-placeholder svg {
  width: clamp(56px, 5vw, 72px);
  height: clamp(56px, 5vw, 72px);
  color: var(--orange);
}

.talks-placeholder span {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 950;
  line-height: 1.15;
}

.talks-audience-card > div:not(.talks-placeholder) > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--orange);
}

.talks-audience-card h3 {
  color: var(--blue-2);
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 1.05;
}

.talks-audience-card p,
.outcome-grid p,
.talks-practical p {
  color: var(--muted);
}

.talks-audience-card strong {
  display: block;
  margin-top: 18px;
  color: var(--blue-2);
  line-height: 1.45;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.outcome-grid article {
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius);
  background: #f1f3f7;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.08);
}

.outcome-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--orange);
}

.outcome-grid h3 {
  color: var(--blue-2);
  line-height: 1.32;
}

.talks-process {
  display: grid;
  gap: 32px;
  padding: clamp(64px, 9vw, 104px) max(18px, calc((100% - 1120px) / 2));
  background: #9eb2d0;
}

.talks-process h2 {
  color: var(--blue-2);
}

.talks-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.talks-process li {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.22);
}

.talks-process li span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--blue-2);
  font-weight: 950;
  background: #fff;
  box-shadow: inset 0 -4px 0 var(--orange);
}

.talks-process p {
  color: rgba(22, 34, 54, 0.72);
}

.talks-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.talks-review-grid .review-card {
  min-height: 320px;
}

.talks-practical {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) max(18px, calc((100% - 1120px) / 2));
  background: var(--wash);
}

.talks-practical-media {
  display: grid;
  gap: 18px;
}

.talks-practical-media > img {
  width: 100%;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.talks-practical-media > img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.talks-practical-media > .talks-learning-image {
  aspect-ratio: auto;
  object-fit: contain;
}

.talks-practical .button {
  margin-top: 20px;
}

.talks-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 8vw, 86px) max(18px, calc((100% - 1120px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 61, 115, 0.96), rgba(79, 102, 163, 0.92)),
    var(--blue);
}

.talks-final h2 {
  max-width: 860px;
  color: #fff;
}

.talks-final p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.online-page {
  background: #fff;
}

.online-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0 clamp(54px, 8vw, 96px);
}

.online-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.online-hero-grid > *,
.online-process > *,
.online-final > * {
  min-width: 0;
}

.online-hero h1 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.online-hero h1 span {
  display: block;
}

.online-copy p:not(.eyebrow) {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.online-copy strong {
  color: var(--blue-2);
}

.online-time-card {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--wash);
  border: 1px solid rgba(79, 102, 163, 0.18);
  box-shadow: 0 14px 34px rgba(22, 34, 54, 0.08);
}

.online-time-card svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.online-time-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.online-time-card strong {
  display: block;
  margin-top: 3px;
  color: var(--blue-2);
  font-size: 1.18rem;
}

.online-media {
  position: relative;
}

.online-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.online-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(54px, 8vw, 92px);
}

.online-benefits article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.08);
}

.online-benefits svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.online-benefits h3 {
  color: var(--blue-2);
  line-height: 1.34;
}

.online-process {
  display: grid;
  gap: 32px;
  padding: clamp(64px, 9vw, 104px) max(18px, calc((100% - 1120px) / 2));
  background: var(--wash);
}

.online-process h2 {
  color: var(--blue-2);
}

.online-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.online-process li {
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(79, 102, 163, 0.16);
  box-shadow: 0 18px 44px rgba(22, 34, 54, 0.08);
}

.online-process li span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--blue-2);
  font-weight: 950;
  background: #fff;
  box-shadow:
    inset 0 -5px 0 var(--orange),
    0 12px 28px rgba(22, 34, 54, 0.1);
}

.online-process h3 {
  color: var(--blue-2);
  line-height: 1.3;
}

.online-process p {
  color: var(--muted);
}

.online-process strong,
.online-process em {
  color: var(--orange);
}

.online-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(58px, 9vw, 106px) max(18px, calc((100% - 1120px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 61, 115, 0.96), rgba(79, 102, 163, 0.92)),
    var(--blue);
}

.online-final h2 {
  max-width: 860px;
  color: #fff;
}

.online-final p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  font-weight: 850;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 46px;
  padding: 0 16px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 36px rgba(255, 154, 61, 0.3);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .hero,
  .split-section,
  .trinity-section,
  .two-column-section,
  .contact-section,
  .site-footer,
  .about-split,
  .about-split.reverse,
  .about-contact,
  .contact-layout,
  .wim-hero,
  .wim-hero-grid,
  .wim-story,
  .wim-start,
  .wim-certified,
  .buteyko-hero-grid,
  .buteyko-story,
  .buteyko-basics,
  .buteyko-transform,
  .legacy-section,
  .home-story,
  .children-grid,
  .buteyko-final,
  .instructor-strip,
  .oa-hero-grid,
  .oa-change,
  .talks-hero-grid,
  .talks-audience-card,
  .talks-audience-card.reverse,
  .talks-practical,
  .talks-final,
  .online-hero-grid,
  .online-final {
    grid-template-columns: 1fr;
  }

  .talks-audience-card.reverse > img,
  .talks-audience-card.reverse > .talks-placeholder {
    order: 0;
  }

  .method-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid,
  .review-grid,
  .about-review-grid,
  .oa-pillars,
  .dimension-grid,
  .activity-grid,
  .oa-process ol,
  .outcome-grid,
  .talks-process ol,
  .talks-review-grid,
  .online-benefits,
  .online-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    max-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 38px;
    width: 40px;
    padding: 0;
    font-size: 0.84rem;
  }

  .header-cta span {
    display: none;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
  }

  .wim-page .video-panel .play-button {
    width: 52px;
    height: 52px;
  }

  .wim-page .video-panel .play-button svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
  }

  .documentary-section .video-panel .play-button {
    width: 52px;
    height: 52px;
  }

  .documentary-section .video-panel .play-button svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
  }

  .section,
  .method-strip,
  .about-intro,
  .about-reviews,
  .contact-hero,
  .contact-layout,
  .wim-hero,
  .wim-method,
  .wim-effect,
  .buteyko-hero,
  .children-section,
  .buteyko-help,
  .buteyko-faq,
  .documentary-section,
  .oa-hero,
  .oa-pillars,
  .oa-dimensions,
  .oa-activities,
  .oa-fire,
  .talks-hero,
  .talks-audiences,
  .talks-outcomes,
  .talks-reviews,
  .online-hero,
  .online-benefits {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }

  h2 {
    max-width: calc(100vw - 28px);
    font-size: clamp(1.3rem, 4.5vw, 1.65rem);
    line-height: 1.16;
    overflow-wrap: normal;
  }

  .copy-block,
  .section-heading {
    width: 100%;
    max-width: 100%;
  }

  .copy-block h2,
  .section-heading h2 {
    width: 100%;
    max-width: min(100%, calc(100vw - 28px));
    overflow-wrap: normal;
  }

  .copy-block p,
  .section-heading p,
  .step-list p,
  .quote-band p,
  .service-card p,
  .service-card li {
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
  }

  .quote-band p {
    font-size: clamp(1rem, 4.8vw, 1.25rem);
  }

  .step-list p {
    font-size: 0.9rem;
  }

  .split-section,
  .trinity-section,
  .two-column-section,
  .contact-section,
  .service-card,
  .section {
    max-width: 100vw;
    overflow: hidden;
  }

  .split-section > *,
  .trinity-section > *,
  .two-column-section > *,
  .contact-section > *,
  .service-card > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero .eyebrow {
    max-width: 310px;
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .method-strip,
  .benefit-grid,
  .trinity-list,
  .review-grid,
  .oa-pillars,
  .dimension-grid,
  .activity-grid,
  .oa-process ol,
  .outcome-grid,
  .talks-process ol,
  .talks-review-grid,
  .online-benefits,
  .online-process ol {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: none;
  }

  .hero {
    min-height: clamp(620px, 82svh, 760px);
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-copy {
    width: 100%;
    max-width: min(360px, calc(100vw - 28px));
  }

  .hero-lede {
    max-width: 100%;
  }

  .hero::before {
    background-position: 40% center;
  }

  .split-section,
  .trinity-section,
  .two-column-section,
  .contact-section,
  .about-split,
  .about-split.reverse,
  .about-contact {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-media.framed::before {
    display: none;
  }

  .about-title,
  .about-copy {
    max-width: 330px;
  }

  .about-image-card::before {
    display: none;
  }

  .about-review-grid {
    grid-template-columns: 1fr;
  }

  .about-contact .button {
    width: 100%;
  }

  .contact-hero h1 {
    font-size: clamp(1.3rem, 4.5vw, 1.65rem);
  }

  .wim-hero h1 {
    width: min(100%, calc(100vw - 28px));
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .wim-hero h1 span {
    overflow-wrap: anywhere;
  }

  .wim-hero p:not(.eyebrow) {
    max-width: 320px;
  }

  .record-card h3 {
    font-size: clamp(1.3rem, 4.5vw, 1.65rem);
    line-height: 1.16;
  }

  .wim-story,
  .wim-start,
  .wim-image-hero,
  .wim-certified,
  .buteyko-story,
  .buteyko-basics,
  .buteyko-transform,
  .legacy-section,
  .home-story,
  .buteyko-final,
  .instructor-strip,
  .oa-what,
  .oa-change,
  .oa-process,
  .talks-process,
  .talks-practical,
  .talks-final,
  .online-process,
  .online-final {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wim-certified img {
    min-height: 130px;
    padding: 24px;
  }

  .wim-certified {
    padding-left: 0;
    padding-right: 0;
  }

  .wim-certified > div {
    min-height: auto;
    padding: 24px;
  }

  .wim-certified p {
    font-size: 1rem;
  }

  .wim-certified .certified-lede {
    font-size: 1.08rem;
  }

  .buteyko-hero h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .buteyko-hero p:not(.eyebrow) {
    max-width: 320px;
  }

  .buteyko-hero .button {
    width: fit-content;
    max-width: 100%;
  }

  .oa-hero h1 {
    width: min(100%, calc(100vw - 28px));
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .oa-hero h1 span {
    display: block;
  }

  .oa-hero h1 span + span::before {
    content: "";
  }

  .oa-page h1,
  .oa-page h2,
  .oa-page h3,
  .oa-page p,
  .oa-page li {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .oa-page section {
    max-width: 100vw;
    overflow: hidden;
  }

  .talks-page h1,
  .talks-page h2,
  .talks-page h3,
  .talks-page p,
  .talks-page li {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .talks-page section {
    max-width: 100vw;
    overflow: hidden;
  }

  .online-page h1,
  .online-page h2,
  .online-page h3,
  .online-page p,
  .online-page li {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .online-page section {
    max-width: 100vw;
    overflow: hidden;
  }

  .online-hero h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .online-copy p,
  .online-process p,
  .online-final p:not(.eyebrow) {
    max-width: 34ch;
  }

  .online-time-card,
  .online-final .button {
    width: 100%;
    max-width: 340px;
  }

  .online-process h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .online-benefits article,
  .online-process li {
    min-height: auto;
    padding: 22px;
  }

  .talks-hero h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .talks-hero p:not(.eyebrow),
  .talks-audience-card p,
  .outcome-grid p,
  .talks-process p,
  .talks-practical p,
  .talks-final p {
    max-width: 34ch;
  }

  .talks-hero .hero-actions {
    display: grid;
    width: min(100%, 340px);
  }

  .talks-hero .button,
  .talks-final .button {
    width: 100%;
    max-width: 100%;
  }

  .talks-reach p {
    max-width: 12ch;
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.08;
  }

  .talks-reach span {
    max-width: 32ch;
  }

  .talks-audiences .section-heading p:not(.eyebrow),
  .talks-outcomes .section-heading p:not(.eyebrow),
  .talks-reviews .section-heading p:not(.eyebrow) {
    max-width: 32ch;
  }

  .talks-audiences .section-heading h2,
  .talks-outcomes .section-heading h2,
  .talks-reviews .section-heading h2,
  .talks-practical h2 {
    max-width: 13ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .talks-audience-card,
  .outcome-grid article,
  .talks-process li {
    padding: 22px;
  }

  .oa-what h2,
  .oa-dimensions h2,
  .oa-final h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .oa-hero p:not(.eyebrow),
  .oa-what .section-heading p,
  .pillar-card p,
  .dimension-grid p,
  .activity-grid p,
  .oa-change p,
  .oa-change li,
  .oa-process p {
    max-width: 34ch;
  }

  .oa-what .section-heading h2,
  .oa-what .section-heading p,
  .oa-dimensions .section-heading h2,
  .oa-dimensions .section-heading p,
  .oa-activities .section-heading h2,
  .oa-activities .section-heading p,
  .oa-final h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .oa-hero-grid,
  .oa-change {
    display: block;
  }

  .oa-hero-grid > * + *,
  .oa-change > * + * {
    margin-top: 34px;
  }

  .oa-placeholder-panel,
  .pillar-card,
  .dimension-grid article,
  .activity-grid article,
  .oa-process li {
    width: 100%;
    max-width: 100%;
  }

  .oa-hero .button {
    width: fit-content;
    max-width: 100%;
  }

  .dimension-grid article,
  .pillar-card,
  .oa-process li {
    padding: 22px;
  }

  .activity-grid article {
    min-height: 310px;
  }

  .oa-placeholder-panel {
    min-height: 240px;
    padding: 18px;
  }

  .children-image-stack {
    grid-template-columns: 1fr;
  }

  .children-image-stack img:first-child,
  .children-image-stack img:last-child {
    margin: 0;
  }

  .condition-grid article > img {
    height: clamp(250px, 58vw, 300px);
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 span {
    display: inline;
  }

  .contact-hero h1 span + span::before {
    content: " ";
  }

  .contact-hero p:not(.eyebrow) {
    max-width: 310px;
  }

  .contact-form-panel,
  .contact-brand-panel {
    padding: 26px;
  }

  .contact-form-panel {
    order: -1;
  }

  .submit-button {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }

  .info-panel {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84), #fff),
      var(--wash);
  }

  .floating-cta span {
    display: none !important;
  }

  .floating-cta {
    right: 8px;
    left: auto;
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .floating-cta svg {
    width: 16px;
    height: 16px;
  }
}
