:root {
  --deep-navy: #12202e;
  --slate: #5a6b7a;
  --olive: #4f563f;
  --olive-2: #6f7a5d;
  --sand: #cbbfa9;
  --stone: #e7e2da;
  --paper: #f7f4ee;
  --ink: #181b18;
  --muted: #6f7069;
  --terracotta: #c47a5a;
  --line: rgba(24, 27, 24, 0.12);
  --shadow: 0 22px 55px rgba(18, 32, 46, 0.14);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(203, 191, 169, 0.22), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, var(--paper) 42%, #eee8dd 100%);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--olive);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--deep-navy);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 4px;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(24, 27, 24, 0.08);
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.97);
  box-shadow: 0 8px 30px rgba(18, 32, 46, 0.08);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-lockup__mark {
  width: 74px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup strong,
.site-footer strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-lockup small {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  color: var(--olive);
  flex: 0 0 auto;
}

.brand-mark .mark-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 22;
  stroke-linecap: butt;
  stroke-linejoin: round;
}

.brand-mark--small {
  width: 78px;
  height: auto;
}

.brand-mark--hero {
  width: min(460px, 72vw);
  margin: 0 auto 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(24, 27, 24, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--olive);
  border-radius: 4px;
  color: var(--olive);
  overflow: hidden;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100svh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 60px;
  padding-top: 76px;
  padding-bottom: 64px;
}

.hero__content {
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--olive);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  color: var(--olive);
  font-size: clamp(2.45rem, 5.2vw, 4.7rem);
  font-weight: 600;
  letter-spacing: 0.31em;
  line-height: 1.05;
  text-indent: 0.31em;
}

.hero-lockup-art {
  width: min(620px, 100%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(18, 32, 46, 0.08));
  animation: logoRise 900ms ease both;
}

.hero__subtitle {
  width: fit-content;
  margin: 18px auto 0;
  padding-top: 28px;
  color: var(--deep-navy);
  font-size: clamp(0.9rem, 1.55vw, 1.24rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.35;
  position: relative;
  text-indent: 0.28em;
  text-transform: uppercase;
}

.hero__subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 68px;
  height: 2px;
  background: var(--sand);
  transform: translateX(-50%);
}

.discipline-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 0;
  color: var(--ink);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-indent: 0.3em;
  text-transform: uppercase;
}

.discipline-row span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 20px;
  border-radius: 50%;
  background: var(--sand);
  vertical-align: middle;
  transform: translateY(-1px);
}

.discipline-row span {
  white-space: nowrap;
}

.discipline-row span:not(:last-child) {
  display: inline-flex;
  align-items: center;
}

.hero__copy {
  max-width: 620px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  animation: fadeUp 900ms 140ms ease both;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: fadeUp 900ms 240ms ease both;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.42) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(18, 32, 46, 0.14);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button--primary {
  background: linear-gradient(135deg, var(--olive), #79836a);
  color: var(--paper);
}

.button--secondary,
.button--outline {
  border-color: rgba(79, 86, 63, 0.32);
  color: var(--olive);
}

.button--secondary:hover,
.button--outline:hover {
  background: rgba(79, 86, 63, 0.08);
}

.button--sand {
  background: var(--sand);
  color: var(--deep-navy);
}

.hero__panel {
  display: grid;
  gap: 16px;
}

.panel-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep-navy);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.route-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(203, 191, 169, 0.72), transparent 18%),
    linear-gradient(145deg, rgba(247, 244, 238, 0.22), transparent 35%),
    linear-gradient(180deg, #d8c7ad 0%, #88906e 42%, #182332 100%);
}

.sun {
  position: absolute;
  right: 16%;
  top: 16%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.76);
  filter: blur(1px);
  animation: pulseSun 4s ease-in-out infinite;
}

.ridge {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 30%;
  height: 38%;
  clip-path: polygon(0 74%, 17% 46%, 32% 62%, 47% 22%, 66% 55%, 82% 30%, 100% 70%, 100% 100%, 0 100%);
}

.ridge--back {
  bottom: 34%;
  background: rgba(18, 32, 46, 0.32);
}

.ridge--front {
  background: rgba(18, 32, 46, 0.72);
}

.road {
  position: absolute;
  left: 34%;
  bottom: -10%;
  width: 32%;
  height: 58%;
  background: linear-gradient(90deg, transparent 0 16%, rgba(247, 244, 238, 0.42) 16% 18%, transparent 18% 82%, rgba(247, 244, 238, 0.42) 82% 84%, transparent 84% 100%),
    linear-gradient(180deg, #273141, #0e1620);
  clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
}

.runner {
  position: absolute;
  left: calc(50% - 9px);
  bottom: 22%;
  width: 18px;
  height: 48px;
  border-radius: 12px 12px 3px 3px;
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(18, 32, 46, 0.2);
}

.runner::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
}

.runner::after {
  content: "";
  position: absolute;
  left: -9px;
  bottom: -24px;
  width: 36px;
  height: 26px;
  border-left: 5px solid var(--paper);
  border-right: 5px solid var(--paper);
  transform: skewX(-14deg);
}

.panel-card__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(247, 244, 238, 0.16);
  border-radius: 6px;
  background: rgba(18, 32, 46, 0.38);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.panel-card__caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-card__caption strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.25;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel-grid > div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
}

.panel-label {
  display: block;
  margin-bottom: 12px;
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-grid strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.panel-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 62px;
  padding: 18px min(56px, 5vw);
  background: var(--olive);
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section--intro {
  padding-top: 110px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.founding h2,
.about-copy h2,
.seo-section h2,
.apply-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.35rem;
  font-weight: 700;
}

.section-intro {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 45px rgba(18, 32, 46, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 86, 63, 0.36);
  box-shadow: 0 28px 70px rgba(18, 32, 46, 0.14);
}

.package-card--featured {
  border-color: rgba(79, 86, 63, 0.4);
  background: linear-gradient(180deg, rgba(79, 86, 63, 0.08), rgba(255, 255, 255, 0.42));
}

.featured-ribbon {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--deep-navy);
  color: var(--paper);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card__top {
  padding-right: 120px;
}

.package-kicker {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card h3,
.choice-grid h3,
.founding__details h3,
.brand-system-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.package-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.price strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 0.88;
}

.price span,
.commitment {
  color: var(--muted);
  font-size: 0.95rem;
}

.commitment {
  margin-top: -10px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(24, 27, 24, 0.84);
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--olive);
  font-weight: 800;
}

.package-card .button {
  margin-top: auto;
}

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

.comparison-table {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
}

.comparison-row > div {
  min-width: 0;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.comparison-row:not(.comparison-row--head) {
  transition: background 180ms ease, transform 180ms ease;
}

.comparison-row:not(.comparison-row--head):hover {
  background: rgba(79, 86, 63, 0.06);
  transform: translateX(4px);
}

.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-row--head {
  background: var(--deep-navy);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-row--head > div {
  border-top: 0;
  border-color: rgba(247, 244, 238, 0.14);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.choice-grid article {
  padding: 30px;
  border-left: 3px solid var(--olive);
  background: rgba(255, 255, 255, 0.34);
  transition: transform 220ms ease, background 220ms ease;
}

.choice-grid article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.52);
}

.choice-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.show-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 42px;
}

.show-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(79, 86, 63, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(231, 226, 218, 0.3)),
    radial-gradient(circle at 80% 16%, rgba(196, 122, 90, 0.16), transparent 28%);
  box-shadow: 0 18px 50px rgba(18, 32, 46, 0.08);
}

.show-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(79, 86, 63, 0.18);
  border-radius: 50%;
  animation: floatRing 7s ease-in-out infinite;
}

.show-card--large {
  grid-row: span 2;
  min-height: 544px;
}

.show-card--dark {
  background:
    linear-gradient(145deg, rgba(18, 32, 46, 0.96), rgba(79, 86, 63, 0.88)),
    radial-gradient(circle at 80% 16%, rgba(203, 191, 169, 0.3), transparent 28%);
  color: var(--paper);
}

.show-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 86, 63, 0.28);
  border-radius: 50%;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
}

.show-card--dark .show-number {
  border-color: rgba(247, 244, 238, 0.28);
  color: var(--sand);
}

.show-card h3 {
  max-width: 560px;
  margin-top: 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
}

.show-card p {
  max-width: 520px;
  color: var(--muted);
}

.show-card--dark p {
  color: rgba(247, 244, 238, 0.74);
}

.training-rail {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  height: 190px;
}

.training-rail span {
  display: block;
  height: var(--level);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--olive), var(--sand));
  animation: railPulse 2.8s ease-in-out infinite;
}

.training-rail span:nth-child(2) {
  animation-delay: 120ms;
}

.training-rail span:nth-child(3) {
  animation-delay: 240ms;
}

.training-rail span:nth-child(4) {
  animation-delay: 360ms;
}

.training-rail span:nth-child(5) {
  animation-delay: 480ms;
}

.founding {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding: 82px max(40px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 82% 20%, rgba(203, 191, 169, 0.18), transparent 30%),
    linear-gradient(135deg, var(--olive), #22291e);
  color: var(--paper);
}

.founding .eyebrow {
  color: var(--sand);
}

.founding__content p {
  max-width: 760px;
  color: rgba(247, 244, 238, 0.78);
}

.founding__price {
  display: inline-grid;
  gap: 4px;
  margin-top: 22px;
  padding: 22px 26px;
  border: 1px solid rgba(247, 244, 238, 0.2);
  border-radius: 8px;
  background: rgba(18, 32, 46, 0.18);
}

.founding__price span,
.founding__price small {
  color: rgba(247, 244, 238, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.founding__price strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.6rem;
  line-height: 0.95;
}

.founding__details {
  padding: 32px;
  border: 1px solid rgba(247, 244, 238, 0.2);
  border-radius: 8px;
  background: rgba(18, 32, 46, 0.22);
}

.check-list--light {
  color: rgba(247, 244, 238, 0.82);
}

.check-list--light li::before {
  color: var(--sand);
}

.founding__details .button {
  width: 100%;
  margin-top: 28px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
  gap: 56px;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
}

.brand-system-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(231, 226, 218, 0.5)),
    radial-gradient(circle at 50% 32%, rgba(203, 191, 169, 0.26), transparent 34%);
}

.brand-system-card p {
  color: var(--muted);
}

.system-orbit {
  position: relative;
  height: 310px;
  margin-top: 28px;
}

.orbit-line {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(79, 86, 63, 0.22);
  border-radius: 50%;
  animation: orbitSpin 16s linear infinite;
}

.orbit-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--paper);
  font-size: 2rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(18, 32, 46, 0.18);
}

.orbit-node {
  position: absolute;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(79, 86, 63, 0.2);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.84);
  color: var(--deep-navy);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: floatNode 4.5s ease-in-out infinite;
}

.orbit-node--one {
  left: 4%;
  top: 24%;
}

.orbit-node--two {
  right: 2%;
  top: 20%;
  animation-delay: 220ms;
}

.orbit-node--three {
  left: 34%;
  bottom: 12%;
  animation-delay: 440ms;
}

.feature-tiles {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.feature-tiles article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  padding: 16px;
  border: 1px solid rgba(79, 86, 63, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
}

.feature-tiles span {
  grid-row: span 2;
  color: var(--sand);
  font-weight: 800;
}

.feature-tiles strong {
  color: var(--deep-navy);
}

.feature-tiles p {
  margin: 0;
  font-size: 0.9rem;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.swatch {
  display: flex;
  min-height: 86px;
  align-items: flex-end;
  padding: 10px;
  border-radius: 4px;
  color: var(--paper);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.swatch--navy {
  background: var(--deep-navy);
}

.swatch--slate {
  background: var(--slate);
}

.swatch--olive {
  background: var(--olive);
}

.swatch--sand {
  background: var(--sand);
  color: var(--deep-navy);
}

.swatch--stone {
  background: var(--stone);
  color: var(--deep-navy);
}

.swatch--terra {
  background: var(--terracotta);
}

.application-strip {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1.3fr;
  gap: 12px;
  margin-top: 24px;
}

.mock {
  display: flex;
  min-height: 114px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--deep-navy);
  color: var(--sand);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.mock--bottle {
  border-radius: 28px 28px 10px 10px;
}

.mock--shirt {
  clip-path: polygon(16% 0, 35% 0, 42% 10%, 58% 10%, 65% 0, 84% 0, 100% 20%, 84% 38%, 84% 100%, 16% 100%, 16% 38%, 0 20%);
}

.mock--card {
  background: var(--olive);
  font-size: 1.15rem;
}

.seo-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 52px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.8fr);
  gap: 54px;
  align-items: start;
}

.apply-copy p {
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border-left: 3px solid var(--olive);
  background: rgba(255, 255, 255, 0.4);
}

.contact-card span {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--deep-navy);
  font-weight: 700;
}

.application-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 45px rgba(18, 32, 46, 0.08);
}

.application-form label {
  display: grid;
  gap: 8px;
  color: var(--deep-navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(24, 27, 24, 0.18);
  border-radius: 4px;
  background: rgba(247, 244, 238, 0.78);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  text-transform: none;
}

.application-form textarea {
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(79, 86, 63, 0.12);
}

.application-form button {
  width: 100%;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--olive);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(40px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span {
  display: block;
  margin-top: 4px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 244, 238, 0.98);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
  }

  .hero,
  .about-section,
  .seo-section,
  .apply-section,
  .founding,
  .show-grid {
    grid-template-columns: 1fr;
  }

  .show-card--large {
    grid-row: auto;
    min-height: 420px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.7rem, 7vw, 4.4rem);
  }

  .section-heading h2,
  .founding h2,
  .about-copy h2,
  .seo-section h2,
  .apply-copy h2 {
    font-size: 2.7rem;
  }

  .package-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .founding {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
  }

  body {
    font-size: 15px;
  }

  .nav,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .brand-lockup small {
    display: none;
  }

  .brand-lockup__mark {
    width: 58px;
    height: 28px;
  }

  .brand-mark--small {
    width: 58px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    gap: 36px;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }

  .hero__subtitle {
    font-size: 0.86rem;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }

  .discipline-row {
    gap: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }

  .discipline-row span:not(:last-child)::after {
    margin-left: 10px;
  }

  .button {
    width: 100%;
  }

  .panel-card {
    min-height: 360px;
  }

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

  .brand-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 16px;
  }

  .section-heading h2,
  .founding h2,
  .about-copy h2,
  .seo-section h2,
  .apply-copy h2 {
    font-size: 2.3rem;
  }

  .package-card,
  .show-card,
  .brand-system-card,
  .application-form,
  .founding__details {
    padding: 24px;
  }

  .show-card--large {
    min-height: 390px;
  }

  .show-card h3 {
    font-size: 2rem;
  }

  .training-rail {
    left: 24px;
    right: 24px;
    height: 130px;
  }

  .system-orbit {
    height: 250px;
  }

  .orbit-node--one {
    left: 0;
  }

  .orbit-node--two {
    right: 0;
  }

  .orbit-node--three {
    left: 24%;
  }

  .package-card__top {
    padding-right: 0;
    padding-top: 28px;
  }

  .featured-ribbon {
    left: 24px;
    right: auto;
    top: 20px;
  }

  .price strong {
    font-size: 3.2rem;
  }

  .comparison-table {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    background: transparent;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .comparison-row > div {
    border: 0;
    padding: 7px 0;
  }

  .comparison-row > div:first-child {
    color: var(--olive);
    font-weight: 800;
  }

  .comparison-row--head {
    display: none;
  }

  .choice-grid article {
    padding: 24px;
  }

  .founding {
    padding: 70px 20px;
  }

  .founding__price {
    width: 100%;
  }

  .founding__price strong {
    font-size: 3rem;
  }

  .swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-strip {
    grid-template-columns: 1fr;
  }

  .mock {
    min-height: 88px;
  }

  .site-footer {
    display: grid;
    padding: 26px 20px;
  }

  .site-footer p {
    text-align: left;
  }
}

@keyframes logoRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseSun {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.86;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes railPulse {
  0%,
  100% {
    transform: scaleY(0.92);
    filter: saturate(0.9);
  }
  50% {
    transform: scaleY(1);
    filter: saturate(1.18);
  }
}

@keyframes floatRing {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-12px, 14px);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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