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

:root {
  color-scheme: light;
  --bg: #f5f6f8;
  --bg-alt: #eef1f4;
  --ink: #121922;
  --muted: #5b6a78;
  --accent: #1b8dbf;
  --accent-dark: #0b5f86;
  --card: #ffffff;
  --line: rgba(18, 25, 34, 0.12);
  --shadow: 0 12px 28px rgba(12, 18, 26, 0.08);
  --shadow-crisp: 0 6px 16px rgba(12, 18, 26, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --panel: #ffffff;
  --tint: #eef5f9;
  --font-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Times New Roman", serif;
  --gutter: clamp(24px, 6vw, 96px);
  --section-pad: clamp(96px, 10vw, 140px);
  --section-pad-tight: clamp(72px, 8vw, 110px);
  --nav-offset: 72px;
  --panel-pad: clamp(24px, 3.5vw, 40px);
  --panel-pad-lg: clamp(32px, 4vw, 56px);
}

html {
  scroll-behavior: smooth;
  height: auto;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  min-height: 100%;
  height: auto;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 48px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1,
h2 {
  text-wrap: balance;
}

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

::selection {
  background: rgba(27, 141, 191, 0.2);
  color: var(--ink);
}

.page {
  position: relative;
  z-index: 1;
  height: auto;
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #ffffff;
  transition: color 0.25s ease;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.25s ease;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  transition: width 0.2s ease;
}

.site-header.nav-light .logo,
.site-header.nav-light .site-nav {
  color: var(--ink);
}

.site-header.nav-light .site-nav a::after {
  background: var(--accent-dark);
}

.site-header.nav-light {
  background: rgba(245, 246, 248, 0.92);
  border-bottom: 1px solid rgba(18, 25, 34, 0.08);
  box-shadow: 0 12px 24px rgba(12, 18, 26, 0.06);
  backdrop-filter: blur(10px);
}

.site-nav a:hover::after {
  width: 100%;
}

main section {
  padding: var(--section-pad) var(--gutter);
  scroll-margin-top: 90px;
}
.section-offwhite {
  background: #fbfbfc;
}

.section-aqua {
  background: #f1f6f9;
}

.section-warm {
  background: #f7f2ef;
}

.texture-grid {
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: calc(var(--nav-offset) * -1);
  padding: calc(var(--section-pad) + 64px) var(--gutter) var(--section-pad);
  text-align: center;
  justify-items: center;
  background: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("thomas-park-QGdRrty4054-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.02);
  z-index: 0;
}

.wave-line {
  position: absolute;
  top: 92px;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 20, 0.35) 0%,
    rgba(8, 14, 20, 0.6) 70%,
    rgba(8, 14, 20, 0.7) 100%
  );
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: var(--section-pad-tight) var(--gutter);
  border-top: 1px solid rgba(31, 42, 51, 0.12);
}

.process .trust-strip {
  padding: 0 0 var(--section-pad-tight);
  border-top: none;
}

.trust-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--muted);
}

.bubble-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.18;
}

.bubble-layer span {
  position: absolute;
  bottom: -10%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
}

.hero-copy h1,
.hero-copy p,
.hero-actions,
.eyebrow {
  color: #ffffff;
}

.hero-copy .eyebrow {
  margin-top: 220px;
}

.hero-brand {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-media {
  display: none;
}

.hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(12px);
}

.hero-frame img {
  width: min(420px, 80vw);
  height: auto;
  display: block;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  margin: 16px 0 24px;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.hero-copy p {
  font-size: 1.1rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn.primary {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}

.hero .btn.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-crisp);
}

.btn.primary {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(18, 25, 34, 0.25);
}

.btn.outline:hover {
  border-color: rgba(18, 25, 34, 0.45);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(27, 141, 191, 0.4);
  outline-offset: 3px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
  padding: var(--section-pad-tight) var(--gutter);
}

.hero-stats span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

.hero-stats small {
  color: var(--muted);
}

.hero .hero-stats span,
.hero .hero-stats small {
  color: #ffffff;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  position: relative;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.manifesto-grid p {
  font-size: 1.05rem;
  color: var(--muted);
}

.manifesto-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.stepper {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  border-left: 2px solid rgba(31, 42, 51, 0.15);
}

.stepper-item {
  font-size: 0.98rem;
  color: var(--muted);
  position: relative;
}

.stepper-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(31, 42, 51, 0.3);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  padding: var(--panel-pad);
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.card-focus {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

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

.location-block {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: var(--panel-pad);
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-copy h3 {
  font-size: 1.4rem;
  margin: 8px 0 12px;
}

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

.location-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-crisp);
}

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

.process-rail {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.progress-bar {
  height: 6px;
  background: rgba(31, 42, 51, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--accent);
}

.process-note {
  color: var(--muted);
  max-width: 320px;
  margin-top: 16px;
}

.rail-list {
  display: grid;
  gap: 40px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  padding: var(--panel-pad);
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--line);
}

.step span {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
}

.step h3 {
  margin: 8px 0 12px;
  font-size: 1.2rem;
}

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

.gallery {
  min-height: auto;
  padding-bottom: var(--section-pad);
  background: var(--tint);
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  padding: var(--panel-pad);
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-card h3 {
  margin-bottom: 8px;
}

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

.contact {
  padding: var(--section-pad) var(--gutter);
  background: var(--bg);
}

.contact-inner {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: var(--panel-pad-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-inner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.contact-inner p {
  color: var(--muted);
  margin-bottom: 32px;
}

.site-footer {
  padding: 32px var(--gutter) 48px;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--bg-alt);
}

.enroll-body {
  background-image: linear-gradient(
      180deg,
      rgba(8, 14, 20, 0.45) 0%,
      rgba(8, 14, 20, 0.62) 100%
    ),
    url("thomas-park-QGdRrty4054-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding-bottom: 0;
}

.enroll-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.enroll-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  color: #ffffff;
}

.enroll-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-pad-tight) var(--gutter);
}

.enroll-panel {
  width: min(640px, 100%);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: var(--panel-pad-lg);
  border: 1px solid rgba(31, 42, 51, 0.12);
  box-shadow: var(--shadow);
}

.enroll-panel .eyebrow {
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.enroll-panel h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.enroll-panel p {
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-block {
  display: grid;
  gap: 12px;
  padding: var(--panel-pad);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(248, 249, 251, 0.92);
}

.pricing-block p {
  margin: 0;
}

.pricing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-block h2 {
  font-size: 1.05rem;
}

.pricing-hint {
  color: var(--muted);
}

.pricing-options,
.duration-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-option,
.duration-option {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(18, 25, 34, 0.2);
  background: #ffffff;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pricing-option:hover,
.duration-option:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-crisp);
}

.pricing-option.is-active,
.duration-option.is-active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: var(--shadow-crisp);
}

.pricing-display {
  font-weight: 600;
  color: var(--ink);
}

.pricing-display.is-warning {
  color: var(--accent-dark);
}

.duration-block {
  display: grid;
  gap: 10px;
}

.duration-hint {
  color: var(--muted);
}

.duration-display {
  font-weight: 600;
  color: var(--ink);
}

.duration-display.is-warning {
  color: var(--accent-dark);
}

.pricing-actions {
  display: flex;
  justify-content: flex-start;
}

.package-block {
  display: grid;
  gap: 10px;
}

.package-hint {
  color: var(--muted);
}

.package-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.package-option {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 25, 34, 0.2);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.package-option:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-crisp);
}

.package-option.is-active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: var(--shadow-crisp);
}

.package-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.package-option.is-active .package-price {
  color: #ffffff;
}

.package-display {
  font-weight: 600;
  color: var(--ink);
}

.package-display.is-warning {
  color: var(--accent-dark);
}

.pricing-notes {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.policy-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.enroll-form {
  display: grid;
  gap: 16px;
}

.enroll-fields {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.enroll-fields[hidden] {
  display: none;
}

.enroll-field {
  display: grid;
  gap: 6px;
}

.enroll-field label {
  font-size: 0.85rem;
  color: var(--muted);
}

.enroll-field input,
.enroll-field select,
.enroll-field textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.enroll-field input:focus,
.enroll-field select:focus,
.enroll-field textarea:focus {
  outline: 2px solid rgba(27, 141, 191, 0.25);
  outline-offset: 1px;
  border-color: var(--accent);
}

.enroll-field textarea {
  resize: vertical;
}

.enroll-actions {
  margin-top: 8px;
}

.enroll-submit {
  width: 100%;
}

.policy-main {
  align-items: flex-start;
  padding: var(--section-pad-tight) var(--gutter);
}

.policy-panel {
  width: min(880px, 100%);
  padding: var(--panel-pad);
}

.policy-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.policy-item h2 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.policy-item ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.policy-item li {
  margin-bottom: 3px;
}

@media (max-width: 900px) {
  :root {
    --gutter: clamp(18px, 6vw, 32px);
    --section-pad: 80px;
    --section-pad-tight: 64px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-copy .eyebrow {
    margin-top: 160px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-rail {
    position: relative;
    top: auto;
  }

  .gallery-track {
    grid-template-columns: 1fr;
  }

  .location-block {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    padding: var(--panel-pad);
  }

  .enroll-header {
    flex-direction: column;
    gap: 12px;
  }

  .enroll-main {
    padding: var(--section-pad-tight) var(--gutter);
  }

  .enroll-panel {
    padding: var(--panel-pad);
  }

  .policy-main {
    padding: var(--section-pad-tight) var(--gutter);
  }

  .policy-panel {
    padding: var(--panel-pad);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
  .trust-strip {
    grid-template-columns: 1fr;
  }
