/* ── PHOS · φῶς ─────────────────────────────────────────────
   Brand system from the PHOS investor deck:
   Caudex (Greek-heritage serif) + Jost (geometric sans,
   stand-in for MADE Evolve Sans) · cream, umber, olive,
   rust-terracotta.
──────────────────────────────────────────────────────────── */

:root {
  --cream: #f2efe8;
  --cream-deep: #e8e3d6;
  --card: #fbf9f4;
  --ink: #2a2419;
  --ink-60: rgba(42, 36, 25, 0.64);
  --ink-35: rgba(42, 36, 25, 0.38);
  --ink-12: rgba(42, 36, 25, 0.12);
  --umber: #4a4133;
  --night: #332d22;
  --olive: #999770;
  --olive-deep: #6e6e46;
  --rust: #b85d4a;
  --rust-soft: rgba(184, 93, 74, 0.14);
  --cream-on-dark: #ece7da;
  --cream-on-dark-55: rgba(236, 231, 218, 0.58);
  --cream-on-olive: #f6f3e8;
  --cream-on-olive-70: rgba(246, 243, 232, 0.78);
  --cream-on-olive-45: rgba(246, 243, 232, 0.5);
  --serif: "Caudex", "Palatino Linotype", Georgia, serif;
  --sans: "Jost", "Century Gothic", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--rust); color: var(--cream); }

em { font-family: var(--serif); font-style: italic; }
.greek { font-family: var(--serif); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 6vw; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 6vw; }

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Film grain ── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-3%, -5%); }
  30% { transform: translate(4%, 2%); }
  50% { transform: translate(-2%, 6%); }
  70% { transform: translate(5%, -3%); }
  90% { transform: translate(-4%, 4%); }
}
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 3.5vw;
  transition: background .5s, backdrop-filter .5s, padding .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(242, 239, 232, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--ink-12);
  padding: 0.9rem 3.5vw;
}
.nav-mark {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.34em;
  text-decoration: none;
  color: var(--ink);
}
.nav-phi {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink-35);
  margin-left: 0.4em;
}
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav-links a {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-60);
  transition: color .3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--ink-35);
  border-radius: 999px;
  padding: 0.55em 1.3em;
  transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: var(--ink); color: var(--cream) !important; border-color: var(--ink); }

/* ── Sun scroll track ── */
.sun-track {
  position: fixed;
  top: 14vh;
  bottom: 14vh;
  right: 2.4vw;
  width: 1px;
  background: var(--ink-12);
  z-index: 40;
}
.sun-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rust);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px var(--rust-soft), 0 0 18px rgba(184, 93, 74, 0.5);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-dawn {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 62% at 50% 104%, rgba(184, 93, 74, 0.28), rgba(184, 93, 74, 0.09) 45%, transparent 72%),
    radial-gradient(ellipse 45% 30% at 50% 102%, rgba(201, 121, 74, 0.42), transparent 70%);
  animation: dawn 9s ease-in-out infinite alternate;
}
@keyframes dawn {
  from { opacity: 0.75; }
  to   { opacity: 1; }
}
.hero-horizon {
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: 17vh;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-35) 18%, var(--ink-35) 82%, transparent);
}
.hero-inner { position: relative; padding: 0 6vw; }
.kicker {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 3rem;
}
.hero-word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4.6rem, 17vw, 13.5rem);
  letter-spacing: 0.14em;
  margin-right: -0.14em; /* optically recenter tracked type */
  line-height: 0.95;
  margin-bottom: 1.6rem;
  color: var(--umber);
}
.hero-gloss {
  font-size: 0.95rem;
  color: var(--ink-60);
  margin-bottom: 4.5rem;
}
.hero-gloss .greek { font-size: 1.15em; font-style: italic; }
.hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--ink);
}
.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 17vh;
  display: block;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--ink-35);
  transform-origin: top;
  animation: cue 2.6s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 3D wireframe sun ── */
.orb {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(74vmin, 680px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  perspective: 1200px;
  pointer-events: none;
}
.orb i, .orb .lat, .orb-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.orb i {
  border: 1px solid rgba(184, 93, 74, 0.22);
  animation: orbSpin 44s linear infinite;
  animation-delay: calc(var(--i) * -4.889s); /* 44s / 9 rings */
}
@keyframes orbSpin {
  from { transform: rotateX(14deg) rotateY(0deg); }
  to   { transform: rotateX(14deg) rotateY(360deg); }
}
.orb .lat {
  border: 1px solid rgba(184, 93, 74, 0.17);
}
.lat-1 { transform: rotateX(76deg) scale(0.82); }
.lat-2 { transform: rotateX(76deg) translateY(-14%) scale(0.55); }
.orb-core {
  inset: 34%;
  background: radial-gradient(circle, rgba(201, 121, 74, 0.28), rgba(201, 121, 74, 0.08) 55%, transparent 75%);
  animation: corePulse 7s ease-in-out infinite alternate;
}
@keyframes corePulse {
  from { transform: scale(0.92); opacity: 0.8; }
  to   { transform: scale(1.06); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .orb i, .orb-core { animation: none; }
}

/* ── Light motes ── */
.motes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── Shared section pieces ── */
section { padding: 9rem 0; }

.label {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 2.4rem;
}
.label-light { color: var(--rust); }

.statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.14;
  margin-bottom: 3rem;
  max-width: 20ch;
}
.statement em { font-style: italic; }
.statement-light { color: var(--cream-on-dark); }

/* ── Manifesto ── */
.manifesto { padding-top: 11rem; }
.manifesto-body {
  max-width: 640px;
  font-size: 1.15rem;
  color: var(--ink-60);
  margin-bottom: 6rem;
}
.manifesto-body em { color: var(--ink); }

.forces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3.5rem;
  border-top: 1px solid var(--ink-12);
  padding-top: 4rem;
}
.force-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  color: var(--rust);
  display: block;
  margin-bottom: 1.2rem;
  line-height: 1;
}
.force h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.force h3 em { text-transform: none; letter-spacing: 0.04em; font-size: 1.15em; }
.force p { font-size: 0.95rem; color: var(--ink-60); }
.force strong { font-weight: 500; color: var(--ink); }

/* ── Vision ── */
.vision {
  background: var(--cream-deep);
  text-align: center;
  padding: 11rem 0;
}
.vision .label { margin-bottom: 3.4rem; }
.vision-text {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.4;
  margin-bottom: 2.8rem;
}
.vision-text .hl {
  font-style: italic;
  background-image: linear-gradient(var(--rust), var(--rust));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 94%;
  transition: background-size 1.2s cubic-bezier(.22,.61,.36,1), text-shadow 1.2s ease;
}
.vision-text.lit .hl {
  background-size: 100% 1px;
  text-shadow: 0 0 20px rgba(201, 121, 74, 0.5);
}
.vision-text.lit .hl:nth-of-type(1) { transition-delay: 0.15s; }
.vision-text.lit .hl:nth-of-type(2) { transition-delay: 0.75s; }
.vision-text.lit .hl:nth-of-type(3) { transition-delay: 1.35s; }
@media (prefers-reduced-motion: reduce) {
  .vision-text .hl { background-size: 100% 1px; transition: none; }
}
.vision-sub {
  font-size: 1rem;
  color: var(--ink-60);
  max-width: 52ch;
  margin: 0 auto;
}

/* ── Light band ── */
.band {
  position: relative;
  height: clamp(320px, 58vh, 560px);
  overflow: hidden;
}
.band img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.band-caption {
  position: absolute;
  left: 6vw;
  bottom: 2rem;
  color: rgba(251, 249, 244, 0.92);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(42, 36, 25, 0.5);
}
.band-caption .greek {
  font-size: 1.5em;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
  margin-right: 0.3em;
}

/* ── Sanctuary elements ── */
.elements { list-style: none; border-top: 1px solid var(--ink-12); }
.element {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr 8rem;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2.8rem 0;
  border-bottom: 1px solid var(--ink-12);
  transition: padding-left .45s cubic-bezier(.22,.61,.36,1);
}
.element:hover { padding-left: 1.2rem; }
.element > *:not(.el-bg) { position: relative; z-index: 1; }
.el-bg {
  position: absolute;
  inset: 1px 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.el-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.55) sepia(0.4) contrast(0.85) brightness(1.12);
  mix-blend-mode: multiply;
}
.element:hover .el-bg { opacity: 0.16; }
@media (hover: none) {
  .element.in .el-bg { opacity: 0.10; }
}
.el-index {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--rust);
}
.el-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.7rem;
}
.el-body p { color: var(--ink-60); max-width: 58ch; }
.el-note {
  justify-self: end;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-35);
  white-space: nowrap;
}

/* ── Values (olive, from the deck's values slide) ── */
.values {
  background: var(--olive);
  padding: 9rem 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.values .label { color: var(--cream-on-olive); }
.values-media {
  position: sticky;
  top: 12vh;
  margin: 0;
}
.values-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  filter: grayscale(0.7) sepia(0.4) contrast(0.92) brightness(1.04);
}
.vm-frame { position: relative; }
.vm-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(200deg, rgba(153, 151, 112, 0.28), transparent 45%, rgba(42, 36, 25, 0.22));
  pointer-events: none;
}
.values-media figcaption {
  margin-top: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream-on-olive-70);
}
.values-list ol { list-style: none; }
.value {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.4rem;
  align-items: baseline;
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(246, 243, 232, 0.22);
}
.value:last-child { border-bottom: none; }
.value-num {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: rgba(246, 243, 232, 0.25);
  transition: color 1s ease, text-shadow 1s ease;
}
.value h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  color: var(--cream-on-olive-45);
  transition: color 1s ease;
  margin-bottom: 0.4rem;
}
.value p {
  font-size: 0.92rem;
  color: var(--cream-on-olive-45);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 1s ease .15s, transform 1s ease .15s, color 1s ease;
}
.value.lit .value-num {
  color: var(--cream-on-olive);
  text-shadow: 0 0 18px rgba(246, 243, 232, 0.6);
}
.value.lit h3 { color: var(--cream-on-olive); }
.value.lit p { opacity: 1; transform: none; color: var(--cream-on-olive-70); }
@media (prefers-reduced-motion: reduce) {
  .value .value-num { color: var(--cream-on-olive); }
  .value h3 { color: var(--cream-on-olive); }
  .value p { opacity: 1; transform: none; color: var(--cream-on-olive-70); }
}

/* ── Life triptych (full bleed) ── */
.life { padding: 0; }
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tri-item { margin: 0; position: relative; }
.tri-frame {
  overflow: hidden;
  height: clamp(340px, 58vh, 580px);
}
.tri-frame img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transition: scale 1.4s cubic-bezier(.22,.61,.36,1);
}
.tri-item:hover .tri-frame img { scale: 1.05; }
.tri-item figcaption {
  position: absolute;
  left: 1.6rem;
  bottom: 1.4rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251, 249, 244, 0.94);
  text-shadow: 0 1px 14px rgba(42, 36, 25, 0.6);
}
.tri-item figcaption::before {
  content: "— ";
  color: var(--rust);
}

/* ── The Place (umber night) ── */
.place {
  background: var(--night);
  color: var(--cream-on-dark);
  padding: 11rem 0;
  position: relative;
  overflow: hidden;
}
.place::after {
  /* faint ember glow */
  content: "";
  position: absolute;
  top: -18vw;
  right: -12vw;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 93, 74, 0.14), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.place-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.place-bg img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  opacity: 0.38;
  display: block;
  will-change: transform;
}
.place-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--night) 0%, rgba(51, 45, 34, 0.55) 35%, rgba(51, 45, 34, 0.62) 70%, var(--night) 100%);
}
.place .wrap { position: relative; z-index: 2; }
.place-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.place-lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--cream-on-dark-55);
  max-width: 48ch;
}
.place-facts { list-style: none; }
.place-facts li {
  border-top: 1px solid rgba(236, 231, 218, 0.16);
  padding: 1.6rem 0;
  font-size: 0.95rem;
  color: var(--cream-on-dark-55);
}
.place-facts li span {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--rust);
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1;
}

/* ── The Impact ── */
.impact { background: var(--cream); }
.impact .manifesto-body { margin-bottom: 4.5rem; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  border-top: 1px solid var(--ink-12);
  padding-top: 4rem;
}
.impact-col h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 1.8rem;
}
.impact-col dl div { margin-bottom: 1.6rem; }
.impact-col dt {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--rust);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.impact-col dd { font-size: 0.95rem; color: var(--ink-60); }
.impact-note {
  margin-top: 3rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-35);
}

/* ── The Path & The Circle ── */
.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  border-top: 1px solid var(--ink-12);
  padding-top: 4rem;
}
.stage-when {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rust);
  display: block;
  margin-bottom: 1.1rem;
}
.stage h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.stage p { font-size: 0.95rem; color: var(--ink-60); }

.circle { background: var(--cream-deep); }

/* ── People ── */
.people { background: var(--cream); }
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.founder h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}
.founder-role {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.1rem;
}
.founder p:last-child { font-size: 0.95rem; color: var(--ink-60); max-width: 46ch; }

.foundation {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  border-top: 1px solid var(--ink-12);
  padding-top: 3.4rem;
}
.foundation-gloss {
  font-size: 0.85rem;
  color: var(--ink-35);
  margin-bottom: 1.2rem;
}
.foundation-gloss .greek {
  font-style: italic;
  font-size: 1.2em;
  color: var(--rust);
}
.foundation-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 0.7rem;
}
.foundation-body p:first-child {
  color: var(--ink-60);
  max-width: 58ch;
  margin-bottom: 2rem;
}
.foundation-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.4rem;
  font-size: 0.85rem;
  color: var(--ink-35);
}
.foundation-names strong { font-weight: 500; color: var(--ink); }

/* ── Join ── */
.join {
  position: relative;
  text-align: center;
  padding: 12rem 0 11rem;
  overflow: hidden;
}
.join-dawn {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -12%, rgba(184, 93, 74, 0.22), transparent 70%);
}
.join-inner { position: relative; }
.join-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  line-height: 1.14;
  margin-bottom: 3rem;
}
.join-poem {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  line-height: 1.9;
  color: var(--ink-60);
  margin: 0 auto 3rem;
  max-width: 56ch;
  position: relative;
}
.join-poem::before,
.join-poem::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 1px;
  background: var(--rust);
  margin: 0 auto;
  opacity: 0.6;
}
.join-poem::before { margin-bottom: 2.2rem; }
.join-poem::after { margin-top: 2.2rem; }
.join-body {
  color: var(--ink-60);
  max-width: 48ch;
  margin: 0 auto 3.4rem;
}
.join-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--ink);
  border-radius: 999px;
  padding: 1.15em 2.6em;
  transition: background .35s, transform .35s;
}
.join-cta:hover { background: var(--rust); transform: translateY(-2px); }
.cta-arrow { margin-left: 0.6em; }
.join-alt {
  margin-top: 2.2rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-35);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--ink-12);
  padding: 2.6rem 0;
}
.footer-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-mark {
  font-family: var(--serif);
  letter-spacing: 0.3em;
}
.footer-mark .greek { letter-spacing: 0.05em; color: var(--rust); font-style: italic; }
.footer-line {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-60);
}
.footer-meta {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-35);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .forces { grid-template-columns: 1fr; gap: 3rem; }
  .stages { grid-template-columns: 1fr; gap: 3rem; }
  .impact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founders { grid-template-columns: 1fr; gap: 3rem; }
  .place-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .element { grid-template-columns: 3rem 1fr; }
  .el-note { display: none; }
  .sun-track { display: none; }
  .triptych { grid-template-columns: 1fr; }
  .tri-frame { height: clamp(240px, 38vh, 380px); }
  .values-grid { grid-template-columns: 1fr; }
  .values-media { position: static; max-width: 480px; }
  .values-media img { aspect-ratio: 4 / 3; }
  .foundation { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 640px) {
  section { padding: 6.5rem 0; }
  .hero-word { letter-spacing: 0.1em; margin-right: -0.1em; }
}
