:root {
  --ink: #102f33;
  --ink-deep: #07262b;
  --teal: #0d4145;
  --teal-mid: #236166;
  --cream: #f5efe3;
  --paper: #fbf8f2;
  --white: #ffffff;
  --amber: #d8a34f;
  --coral: #dc7e4d;
  --muted: #5d706e;
  --line: rgba(13, 65, 69, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 70px rgba(6, 36, 40, 0.16);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: 1200px;
  --header-height: 78px;
  --font-sans: "Avenir Next", Avenir, "SF Pro Display", "Segoe UI", sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}

h3 {
  font-size: 1.24rem;
  line-height: 1.3;
}

::selection {
  color: var(--white);
  background: var(--teal-mid);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--ink-deep);
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.88);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(7, 38, 43, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 13px;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-link {
  position: relative;
  padding: 12px 14px;
  color: #355256;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--teal);
  background: rgba(13, 65, 69, 0.07);
}

.nav-link.is-active::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  content: "";
  background: var(--coral);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.25px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  gap: 14px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--ink-deep);
  box-shadow: 0 12px 28px rgba(7, 38, 43, 0.18);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  margin-left: 6px;
}

.button-light {
  color: var(--ink-deep);
  background: var(--cream);
  border-color: var(--cream);
}

.button-light:hover {
  color: var(--ink-deep);
  background: var(--white);
}

.button-outline {
  color: var(--teal);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--teal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--cream);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-mid);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a9d2cd;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(56, 137, 135, 0.3), transparent 30%),
    linear-gradient(135deg, var(--ink-deep), #0b3940 56%, #092f35);
}

.home-hero::before {
  position: absolute;
  top: -120px;
  right: 32%;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.88fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: 56px;
  gap: clamp(42px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.hero-copy h1 {
  max-width: 640px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 6.4vw, 6.45rem);
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 0 0;
  margin: 42px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.hero-proof li {
  display: grid;
  gap: 3px;
}

.hero-proof strong {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-media::before {
  position: absolute;
  inset: 22px -34px -34px 38px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.media-note {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 34px;
  display: grid;
  min-width: 230px;
  padding: 18px 22px;
  color: var(--ink-deep);
  background: rgba(245, 239, 227, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.media-note span {
  color: var(--muted);
  font-size: 0.72rem;
}

.media-note strong {
  margin-top: 2px;
  font-size: 0.93rem;
}

.section {
  padding-block: clamp(84px, 10vw, 138px);
}

.section-first {
  padding-top: clamp(72px, 8vw, 110px);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 72px;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.04rem;
}

.narrow-heading {
  max-width: 760px;
}

.narrow-heading p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.course-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 42px rgba(13, 65, 69, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.course-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  background: radial-gradient(circle, rgba(216, 163, 79, 0.18), transparent 68%);
  border-radius: 50%;
}

.course-card:nth-child(2)::after {
  background: radial-gradient(circle, rgba(35, 97, 102, 0.2), transparent 68%);
}

.course-card:nth-child(3)::after {
  background: radial-gradient(circle, rgba(220, 126, 77, 0.2), transparent 68%);
}

.course-card:hover {
  border-color: rgba(13, 65, 69, 0.3);
  box-shadow: 0 24px 60px rgba(13, 65, 69, 0.11);
  transform: translateY(-6px);
}

.course-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
}

.course-number {
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.course-format {
  padding: 7px 10px;
  color: var(--teal-mid);
  background: rgba(13, 65, 69, 0.06);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.course-card h3 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.course-card > p {
  color: var(--muted);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  padding: 22px 0 0;
  margin: 26px 0 0;
  gap: 8px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.topic-list li {
  padding: 6px 10px;
  color: #42615f;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.72rem;
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 28px;
}

.process-section {
  background: #e9eee8;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  gap: clamp(60px, 10vw, 130px);
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.process-intro h2 {
  margin-bottom: 28px;
}

.process-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 30px 0;
  gap: 22px;
  border-top: 1px solid rgba(13, 65, 69, 0.2);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(13, 65, 69, 0.2);
}

.process-list li > span,
.service-row > span,
.principles-grid article > span {
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.process-list h3,
.process-list p {
  margin-bottom: 6px;
}

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

.secondary-offer {
  background: var(--cream);
}

.secondary-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.55fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.secondary-offer-grid h2,
.secondary-offer-grid p {
  margin-bottom: 0;
}

.secondary-offer-grid > div:last-child > p {
  margin-bottom: 24px;
  color: var(--muted);
}

.cta-section {
  padding-block: 36px 72px;
  background: var(--paper);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 350px;
  padding: clamp(34px, 5vw, 68px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(216, 163, 79, 0.27), transparent 25%),
    linear-gradient(125deg, var(--ink-deep), var(--teal));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  gap: 70px;
}

.cta-panel h2 {
  max-width: 690px;
  margin-bottom: 20px;
}

.cta-panel p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
  display: grid;
  justify-items: start;
  min-width: 215px;
}

.breadcrumbs {
  width: min(calc(100% - 48px), var(--shell));
  padding-top: 24px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.76rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs span {
  margin-left: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 98px;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -140px;
  right: -90px;
  width: 500px;
  height: 500px;
  content: "";
  background: radial-gradient(circle, rgba(216, 163, 79, 0.14), transparent 67%);
  border: 1px solid rgba(13, 65, 69, 0.08);
  border-radius: 50%;
}

.page-hero-inner {
  max-width: 1020px;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6.5vw, 6.8rem);
}

.page-intro {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.course-grid-page .course-card {
  min-height: 430px;
}

.format-section {
  background: var(--cream);
}

.format-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1fr);
  align-items: stretch;
  gap: 18px;
}

.format-card {
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius-lg);
}

.format-card-dark {
  color: var(--white);
  background: var(--ink-deep);
}

.format-card h2 {
  margin-bottom: 24px;
}

.format-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
}

.format-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.format-points article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.format-points span,
.step-card > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: var(--teal);
  background: var(--cream);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 750;
}

.format-points h3 {
  margin-bottom: 8px;
}

.format-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

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

.step-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border-top: 3px solid var(--teal);
  box-shadow: 0 14px 42px rgba(13, 65, 69, 0.06);
}

.step-card h3 {
  margin-bottom: 10px;
}

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

.faq-section {
  background: #e9eee8;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
  gap: clamp(60px, 10vw, 130px);
}

.faq-list details {
  padding: 24px 0;
  border-top: 1px solid rgba(13, 65, 69, 0.2);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(13, 65, 69, 0.2);
}

.faq-list summary {
  position: relative;
  padding-right: 34px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: -4px;
  right: 0;
  content: "+";
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding-right: 30px;
  margin: 14px 0 0;
  color: var(--muted);
}

.banner-hero {
  position: relative;
  min-height: 670px;
  margin-top: 20px;
  color: var(--white);
  background: var(--ink-deep);
}

.banner-media,
.banner-media::after,
.banner-media img {
  position: absolute;
  inset: 0;
}

.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(5, 27, 31, 0.96) 0%, rgba(5, 27, 31, 0.84) 38%, rgba(5, 27, 31, 0.12) 78%);
}

.banner-copy-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 670px;
}

.banner-copy {
  max-width: 720px;
}

.banner-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}

.banner-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(250px, 0.75fr) minmax(300px, 1fr);
  align-items: start;
  padding: 34px 0;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.engagement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: clamp(60px, 10vw, 130px);
}

.engagement-grid > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.engagement-grid ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.engagement-grid li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 26px 0;
  gap: 20px;
  border-top: 1px solid var(--line-light);
}

.engagement-grid li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.engagement-grid li > span {
  color: var(--amber);
  font-family: var(--font-serif);
}

.engagement-grid h3 {
  margin-bottom: 6px;
}

.engagement-grid li p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.62fr);
  gap: clamp(60px, 10vw, 140px);
}

.about-story > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.business-card {
  align-self: start;
  padding: 34px;
  color: var(--white);
  background: var(--teal);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.business-card h3 {
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.business-card dl,
.business-card dd {
  margin-bottom: 0;
}

.business-card dl > div {
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
}

.business-card dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.business-card dd {
  font-size: 0.92rem;
}

.principles-section {
  background: var(--cream);
}

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

.principles-grid article {
  min-height: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(13, 65, 69, 0.13);
  border-radius: var(--radius-md);
}

.principles-grid article > span {
  display: block;
  margin-bottom: 56px;
}

.principles-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  align-items: stretch;
  gap: 18px;
}

.contact-card {
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius-lg);
}

.contact-card-primary {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 5%, rgba(216, 163, 79, 0.27), transparent 26%),
    var(--ink-deep);
}

.contact-card h2 {
  margin-bottom: 28px;
}

.contact-card address {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 1.05rem;
}

.copy-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #b9d8d3;
  font-size: 0.8rem;
}

.contact-details {
  padding: 10px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-details > div {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details > div:last-child {
  border-bottom: 0;
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.74rem;
}

.contact-details strong {
  display: block;
  color: var(--ink-deep);
  font-size: 1.05rem;
}

.contact-details p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-note-section {
  padding-top: 20px;
  background: var(--cream);
}

.contact-note {
  max-width: 820px;
}

.contact-note > p:not(.eyebrow) {
  color: var(--muted);
}

.legal-section {
  padding-top: 40px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
}

.legal-layout aside {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
  padding-top: 8px;
}

.legal-layout aside p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-layout aside strong,
.legal-layout aside a {
  display: block;
}

.legal-layout aside a {
  margin-top: 24px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-content h2 {
  padding-top: 34px;
  margin-bottom: 15px;
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-top: 1px solid var(--line);
}

.legal-content h2:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content p,
.legal-content li {
  color: #496260;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--teal);
  font-weight: 650;
}

.site-footer {
  padding-top: 76px;
  color: rgba(255, 255, 255, 0.66);
  background: #061f23;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.62fr);
  padding-bottom: 58px;
  gap: 50px;
}

.brand-footer {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-brand > p {
  max-width: 360px;
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-legal-name {
  margin-top: 18px;
  font-size: 0.74rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  font-size: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom p {
  margin: 0;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: var(--ink-deep);
}

.error-page main {
  width: min(100%, 700px);
}

.error-page .brand {
  margin-bottom: 100px;
}

.error-page h1 {
  margin-bottom: 20px;
}

.error-page p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 42px;
  }

  .hero-media {
    min-height: 540px;
  }

  .media-note {
    right: -12px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.65fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 auto;
    display: grid;
    padding: 18px 24px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(7, 38, 43, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-link {
    padding: 12px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-link.is-active::after {
    display: none;
  }

  .site-nav .button {
    margin: 12px 0 0;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .hero-media {
    min-height: 460px;
  }

  .course-grid,
  .principles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .course-grid > :last-child,
  .principles-grid > :last-child {
    grid-column: 1 / -1;
  }

  .course-grid > :last-child {
    min-height: 320px;
  }

  .split-heading,
  .secondary-offer-grid,
  .process-grid,
  .faq-grid,
  .engagement-grid,
  .about-grid,
  .contact-grid,
  .format-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .secondary-offer-grid {
    gap: 26px;
  }

  .process-grid,
  .faq-grid,
  .engagement-grid,
  .about-grid {
    gap: 55px;
  }

  .process-intro {
    position: static;
  }

  .format-points {
    grid-template-columns: 1fr 1fr;
  }

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

  .steps-grid > :last-child {
    grid-column: 1 / -1;
  }

  .cta-panel {
    align-items: start;
    gap: 34px;
  }

  .cta-actions {
    display: flex;
  }

  .service-row {
    grid-template-columns: 50px 0.8fr 1fr;
  }

  .legal-layout {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .shell,
  .breadcrumbs {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .home-hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 58px 70px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 16vw, 4.55rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .hero-proof li {
    grid-template-columns: 90px 1fr;
    align-items: center;
  }

  .hero-media {
    min-height: 370px;
  }

  .hero-media::before {
    inset: 16px -14px -18px 24px;
  }

  .media-note {
    right: 12px;
    bottom: 16px;
    min-width: 202px;
  }

  .section {
    padding-block: 76px;
  }

  .section-first {
    padding-top: 40px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .course-grid,
  .principles-grid,
  .format-points,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .course-grid > :last-child,
  .principles-grid > :last-child,
  .steps-grid > :last-child {
    grid-column: auto;
  }

  .course-card,
  .course-grid-page .course-card {
    min-height: auto;
  }

  .course-card-top {
    margin-bottom: 42px;
  }

  .page-hero {
    padding: 54px 0 70px;
  }

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

  .banner-hero,
  .banner-copy-wrap {
    min-height: 650px;
  }

  .banner-media::after {
    background: linear-gradient(0deg, rgba(5, 27, 31, 0.95) 0%, rgba(5, 27, 31, 0.76) 64%, rgba(5, 27, 31, 0.28) 100%);
  }

  .banner-copy-wrap {
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .banner-copy h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .service-row {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .service-row p {
    grid-column: 2;
  }

  .cta-panel {
    min-height: 420px;
    padding: 34px 26px;
    border-radius: 24px;
  }

  .business-card,
  .contact-card,
  .contact-details {
    padding: 28px 24px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .legal-layout aside {
    position: static;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
