:root {
  --ink: #231525;
  --ink-soft: #362338;
  --paper: #f7f1e8;
  --paper-warm: #efe4d6;
  --white: #fffdf8;
  --lilac: #ffd9ff;
  --lilac-deep: #e9b8ee;
  --orange: #ff941e;
  --mint: #44c9a0;
  --line: rgba(35, 21, 37, 0.17);
  --line-light: rgba(255, 253, 248, 0.22);
  --serif: Baskerville, "Baskerville Old Face", "Iowan Old Style", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Thai", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.shell {
  width: min(100% - 64px, 1400px);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  min-height: 88px;
  padding: 0 32px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(19, 13, 22, 0.72), rgba(19, 13, 22, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: 116px;
  height: 32px;
  object-fit: contain;
}

.brand span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}

.site-header nav a,
.header-cta {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--lilac);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 13, 27, 0.96) 0%, rgba(24, 13, 27, 0.81) 31%, rgba(24, 13, 27, 0.21) 60%, rgba(24, 13, 27, 0.06) 100%),
    linear-gradient(180deg, rgba(18, 11, 22, 0.34) 0%, transparent 35%, rgba(18, 11, 22, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 92px;
}

.hero-copy {
  width: min(680px, 51vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(35, 21, 37, 0.64);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 253, 248, 0.68);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 148, 30, 0.13);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(74px, 8vw, 126px);
  line-height: 0.79;
}

h1 em {
  color: var(--lilac);
  font-weight: 400;
}

.hero-lede {
  max-width: 635px;
  margin-bottom: 18px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.48;
}

.hero-thai {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 217, 255, 0.78);
  font-size: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  gap: 36px;
  background: var(--lilac);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--orange);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--lilac);
  background: rgba(255, 217, 255, 0.11);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 9px 12px;
  border-radius: 10px;
  color: rgba(255, 253, 248, 0.72);
  background: rgba(35, 21, 37, 0.72);
  backdrop-filter: blur(9px);
  font-size: 11px;
}

.hero-caption span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-caption strong {
  color: var(--white);
  font-weight: 650;
}

.truth-strip {
  background: var(--lilac);
  border-bottom: 1px solid rgba(35, 21, 37, 0.1);
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.truth-grid p {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  margin: 0;
  padding: 16px 32px;
  border-left: 1px solid rgba(35, 21, 37, 0.12);
  font-size: 13px;
  font-weight: 690;
}

.truth-grid p:last-child {
  border-right: 1px solid rgba(35, 21, 37, 0.12);
}

.truth-grid span {
  color: rgba(35, 21, 37, 0.66);
  font-family: var(--serif);
  font-size: 16px;
}

.section {
  padding: 130px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.journey-intro h2,
.development-heading h2,
.investor-intro h2,
.families-heading h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 5.2vw, 86px);
  line-height: 0.98;
}

.heading-copy {
  padding-bottom: 6px;
  color: rgba(35, 21, 37, 0.7);
  font-size: 17px;
}

.heading-copy p:last-child,
.sightline-copy p:last-child,
.investor-intro p:last-child {
  margin-bottom: 0;
}

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

.value-card {
  min-height: 360px;
  padding: 26px 28px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.54);
  transition: transform 180ms ease, background 180ms ease;
}

.value-card:nth-child(2) {
  background: var(--lilac);
}

.value-card:nth-child(3) {
  background: rgba(68, 201, 160, 0.16);
}

.value-card:hover {
  transform: translateY(-5px);
  background: var(--white);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(35, 21, 37, 0.7);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.value-card h3 {
  margin: 98px 0 20px;
  font-size: 48px;
  line-height: 1;
}

.value-card p {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(35, 21, 37, 0.72);
}

.sightlines {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.sightline-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: 76px;
  align-items: center;
}

.sightline-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(52px, 5.4vw, 84px);
  line-height: 0.97;
}

.large-copy {
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  letter-spacing: -0.02em;
  line-height: 1.33;
}

.sightline-copy > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.68);
}

.sightline-copy .large-copy {
  color: rgba(255, 253, 248, 0.94);
}

.spatial-sequence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 48px 0 0;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  overflow: hidden;
  list-style: none;
}

.spatial-sequence > li {
  position: relative;
  min-height: 148px;
  padding: 16px 14px;
  border-right: 1px solid var(--line-light);
}

.spatial-sequence > li:last-child {
  border-right: 0;
}

.spatial-sequence span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.68);
  font-family: var(--serif);
  font-size: 13px;
}

.spatial-sequence strong,
.spatial-sequence small {
  display: block;
}

.spatial-sequence strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.spatial-sequence small {
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.spatial-sequence .glass-step {
  background: linear-gradient(135deg, rgba(255, 148, 30, 0.25), rgba(255, 217, 255, 0.1));
  box-shadow: inset 4px 0 0 var(--orange), inset -4px 0 0 var(--orange);
}

.feature-figure,
.axon-figure {
  margin: 0;
}

.feature-figure picture,
.axon-figure picture {
  display: block;
}

.feature-figure {
  position: relative;
}

.feature-figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 106px;
  height: 106px;
  border: 1px solid rgba(255, 217, 255, 0.52);
  border-radius: 50% 50% 50% 8px;
  pointer-events: none;
}

.feature-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  object-fit: cover;
}

.feature-figure figcaption,
.axon-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  color: rgba(255, 253, 248, 0.53);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-figure figcaption strong {
  color: rgba(255, 253, 248, 0.82);
  font-weight: 650;
}

.journey {
  background: var(--paper-warm);
}

.journey-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  column-gap: 90px;
  align-items: end;
}

.journey-intro .eyebrow {
  grid-column: 1 / -1;
}

.journey-intro > p:last-child {
  margin-bottom: 8px;
  color: rgba(35, 21, 37, 0.63);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 80px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.journey-steps li {
  min-height: 260px;
  padding: 22px 26px 30px 0;
  border-right: 1px solid var(--line);
}

.journey-steps li:not(:first-child) {
  padding-left: 26px;
}

.journey-steps li:last-child {
  border-right: 0;
}

.journey-steps span {
  display: block;
  margin-bottom: 76px;
  color: rgba(35, 21, 37, 0.64);
  font-family: var(--serif);
}

.journey-steps h3 {
  margin-bottom: 14px;
  font-size: 32px;
}

.journey-steps p {
  margin-bottom: 0;
  color: rgba(35, 21, 37, 0.63);
  font-size: 14px;
}

.development {
  color: var(--white);
  background: #18101c;
}

.development-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  gap: 96px;
  align-items: end;
}

.development-heading > div:last-child {
  color: rgba(255, 253, 248, 0.6);
}

.development-heading .large-copy {
  color: rgba(255, 253, 248, 0.92);
}

.axon-figure {
  margin-top: 72px;
}

.axon-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  object-fit: cover;
}

.axon-figure figcaption {
  align-items: flex-start;
  letter-spacing: normal;
  text-transform: none;
}

.axon-figure figcaption div,
.axon-figure figcaption span,
.axon-figure figcaption strong {
  display: block;
}

.axon-figure figcaption span {
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.axon-figure figcaption strong {
  color: rgba(255, 253, 248, 0.88);
  font-size: 13px;
}

.axon-figure figcaption p {
  max-width: 470px;
  margin: 0;
  text-align: right;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.planning-card {
  min-height: 315px;
  padding: 24px 24px 28px;
  border-right: 1px solid var(--line-light);
}

.planning-card:first-child {
  padding-left: 0;
}

.planning-card:last-child {
  border-right: 0;
}

.planning-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 76px;
}

.planning-meta span {
  color: rgba(255, 253, 248, 0.65);
  font-family: var(--serif);
}

.planning-meta small {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 99px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.planning-card h3 {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.12;
}

.planning-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.52);
  font-size: 13px;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}

.disclosure-card {
  min-height: 280px;
  padding: 32px;
  border-radius: 22px;
}

.disclosure-card.now {
  color: var(--ink);
  background: var(--lilac);
}

.disclosure-card.next {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

.mini-label {
  margin-bottom: 34px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.disclosure-card h3 {
  margin-bottom: 18px;
  font-size: 36px;
}

.disclosure-card p:last-child {
  margin-bottom: 0;
}

.disclosure-card.next ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.disclosure-card.next li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.78);
}

.investors {
  background: var(--white);
}

.investor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 100px;
}

.investor-intro h2 {
  margin-bottom: 34px;
}

.investor-intro > p {
  color: rgba(35, 21, 37, 0.65);
}

.investor-intro .large-copy {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 54px;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.investor-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.investor-cards article {
  min-height: 510px;
  padding: 26px 28px;
  border-radius: 24px;
  background: var(--paper);
}

.investor-cards article:last-child {
  background: var(--paper-warm);
}

.investor-cards ul {
  margin: 116px 0 0;
  padding: 0;
  list-style: none;
}

.investor-cards li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
}

.investor-cards li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-family: var(--sans);
}

.families {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
}

.families::before,
.families::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 217, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.families::before {
  width: 540px;
  height: 540px;
  top: -270px;
  right: -150px;
}

.families::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.families .shell {
  position: relative;
  z-index: 1;
}

.families-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.65fr);
  gap: 110px;
  align-items: end;
}

.families-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.64);
}

.support-heading {
  margin: 24px 0 0;
  color: var(--lilac);
  font-size: 17px;
}

.contact-status {
  max-width: 650px;
  margin: 32px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: rgba(35, 21, 37, 0.7);
  background: rgba(255, 253, 248, 0.52);
  font-size: 12px;
}

.investors .contact-status {
  border-color: var(--line);
  color: rgba(35, 21, 37, 0.78);
  background: var(--paper-warm);
}

.family-contact {
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.72);
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.18);
}

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

.question-card {
  min-height: 365px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.question-number {
  display: block;
  margin-bottom: 76px;
  color: rgba(255, 253, 248, 0.66);
  font-family: var(--serif);
}

.question-card h3 {
  margin-bottom: 16px;
  font-size: 34px;
}

.question-card p {
  color: rgba(255, 253, 248, 0.58);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.tag-row span {
  padding: 6px 10px;
  border-radius: 99px;
  color: var(--ink);
  background: var(--lilac);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.interest-note {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(520px, 1.35fr);
  gap: 80px;
  margin-top: 64px;
  padding: 46px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--orange);
}

.interest-note h3 {
  margin: 0;
  font-size: 40px;
  line-height: 1.05;
}

.note-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  color: rgba(35, 21, 37, 0.78);
  font-size: 14px;
}

.note-copy p {
  margin: 0;
}

.closing {
  padding: 112px 0;
  background: var(--lilac);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.72fr);
  gap: 100px;
  align-items: end;
}

.closing-grid > div:last-child > p {
  color: rgba(35, 21, 37, 0.68);
}

.closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.closing-links a {
  padding: 12px 16px;
  border: 1px solid rgba(35, 21, 37, 0.3);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}

footer {
  padding: 52px 0;
  color: rgba(255, 253, 248, 0.52);
  background: #130d16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
  align-items: end;
}

.footer-brand img {
  width: 138px;
  height: auto;
  margin-bottom: 16px;
}

.footer-grid p {
  margin: 0;
  font-size: 11px;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

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

  .site-header nav {
    display: none;
  }

  .sightline-grid,
  .investor-grid {
    grid-template-columns: 1fr;
  }

  .feature-figure {
    max-width: 980px;
  }

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

  .planning-card:nth-child(2) {
    border-right: 0;
  }

  .planning-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .planning-card:first-child,
  .planning-card:nth-child(3) {
    padding-left: 0;
  }

  .investor-cards article {
    min-height: 460px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .site-header {
    min-height: 74px;
    padding: 0 18px;
  }

  .brand img {
    width: 100px;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: 74px;
    background: var(--ink);
  }

  .hero-media {
    position: relative;
    height: 52vw;
    min-height: 330px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    padding-top: 54px;
    padding-bottom: 74px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(64px, 16vw, 92px);
  }

  .hero-caption {
    top: calc(74px + 52vw - 48px);
    right: 18px;
    bottom: auto;
  }

  .hero-caption strong {
    display: none;
  }

  .truth-grid,
  .value-grid,
  .question-grid,
  .disclosure-grid,
  .investor-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .truth-grid p {
    min-height: 66px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(35, 21, 37, 0.12);
  }

  .truth-grid p:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .section {
    padding: 88px 0;
  }

  .split-heading,
  .journey-intro,
  .development-heading,
  .families-heading,
  .closing-grid,
  .interest-note {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading h2,
  .journey-intro h2,
  .development-heading h2,
  .investor-intro h2,
  .families-heading h2,
  .closing h2 {
    font-size: clamp(46px, 12vw, 68px);
  }

  .value-card {
    min-height: 320px;
  }

  .value-card h3 {
    margin-top: 72px;
  }

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

  .journey-steps li:nth-child(2) {
    border-right: 0;
  }

  .journey-steps li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .journey-steps li:nth-child(3) {
    padding-left: 0;
  }

  .axon-figure figcaption {
    flex-direction: column;
  }

  .axon-figure figcaption p {
    text-align: left;
  }

  .investor-grid {
    gap: 60px;
  }

  .investor-cards article {
    min-height: 420px;
  }

  .interest-note {
    padding: 32px;
  }

  .note-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 520px);
  }

  .hero-media {
    height: 66vw;
    min-height: 290px;
  }

  .hero-caption {
    top: calc(74px + 66vw - 44px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .spatial-sequence {
    grid-template-columns: 1fr 1fr;
  }

  .spatial-sequence > li:nth-child(2) {
    border-right: 0;
  }

  .spatial-sequence > li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .feature-figure figcaption {
    flex-direction: column;
    gap: 4px;
  }

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

  .journey-steps li,
  .journey-steps li:not(:first-child),
  .planning-card,
  .planning-card:first-child,
  .planning-card:nth-child(3) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .planning-card,
  .planning-card:first-child,
  .planning-card:nth-child(3) {
    border-bottom-color: var(--line-light);
  }

  .journey-steps span,
  .planning-meta {
    margin-bottom: 34px;
  }

  .planning-card:last-child {
    border-bottom: 0;
  }

  .axon-figure img {
    aspect-ratio: 4 / 3;
  }

  .investor-cards ul {
    margin-top: 70px;
  }

  .question-card {
    min-height: 320px;
  }

  .footer-grid {
    gap: 20px;
  }
}

@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;
  }
}

/* Little Ministry conversion additions */
[id] {
  scroll-margin-top: 96px;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

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

.site-header {
  position: absolute;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 74px;
  color: var(--ink);
  background: rgba(247, 241, 232, 0.95);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(120%);
}

.site-header.is-scrolled .brand-tagline,
.site-header.is-scrolled .lang-switcher summary {
  color: rgba(35, 21, 37, 0.63);
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-scrolled .lang-switcher summary {
  border-color: var(--line);
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand .brand-lockup {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
}

.brand .brand-name {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.brand .brand-tagline {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  position: relative;
}

.lang-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  list-style: none;
  text-transform: uppercase;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-switcher summary::after {
  content: "⌄";
}

.lang-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 168px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 60px rgba(19, 10, 23, 0.18);
}

.lang-menu a {
  display: flex;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 12px;
}

.lang-menu a:hover,
.lang-menu a:focus-visible {
  background: var(--paper-warm);
}

.lang-menu a[aria-current="page"]::after {
  content: "●";
  color: var(--orange);
  font-size: 8px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 17px;
  height: 12px;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: top 180ms ease, transform 180ms ease;
}

.menu-icon::before { top: 1px; }
.menu-icon::after { top: 9px; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { top: 5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { top: 5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: none;
  padding: 110px 24px 36px;
  color: var(--ink);
  background: var(--paper);
  overflow-y: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lilac);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  background: var(--orange);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  width: min(100%, 640px);
  margin-inline: auto;
}

.mobile-menu nav > a {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(30px, 8vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.mobile-menu nav > a::after {
  content: "↘";
  align-self: center;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 13px;
}

.mobile-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.mobile-languages a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
}

.hero-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--lilac);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brand-line img {
  width: 34px;
  height: 34px;
}

.experiences {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-card {
  min-height: 310px;
  padding: 24px 24px 30px;
  border-right: 1px solid var(--line);
}

.experience-card:first-child {
  padding-left: 0;
}

.experience-card:last-child {
  border-right: 0;
}

.experience-card span {
  color: rgba(35, 21, 37, 0.42);
  font-family: var(--serif);
}

.experience-card h3 {
  margin: 92px 0 16px;
  font-size: 34px;
}

.experience-card p {
  color: rgba(35, 21, 37, 0.63);
  font-size: 14px;
}

.experience-note {
  margin: 22px 0 0;
  color: rgba(35, 21, 37, 0.66);
  font-size: 12px;
}

.evolution {
  background: #eae0d3;
}

.evolution-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.7fr);
  gap: 100px;
  align-items: end;
}

.evolution-intro h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 5.2vw, 86px);
  line-height: 0.98;
}

.evolution-intro > div:last-child {
  color: rgba(35, 21, 37, 0.66);
}

.direction-note {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  margin-top: 64px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--lilac);
}

.direction-note h3 {
  margin: 0;
  font-size: 34px;
}

.direction-note p {
  margin: 0;
  color: rgba(35, 21, 37, 0.72);
}

.study-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.study-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  background: var(--ink);
}

.study-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.study-gallery figcaption {
  min-height: 134px;
  padding: 18px 20px 20px;
}

.study-gallery figcaption span,
.study-gallery figcaption strong {
  display: block;
}

.study-gallery figcaption span {
  color: var(--lilac-deep);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.study-gallery figcaption strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.12;
}

.study-gallery figcaption small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 253, 248, 0.5);
}

.update-slot {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  margin-top: 44px;
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.36);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.update-slot h3 {
  margin: 0;
  font-size: 34px;
}

.update-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-light);
}

.update-meta div {
  padding: 14px;
  background: #18101c;
}

.update-meta span,
.update-meta strong {
  display: block;
}

.update-meta span {
  color: rgba(255, 253, 248, 0.42);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.update-meta strong {
  margin-top: 6px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 12px;
}

.project-truths {
  background: var(--paper);
}

.truths-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.truths-grid h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 5.2vw, 86px);
  line-height: 0.98;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 21px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 720px; padding: 0 32px 20px 0; color: rgba(35, 21, 37, 0.64); }

.project-disclaimer {
  margin-top: 42px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  color: rgba(35, 21, 37, 0.7);
  background: var(--paper-warm);
  font-size: 12px;
}

.footer-brand .footer-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand .footer-lockup img {
  width: 42px;
  height: 42px;
  margin: 0;
}

.footer-brand .footer-lockup strong {
  font-size: 12px;
  letter-spacing: 0.11em;
}

@media (max-width: 1180px) {
  .menu-toggle { display: grid; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-card:nth-child(2) { border-right: 0; }
  .experience-card:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .experience-card:nth-child(3) { padding-left: 0; }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header.is-scrolled { min-height: 74px; }
  .brand .brand-lockup { display: block; }
  .brand .brand-tagline { display: none; }
  .lang-switcher { display: none; }
  .evolution-intro,
  .direction-note,
  .update-slot,
  .truths-grid { grid-template-columns: 1fr; gap: 32px; }
  .study-gallery { grid-template-columns: 1fr; }
  .study-gallery img { aspect-ratio: 16 / 9; }
  .study-gallery figcaption { min-height: 0; }
}

@media (max-width: 560px) {
  .brand img { width: 42px; height: 42px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card,
  .experience-card:first-child,
  .experience-card:nth-child(3) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .experience-card h3 { margin-top: 40px; }
  .update-meta { grid-template-columns: 1fr; }
}

/* Root redirect and not-found pages */
.redirect-page,
.error-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--ink);
}

.redirect-page main,
.error-page main {
  width: min(100% - 48px, 760px);
  min-height: 100vh;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 72px;
}

.redirect-page h1,
.error-page h1 {
  margin: 18px 0 24px;
  font-size: clamp(52px, 9vw, 96px);
  line-height: 0.92;
}

.redirect-page a {
  color: var(--lilac);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.error-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 72px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.error-page main > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 19px;
}

@media (max-width: 640px) {
  .error-page .button-row {
    width: 100%;
    align-items: stretch;
  }

  .error-page .button {
    justify-content: center;
  }
}

/* Production accessibility and resilient-navigation additions */
.site-header :focus-visible,
.hero :focus-visible,
.sightlines :focus-visible,
.development :focus-visible,
.families :focus-visible,
footer :focus-visible,
.error-page :focus-visible,
.redirect-page :focus-visible {
  outline-color: var(--lilac);
}

.site-header.is-scrolled :focus-visible {
  outline-color: var(--ink);
}

.site-header .lang-menu a:focus-visible {
  outline-color: var(--ink);
}

.site-header.is-scrolled nav a:hover,
.site-header.is-scrolled nav a:focus-visible,
.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 0.35em;
}

.button.primary:focus-visible {
  outline-color: var(--white);
  box-shadow: 0 0 0 7px var(--ink);
}

.interest-note :focus-visible {
  outline-color: var(--ink);
}

.experience-card span,
.update-meta span,
.study-gallery figcaption small {
  color: rgba(35, 21, 37, 0.66);
}

.development .update-meta span,
.study-gallery figcaption small {
  color: rgba(255, 253, 248, 0.68);
}

.search-results-notice {
  position: relative;
  z-index: 15;
  margin: 0;
  padding: 104px max(32px, calc((100vw - 1400px) / 2)) 18px;
  color: var(--ink);
  background: var(--orange);
  font-size: 14px;
  font-weight: 750;
}

.search-result-target {
  box-shadow: inset 0 5px 0 var(--orange);
}

.breadcrumbs {
  margin-bottom: 42px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--orange);
  content: "/";
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.site-search {
  width: min(100%, 640px);
  margin: 2px 0 28px;
}

.site-search label {
  display: block;
  margin-bottom: 9px;
  color: var(--lilac);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.site-search input,
.site-search button {
  min-height: 52px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 999px;
  font: inherit;
}

.site-search input {
  min-width: 0;
  padding: 0 20px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
}

.site-search input::placeholder {
  color: rgba(255, 253, 248, 0.58);
}

.site-search button {
  padding: 0 22px;
  color: var(--ink);
  background: var(--lilac);
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
}

.site-search button:hover,
.site-search button:focus-visible {
  background: var(--orange);
  outline-color: var(--lilac);
}

.error-actions {
  margin-top: 2px;
}

@media (max-width: 1180px) {
  .js .menu-toggle {
    display: grid;
  }

  html:not(.js) .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding-block: 12px;
    background: rgba(19, 13, 22, 0.94);
  }

  html:not(.js) .site-header nav {
    grid-column: 1;
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 7px 0;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  html:not(.js) .header-actions {
    position: absolute;
    top: 17px;
    right: 18px;
  }

  html:not(.js) .menu-toggle,
  html:not(.js) .header-cta {
    display: none;
  }

  html:not(.js) .hero-content {
    padding-top: 170px;
  }
}

@media (max-width: 860px) {
  .search-results-notice {
    padding: 88px 18px 14px;
  }

  html:not(.js) .lang-switcher {
    display: block;
  }

  html:not(.js) .hero {
    padding-top: 132px;
  }

  html:not(.js) .hero-content {
    padding-top: 54px;
  }

  html:not(.js) .hero-caption {
    top: calc(132px + 52vw - 48px);
  }
}

@media (max-width: 560px) {
  .site-search-row {
    grid-template-columns: 1fr;
  }

  .site-search button {
    width: 100%;
  }

  html:not(.js) .hero-caption {
    top: calc(132px + 66vw - 44px);
  }
}
