
:root {
  --green: #20382f;
  --green-deep: #14271f;
  --graphite: #171a1a;
  --ivory: #f4f0e8;
  --gold: #b49a63;
  --stone: #d8d1c3;
  --ink: #1b211e;
  --white: #fffdf8;
  --line: rgba(32, 56, 47, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--gold); color: var(--green-deep); }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(12, 22, 18, 0.58), transparent);
}

.wordmark { display: flex; align-items: flex-start; letter-spacing: 0.05em; }
.wordmark-primary { font-family: Georgia, "Times New Roman", serif; font-size: 1.03rem; font-weight: 700; }
.wordmark-mark { font-size: 0.58rem; margin: -0.1rem 0 0 0.12rem; }

.desktop-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.6rem); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; }
.desktop-nav a { opacity: 0.8; transition: opacity 180ms ease, color 180ms ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { opacity: 1; color: #fff; }
.desktop-nav .nav-apply { opacity: 1; border: 1px solid rgba(255,255,255,.55); padding: .72rem 1.15rem; }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: inline-block; width: 14px; border-top: 1px solid currentColor; margin: 0 8px 3px 0; }
.mobile-menu nav { position: absolute; right: 0; top: 2rem; min-width: 220px; display: grid; background: var(--green-deep); padding: 1.2rem 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.mobile-menu nav a { padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.12); font-family: Georgia, serif; font-size: 1.15rem; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--green-deep);
  isolation: isolate;
}

.hero-image, .destination-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('images/sardinia-hero.png');
  background-size: cover;
  background-position: center;
  animation: reveal-image 1.4s ease-out both;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(9, 19, 16, .9) 0%, rgba(12, 24, 20, .64) 37%, rgba(12, 24, 20, .12) 68%, rgba(12, 24, 20, .2) 100%), linear-gradient(to top, rgba(6,14,11,.72), transparent 48%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 12.5vw 100%, 100% 25vh;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

@keyframes reveal-image {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content { width: min(760px, 82vw); margin: 5vh 0 8vh 8.5vw; animation: reveal-copy .9s .15s ease-out both; }
@keyframes reveal-copy { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.eyebrow { margin: 0 0 1.6rem; color: var(--green); font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: rgba(255,255,255,.68); }

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

.hero h1, .page-hero h1, .destination-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.hero h1 { font-size: clamp(4rem, 8.2vw, 8.2rem); max-width: 1050px; }
.hero h1 em { color: #e2c98f; font-weight: 400; }
.hero-lede { max-width: 610px; margin: 2rem 0 0; color: rgba(255,255,255,.8); font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.65; }

.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 1.5rem; border: 1px solid transparent; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-light { background: var(--ivory); color: var(--green-deep); }
.button-outline { margin-top: 2.4rem; color: var(--white); border-color: rgba(255,255,255,.35); }
.button-outline:hover { background: var(--white); color: var(--green-deep); }
.button-gold { background: var(--gold); color: var(--green-deep); }

.text-link { display: inline-flex; align-items: center; gap: 1rem; margin-top: 1.5rem; color: var(--green); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { color: rgba(255,255,255,.86); margin-top: 0; }

.hero-meta {
  position: absolute;
  bottom: 2.2rem;
  left: 8.5vw;
  right: 8.5vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 180px));
  gap: 1rem;
  margin: 0;
}
.hero-meta div { border-top: 1px solid rgba(255,255,255,.35); padding-top: .65rem; }
.hero-meta dt { color: rgba(255,255,255,.55); font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; }
.hero-meta dd { margin: .35rem 0 0; font-family: Georgia, serif; font-size: .95rem; }
.hero-index { position: absolute; right: 2rem; top: 48%; margin: 0; font-size: .55rem; letter-spacing: .18em; writing-mode: vertical-rl; }

.section { padding: clamp(5.5rem, 10vw, 10rem) 8.5vw; }
.section-narrow { padding: clamp(5rem, 9vw, 9rem) max(8.5vw, calc((100vw - 1050px)/2)); }
.section-number { color: var(--green); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.premise-grid { display: grid; grid-template-columns: 1.05fr .8fr; gap: clamp(3rem, 8vw, 9rem); margin-top: 3.5rem; }
.premise-grid h2, .section-heading-row h2, .island-copy h2, .closing-cta h2, .split-statement h2, .method-note h2, .destination-intro h2, .setting-notes h2, .prototype-contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}
.premise-grid h2, .section-heading-row h2, .island-copy h2 { font-size: clamp(2.8rem, 5.2vw, 5.5rem); }
.premise-grid p, .island-copy p, .split-statement p, .destination-intro p { color: #526057; font-size: 1rem; line-height: 1.8; }
.lead { color: var(--ink) !important; font-family: Georgia, serif; font-size: clamp(1.25rem, 1.8vw, 1.75rem) !important; line-height: 1.5 !important; }

.machine-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  isolation: isolate;
}
.machine-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('images/race-car-track.png') center/cover no-repeat;
}
.machine-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(12,18,16,.06) 0%, rgba(12,18,16,.18) 42%, rgba(10,17,14,.9) 72%, rgba(10,17,14,.96) 100%), linear-gradient(to top, rgba(8,14,11,.76), transparent 55%);
}
.machine-copy { width: min(580px, 39vw); margin-left: 53vw; padding: 10rem 0 11rem; }
.machine-copy h2, .method-machine-copy h2, .track-terrain-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}
.machine-copy > p:not(.eyebrow):not(.machine-quote) { max-width: 500px; margin: 2rem 0; color: rgba(255,255,255,.64); line-height: 1.75; }
.machine-quote { max-width: 520px; margin: 2.4rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.24); color: var(--white); font-family: Georgia, serif; font-size: clamp(1.25rem, 1.8vw, 1.75rem); font-style: italic; line-height: 1.45; }
.race-line { position: absolute; z-index: -1; inset: auto 0 3%; width: 100%; height: 48%; opacity: .38; }
.race-line path { fill: none; stroke: var(--gold); stroke-width: 1.2; stroke-dasharray: 8 12; }
.race-line circle { fill: var(--gold); }
.telemetry-panel {
  position: absolute;
  left: 8.5vw;
  bottom: 6vh;
  display: grid;
  grid-template-columns: auto auto;
  gap: .6rem 1.5rem;
  min-width: 260px;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(9,16,13,.58);
  backdrop-filter: blur(10px);
}
.telemetry-panel span { color: rgba(255,255,255,.48); font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; }
.telemetry-panel strong { color: var(--white); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; text-align: right; }
.motion-band {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.8vw, 3.8rem);
  overflow: hidden;
  padding: 0 4vw;
  color: var(--green-deep);
  background: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(1rem, 1.55vw, 1.4rem);
  font-style: italic;
  white-space: nowrap;
}
.motion-band i { width: 4px; height: 4px; border-radius: 50%; background: var(--green-deep); opacity: .52; }

.dark-section { background: var(--green-deep); color: var(--white); }
.method-preview { padding: clamp(5.5rem, 9vw, 9rem) 8.5vw; }
.section-heading-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; }
.section-heading-row h2 { margin-bottom: 0; }
.section-heading-row .section-intro { max-width: 320px; margin-bottom: .5rem; color: rgba(255,255,255,.58); font-size: .92rem; line-height: 1.7; }
.section-heading-row.ink .section-intro { color: #65736a; }

.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4rem; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.method-card { min-height: 270px; padding: 1.4rem 1.5rem 2rem 0; border-right: 1px solid rgba(255,255,255,.16); }
.method-card + .method-card { padding-left: 1.5rem; }
.method-card:last-child { border-right: 0; }
.method-card span, .experience-grid span, .retreat-arc span, .setting-grid span { color: var(--gold); font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.method-card h3, .experience-grid h3 { margin: 5rem 0 .8rem; font-family: Georgia, serif; font-size: 1.6rem; font-weight: 400; }
.method-card p { max-width: 210px; color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.65; }
.cockpit-strip { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 430px; margin-top: 4rem; border: 1px solid rgba(255,255,255,.16); }
.cockpit-image { min-height: 380px; background: linear-gradient(rgba(12,20,17,.12), rgba(12,20,17,.12)), url('images/cockpit-preparation.png') center/cover no-repeat; }
.cockpit-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 2.5rem; background: #1c3028; }
.cockpit-copy span { color: var(--gold); font-size: .6rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.cockpit-copy p { margin: auto 0 0; font-family: Georgia, serif; font-size: clamp(2rem, 3.7vw, 4rem); line-height: 1.02; letter-spacing: -.04em; }

.island-section { display: grid; min-height: 760px; grid-template-columns: 1.08fr .92fr; background: #e6dfd3; }
.island-photo { min-height: 640px; background: linear-gradient(rgba(20,39,31,.1), rgba(20,39,31,.1)), url('images/sardinia-hero.png') center/cover; }
.island-copy { align-self: center; padding: 6rem clamp(3rem, 7vw, 8rem); }

.experience-section { background: var(--ivory); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); }
.experience-grid article { min-height: 320px; padding: 1.5rem 3rem 2rem 0; border-right: 1px solid var(--line); }
.experience-grid article + article { padding-left: 3rem; }
.experience-grid article:last-child { border-right: 0; }
.experience-grid h3 { margin-top: 7rem; font-size: 2rem; }
.experience-grid p { max-width: 280px; color: #627067; font-size: .9rem; line-height: 1.7; }

.closing-cta { padding: clamp(6rem, 11vw, 11rem) 8.5vw; text-align: center; color: var(--white); background: var(--green); }
.closing-cta h2 { margin: 0 auto; font-size: clamp(3.3rem, 6.7vw, 7rem); }
.closing-cta > p:not(.eyebrow) { margin: 2rem 0; color: rgba(255,255,255,.66); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem; padding: 3.5rem 4.5vw; color: rgba(255,255,255,.7); background: var(--graphite); }
.footer-mark { margin: 0; color: var(--white); font-family: Georgia, serif; font-size: 1.15rem; }
.footer-note, .footer-legal { margin: .6rem 0 0; font-size: .65rem; letter-spacing: .06em; }
.footer-links { display: flex; gap: 1.6rem; font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a:hover { color: var(--white); }
.footer-legal { text-align: right; }

.inner-page { min-height: 80vh; }
.page-hero { min-height: 74vh; padding: 26vh 8.5vw 9vh; display: flex; flex-direction: column; justify-content: flex-end; }
.page-hero h1 { font-size: clamp(4rem, 8vw, 8.2rem); }
.page-lede { max-width: 650px; margin: 2.2rem 0 0; font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.65; }
.ivory-hero { color: var(--green-deep); background: radial-gradient(circle at 85% 15%, rgba(180,154,99,.25), transparent 33%), var(--ivory); }
.ivory-hero .page-lede { color: #58645d; }
.green-hero { color: var(--white); background: radial-gradient(circle at 75% 30%, #315446 0, transparent 28%), linear-gradient(135deg, #14271f, #20382f); }
.green-hero .page-lede, .graphite-hero .page-lede { color: rgba(255,255,255,.65); }
.graphite-hero { color: var(--white); background: radial-gradient(circle at 75% 30%, #343b38 0, transparent 28%), var(--graphite); }

.manifesto { background: var(--white); }
.manifesto p { margin: 0 0 1.8rem; font-family: Georgia, serif; font-size: clamp(1.65rem, 3.1vw, 3.25rem); font-style: italic; line-height: 1.25; letter-spacing: -.025em; }
.manifesto p:last-child { color: var(--green); }

.split-statement { display: grid; grid-template-columns: .35fr 1fr; gap: 4rem; }
.split-statement > div:last-child { max-width: 880px; }
.split-statement h2 { font-size: clamp(2.5rem, 4.7vw, 5rem); }

.principles { padding: clamp(5rem, 9vw, 9rem) 8.5vw; }
.principle-list { max-width: 1050px; margin-left: auto; }
.principle-list p { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; margin: 0; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.15); font-family: Georgia, serif; font-size: clamp(1.35rem, 2.6vw, 2.6rem); }
.principle-list p:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.principle-list span { color: var(--gold); font: 700 .6rem Arial, sans-serif; letter-spacing: .15em; padding-top: .5rem; }

.page-next { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 4rem 8.5vw; color: var(--white); background: var(--gold); }
.page-next p { margin: 0; color: rgba(20,39,31,.7); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.page-next a { color: var(--green-deep); font-family: Georgia, serif; font-size: clamp(1.4rem, 2.2vw, 2.2rem); }
.page-next a span { margin-left: 1rem; }

.stage-list { background: var(--ivory); }
.stage-row { display: grid; grid-template-columns: 60px 1.05fr .8fr 1.15fr; gap: 2rem; align-items: center; padding: 2.1rem 0; border-top: 1px solid var(--line); }
.stage-row:last-child { border-bottom: 1px solid var(--line); }
.stage-number { color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .15em; }
.stage-row h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.5rem, 2.2vw, 2.25rem); font-weight: 400; }
.stage-row p { margin: 0; color: #5d6a62; font-size: .84rem; line-height: 1.5; }
.stage-row blockquote { margin: 0; color: var(--green); font-family: Georgia, serif; font-size: 1rem; font-style: italic; line-height: 1.5; }
.method-note { padding: 8rem 8.5vw; color: var(--green-deep); background: #ddd5c5; }
.method-note h2 { max-width: 800px; font-size: clamp(3rem, 5.8vw, 6rem); }
.method-note > p:last-child { max-width: 620px; color: #536158; font-size: 1rem; line-height: 1.8; }
.method-machine { position: relative; min-height: 76vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--graphite); isolation: isolate; }
.method-machine-image { position: absolute; inset: 0; z-index: -2; background: url('images/cockpit-preparation.png') center/cover no-repeat; }
.method-machine::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,14,12,.9), rgba(8,14,12,.28) 65%, rgba(8,14,12,.1)), linear-gradient(to top, rgba(8,14,12,.76), transparent 55%); }
.method-machine-copy { width: min(720px, 78vw); padding: 9rem 8.5vw 7rem; }
.method-machine-copy > p:not(.eyebrow) { max-width: 520px; margin: 2rem 0; color: rgba(255,255,255,.7); line-height: 1.75; }
.signal-sequence { display: flex; align-items: center; gap: 1rem; margin-top: 2.2rem; color: rgba(255,255,255,.74); font-size: .57rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.signal-sequence i { width: clamp(18px, 3vw, 48px); border-top: 1px solid var(--gold); }

.destination-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); isolation: isolate; }
.destination-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(to top, rgba(8,18,14,.85), rgba(8,18,14,.05) 65%), linear-gradient(to right, rgba(8,18,14,.68), transparent 60%); }
.destination-copy { padding: 0 8.5vw 9vh; }
.destination-copy h1 { font-size: clamp(4rem, 8vw, 8rem); }
.destination-copy .page-lede { color: rgba(255,255,255,.72); }
.destination-intro { display: grid; grid-template-columns: .35fr 1fr; gap: 4rem; }
.destination-intro > div:last-child { max-width: 860px; }
.destination-intro h2 { font-size: clamp(3rem, 5.5vw, 5.5rem); }
.track-terrain { position: relative; min-height: 80vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--graphite); isolation: isolate; }
.track-terrain-image { position: absolute; inset: 0; z-index: -2; background: url('images/race-car-track.png') center/cover no-repeat; }
.track-terrain::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(7,14,11,.92), transparent 70%), linear-gradient(90deg, rgba(7,14,11,.15), transparent 60%); }
.track-terrain-copy { width: min(780px, 80vw); padding: 0 8.5vw 7rem; }
.track-terrain-copy p:not(.eyebrow) { max-width: 600px; margin: 2rem 0 0; color: rgba(255,255,255,.68); line-height: 1.75; }
.retreat-arc { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--green-deep); color: var(--white); }
.retreat-arc article { min-height: 530px; padding: 4rem 4vw; border-right: 1px solid rgba(255,255,255,.15); display: flex; flex-direction: column; }
.retreat-arc article:last-child { border-right: 0; }
.retreat-arc h2 { margin: auto 0 1.2rem; font-family: Georgia, serif; font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; line-height: 1; }
.retreat-arc p { color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.7; }
.setting-notes h2 { font-size: clamp(3rem, 5.5vw, 5.7rem); }
.setting-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); }
.setting-grid div { min-height: 180px; padding: 1.6rem 3rem 2rem 0; border-bottom: 1px solid var(--line); }
.setting-grid div:nth-child(odd) { border-right: 1px solid var(--line); }
.setting-grid div:nth-child(even) { padding-left: 3rem; }
.setting-grid p { max-width: 460px; margin: 1.6rem 0 0; color: #5c6961; line-height: 1.7; }
.sardinia-cta { background: var(--graphite); }

.application-fit { display: grid; grid-template-columns: .35fr 1fr; gap: 4rem; }
.fit-list article { display: grid; grid-template-columns: 60px 1fr; padding: 1.8rem 0; border-top: 1px solid var(--line); }
.fit-list article:last-child { border-bottom: 1px solid var(--line); }
.fit-list span { color: var(--gold); font-size: .62rem; font-weight: 700; }
.fit-list p { max-width: 760px; margin: 0; font-family: Georgia, serif; font-size: clamp(1.4rem, 2.4vw, 2.35rem); line-height: 1.3; }
.application-process { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; padding: clamp(5.5rem, 9vw, 9rem) 8.5vw; }
.application-process h2 { font-family: Georgia, serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.application-process ol { margin: 0; padding: 0; list-style: none; }
.application-process li { display: grid; grid-template-columns: 55px 1fr; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.15); }
.application-process li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.application-process li > span { color: var(--gold); font-size: .6rem; font-weight: 700; }
.application-process li p { margin: 0; color: rgba(255,255,255,.58); font-size: .88rem; line-height: 1.6; }
.application-process strong { display: block; margin-bottom: .35rem; color: var(--white); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.prototype-contact { padding: clamp(6rem, 12vw, 12rem) 8.5vw; text-align: center; background: var(--ivory); }
.prototype-contact h2 { font-size: clamp(3.5rem, 7vw, 7rem); }
.prototype-contact > p:not(.eyebrow) { max-width: 620px; margin: 1.8rem auto; color: #5d6962; line-height: 1.75; }
.status-line { display: inline-flex; align-items: center; gap: .75rem; margin-top: 1rem; padding: .85rem 1.15rem; border: 1px solid var(--line); color: var(--green); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.status-line span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(180,154,99,.18); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .site-header { height: 72px; }
  .hero-content { margin-left: 6vw; width: 88vw; }
  .hero-meta { left: 6vw; right: 6vw; }
  .hero-index { display: none; }
  .premise-grid, .split-statement, .destination-intro, .application-fit, .application-process { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-card:nth-child(2) { border-right: 0; }
  .method-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .island-section { grid-template-columns: 1fr; }
  .island-photo { min-height: 58vw; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid article, .experience-grid article + article { min-height: auto; padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .experience-grid h3 { margin-top: 2.5rem; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; text-align: left; }
  .stage-row { grid-template-columns: 45px 1fr 1fr; }
  .stage-row blockquote { grid-column: 2 / -1; }
  .retreat-arc { grid-template-columns: 1fr; }
  .retreat-arc article { min-height: 360px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .application-process { gap: 3rem; }
  .machine-copy { width: 48vw; margin-left: 46vw; }
  .cockpit-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { min-height: 880px; align-items: flex-start; }
  .hero-image { background-position: 62% center; }
  .hero-content { margin: 22vh 6vw 0; }
  .hero h1 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .hero-lede { max-width: 90%; font-size: .95rem; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); bottom: 1.4rem; }
  .hero-meta dd { font-size: .76rem; }
  .hero-meta dt { font-size: .48rem; }
  .section, .method-preview, .principles, .method-note, .destination-copy, .application-process, .prototype-contact { padding-left: 6vw; padding-right: 6vw; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card, .method-card + .method-card { min-height: 220px; padding: 1.4rem 0 1.8rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .method-card h3 { margin-top: 3.5rem; }
  .island-copy { padding: 5rem 6vw; }
  .closing-cta { padding-left: 6vw; padding-right: 6vw; }
  .site-footer { grid-template-columns: 1fr; padding: 3rem 6vw; }
  .footer-links { flex-wrap: wrap; }
  .page-hero { min-height: 670px; padding: 26vh 6vw 8vh; }
  .page-hero h1, .destination-copy h1 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .principle-list p { grid-template-columns: 42px 1fr; }
  .page-next { align-items: flex-start; flex-direction: column; padding: 3rem 6vw; }
  .stage-row { grid-template-columns: 38px 1fr; gap: 1rem; }
  .stage-row p, .stage-row blockquote { grid-column: 2; }
  .destination-hero { min-height: 840px; }
  .destination-image { background-position: 61% center; }
  .retreat-arc article { padding: 3rem 6vw; }
  .setting-grid { grid-template-columns: 1fr; }
  .setting-grid div, .setting-grid div:nth-child(even) { min-height: auto; padding: 1.6rem 0; border-right: 0; }
  .fit-list article { grid-template-columns: 42px 1fr; }
  .machine-section { min-height: 900px; align-items: flex-end; }
  .machine-image { background-position: 38% center; }
  .machine-shade { background: linear-gradient(to top, rgba(8,15,12,.98) 0%, rgba(8,15,12,.68) 50%, rgba(8,15,12,.08) 86%); }
  .machine-copy { width: auto; margin: 0; padding: 28rem 6vw 13rem; }
  .telemetry-panel { left: 6vw; right: 6vw; bottom: 2rem; min-width: 0; }
  .race-line { display: none; }
  .motion-band { justify-content: flex-start; }
  .cockpit-strip { grid-template-columns: 1fr; }
  .cockpit-image { min-height: 320px; }
  .cockpit-copy { min-height: 330px; }
  .method-machine { min-height: 780px; }
  .method-machine-image { background-position: 63% center; }
  .method-machine-copy { width: auto; padding: 26rem 6vw 5rem; }
  .signal-sequence { flex-wrap: wrap; }
  .track-terrain { min-height: 760px; }
  .track-terrain-image { background-position: 42% center; }
  .track-terrain-copy { width: auto; padding: 0 6vw 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

