:root {
  color-scheme: light;
  --paper: #f7f7f4;
  --paper-deep: #ebe8df;
  --ink: #1f2424;
  --muted: #636966;
  --line: #c9c6bc;
  --line-dark: #353b3b;
  --charcoal: #162223;
  --moss: #596d58;
  --clay: #934f35;
  --bluewash: #dfe9e8;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(20, 28, 27, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px clamp(20px, 4vw, 64px);
  position: relative;
  z-index: 2;
}

.site-header.compact {
  padding-bottom: 8px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 3px;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:not(.nav-cta):hover,
.site-footer a:hover {
  color: var(--clay);
}

.nav-cta {
  border: 1px solid var(--line-dark);
  padding: 12px 20px;
  min-width: 82px;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: stretch;
  padding: 36px clamp(20px, 4vw, 64px) 0;
  min-height: calc(100vh - 116px);
}

.hero-copy {
  max-width: 670px;
  align-self: center;
  padding-bottom: 72px;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.96;
}

h1 {
  font-size: 88px;
  margin-bottom: 28px;
}

h2 {
  font-size: 44px;
  margin-bottom: 18px;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-line {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.proof-copy {
  color: var(--ink);
  font-weight: 800;
  max-width: 420px;
  margin: 26px 0 16px;
}

.small-note {
  font-size: 14px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-dark {
  background: var(--charcoal);
  color: var(--white);
}

.button-dark:hover {
  background: #263231;
}

.button-plain {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}

.hero-media {
  margin: 0;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-section,
.lens-section,
.journey-section,
.faq-section,
.review-copy,
.reflection-section,
.apply-intro,
.policy-hero,
.policy-content {
  padding: 92px clamp(20px, 6vw, 96px);
}

.statement-section {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.statement-section p {
  max-width: 720px;
  margin: 0 auto;
}

.lens-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.lens-grid,
.review-lenses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.lens-card,
.review-lenses article {
  padding: 18px 34px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.lens-card:last-child,
.review-lenses article:last-child {
  border-right: 0;
}

.lens-card svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  fill: none;
  stroke: var(--charcoal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.lens-card p,
.review-lenses p,
.faq-list p {
  font-size: 14px;
  line-height: 1.55;
}

.image-band {
  height: min(52vw, 640px);
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
  background: var(--charcoal);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  background: var(--paper);
}

.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.journey-list li {
  display: grid;
  grid-template-columns: 54px 170px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

.journey-list span {
  color: var(--clay);
  font-weight: 800;
  font-size: 13px;
}

.journey-list strong {
  color: var(--ink);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 110px);
  background: var(--bluewash);
}

.faq-list article {
  border-top: 1px solid rgba(31, 36, 36, 0.28);
  padding: 28px 0;
}

.faq-list article:last-child {
  border-bottom: 1px solid rgba(31, 36, 36, 0.28);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 42px clamp(20px, 4vw, 64px);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer .wordmark,
.site-footer p,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.thanks-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 92px clamp(20px, 4vw, 64px) 44px;
  text-align: center;
}

.thanks-hero p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.video-frame {
  position: relative;
  overflow: hidden;
  margin: 48px auto 0;
  border: 1px solid var(--line-dark);
  max-width: 860px;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-control {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(22, 34, 35, 0.28);
  color: var(--white);
}

.play-control svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  margin-left: 5px;
}

.review-copy {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.review-copy h2,
.reflection-section h2 {
  font-size: 38px;
}

.reflection-section {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  text-align: left;
}

.soft-cta {
  color: var(--ink);
  font-weight: 700;
  margin-top: 30px;
}

.policy-page,
.apply-page {
  max-width: 1040px;
  margin: 0 auto;
}

.policy-hero,
.apply-intro {
  padding-bottom: 48px;
}

.policy-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  padding-top: 0;
}

.policy-content article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.policy-content h2 {
  font-family: var(--serif);
  font-size: 28px;
}

.policy-content p {
  max-width: 720px;
}

.apply-intro {
  max-width: 780px;
}

.application-form {
  display: grid;
  gap: 24px;
  padding: 0 clamp(20px, 6vw, 96px) 96px;
}

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

label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: 16px/1.4 var(--sans);
  padding: 15px 16px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 24px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-media {
    min-height: 440px;
    max-height: none;
  }

  .journey-section,
  .faq-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .lens-grid,
  .review-lenses {
    grid-template-columns: 1fr;
  }

  .lens-card,
  .review-lenses article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lens-card:last-child,
  .review-lenses article:last-child {
    border-bottom: 0;
  }

  .journey-list li {
    display: block;
  }

  .journey-list span {
    display: block;
    margin-bottom: 10px;
  }

  .journey-list li strong {
    display: block;
    margin-bottom: 8px;
  }

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

@media (max-width: 560px) {
  .site-header {
    display: grid;
    gap: 22px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-cta {
    padding: 10px 16px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 31px;
  }

  p {
    font-size: 16px;
  }

  .hero-line {
    font-size: 21px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 380px;
  }

  .image-band {
    height: 280px;
    min-height: 0;
  }

  .statement-section,
  .lens-section,
  .journey-section,
  .faq-section,
  .review-copy,
  .reflection-section,
  .apply-intro,
  .policy-hero,
  .policy-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .thanks-hero {
    padding-top: 64px;
  }

  .play-control {
    width: 72px;
    height: 72px;
  }
}
