:root {
  --ink: #102f3d;
  --ink-soft: #49616b;
  --blue: #174b7a;
  --blue-dark: #0d344f;
  --green: #4f8f64;
  --green-light: #b9d590;
  --sage: #e8f0e4;
  --cream: #f7f4ed;
  --white: #ffffff;
  --line: rgba(16, 47, 61, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfcfa;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 102px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(16, 47, 61, 0.12);
}

.brand {
  justify-self: start;
}

.brand img {
  display: block;
  width: 128px;
  height: 76px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 12px 30px rgba(17, 72, 107, 0.18);
}

.button-small {
  min-height: 44px;
  padding: 0 19px;
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.84fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding: 150px max(48px, calc((100vw - 1180px) / 2)) 84px;
  background:
    linear-gradient(110deg, rgba(240, 246, 235, 0.97) 0%, rgba(249, 247, 239, 0.94) 57%, rgba(229, 240, 224, 0.87) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(79, 143, 100, 0.18);
  border-radius: 50%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 120px;
  right: 38%;
  width: 180px;
  height: 180px;
  background: rgba(185, 213, 144, 0.2);
}

.hero-orb-two {
  left: -100px;
  bottom: 60px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(23, 75, 122, 0.08);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.starter-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 5.4vw, 78px);
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  margin-top: 11px;
  color: var(--green);
  font-style: italic;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 47, 61, 0.3);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  padding: 20px 10px 38px 0;
}

.image-frame {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 220px 220px 24px 24px;
  box-shadow: 0 28px 70px rgba(31, 69, 61, 0.18);
}

.image-frame > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 39, 36, 0.46), transparent 42%);
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 25px 28px;
  color: white;
}

.caption-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.image-caption p,
.image-caption strong,
.image-caption span {
  display: block;
  margin: 0;
}

.image-caption strong {
  margin-bottom: 3px;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.image-caption p > span {
  font-size: 11px;
  letter-spacing: 0.05em;
}

.heritage-badge {
  position: absolute;
  z-index: 3;
  right: -34px;
  bottom: 5px;
  display: flex;
  width: 164px;
  height: 164px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 9px solid #f1f4e9;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  text-align: center;
  box-shadow: 0 12px 30px rgba(23, 75, 122, 0.18);
}

.heritage-badge strong {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.95;
}

.heritage-badge span {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1080px, calc(100% - 48px));
  grid-template-columns: repeat(3, 1fr);
  margin: -46px auto 0;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(25, 63, 69, 0.12);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip > div > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green);
  font-size: 17px;
}

.trust-strip p,
.trust-strip strong {
  display: block;
  margin: 0;
}

.trust-strip strong {
  margin-bottom: 5px;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
}

.trust-strip p {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
}

.approach-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 120px;
}

.section-heading h2 {
  max-width: 630px;
  margin: 0;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.06;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.pillar-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 35px;
  border: 1px solid var(--line);
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pillar-card:nth-child(2) {
  margin-top: 28px;
  background: var(--blue);
  color: white;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(25, 63, 69, 0.1);
}

.pillar-number {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin: -27px auto 0;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #ffffff;
}

.pillar-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pillar-card:nth-child(2) .pillar-number,
.pillar-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.7);
}

.pillar-card h3 {
  margin: 10px 0 15px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.pillar-card p {
  max-width: 285px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.pillar-line {
  position: absolute;
  right: 35px;
  bottom: 35px;
  left: 35px;
  height: 2px;
  background: var(--green-light);
}

.tools-section {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  min-height: 640px;
  overflow: hidden;
  margin: 0 auto 120px;
  border: 1px solid var(--line);
  background: #eff4ed;
  box-shadow: 0 20px 50px rgba(25, 63, 69, 0.08);
}

.tools-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.tools-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(11, 51, 79, 0.06), rgba(8, 37, 57, 0.45));
}

.tools-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tools-visual-label {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 45px;
  left: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
}

.tools-visual-label span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tools-visual-label strong {
  font-family: Georgia, serif;
  font-size: clamp(35px, 4vw, 53px);
  font-weight: 400;
  line-height: 1.02;
}

.tools-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(38px, 4vw, 64px);
}

.tools-copy h2,
.heritage-title h2,
.education-copy h2,
.line-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.tools-copy h2 {
  max-width: 680px;
  font-size: clamp(39px, 4.5vw, 61px);
  line-height: 1.04;
}

.tools-intro {
  max-width: 650px;
  margin: 25px 0 32px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: start;
  min-height: 58px;
  padding: 13px 0;
  border-top: 1px solid rgba(16, 47, 61, 0.12);
  color: #294b58;
  font-size: 12px;
  line-height: 1.5;
}

.support-list li span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.heritage-section {
  padding: 135px 24px;
  background: var(--cream);
}

.heritage-inner {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  margin: 0 auto;
}

.heritage-title h2 {
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.03;
}

.heritage-title em {
  color: var(--green);
  font-weight: 400;
}

.heritage-story {
  padding-top: 5px;
}

.heritage-story > p {
  margin: 0 0 23px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.heritage-story .heritage-lead {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.55;
}
.heritage-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.heritage-facts div {
  position: relative;
  min-height: 170px;
  padding: 62px 24px 25px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green-light);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 12px 32px rgba(23, 75, 122, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.heritage-facts div:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(23, 75, 122, 0.14);
}

.heritage-facts div:nth-child(2) {
  transform: translateY(-10px);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 18px 40px rgba(23, 75, 122, 0.2);
}

.heritage-facts div:nth-child(2):hover {
  transform: translateY(-16px);
}

.heritage-facts div::before {
  position: absolute;
  top: 18px;
  left: 22px;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(66, 135, 78, 0.25);
  border-radius: 50%;
  background: rgba(126, 184, 88, 0.12);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.heritage-facts div:nth-child(1)::before {
  content: "01";
}

.heritage-facts div:nth-child(2)::before {
  content: "02";
  border-color: rgba(255, 255, 255, 0.35);
  background: #ffffff;
  color: var(--blue);
}

.heritage-facts div:nth-child(3)::before {
  content: "03";
}

.heritage-facts div:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 67px;
  right: -27px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  content: "→";
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.heritage-facts strong,
.heritage-facts span {
  display: block;
}

.heritage-facts strong {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.heritage-facts span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.6;
}

.heritage-facts div:nth-child(2) strong {
  color: #ffffff;
}

.heritage-facts div:nth-child(2) span {
  color: rgba(255, 255, 255, 0.75);
}

.practitioner-section {
  position: relative;
  display: flex;
  min-height: 560px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 105px 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 213, 144, 0.18), transparent 24%),
    var(--white);
  text-align: center;
}

.practitioner-section::before,
.practitioner-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(79, 143, 100, 0.13);
  border-radius: 50%;
}

.practitioner-section::before {
  top: -110px;
  left: -80px;
}

.practitioner-section::after {
  right: -80px;
  bottom: -110px;
}

.quote-mark {
  height: 68px;
  color: var(--green-light);
  font-family: Georgia, serif;
  font-size: 95px;
  line-height: 1;
}

.practitioner-section blockquote {
  max-width: 940px;
  margin: 12px auto 30px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(28px, 3.4vw, 45px);
  font-weight: 400;
  line-height: 1.35;
}

.practitioner-section p,
.practitioner-section strong,
.practitioner-section span {
  display: block;
  margin: 0;
}

.practitioner-section strong {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.practitioner-section span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 11px;
}

.education-section {
  padding: 115px 24px;
  background: #edf3eb;
}

.education-card {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  overflow: hidden;
  grid-template-columns: 1.1fr 0.9fr;
  margin: 0 auto;
  background:
    radial-gradient(circle at 15% 15%, rgba(185, 213, 144, 0.18), transparent 27%),
    var(--blue-dark);
  color: white;
  box-shadow: 0 30px 80px rgba(14, 52, 79, 0.16);
}

.education-card::after {
  content: "";
  position: absolute;
  right: -125px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.education-copy {
  position: relative;
  z-index: 1;
  padding: clamp(55px, 7vw, 90px);
}

.eyebrow-light {
  color: var(--green-light);
}

.education-copy h2 {
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1.03;
}

.education-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.education-modules {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 50px clamp(45px, 6vw, 78px);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.education-modules li {
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.education-modules li:last-child {
  border-bottom: 0;
}

.education-modules span,
.education-modules strong {
  display: block;
}

.education-modules span {
  margin-bottom: 10px;
  color: var(--green-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.education-modules strong {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
}

.line-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
  text-align: center;
}

.line-heading h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(44px, 5vw, 67px);
  line-height: 1.05;
}

.line-heading > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 60px 0 42px;
  text-align: left;
}

.focus-card {
  display: grid;
  grid-template-columns: 48px 1fr 22px;
  align-items: center;
  gap: 16px;
  min-height: 126px;
  padding: 25px;
  border: 1px solid var(--line);
  background: white;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.focus-card:hover,
.focus-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(79, 143, 100, 0.45);
  box-shadow: 0 16px 36px rgba(25, 63, 69, 0.09);
}

.focus-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 14px;
}

.focus-copy strong,
.focus-copy small {
  display: block;
}

.focus-copy strong {
  margin-bottom: 7px;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.focus-copy small {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.focus-arrow {
  color: var(--green);
  font-size: 17px;
}

.final-cta {
  display: flex;
  min-height: 450px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 90px max(48px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(110deg, rgba(13, 52, 79, 0.97), rgba(22, 76, 116, 0.98)),
    url("images/regeno-waterfall.jpg") center / cover;
  color: white;
}

.final-cta h2 {
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.06;
}

.final-cta-actions {
  display: flex;
  min-width: 270px;
  flex-direction: column;
  gap: 12px;
}

.button-light {
  border-color: white;
  background: white;
  color: var(--blue-dark);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  color: white;
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 0.85fr;
  gap: 70px;
  padding: 75px max(48px, calc((100vw - 1180px) / 2)) 28px;
  background: #f8f7f2;
}

.footer-brand img {
  width: 150px;
  height: 98px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 350px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 23px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.footer-column strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column p {
  margin: 0;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #6f7d82;
  font-size: 9px;
  line-height: 1.5;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--cream);
  color: var(--blue-dark);
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 142px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 650px;
    justify-self: center;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .trust-strip > div {
    padding: 20px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .tools-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .tools-copy {
    padding: 70px 40px;
  }

  .support-list {
    grid-template-columns: 1fr;
  }

  .heritage-inner {
    gap: 50px;
  }

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

  .education-modules {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 32px);
    height: 86px;
  }

  .brand img {
    width: 104px;
    height: 64px;
  }

  .button-small {
    min-height: 41px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding: 124px 20px 70px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .hero-visual {
    width: 100%;
    padding-right: 12px;
  }

  .image-frame,
  .image-frame > img {
    min-height: 430px;
  }

  .image-frame {
    border-radius: 160px 160px 18px 18px;
  }

  .heritage-badge {
    right: -8px;
    width: 130px;
    height: 130px;
  }

  .heritage-badge strong {
    font-size: 34px;
  }

  .trust-strip {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    margin-top: -22px;
  }

  .trust-strip > div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .approach-section {
    width: calc(100% - 40px);
    padding: 94px 0 90px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .pillar-card:nth-child(2) {
    margin-top: 0;
  }

  .tools-section {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    margin-bottom: 90px;
  }

  .tools-visual,
  .tools-visual > img {
    min-height: 500px;
  }

  .tools-copy {
    padding: 75px 20px;
  }

  .tools-copy h2 {
    font-size: 42px;
  }

  .heritage-section,
  .education-section {
    padding: 90px 20px;
  }

  .heritage-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

.heritage-facts {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.heritage-facts div,
.heritage-facts div:nth-child(2) {
  min-height: 140px;
  transform: none;
}

.heritage-facts div:hover,
.heritage-facts div:nth-child(2):hover {
  transform: none;
}

.heritage-facts div:not(:last-child)::after {
  display: none;
}

  .practitioner-section {
    min-height: 530px;
    padding: 90px 22px;
  }

  .practitioner-section blockquote {
    font-size: 29px;
  }

  .education-copy {
    padding: 56px 25px;
  }

  .education-modules {
    padding: 28px 25px 45px;
  }

  .line-section {
    width: calc(100% - 40px);
    padding: 95px 0;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .final-cta {
    min-height: 540px;
    padding: 80px 20px;
  }

  .final-cta-actions {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 20px 25px;
  }

  .footer-column {
    padding-top: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom span:nth-child(2) {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
