:root {
  color-scheme: light;
  --paper: #f4efe5;
  --paper-deep: #e4d8c4;
  --ink: #191815;
  --ink-soft: #3f3a32;
  --muted: #786f62;
  --rule: rgba(25, 24, 21, 0.16);
  --red: #8f2f24;
  --blue: #273f4c;
  --green: #586a4f;
  --gold: #b18a3d;
  --serif: Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: "Avenir Next", "Gill Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(25, 24, 21, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(25, 24, 21, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: var(--serif);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--rule);
  background: rgba(244, 239, 229, 0.88);
  backdrop-filter: blur(16px);
  font-family: var(--sans);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: rgba(25, 24, 21, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(143, 47, 36, 0.45);
  color: var(--red);
  outline: none;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.62fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: calc(88vh - 67px);
  padding: clamp(54px, 7vw, 86px) clamp(20px, 6vw, 86px) clamp(44px, 6vw, 70px);
  border-bottom: 1px solid var(--rule);
}

.hero-copy {
  max-width: 880px;
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.1rem, 10vw, 9.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.86;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.7vw, 5.2rem);
  font-weight: 500;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.08;
}

.subtitle {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--blue);
  font-size: clamp(1.38rem, 2.25vw, 2.15rem);
  line-height: 1.18;
}

.lede,
.intro p,
.idea p,
.possibility p,
.section-heading > p:not(.section-label),
.move-list p,
.guide p,
.experience-copy p,
.venue p,
.apply p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.68;
}

.lede {
  max-width: 610px;
  margin-top: 24px;
}

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

.actions span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--red);
  color: #fff8eb;
  transform: translateY(-1px);
}

.button-dark {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.hero-portrait {
  justify-self: end;
  width: min(100%, 430px);
  margin: 0;
}

.hero-portrait img {
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  filter: saturate(0.88) contrast(1.03);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.45;
}

.belief {
  padding: clamp(34px, 5vw, 54px) clamp(20px, 6vw, 86px);
  border-block: 1px solid var(--rule);
  background: var(--ink);
  color: var(--paper);
}

.belief p {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(1.42rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.intro,
.experience,
.qualification {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--rule);
}

.intro div,
.experience-copy {
  max-width: 860px;
}

.intro h2,
.experience h2 {
  margin-bottom: 26px;
}

.intro p + p {
  margin-top: 18px;
}

.origin,
.lives,
.possibility,
.proof,
.qualification {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--rule);
}

.origin {
  background: #efe7d9;
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(310px, 0.92fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.origin-copy,
.story-card,
.possibility div,
.proof-copy,
.qualification div {
  max-width: 820px;
}

.origin-copy p,
.story-card p,
.possibility p,
.proof-copy p,
.life-grid p,
.qualification p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.68;
}

.origin-copy p + p,
.story-card p + p,
.possibility p + p,
.proof-copy p + p,
.life-grid p + p,
.guide p + p,
.qualification p + p {
  margin-top: 18px;
}

.story-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(25, 24, 21, 0.18);
  background: rgba(255, 255, 255, 0.3);
}

.story-label {
  margin-bottom: 18px !important;
  color: var(--red) !important;
  font-size: 0.74rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

blockquote {
  margin: 22px 0;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
  line-height: 1.04;
}

.idea {
  padding: clamp(76px, 10vw, 130px) clamp(20px, 6vw, 86px);
  background: var(--blue);
  color: var(--paper);
}

.idea-inner {
  max-width: 980px;
}

.idea .kicker {
  color: #d6b669;
}

.idea h2 {
  max-width: 920px;
}

.idea p {
  max-width: 720px;
  margin-top: 26px;
  color: #d8d1c4;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
}

.idea p + p {
  margin-top: 16px;
}

.moves,
.guides {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--rule);
}

.possibility {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  background: #f6f1e7;
}

.possibility h2 {
  margin-bottom: 26px;
}

.possibility blockquote {
  max-width: 760px;
  margin-top: 34px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.move-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.move-list article {
  min-height: 286px;
  padding: clamp(22px, 2.8vw, 34px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.2);
}

.move-list span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
}

.move-list h3 {
  margin-bottom: 14px;
}

.proof {
  background:
    linear-gradient(90deg, rgba(25, 24, 21, 0.9), rgba(25, 24, 21, 0.72)),
    var(--blue);
  color: var(--paper);
}

.proof-copy {
  margin-left: auto;
  margin-right: auto;
}

.proof h2 {
  max-width: 850px;
}

.proof-copy p {
  max-width: 760px;
  color: #e1d9cb;
}

.proof blockquote {
  max-width: 760px;
  margin: 30px 0;
  color: var(--paper);
}

.proof .button {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.lives {
  background: var(--paper);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(25, 24, 21, 0.18);
}

.life-grid article {
  min-height: 320px;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.26);
}

.life-grid h3 {
  margin-bottom: 18px;
}

.guide-list {
  display: grid;
  gap: 26px;
}

.guide {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  max-width: 960px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--rule);
}

.guide:last-child {
  border-bottom: 0;
}

.guide img {
  width: 190px;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.guide:first-child img {
  object-position: center;
}

.guide:nth-child(2) img {
  object-position: center 22%;
}

.guide h3 {
  margin-bottom: 12px;
}

.experience {
  background: var(--paper-deep);
}

.experience-copy p + p {
  margin-top: 18px;
}

.detail-button {
  margin-top: 30px;
}

.qualification {
  background: #f6f1e7;
}

.qualification h2 {
  margin-bottom: 26px;
}

.venue {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 5.5vw, 78px);
  align-items: center;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--rule);
  background: #efe7d9;
}

.venue-image {
  margin: 0;
}

.venue-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(25, 24, 21, 0.2);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.venue-copy {
  max-width: 740px;
}

.venue h2 {
  margin-bottom: 24px;
}

.venue-line {
  margin-bottom: 22px !important;
  color: var(--red) !important;
  font-family: var(--serif) !important;
  font-size: clamp(1.45rem, 2.5vw, 2.45rem) !important;
  line-height: 1.08 !important;
}

.venue p + p {
  margin-top: 18px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  background: rgba(25, 24, 21, 0.18);
}

.facts div {
  padding: 18px;
  background: var(--paper-deep);
}

.facts dt {
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.apply {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(25, 24, 21, 0.92), rgba(25, 24, 21, 0.72)),
    var(--green);
  color: var(--paper);
}

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

.apply p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #ddd5c8;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
}

.apply p + p {
  margin-top: 16px;
}

.apply .button {
  margin-top: 32px;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .possibility,
  .experience,
  .venue,
  .origin-grid,
  .qualification {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    min-height: auto;
  }

  .hero-portrait {
    justify-self: start;
    width: min(100%, 360px);
  }

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

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

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand img {
    width: auto;
    height: 60px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  nav {
    flex: 0 0 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    justify-content: stretch;
    gap: 0;
    border-top: 0 solid transparent;
    font-size: 0.72rem;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding-top 220ms ease, border-color 220ms ease;
  }

  .site-header.is-menu-open nav {
    max-height: 260px;
    padding-top: 10px;
    border-top: 1px solid var(--rule);
    opacity: 1;
  }

  nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid rgba(25, 24, 21, 0.1);
  }

  .hero,
  .intro,
  .idea,
  .possibility,
  .moves,
  .guides,
  .origin,
  .proof,
  .lives,
  .qualification,
  .experience,
  .venue,
  .apply {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(3.8rem, 21vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.5rem);
  }

  .actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    width: min(72vw, 280px);
  }

  .move-list,
  .facts {
    grid-template-columns: 1fr;
  }

  .move-list article {
    min-height: auto;
  }

  .life-grid article {
    min-height: auto;
  }

  .move-list span {
    margin-bottom: 28px;
  }

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

  .guide img {
    width: min(100%, 230px);
    height: 260px;
  }
}
