/* =========================================================
   IAMPHENOMENAL™ FRAMEWORK PAGE
   ========================================================= */

:root {
  --ink: #17130f;
  --ink-soft: #2a2119;
  --cream: #f6efe4;
  --paper: #fffdf8;
  --gold: #b88a3d;
  --gold-bright: #e3bd70;
  --gold-dark: #8a6328;
  --pink: #ec1478;
  --white: #ffffff;
  --muted: #6d6358;
  --line: rgba(184, 138, 61, 0.25);
  --shadow: 0 28px 80px rgba(37, 26, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
}

em {
  color: var(--gold);
  font-weight: 500;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 35px rgba(184, 138, 61, 0.24);
}

.button-outline {
  color: var(--gold-bright);
  border-color: rgba(225, 189, 114, 0.5);
}

.button-outline:hover {
  background: rgba(225, 189, 114, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 250ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.light-link {
  color: rgba(255, 255, 255, 0.78);
}

/* Header */

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 94px;
  padding: 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 189, 114, 0.65);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: "Playfair Display", serif;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.nav-toggle span {
  width: 19px;
  height: 1px;
  margin: 5px auto;
  display: block;
  background: var(--white);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 155px 8vw 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 28%, rgba(184, 138, 61, 0.12), transparent 30%),
    linear-gradient(135deg, #100d0a, #241a12 58%, #100d0a);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.glow-one {
  width: 320px;
  height: 320px;
  right: 10%;
  top: 20%;
  background: rgba(225, 189, 114, 0.09);
}

.glow-two {
  width: 460px;
  height: 460px;
  left: -240px;
  bottom: -260px;
  background: rgba(236, 20, 120, 0.05);
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 26px;
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(3.8rem, 7vw, 3rem);
  font-weight: 500;
}

.hero h1 em {
  display: block;
  color: var(--gold-bright);
  font-size: clamp(4.2rem, 8vw, 4rem);
  font-style: italic;
  font-weight: 500;
}

.hero-statement {
  max-width: 720px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.4;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.04rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-art {
  width: min(530px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.identity-orbit {
  position: absolute;
  border: 1px solid rgba(225, 189, 114, 0.25);
  border-radius: 50%;
}

.orbit-one {
  inset: 2%;
  animation: rotate 40s linear infinite;
}

.orbit-two {
  inset: 17%;
  border-style: dashed;
  animation: reverseRotate 26s linear infinite;
}

.orbit-three {
  inset: 31%;
  border-color: rgba(225, 189, 114, 0.38);
}

.identity-core {
  position: relative;
  z-index: 4;
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(225, 189, 114, 0.65);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(225, 189, 114, 0.17), transparent 68%),
    rgba(18, 14, 10, 0.92);
  box-shadow:
    0 0 70px rgba(225, 189, 114, 0.18),
    inset 0 0 30px rgba(225, 189, 114, 0.08);
}

.identity-core span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.identity-core strong {
  margin-top: 7px;
  color: var(--gold-bright);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.orbit-letter {
  position: absolute;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(225, 189, 114, 0.42);
  border-radius: 50%;
  background: #17130f;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  box-shadow: 0 0 18px rgba(225, 189, 114, 0.15);
}

.letter-1 { top: 0%; left: 50%; transform: translateX(-50%); }
.letter-2 { top: 7%; right: 21%; }
.letter-3 { top: 20%; right: 5%; }
.letter-4 { top: 42%; right: -1%; }
.letter-5 { bottom: 25%; right: 7%; }
.letter-6 { bottom: 8%; right: 23%; }
.letter-7 { bottom: 0%; left: 50%; transform: translateX(-50%); }
.letter-8 { bottom: 8%; left: 23%; }
.letter-9 { bottom: 25%; left: 7%; }
.letter-10 { top: 42%; left: -1%; }
.letter-11 { top: 20%; left: 5%; }
.letter-12 { top: 7%; left: 21%; }
.letter-13 { top: 50%; left: 50%; transform: translate(-50%, 175px); }

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 8vw;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 45px;
  height: 1px;
  background: rgba(225, 189, 114, 0.5);
}

/* Shared */

.section {
  padding: 120px 7vw;
}

.light-section {
  background:
    linear-gradient(rgba(184, 138, 61, 0.03) 1px, transparent 1px),
    var(--cream);
  background-size: 100% 72px;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 138, 61, 0.1), transparent 28%),
    var(--ink);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 65px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.problem-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  min-height: 330px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.problem-card > span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.problem-card h3 {
  margin: 58px 0 18px;
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 1.2;
}

.problem-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* Mirror */

.mirror-section {
  min-height: 720px;
  padding: 100px 8vw;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(236, 20, 120, 0.07), transparent 38%),
    linear-gradient(135deg, #efe3d3, #fffaf2);
}

.mirror-frame {
  width: min(940px, 100%);
  padding: 18px;
  border: 1px solid rgba(184, 138, 61, 0.4);
  background: linear-gradient(135deg, #cda659, #f1d999, #a87a2e);
  box-shadow: var(--shadow);
}

.mirror-glass {
  min-height: 470px;
  padding: 70px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.42), rgba(255,255,255,0.12)),
    rgba(224, 216, 204, 0.72);
  backdrop-filter: blur(8px);
}

.mirror-small {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mirror-glass strong {
  max-width: 760px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
}

/* Framework */

.framework-heading > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.framework-layout {
  width: min(1220px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.framework-wheel {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(225, 189, 114, 0.22);
  border-radius: 50%;
}

.framework-wheel::before,
.framework-wheel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(225, 189, 114, 0.12);
  border-radius: 50%;
}

.framework-wheel::before { inset: 14%; }
.framework-wheel::after { inset: 29%; border-style: dashed; }

.wheel-center {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  width: 170px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(225, 189, 114, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(225, 189, 114, 0.16), transparent 67%),
    var(--ink-soft);
  transform: translate(-50%, -50%);
}

.wheel-center span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.wheel-center strong {
  margin-top: 6px;
  color: var(--gold-bright);
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.letter-node {
  position: absolute;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(225, 189, 114, 0.35);
  border-radius: 50%;
  background: #17130f;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.letter-node:hover,
.letter-node.active {
  color: var(--ink);
  background: var(--gold-bright);
  transform: scale(1.1);
}

.letter-node:nth-child(1) { top: -1%; left: 50%; transform: translateX(-50%); }
.letter-node:nth-child(2) { top: 6%; right: 20%; }
.letter-node:nth-child(3) { top: 18%; right: 5%; }
.letter-node:nth-child(4) { top: 38%; right: -2%; }
.letter-node:nth-child(5) { bottom: 28%; right: 4%; }
.letter-node:nth-child(6) { bottom: 10%; right: 18%; }
.letter-node:nth-child(7) { bottom: -1%; left: 50%; transform: translateX(-50%); }
.letter-node:nth-child(8) { bottom: 10%; left: 18%; }
.letter-node:nth-child(9) { bottom: 28%; left: 4%; }
.letter-node:nth-child(10) { top: 38%; left: -2%; }
.letter-node:nth-child(11) { top: 18%; left: 5%; }
.letter-node:nth-child(12) { top: 6%; left: 20%; }
.letter-node:nth-child(13) { top: 50%; right: 8%; transform: translateY(-50%); }

.framework-panel {
  min-height: 560px;
  padding: 58px;
  border: 1px solid rgba(225, 189, 114, 0.26);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent),
    rgba(255, 255, 255, 0.018);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.framework-panel.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.panel-index {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.framework-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(3.7rem, 6vw, 6.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.panel-affirmation {
  margin-bottom: 28px;
  color: var(--gold-bright);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-style: italic;
  line-height: 1.4;
}

.framework-panel > p:not(.panel-index):not(.panel-affirmation) {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.85;
}

.panel-meta {
  margin-top: 36px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-top: 1px solid rgba(225, 189, 114, 0.2);
}

.panel-meta div {
  display: grid;
  gap: 8px;
}

.panel-meta span {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.panel-meta strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 500;
}

/* Pillars */

.split-heading {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p:last-child {
  margin: 0 0 10px;
}

.pillar-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  position: relative;
  min-height: 290px;
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pillar-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.pillar-card h3 {
  margin: 55px 0 15px;
  font-size: 2rem;
  font-weight: 500;
}

.pillar-card p {
  color: var(--muted);
  line-height: 1.75;
}

.pillar-card small {
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* Applications */

.application-section {
  background: var(--paper);
}

.application-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.application-card {
  min-height: 310px;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.application-card > span {
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.application-card h3 {
  margin: 58px 0 17px;
  font-size: 1.9rem;
  font-weight: 500;
}

.application-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* Research */

.research-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 90px;
  align-items: center;
}

.research-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  font-weight: 500;
  line-height: 1.03;
}

.research-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
}

.research-map {
  position: relative;
  min-height: 510px;
}

.research-map::before,
.research-map::after {
  content: "";
  position: absolute;
  background: rgba(225, 189, 114, 0.24);
}

.research-map::before {
  width: 1px;
  top: 14%;
  bottom: 14%;
  left: 50%;
}

.research-map::after {
  height: 1px;
  left: 13%;
  right: 13%;
  top: 50%;
}

.research-node {
  position: absolute;
  z-index: 2;
  width: 210px;
  min-height: 145px;
  padding: 22px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(225, 189, 114, 0.32);
  background: #1c1712;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease;
}

.research-node:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
}

.research-node span {
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-node strong {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.research-node:nth-child(1) { top: 0; left: 0; }
.research-node:nth-child(2) { top: 0; right: 0; }
.research-node:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.research-node:nth-child(4) { bottom: 0; right: 0; }

.research-node:nth-child(3):hover {
  transform: translateX(-50%) translateY(-4px);
}

.featured-node {
  width: 250px;
  border-color: rgba(225, 189, 114, 0.62);
  background:
    radial-gradient(circle, rgba(225, 189, 114, 0.12), transparent 65%),
    #1c1712;
}

/* Programs */

.program-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  min-height: 350px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(184, 138, 61, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.program-card > span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.program-card h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 500;
}

.program-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* Journey bridge */

.journey-bridge {
  min-height: 720px;
  padding: 120px 8vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: 90px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 50%, rgba(236, 20, 120, 0.07), transparent 30%),
    var(--paper);
}

.journey-bridge-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 500;
  line-height: 1.02;
}

.journey-bridge-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  line-height: 1.85;
}

.journey-path-art {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.path-line {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.path-stop {
  position: absolute;
  z-index: 2;
  width: 180px;
  min-height: 84px;
  padding: 16px 20px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 12px 28px rgba(37, 26, 12, 0.08);
}

.path-stop:nth-child(2) { top: 4%; left: 6%; }
.path-stop:nth-child(3) { top: 29%; right: 2%; }
.path-stop:nth-child(4) { bottom: 25%; left: 3%; }
.path-stop:nth-child(5) { bottom: 2%; right: 8%; }

.path-stop span {
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.path-stop strong {
  margin-top: 4px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

/* CTA */

.final-cta {
  padding: 135px 8vw;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(225, 189, 114, 0.13), transparent 36%),
    var(--ink);
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.final-cta > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.final-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.site-footer {
  padding: 45px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0b09;
  font-size: 0.72rem;
}

.site-footer strong {
  color: var(--gold-bright);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer > div:nth-child(2) {
  text-align: center;
}

.site-footer > div:last-child {
  text-align: right;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes reverseRotate {
  to { transform: rotate(-360deg); }
}

/* Responsive */

@media (max-width: 1050px) {
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 120px 8vw 60px;
    display: none;
    align-content: center;
    gap: 24px;
    background: rgba(16, 13, 10, 0.98);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    text-transform: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .framework-layout,
  .research-section,
  .journey-bridge {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .application-grid,
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .research-map {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .journey-path-art {
    width: min(560px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .brand-copy small {
    display: none;
  }

  .section,
  .journey-bridge {
    padding: 90px 24px;
  }

  .hero {
    padding: 145px 24px 85px;
  }

  .hero h1 span {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .hero h1 em {
    font-size: clamp(3.7rem, 17vw, 5.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    width: min(430px, 88vw);
  }

  .orbit-letter {
    width: 34px;
    height: 34px;
  }

  .scroll-cue {
    display: none;
  }

  .problem-grid,
  .pillar-grid,
  .application-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mirror-glass {
    min-height: 380px;
    padding: 40px 24px;
  }

  .framework-layout {
    gap: 45px;
  }

  .framework-wheel {
    width: min(420px, 90vw);
  }

  .framework-panel {
    min-height: auto;
    padding: 38px 26px;
  }

  .panel-meta {
    grid-template-columns: 1fr;
  }

  .research-map {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .research-map::before,
  .research-map::after {
    display: none;
  }

  .research-node,
  .research-node:nth-child(1),
  .research-node:nth-child(2),
  .research-node:nth-child(3),
  .research-node:nth-child(4) {
    position: static;
    width: 100%;
    min-height: 130px;
    transform: none;
  }

  .research-node:nth-child(3):hover {
    transform: translateY(-4px);
  }

  .journey-path-art {
    min-height: 560px;
  }

  .path-stop {
    width: 165px;
  }

  .path-stop:nth-child(2) { left: 0; }
  .path-stop:nth-child(3) { right: 0; }
  .path-stop:nth-child(4) { left: 0; }
  .path-stop:nth-child(5) { right: 0; }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > div:nth-child(2),
  .site-footer > div:last-child {
    text-align: left;
  }
}

@media (max-width: 470px) {
  .framework-wheel {
    width: 340px;
    max-width: 100%;
  }

  .letter-node {
    width: 40px;
    height: 40px;
  }

  .wheel-center {
    width: 140px;
  }

  .journey-path-art {
    min-height: 650px;
  }

  .path-stop {
    width: 150px;
  }

  .path-stop:nth-child(2) { left: 0; }
  .path-stop:nth-child(3) { right: 0; }
  .path-stop:nth-child(4) { left: 0; }
  .path-stop:nth-child(5) { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
