:root {
  --ink: #11191c;
  --ink-soft: #273236;
  --paper: #f7f4ed;
  --paper-deep: #eee8dc;
  --warm: #e9ddcc;
  --copper: #d99162;
  --copper-deep: #b86f46;
  --teal: #70aaa4;
  --sand: #d6c7a0;
  --line: rgba(17, 25, 28, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --white: #fffdf8;
  --muted: #677277;
  --shadow: 0 28px 80px rgba(17, 25, 28, 0.12);
  --radius: 24px;
  --radius-small: 14px;
  --shell: min(1180px, calc(100vw - 40px));
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

::selection { background: var(--copper); color: var(--ink); }

.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;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { width: min(760px, 100%); }
.section { padding: clamp(84px, 10vw, 144px) 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-paper { background: var(--paper); }
.section-warm { background: var(--warm); }
.section-signal { background: var(--copper); color: var(--ink); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}
h1 { font-size: clamp(3.5rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.55rem, 5.2vw, 5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.22; }
p { font-size: clamp(1rem, 1.25vw, 1.12rem); }

.eyebrow {
  margin-bottom: 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}
.eyebrow.ink { color: var(--copper-deep); }
.mini-label {
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--copper);
  border-radius: 999px;
  background: var(--copper);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); background: #e5a174; border-color: #e5a174; }
.button:focus-visible, .text-link:focus-visible, .primary-nav a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}
.button-small { min-height: 42px; padding: 9px 18px; }
.button-large { min-height: 62px; padding: 17px 28px; }
.button-light { background: var(--paper); border-color: var(--paper); }
.button-light:hover { background: var(--white); border-color: var(--white); }
.button-full { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.dark-link { color: var(--ink); }

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 200ms ease, box-shadow 200ms ease;
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(17, 25, 28, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.solid-header { position: relative; background: var(--ink); }
.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark { width: 38px; height: 38px; }
.brand-mark circle { fill: none; stroke-width: 2.5; }
.brand-mark circle:nth-child(1) { stroke: var(--copper); }
.brand-mark circle:nth-child(2) { stroke: var(--teal); }
.brand-mark circle:nth-child(3) { stroke: var(--sand); }
.brand span { display: flex; align-items: baseline; gap: 8px; }
.brand strong { font-size: 1rem; letter-spacing: 0.12em; }
.brand small { opacity: 0.7; font-size: 0.76rem; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > a:not(.button) {
  font-size: 0.83rem;
  font-weight: 650;
  text-decoration: none;
  color: rgba(255, 253, 248, 0.78);
}
.primary-nav > a:not(.button):hover { color: var(--white); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 170px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-glow {
  position: absolute;
  width: 820px;
  height: 820px;
  right: -320px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 170, 164, 0.18), transparent 65%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  align-items: center;
  gap: 56px;
}
.hero-copy h1 { max-width: 850px; margin-bottom: 30px; }
.hero-copy h1 em { color: var(--copper); font-style: italic; }
.hero-lead { max-width: 690px; color: rgba(255,255,255,0.72); font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin: 38px 0 52px; }
.hero-facts {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-facts li {
  min-width: 150px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.hero-facts span { color: rgba(255,255,255,0.56); font-size: 0.78rem; }
.hero-visual { position: relative; max-width: 580px; margin-inline: auto; }
.venn { width: 100%; overflow: visible; }
.venn-circle { stroke-width: 2; mix-blend-mode: screen; }
.venn-why { fill: rgba(217,145,98,0.12); stroke: var(--copper); }
.venn-how { fill: rgba(112,170,164,0.12); stroke: var(--teal); }
.venn-what { fill: rgba(214,199,160,0.1); stroke: var(--sand); }
.venn-labels text {
  fill: rgba(255,255,255,0.62);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-anchor: middle;
}
.venn-centre circle { fill: rgba(17,25,28,0.86); stroke: rgba(255,255,255,0.25); }
.venn-centre text {
  fill: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-anchor: middle;
}
.visual-caption { margin-top: -20px; text-align: center; color: rgba(255,255,255,0.52); font-size: 0.82rem; }
.orbital-note {
  position: absolute;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(17,25,28,0.74);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.orbital-note-one { left: 1%; top: 29%; color: var(--copper); }
.orbital-note-two { right: 1%; top: 29%; color: var(--teal); }
.orbital-note-three { left: 50%; bottom: 1%; transform: translateX(-50%); color: var(--sand); }

.section-intro { max-width: 910px; margin-bottom: clamp(52px, 7vw, 86px); }
.section-intro h2 { margin-bottom: 28px; }
.section-intro > p:last-child { max-width: 760px; color: var(--muted); }
.section-intro.light > p:last-child { color: rgba(255,255,255,0.62); }

.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.principle-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.38);
}
.principle-card h3 { margin-top: auto; margin-bottom: 14px; }
.principle-card p { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; }
.card-number { font-family: var(--display); font-size: 1.3rem; color: var(--copper-deep); }

.split-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.sticky-copy { position: sticky; top: 140px; }
.sticky-copy p:last-child { color: #586267; }
.circle-list { display: grid; gap: 18px; }
.circle-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 34px;
  border: 1px solid rgba(17,25,28,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.42);
}
.circle-item h3 { margin-bottom: 10px; }
.circle-item p:last-child { margin-bottom: 0; color: #596367; }
.circle-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.circle-icon-why { color: var(--copper-deep); }
.circle-icon-how { color: #4f8d88; }
.circle-icon-what { color: #8c7950; }
.integration-quote {
  margin: 24px 0 0;
  padding: 38px;
  border-left: 4px solid var(--copper-deep);
  background: var(--ink);
  color: var(--white);
}
.integration-quote p { margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.3; }

.experience-section { position: relative; overflow: hidden; }
.experience-section::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: -280px;
  bottom: -360px;
  border-radius: 50%;
  border: 1px solid rgba(217,145,98,0.22);
  box-shadow: 0 0 0 70px rgba(217,145,98,0.025), 0 0 0 140px rgba(112,170,164,0.02);
}
.day-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.day-card {
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.035);
}
.day-label { color: var(--copper); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.day-card h3 { min-height: 66px; font-family: var(--display); font-size: 1.75rem; font-weight: 500; }
.day-card > p:not(.day-label) { color: rgba(255,255,255,0.6); font-size: 0.96rem; }
.day-card ul { margin: 28px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line-light); list-style: none; }
.day-card li { padding: 7px 0; color: rgba(255,255,255,0.76); font-size: 0.86rem; }
.day-card li::before { content: "—"; margin-right: 10px; color: var(--teal); }

.profile-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(52px, 9vw, 120px); align-items: center; }
.profile-copy p:not(.eyebrow) { color: var(--muted); }
.profile-stack { display: grid; gap: 10px; }
.profile-stack article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255,255,255,0.5);
  box-shadow: 0 12px 30px rgba(17,25,28,0.04);
}
.profile-stack article:nth-child(2) { margin-left: 22px; }
.profile-stack article:nth-child(3) { margin-left: 44px; }
.profile-stack article:nth-child(4) { margin-left: 22px; }
.profile-stack span { font-family: var(--display); color: var(--copper-deep); font-size: 1.2rem; }
.profile-stack strong, .profile-stack small { display: block; }
.profile-stack small { margin-top: 4px; color: var(--muted); line-height: 1.45; }

.support-grid { display: grid; grid-template-columns: 0.32fr 1fr; gap: 48px; align-items: center; }
.support-number { font-family: var(--display); font-size: clamp(8rem, 18vw, 16rem); line-height: 0.75; color: rgba(17,25,28,0.76); }
.support-copy h2 { margin-bottom: 24px; }
.support-copy p:last-child { max-width: 800px; }

.fit-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(46px, 8vw, 100px); align-items: start; }
.check-list { margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 17px 0 17px 38px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--copper-deep); font-weight: 900; }
.fit-note { padding: 38px; border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.fit-note p:last-child { color: rgba(255,255,255,0.64); }

.about-grid { display: grid; grid-template-columns: 0.45fr 1fr; gap: clamp(50px, 10vw, 130px); align-items: center; }
.about-monogram {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(217,145,98,0.26), transparent 42%),
    radial-gradient(circle at 62% 63%, rgba(112,170,164,0.22), transparent 44%);
  box-shadow: inset 0 0 0 18px rgba(255,255,255,0.02);
}
.about-monogram span { font-family: var(--display); font-size: clamp(4rem, 9vw, 8rem); color: rgba(255,255,255,0.86); }
.about-copy p:not(.eyebrow):not(.about-role) { color: rgba(255,255,255,0.65); }
.about-role { padding-top: 22px; border-top: 1px solid var(--line-light); color: var(--sand); font-size: 0.9rem; }

.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.event-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.46);
}
.event-card-accent { background: var(--ink); color: var(--white); }
.event-card h3 { font-family: var(--display); font-size: clamp(2rem, 3.7vw, 3.4rem); font-weight: 500; }
.event-card p:not(.event-month) { color: var(--muted); }
.event-card-accent p:not(.event-month) { color: rgba(255,255,255,0.62); }
.event-month { color: var(--copper-deep); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem; }
.event-card-accent .event-month { color: var(--copper); }
.event-note { margin: 28px 0 0; color: #5b6569; font-size: 0.88rem; }

.faq-grid { display: grid; grid-template-columns: 0.66fr 1fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.faq-heading { position: sticky; top: 140px; }
.faq-heading p:last-child { color: var(--muted); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 26px 46px 26px 0;
  position: relative;
  font-size: 1.08rem;
  font-weight: 750;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--copper-deep);
}
.accordion details[open] summary::after { content: "–"; }
.accordion details div { padding: 0 44px 24px 0; color: var(--muted); }
.accordion details div p { margin-bottom: 0; font-size: 0.98rem; }

.closing-cta { padding: clamp(80px, 9vw, 130px) 0; }
.closing-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.closing-grid h2 { max-width: 900px; }
.closing-grid p:last-child { max-width: 720px; color: rgba(255,255,255,0.62); }

.site-footer { padding: 74px 0 26px; background: #0b1113; color: rgba(255,255,255,0.72); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.7fr 0.7fr; gap: 60px; }
.footer-brand { color: var(--white); margin-bottom: 18px; }
.footer-grid > div > a:not(.brand) { display: block; margin: 10px 0; text-decoration: none; font-size: 0.88rem; }
.footer-grid > div > a:not(.brand):hover { color: var(--white); }
.footer-label { color: var(--white); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.footer-bottom p { margin: 0; font-size: 0.72rem; color: rgba(255,255,255,0.42); }
.footer-bottom a { color: rgba(255,255,255,0.68); }
.compact-footer { padding-top: 18px; }
.compact-footer .footer-bottom { margin-top: 0; }

.inner-hero { padding: 110px 0 80px; }
.inner-hero h1 { font-size: clamp(3.2rem, 7vw, 6.4rem); }
.inner-hero p:last-child { max-width: 720px; color: rgba(255,255,255,0.65); font-size: 1.15rem; }
.application-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.application-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
}
.application-card-dark { background: var(--ink); color: var(--white); }
.application-card h2 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.application-top p:last-child { color: var(--muted); }
.application-card-dark .application-top p:last-child { color: rgba(255,255,255,0.62); }
.plain-list { margin: 26px 0 38px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.application-card-dark .plain-list { border-color: var(--line-light); }
.plain-list li { padding: 9px 0; font-size: 0.92rem; }
.plain-list li::before { content: "—"; margin-right: 10px; color: var(--copper-deep); }
.application-card-dark .plain-list li::before { color: var(--copper); }
.application-card .button { margin-top: auto; }
.process-list { margin: 50px 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--copper-deep); color: var(--copper-deep); font-family: var(--display); font-size: 1.2rem; }
.process-list h3 { margin-bottom: 8px; }
.process-list p { margin-bottom: 0; color: var(--muted); }
.notice-box { padding: 26px 30px; border-left: 4px solid var(--copper-deep); background: var(--paper-deep); }
.notice-box p { margin: 4px 0 0; color: var(--muted); }

.legal-content { width: min(820px, var(--shell)); }
.legal-intro { margin-bottom: 58px; padding: 30px; border-radius: var(--radius-small); background: var(--paper-deep); }
.legal-content section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 1px solid var(--line); }
.legal-content h2 { font-family: var(--sans); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.legal-content p, .legal-content li { color: #4f5a5f; font-size: 0.98rem; }
.legal-content ul { padding-left: 22px; }

.error-page { min-height: 100vh; display: grid; place-items: center; }
.error-content { text-align: center; }
.error-content h1 { font-size: clamp(3.4rem, 8vw, 7rem); }
.error-content p:not(.eyebrow) { color: rgba(255,255,255,0.65); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(620px, 100%); }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .profile-grid, .fit-grid, .faq-grid { grid-template-columns: 1fr; }
  .sticky-copy, .faq-heading { position: static; }
  .day-grid { grid-template-columns: 1fr; }
  .day-card h3 { min-height: auto; }
  .support-grid { grid-template-columns: 0.42fr 1fr; }
  .about-grid { grid-template-columns: 0.6fr 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { position: absolute; }
  .site-header.is-scrolled { position: fixed; }
  .nav-shell { min-height: 74px; }
  .brand small { display: none; }
  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
  }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 1.5px; background: currentColor; }
  .primary-nav {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line-light);
    border-radius: 18px;
    background: rgba(17,25,28,0.98);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { padding: 12px 4px; }
  .primary-nav .button { margin-top: 10px; }
  .hero { padding-top: 130px; }
  .hero-facts { flex-wrap: wrap; }
  .hero-facts li { flex: 1 1 130px; }
  .event-grid, .application-grid { grid-template-columns: 1fr; }
  .application-card { min-height: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-monogram { width: min(420px, 100%); }
  .closing-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  .section { padding: 76px 0; }
  h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { margin-top: 20px; }
  .orbital-note { display: none; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 250px; }
  .circle-item { grid-template-columns: 1fr; }
  .circle-icon { width: 68px; height: 68px; }
  .profile-stack article, .profile-stack article:nth-child(n) { margin-left: 0; }
  .support-grid { grid-template-columns: 1fr; gap: 24px; }
  .support-number { font-size: 9rem; }
  .event-card { min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .process-list li { grid-template-columns: 54px 1fr; }
  .process-list span { width: 44px; height: 44px; }
}
