:root {
  --base: #ffffff;
  --ivory: #f8f5ef;
  --ivory-strong: #f1eadf;
  --gray: #f3f5f6;
  --navy: #0e2a3a;
  --navy-dark: #082031;
  --navy-soft: #eaf0f2;
  --gold: #c7a26a;
  --gold-dark: #b8945a;
  --burgundy: #8d2636;
  --black: #111111;
  --text: #333333;
  --muted: #6f7478;
  --line: rgba(14, 42, 58, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 18px 44px rgba(8, 32, 49, 0.11);
  --shadow-soft: 0 9px 26px rgba(8, 32, 49, 0.07);
  --radius: 8px;
  --header-height: 78px;
  --wrap: min(1160px, calc(100% - 48px));
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --sans: var(--font-sans);
  --serif: var(--font-serif);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  padding-bottom: 88px;
  color: var(--text);
  background: var(--base);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  line-break: auto;
  overflow-x: hidden;
}

body.nav-open,
html.has-splash {
  overflow: hidden;
}

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

figure,
ul,
ol,
dl,
dd {
  margin: 0;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--navy-dark);
  font-weight: 700;
  background: var(--gold);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.js-enabled .loading-screen {
  display: grid;
}

.loading-screen__mark {
  display: grid;
  width: 240px;
  height: 180px;
  place-items: center;
  padding: 0;
  background: #ffffff;
  box-shadow: none;
  animation: loading-mark 1100ms ease-in-out infinite alternate;
}

.loading-screen__mark img {
  width: 220px;
  height: 165px;
  object-fit: contain;
}

.is-splash-hiding .loading-screen {
  opacity: 0;
  visibility: hidden;
}

@keyframes loading-mark {
  from { transform: translateY(3px); }
  to { transform: translateY(-3px); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px max(22px, calc((100% - 1280px) / 2));
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(14, 42, 58, 0.1);
  backdrop-filter: blur(14px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 70px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 30px rgba(8, 32, 49, 0.08);
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 124px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-nav a.is-current {
  color: var(--gold-dark);
}

.site-nav .nav-external {
  min-height: 42px;
  padding-inline: 16px;
  color: var(--base);
  background: var(--navy);
  border: 1px solid var(--navy);
}

.site-nav .nav-external::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: var(--base);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(40deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-40deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 90;
  display: grid;
  max-height: calc(100svh - var(--header-height));
  padding: 10px 24px 24px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a.is-current {
  color: var(--gold-dark);
  background: rgba(199, 162, 106, 0.08);
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 120;
}

.floating-cta__button {
  display: inline-flex;
  min-width: 190px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: var(--navy-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: linear-gradient(110deg, var(--gold-dark), #d8bb86 54%, var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(8, 32, 49, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(720px, 88svh);
  align-items: center;
  padding: 132px 0 92px;
  color: var(--base);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 32, 49, 0.97) 0%, rgba(8, 32, 49, 0.9) 38%, rgba(8, 32, 49, 0.46) 70%, rgba(8, 32, 49, 0.1) 100%),
    linear-gradient(180deg, rgba(8, 32, 49, 0.08), rgba(8, 32, 49, 0.48));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% center;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.035);
}

.hero-inner {
  position: relative;
}

.hero-inner::after {
  position: absolute;
  right: 8px;
  bottom: -92px;
  width: 1px;
  height: 68px;
  content: "";
  background: linear-gradient(var(--gold), transparent);
}

.hero-copy {
  position: relative;
  width: min(100%, 670px);
  text-align: left;
}

.hero-copy::before {
  display: none;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

.hero-title {
  margin-top: 20px;
  font-size: clamp(3.3rem, 5.2vw, 4.8rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.hero-title > span {
  display: block;
  white-space: nowrap;
}

.hero-title .hero-mobile-break {
  display: inline;
  white-space: inherit;
}

.pc-break-line {
  display: inline;
}

.hero-copy-flow {
  width: min(100%, 640px);
}

.hero-lead,
.hero-note {
  margin: 0;
  text-align: left;
}

.hero-lead {
  margin-top: 26px;
  font-size: 1.04rem;
  line-height: 1.98;
}

.hero-note {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.88;
}

.hero-business-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.hero-business-labels li {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(8, 32, 49, 0.3);
  border: 1px solid rgba(199, 162, 106, 0.52);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-gold {
  color: var(--navy-dark);
  background: var(--gold);
  border-color: var(--gold);
}

.button-navy {
  color: var(--base);
  background: var(--navy);
  border-color: var(--navy);
}

.button-ghost-light {
  color: var(--base);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-sub-link {
  display: inline-flex;
  margin-top: 17px;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(199, 162, 106, 0.72);
}

.section {
  position: relative;
  padding: 112px 0;
  background: var(--base);
  overflow: hidden;
}

.section-ivory {
  background: var(--ivory);
  border-block: 1px solid rgba(14, 42, 58, 0.07);
}

.section-navy {
  color: var(--base);
  background:
    radial-gradient(circle at 14% 16%, rgba(199, 162, 106, 0.15), transparent 30%),
    linear-gradient(180deg, var(--navy-dark), var(--navy));
}

.section-stack {
  display: grid;
  gap: 54px;
}

.section-head,
.section-head-center {
  display: grid;
  width: min(100%, 860px);
  gap: 16px;
  margin-inline: auto;
  text-align: center;
}

.section-label {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 11px;
}

.section-label::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 38px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.section-title {
  color: var(--navy);
  font-size: clamp(2.35rem, 4.2vw, 3.55rem);
  line-height: 1.2;
}

.section-navy .section-title,
.section-navy h3,
.section-navy h4 {
  color: var(--base);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95;
}

.section-navy .section-lead,
.section-navy p {
  color: rgba(255, 255, 255, 0.82);
}

.text-flow {
  display: block;
  line-break: auto;
}

.text-flow > p {
  display: inline;
  margin: 0;
}

.text-flow p,
.section-copy p {
  margin: 0;
}

.title-burgundy {
  color: var(--burgundy);
}

.title-gold {
  color: var(--gold);
}

#problems-title,
#business-title,
#subsidy-title,
#contact-title {
  color: var(--gold);
}

#education-title,
#people-title,
#programs-title {
  color: var(--burgundy);
  text-wrap: balance;
}

#process-title,
#philosophy-title,
#voices-title,
#message-title,
#company-title {
  color: var(--burgundy);
}

.phrase-lock {
  display: inline-block;
  white-space: nowrap;
}

.problem-title-line {
  display: block;
}

@media (min-width: 981px) {
  .pc-break-line {
    display: block;
  }

  .representative-message-full .more-copy .representative-full-signature {
    display: none;
  }

  #people-title {
    white-space: nowrap;
  }

  #people-title .pc-break-line {
    display: inline;
  }

  #education-title,
  #people-title,
  #business-title {
    max-width: none;
  }

  .floating-cta {
    display: none;
  }
}

.section-copy {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.92;
  text-align: left;
}

.section-navy .section-copy {
  color: rgba(255, 255, 255, 0.84);
}

.note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.note-light {
  color: rgba(255, 255, 255, 0.7);
}

.split-media,
.subsidy-layout,
.instructor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.split-media .section-head,
.solution-copy,
.subsidy-copy,
.contact-copy,
.instructor-copy {
  width: 100%;
  margin: 0;
  text-align: left;
}

.split-media .section-label,
.solution-copy .section-label,
.subsidy-copy .section-label,
.contact-copy .section-label,
.instructor-copy .section-label {
  margin-inline: 0;
}

.split-media .section-label::after,
.solution-copy .section-label::after,
.subsidy-copy .section-label::after,
.contact-copy .section-label::after,
.instructor-copy .section-label::after {
  left: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: none;
}

.split-media-reverse > :first-child {
  grid-column: 2;
}

.split-media-reverse > :last-child {
  grid-row: 1;
  grid-column: 1;
}

.media-frame,
.education-photo,
.subsidy-photo,
.contact-photo,
.instructor-photo {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(199, 162, 106, 0.45);
  border-radius: 6px;
  box-shadow: var(--shadow), 12px 12px 0 rgba(199, 162, 106, 0.09);
}

.media-frame img,
.education-photo img,
.subsidy-photo img,
.contact-photo img,
.instructor-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-frame img {
  filter: saturate(0.9) contrast(1.04);
}

.people-section .media-frame img {
  height: auto;
  aspect-ratio: 3 / 2;
  object-position: center;
}

.people-section .split-media {
  align-items: start;
}

.education-photo img {
  object-position: center 42%;
}

.education-logo-photo {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 72px);
  background: var(--base);
}

.education-logo-photo img {
  width: min(100%, 620px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: none;
}

.problem-section {
  color: var(--base);
  background:
    linear-gradient(135deg, rgba(199, 162, 106, 0.11), transparent 34%),
    linear-gradient(180deg, var(--navy-dark), var(--navy));
}

.problem-section .section-title {
  color: var(--base);
}

.problem-section .section-copy {
  color: rgba(255, 255, 255, 0.82);
}

.problem-section .media-frame {
  background: #2f3940;
  border-color: rgba(199, 162, 106, 0.5);
}

.problem-section .media-frame img {
  object-position: 38% center;
  filter: saturate(0.74) contrast(1.08) brightness(0.73);
}

.problem-grid,
.philosophy-grid,
.solution-process,
.voice-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: rgba(14, 42, 58, 0.14);
  list-style: none;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.18);
}

.problem-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 178px;
  padding: 24px 28px 22px;
  overflow: hidden;
  color: var(--base);
  text-align: left;
  background: rgba(255, 255, 255, 0.075);
  border-top: 3px solid rgba(199, 162, 106, 0.68);
}

.problem-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.06em;
  opacity: 0.3;
  pointer-events: none;
}

.problem-card p {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: calc(100% - 74px);
  margin: 0;
  color: var(--base);
  font-weight: 600;
  line-height: 1.72;
}

.differentiation-panel,
.truth-panel {
  padding: 28px 34px;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.differentiation-panel {
  color: var(--navy);
  background: var(--base);
}

.truth-panel {
  color: var(--base);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.differentiation-panel p,
.truth-panel p {
  width: min(100%, 760px);
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.7;
}

.process-section {
  background: var(--gray);
}

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

.solution-process article {
  display: grid;
  min-height: 300px;
  justify-items: center;
  align-content: start;
  gap: 16px;
  padding: 34px 30px;
  text-align: center;
  background: var(--base);
  border-top: 3px solid rgba(199, 162, 106, 0.65);
}

.solution-process article > span {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.line-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-process h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.5;
}

.solution-process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  text-align: left;
}

.philosophy-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.philosophy-card {
  position: relative;
  display: grid;
  min-height: 286px;
  align-content: start;
  gap: 15px;
  padding: 28px 24px 92px;
  overflow: hidden;
  text-align: left;
  background: var(--base);
  border-top: 3px solid rgba(199, 162, 106, 0.65);
}

.philosophy-card .card-number {
  top: auto;
  right: 18px;
  bottom: 16px;
  z-index: 0;
  font-size: clamp(4.25rem, 5vw, 5.8rem);
  letter-spacing: 0.08em;
}

.philosophy-card h3,
.philosophy-card p {
  position: relative;
  z-index: 1;
}

.philosophy-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.55;
}

.philosophy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.82;
}

.curriculum-comparison {
  display: grid;
  gap: 32px;
  padding: clamp(32px, 5vw, 60px);
  color: var(--base);
  background:
    linear-gradient(135deg, rgba(199, 162, 106, 0.13), transparent 38%),
    linear-gradient(180deg, var(--navy-dark), var(--navy));
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.curriculum-comparison-head {
  display: grid;
  gap: 16px;
  text-align: left;
}

.curriculum-comparison-head .section-label {
  margin-inline: 0;
}

.curriculum-comparison-head .section-label::after {
  left: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: none;
}

.curriculum-comparison-head h3 {
  margin: 0;
  color: var(--base);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.35;
}

.curriculum-scale {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
  list-style: none;
}

.curriculum-scale li {
  display: grid;
  grid-template-columns: 50px minmax(190px, 0.62fr) minmax(220px, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.055);
}

.curriculum-number {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.curriculum-scale h4,
.curriculum-scale p {
  margin: 0;
  color: var(--base);
  text-align: left;
}

.curriculum-scale h4 {
  font-size: 1.08rem;
}

.curriculum-scale p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
}

.curriculum-meter {
  position: relative;
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.curriculum-meter i {
  position: absolute;
  top: -2px;
  left: 0;
  width: 12%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 999px;
}

.curriculum-scale li:nth-child(2) .curriculum-meter i { width: 34%; }
.curriculum-scale li:nth-child(3) .curriculum-meter i { width: 56%; }
.curriculum-scale li:nth-child(4) .curriculum-meter i { width: 76%; }
.curriculum-scale li:nth-child(5) .curriculum-meter i { width: 100%; }

.curriculum-scale-lab {
  background: rgba(199, 162, 106, 0.13);
  box-shadow: inset 3px 0 0 var(--gold);
}

.programs-section {
  background: var(--ivory);
}

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

.program-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: var(--base);
  border: 1px solid rgba(199, 162, 106, 0.42);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.program-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc((100% - 24px) / 2);
  justify-self: center;
}

.program-card > figure {
  height: 260px;
  overflow: hidden;
  background: var(--navy-soft);
}

.program-card > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.program-card > figure img[src*="pro-businessperson-training"] {
  object-position: center top;
}

.program-card > .logo-figure {
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--base);
}

.program-card > .logo-figure img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.program-card-body {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 30px;
  text-align: left;
}

.program-kicker {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.program-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.48;
}

.program-card p {
  margin: 0;
  line-height: 1.86;
}

.program-price {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.program-price span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.program-price strong {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.5;
}

.results-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(199, 162, 106, 0.19), transparent 30%),
    linear-gradient(180deg, var(--navy-dark), var(--navy));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-card {
  display: grid;
  min-height: 230px;
  place-content: center;
  gap: 14px;
  padding: 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--gold);
}

.stat-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.stat-card strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.4rem);
  line-height: 1;
  white-space: nowrap;
}

.results-section > .wrap > .note {
  text-align: center;
}

.client-panel {
  width: min(100%, 960px);
  margin-inline: auto;
  padding: 36px 40px;
  color: var(--text);
  background: var(--base);
  border-top: 3px solid var(--gold);
}

.client-panel h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  text-align: center;
}

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

.client-list li {
  padding: 11px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.client-panel .note {
  margin-top: 15px;
  text-align: right;
}

.voice-section {
  background: var(--gray);
}

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

.voice-card {
  display: grid;
  min-height: 485px;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 30px 28px;
  text-align: left;
  background: var(--base);
  border-top: 3px solid rgba(199, 162, 106, 0.65);
}

.voice-card h3 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.55;
}

.voice-card p {
  margin: 0;
  line-height: 1.85;
}

.voice-role {
  padding-top: 16px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
  border-top: 1px solid var(--line);
}

.voice-section > .wrap > .note {
  text-align: center;
}

.message-section {
  background: var(--base);
}

.instructor-layout {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  align-items: stretch;
  box-shadow: var(--shadow);
}

.instructor-copy {
  grid-row: 1;
  grid-column: 2;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 46px 50px 28px;
  background: var(--ivory);
  border-top: 3px solid var(--gold);
}

.instructor-photo {
  grid-row: 1 / 3;
  grid-column: 1;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.instructor-photo img {
  height: 100%;
  min-height: 690px;
  aspect-ratio: auto;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
}

.representative-message-copy {
  display: grid;
  gap: 11px;
  text-align: left;
}

.representative-message-copy p {
  margin: 0;
}

.plain-lines {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.plain-lines li {
  position: relative;
  padding-left: 17px;
  text-align: left;
}

.plain-lines li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.signature {
  grid-row: 2;
  grid-column: 2;
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0 50px 46px;
  color: var(--navy);
  text-align: left;
  background: var(--ivory);
}

.signature span {
  font-size: 0.78rem;
  line-height: 1.55;
}

.signature strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.section-more {
  width: min(100%, 960px);
  margin-inline: auto;
}

.section-more summary {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 13px 62px 13px 26px;
  color: var(--base);
  font-weight: 800;
  text-align: center;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}

.section-more summary::-webkit-details-marker {
  display: none;
}

.section-more summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 22px;
  height: 22px;
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  transform: translateY(-50%);
}

.section-more[open] summary::after {
  content: "−";
}

.more-close {
  display: none;
}

.section-more[open] .more-open {
  display: none;
}

.section-more[open] .more-close {
  display: inline;
}

.section-more-content {
  margin-top: 22px;
  padding: clamp(30px, 5vw, 54px);
  background: var(--ivory);
  border-top: 3px solid var(--gold);
}

.more-copy {
  display: grid;
  width: min(100%, 760px);
  gap: 15px;
  margin-inline: auto;
  text-align: left;
}

.representative-message-full .more-copy {
  grid-template-columns: minmax(0, 1fr);
}

.representative-message-full .more-copy > * {
  grid-column: 1;
}

.more-copy h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.4;
  text-align: center;
}

.more-copy p {
  margin: 0;
  line-height: 1.95;
}

.representative-intro-line {
  color: var(--navy);
  font-weight: 700;
}

.more-copy .signature {
  display: block;
  margin-top: 15px;
  padding: 18px 0 0;
  text-align: right;
  background: transparent;
  border-top: 1px solid var(--line);
}

.support-section {
  color: var(--base);
  background:
    linear-gradient(135deg, rgba(199, 162, 106, 0.13), transparent 34%),
    linear-gradient(180deg, var(--navy-dark), var(--navy));
}

.support-section .section-title,
.support-section .section-lead,
.support-section h3,
.support-section p {
  color: var(--base);
}

.business-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.business-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
  border-top: 3px solid var(--gold);
}

.business-slideshow {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--navy-dark);
}

.business-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.business-slideshow img.is-active {
  opacity: 1;
}

.business-card-body {
  display: grid;
  gap: 16px;
  padding: 34px 32px;
  text-align: left;
}

.business-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.5;
}

.business-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.business-card .button {
  margin-top: 5px;
  color: var(--navy);
  background: var(--base);
  border-color: rgba(255, 255, 255, 0.65);
}

.subsidy-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subsidy-copy {
  display: grid;
  gap: 20px;
}

.subsidy-photo img {
  aspect-ratio: 3 / 2;
}

.contact-section {
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.contact-section::before {
  inset: 0;
  z-index: -2;
  background: url("../img/contact-executive.jpg") 62% center / cover no-repeat;
  filter: blur(5px);
  opacity: 0.42;
}

.contact-section::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 32, 49, 0.94), rgba(8, 32, 49, 0.85) 58%, rgba(8, 32, 49, 0.92));
}

.contact-section > .wrap {
  position: relative;
  z-index: 1;
}

.contact-section-stack {
  gap: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  grid-template-areas:
    "copy photo"
    "form form";
  column-gap: 48px;
  row-gap: 48px;
  align-items: start;
}

.contact-copy {
  grid-area: copy;
  display: grid;
  width: 100%;
  max-width: 620px;
  gap: 20px;
}

#contact-title {
  font-size: clamp(2.15rem, 2.5vw, 2.3rem);
  line-height: 1.32;
}

.contact-photo {
  grid-area: photo;
  width: min(100%, 460px);
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-photo img {
  aspect-ratio: 4 / 5;
  object-position: 62% center;
}

.contact-issues,
.contact-questions {
  color: rgba(255, 255, 255, 0.86);
}

.contact-issues {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.contact-issues li {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 13px 16px 13px 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-issues li::before {
  top: 50%;
  left: 17px;
  width: 7px;
  background: var(--gold);
  transform: translateY(-50%);
}

.contact-form-link {
  grid-area: form;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "description"
    "button";
  gap: 13px;
  align-items: center;
  padding: 27px 32px;
  color: var(--navy);
  background: var(--base);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.contact-form-link p {
  margin: 0;
  color: var(--navy);
}

.contact-form-link .form-title {
  grid-area: title;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.contact-form-link > p:not(.form-title) {
  grid-area: description;
}

.contact-form-link .button {
  grid-area: button;
  align-self: center;
  justify-self: start;
  min-height: 56px;
  padding: 13px 30px;
}

.company-section {
  background: var(--base);
}

.company-panel {
  width: min(100%, 960px);
  margin-inline: auto;
  padding: 12px 40px;
  background: var(--base);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.company-list > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.company-list > div:last-child {
  border-bottom: 0;
}

.company-list dt {
  color: var(--navy);
  font-weight: 800;
}

.company-list dd {
  min-width: 0;
}

.company-list ul {
  display: grid;
  gap: 5px;
  padding: 0;
  list-style: none;
}

.company-list a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-dark);
  border-top: 1px solid rgba(199, 162, 106, 0.4);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: start;
  padding-block: 64px 48px;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-logo {
  width: 108px;
  margin-bottom: 6px;
  padding: 0;
  background: transparent;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  font-size: 0.86rem;
}

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

.footer-links a {
  padding: 10px 0;
  font-size: 0.83rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.copyright {
  margin: 0;
  padding: 20px 24px;
  font-size: 0.72rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease var(--reveal-delay, 0ms), transform 680ms ease var(--reveal-delay, 0ms);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .floating-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(8, 32, 49, 0.2);
  }

  .button-ghost-light:hover {
    color: var(--navy);
    background: var(--base);
    border-color: var(--base);
  }

  .button-navy:hover {
    background: var(--navy-dark);
  }

  .program-card:hover > figure img {
    transform: scale(1.025);
  }
}

@media (max-width: 1180px) {
  .site-header { justify-content: space-between; }

  .site-header .brand {
    position: static;
    transform: none;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-right: 0;
    margin-left: auto;
  }

  .mobile-nav {
    display: grid;
  }

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

  .philosophy-card:nth-child(4),
  .philosophy-card:nth-child(5) {
    min-height: 250px;
  }

  .philosophy-card:nth-child(4) h3 {
    text-wrap: balance;
  }
}

@media (max-width: 980px) {
  .split-media,
  .subsidy-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "photo"
      "form";
    gap: 34px;
  }

  .contact-photo {
    width: 100%;
    justify-self: stretch;
  }

  .contact-photo img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .contact-form-link {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "description"
      "button";
    gap: 13px;
  }

  .contact-form-link .button {
    width: 100%;
  }

  .split-media-reverse > :first-child,
  .split-media-reverse > :last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .solution-process,
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .philosophy-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .program-card:last-child:nth-child(odd) {
    width: 100%;
  }

  .instructor-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  }

  .instructor-copy {
    padding: 38px 36px 24px;
  }

  .signature {
    padding: 0 36px 38px;
  }

  .instructor-photo img {
    min-height: 760px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --wrap: min(100% - 48px, 520px);
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
    font-size: 15.5px;
    line-height: 1.82;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 8px 20px;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    min-height: var(--header-height);
  }

  .brand img {
    width: 110px;
    height: 46px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-nav {
    padding: 8px 24px 22px;
  }

  .mobile-nav a {
    min-height: 50px;
    justify-content: flex-start;
    text-align: left;
  }

  .floating-cta {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--gold);
  }

  .floating-cta__button {
    width: 100%;
    min-height: 64px;
    padding: 12px 20px;
    border: 0;
    border-radius: 0;
    box-shadow: 0 -8px 26px rgba(8, 32, 49, 0.16);
  }

  .hero {
    min-height: 700px;
    align-items: flex-start;
    padding: 116px 0 40px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 32, 49, 0.44) 0%, rgba(8, 32, 49, 0.64) 34%, rgba(8, 32, 49, 0.96) 76%, rgba(8, 32, 49, 0.98) 100%);
  }

  .hero-bg img {
    object-position: 73% center;
    transform: scale(1.03);
  }

  .hero-inner::after {
    display: none;
  }

  .hero-copy {
    width: 100%;
    text-align: left;
  }

  .hero-title {
    margin-top: 16px;
    font-size: clamp(1.8rem, 8.5vw, 2.1rem);
    line-height: 1.14;
    letter-spacing: 0;
    text-align: left;
  }

  .hero-title > span {
    white-space: normal;
  }

  .hero-title .hero-mobile-break {
    display: block;
    white-space: normal;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.78;
  }

  .hero-note {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-business-labels {
    gap: 7px;
    margin-top: 18px;
  }

  .hero-business-labels li {
    width: fit-content;
    padding: 6px 9px;
    font-size: 0.7rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

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

  .hero-actions .button {
    min-height: 56px;
    padding: 11px 15px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .hero-sub-link {
    justify-content: flex-start;
    margin-top: 13px;
    padding: 8px 0;
    text-align: left;
  }

  .section {
    padding: 74px 0;
  }

  .section-stack {
    gap: 40px;
  }

  .section-head,
  .section-head-center,
  .split-media .section-head,
  .solution-copy,
  .subsidy-copy,
  .contact-copy,
  .instructor-copy,
  .curriculum-comparison-head {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .section-label,
  .split-media .section-label,
  .solution-copy .section-label,
  .subsidy-copy .section-label,
  .contact-copy .section-label,
  .instructor-copy .section-label,
  .curriculum-comparison-head .section-label {
    margin-inline: 0;
    text-align: left;
  }

  .section-label::after,
  .split-media .section-label::after,
  .solution-copy .section-label::after,
  .subsidy-copy .section-label::after,
  .contact-copy .section-label::after,
  .instructor-copy .section-label::after,
  .curriculum-comparison-head .section-label::after {
    left: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: none;
  }

  .section-title {
    font-size: clamp(1.72rem, 7.2vw, 2.05rem);
    line-height: 1.38;
    text-align: left;
  }

  #contact-title {
    font-size: clamp(1.62rem, 7.2vw, 2.05rem);
    line-height: 1.38;
  }

  #problems-title {
    max-width: clamp(230px, calc(100vw - 145px), 250px);
  }

  .section-lead,
  .section-copy,
  .text-flow,
  .text-flow p,
  .note,
  p,
  li,
  dd {
    text-align: left;
  }

  .split-media,
  .subsidy-layout {
    gap: 34px;
  }

  .contact-issues {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-frame,
  .education-photo,
  .subsidy-photo,
  .contact-photo {
    width: 100%;
    box-shadow: var(--shadow-soft), 7px 7px 0 rgba(199, 162, 106, 0.09);
  }

  .education-logo-photo {
    padding: 34px 24px;
  }

  .problem-grid,
  .philosophy-grid,
  .solution-process,
  .voice-grid,
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .problem-card {
    grid-template-rows: auto auto;
    gap: 10px;
    min-height: 150px;
    padding: 16px 24px 18px;
  }

  .problem-icon {
    width: 36px;
    height: 36px;
  }

  .problem-card .card-number {
    top: 16px;
    right: 18px;
    font-size: clamp(5.5rem, 25vw, 8rem);
  }

  .problem-card p {
    align-self: start;
    max-width: calc(100% - 68px);
    line-height: 1.58;
  }

  .differentiation-panel,
  .truth-panel {
    padding: 25px 24px;
    text-align: left;
  }

  .differentiation-panel p,
  .truth-panel p {
    margin: 0;
    font-size: 1.13rem;
    text-align: left;
  }

  .solution-process article {
    grid-template-areas:
      "icon step"
      "icon title"
      "body body";
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
    justify-items: start;
    gap: 4px 16px;
    padding: 26px 24px;
    text-align: left;
  }

  .solution-process article > span {
    grid-area: step;
  }

  .solution-process .line-icon {
    grid-area: icon;
  }

  .solution-process h3 {
    grid-area: title;
    text-align: left;
  }

  .solution-process article:last-child h3 {
    font-size: 1.12rem;
  }

  .solution-process p {
    grid-area: body;
    margin-top: 13px;
  }

  .philosophy-card,
  .philosophy-card:nth-child(4),
  .philosophy-card:nth-child(5) {
    min-height: 0;
    padding: 22px 24px 58px;
  }

  .philosophy-card .card-number {
    right: 16px;
    bottom: 10px;
  }

  .philosophy-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .philosophy-card h3 {
    font-size: 1.18rem;
  }

  .philosophy-card:nth-child(1) h3,
  .philosophy-card:nth-child(2) h3 {
    text-wrap: balance;
  }

  .philosophy-card:nth-child(1) h3 {
    max-width: 210px;
  }

  .curriculum-comparison {
    gap: 25px;
    padding: 30px 24px;
  }

  .curriculum-comparison-head h3 {
    font-size: clamp(1.65rem, 7vw, 1.95rem);
    text-align: left;
  }

  .curriculum-scale li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px 13px;
    padding: 17px;
  }

  .curriculum-meter {
    grid-column: 1 / -1;
  }

  .programs-grid,
  .business-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  .program-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .program-card > figure {
    height: 215px;
  }

  .program-card-body {
    padding: 25px 24px;
  }

  .program-card h3 {
    font-size: 1.22rem;
  }

  .program-card:first-child h3 {
    max-width: 210px;
    text-wrap: wrap;
  }

  .program-price strong {
    font-size: 1.07rem;
  }

  .stat-card {
    min-height: 184px;
    place-content: center start;
    padding: 28px 24px;
    text-align: left;
  }

  .stat-card strong {
    font-size: clamp(3rem, 15vw, 4.2rem);
    text-align: left;
  }

  .results-section > .wrap > .note,
  .voice-section > .wrap > .note {
    text-align: left;
  }

  .client-panel {
    padding: 28px 24px;
  }

  .client-panel h3 {
    text-align: left;
  }

  .client-list {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .client-panel .note {
    text-align: left;
  }

  .voice-card {
    min-height: 0;
    padding: 27px 24px;
  }

  .voice-card h3 {
    font-size: 1.18rem;
  }

  .instructor-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    box-shadow: var(--shadow-soft);
  }

  .instructor-copy {
    grid-row: auto;
    grid-column: auto;
    padding: 31px 24px;
  }

  .instructor-photo {
    grid-row: auto;
    grid-column: auto;
    min-height: 0;
    border-top: 1px solid rgba(199, 162, 106, 0.38);
  }

  .instructor-photo img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .signature {
    grid-row: auto;
    grid-column: auto;
    padding: 26px 24px 31px;
    text-align: left;
  }

  .signature strong {
    font-size: 1.4rem;
  }

  .section-more summary {
    justify-content: flex-start;
    min-height: 58px;
    padding: 12px 52px 12px 20px;
    font-size: 0.83rem;
    text-align: left;
  }

  .section-more-content {
    padding: 30px 24px;
  }

  .more-copy h3 {
    font-size: 1.6rem;
    text-align: left;
  }

  .more-copy .signature {
    text-align: left;
  }

  .business-slideshow {
    height: 220px;
  }

  .business-card-body {
    min-width: 0;
    padding: 27px 24px;
  }

  .business-card h3 {
    font-size: 1.25rem;
  }

  .business-card .button {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    padding-inline: 18px;
    font-size: 0.82rem;
  }

  .subsidy-copy .button {
    width: 100%;
    padding-inline: 18px;
  }

  .contact-form-link .button {
    width: 100%;
  }

  .subsidy-photo img,
  .contact-photo img {
    aspect-ratio: 4 / 3;
  }

  .contact-form-link {
    padding: 25px 24px;
  }

  .company-panel {
    padding: 8px 24px;
  }

  .company-list > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding: 20px 0;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: 52px 40px;
  }

  .footer-logo {
    width: 90px;
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .copyright {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    text-align: left;
  }
}

.people-heading-pc,
.contact-heading-pc {
  display: none;
}

@media (min-width: 981px) {
  .people-section > .wrap {
    width: min(1060px, calc(100% - 48px));
  }

  .people-heading-pc,
  .contact-heading-pc {
    display: grid;
  }

  .people-heading-pc {
    width: 100%;
    max-width: none;
  }

  .people-heading-pc .section-title {
    white-space: nowrap;
  }

  .people-section .split-media {
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    gap: 42px;
    align-items: start;
  }

  .people-section .split-media .section-head > .section-label,
  .people-section .split-media .section-head > #people-title {
    display: none;
  }

  .people-section .split-media .section-head {
    align-self: start;
  }

  .contact-section-stack {
    width: min(1060px, calc(100% - 48px));
    gap: 46px;
  }

  .contact-heading-pc {
    width: 100%;
    max-width: none;
  }

  .contact-heading-pc .section-title {
    display: grid;
    gap: 2px;
    color: #c7a26a;
    font-size: clamp(2.5rem, 3.35vw, 3.35rem);
    line-height: 1.25;
  }

  .contact-heading-pc .section-title > span {
    display: block;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(380px, 0.92fr);
    grid-template-areas:
      "photo copy"
      "photo form";
    column-gap: 24px;
    row-gap: 18px;
    align-items: start;
  }

  .contact-copy {
    max-width: none;
    gap: 9px;
    font-size: 0.875rem;
    line-height: 1.75;
  }

  .contact-copy > .section-label,
  .contact-copy > #contact-title {
    display: none;
  }

  .contact-photo {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .contact-photo img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .contact-issues {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 5px 10px;
  }

  .contact-copy .section-copy {
    font-size: 0.875rem;
    line-height: 1.75;
  }

  .contact-questions {
    gap: 4px;
  }

  .contact-issues li {
    display: block;
    min-height: 0;
    padding: 0 0 0 17px;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.78125rem;
    font-weight: 700;
    line-height: 1.65;
  }

  .contact-issues li::before {
    top: 0.78em;
    left: 0;
    transform: none;
  }

  .contact-form-link {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "description"
      "button";
    gap: 5px;
    padding: 0;
    color: var(--base);
    font-size: 0.875rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .contact-form-link p {
    color: rgba(255, 255, 255, 0.82);
  }

  .contact-form-link .form-title {
    color: var(--gold);
    line-height: 1.25;
  }
}

@media (max-width: 359px) {
  :root {
    --wrap: calc(100% - 40px);
  }

  .hero-copy {
    padding-left: 16px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.62rem;
  }

  .hero-actions .button {
    font-size: 0.79rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }

  .business-slideshow img {
    transition: none;
  }

  .business-slideshow img:first-child {
    opacity: 1;
  }

  .business-slideshow img:not(:first-child) {
    opacity: 0;
  }
}
