:root {
  --ink: #201000;
  --paper: #f7f0df;
  --surface: #fff8e9;
  --mist: #eadfc8;
  --soft-sage: #d5bd84;
  --olive: #405060;
  --copper: #b98318;
  --clay: #f0c66d;
  --gold: #f4cf78;
  --amber: #a07010;
  --bronze: #806030;
  --smoke: #304060;
  --graphite: #34281d;
  --muted: #766b5d;
  --line: rgba(32, 16, 0, 0.17);
  --line-dark: rgba(247, 240, 223, 0.2);
  --white: #ffffff;
  --error: #a84f3f;
  --success: #5f7f51;
  --font-body: "Manrope", Inter, system-ui, sans-serif;
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --container: min(1180px, calc(100vw - 40px));
  --section-pad: 56px;
  --block-gap: 32px;
  --fs-eyebrow: 12px;
  --fs-body: 16px;
  --fs-lead: 20px;
  --fs-h3: 24px;
  --fs-h2: 36px;
  --fs-display: 48px;
  --shadow-soft: 0 28px 90px rgba(32, 16, 0, 0.2);
  color-scheme: light;
}

@media (min-width: 768px) {
  :root {
    --container: min(1180px, calc(100vw - 64px));
    --section-pad: 72px;
    --block-gap: 38px;
    --fs-body: 18px;
    --fs-lead: 24px;
    --fs-h3: 28px;
    --fs-h2: 54px;
    --fs-display: 78px;
  }
}

@media (min-width: 1200px) {
  :root {
    --section-pad: 88px;
    --block-gap: 44px;
    --fs-h2: 64px;
    --fs-display: 102px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, #f5ead2 0%, var(--paper) 44%, #eadfc8 100%);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
.eyebrow,
.brand,
.button,
.primary-nav a,
.footer-nav a {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2 {
  max-width: 940px;
  margin-bottom: 24px;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-display);
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.03;
}

h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
  text-wrap: balance;
}

p {
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - 1280px) / 2 + 28px));
  background:
    linear-gradient(135deg, rgba(72, 43, 16, 0.94) 0%, rgba(112, 78, 30, 0.92) 52%, rgba(191, 142, 48, 0.86) 100%);
  border-bottom: 1px solid rgba(244, 207, 120, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: fit-content;
  min-width: 178px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

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

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-text span {
  color: var(--paper);
  font-size: 15px;
  font-weight: 700;
  line-height: 0.98;
  white-space: nowrap;
}

.primary-nav,
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(247, 240, 223, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a,
.footer-nav a {
  position: relative;
  white-space: nowrap;
}

.primary-nav a::after,
.footer-nav a::after,
.footer-bottom a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.footer-nav a:hover,
.footer-bottom a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--gold);
}

.primary-nav a:hover::after,
.footer-nav a:hover::after,
.footer-bottom a:hover::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.format-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@media (min-width: 601px) {
  .hero-actions,
  .format-actions {
    display: inline-flex;
    flex-wrap: nowrap;
    width: fit-content;
    max-width: 100%;
  }

  .header-actions,
  .site-header.nav-open .header-actions {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .button {
    white-space: nowrap;
  }

  .hero-actions .button,
  .format-actions .button,
  .header-actions .button {
    width: auto;
    flex: 0 0 auto;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-dark:hover {
  background: var(--gold);
}

.button-ghost {
  background: transparent;
  border-color: rgba(32, 16, 0, 0.26);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.button-light {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(185, 131, 24, 0.18);
}

.button-line {
  color: var(--ink);
  border-color: rgba(128, 96, 48, 0.36);
  background: rgba(255, 248, 233, 0.38);
}

.button-line:hover {
  border-color: var(--copper);
  background: rgba(244, 207, 120, 0.22);
}

.site-header .button-ghost {
  border-color: rgba(247, 240, 223, 0.34);
  color: var(--paper);
}

.site-header .button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(247, 240, 223, 0.32);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: calc(90svh - 76px);
  overflow: hidden;
  background: var(--ink);
  color: var(--ink);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) sepia(0.08) contrast(1.02) brightness(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(250, 236, 209, 0.92) 0%, rgba(232, 197, 133, 0.58) 42%, rgba(244, 207, 120, 0.08) 72%, rgba(32, 16, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(160, 112, 16, 0.12), rgba(255, 248, 233, 0.08));
}

.hero-content {
  display: flex;
  min-height: calc(90svh - 76px);
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0 82px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 20px;
  padding: 9px 14px 9px 13px;
  border-left: 2px solid var(--copper);
  align-items: center;
  gap: 10px;
  background:
    linear-gradient(90deg, rgba(255, 248, 233, 0.94), rgba(244, 207, 120, 0.2));
  color: var(--ink);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(160, 112, 16, 0.08);
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.path-section .eyebrow,
.testimonials-section .eyebrow,
.about-hero .eyebrow,
.event-hero .eyebrow,
.manifesto-cta .eyebrow {
  background: rgba(244, 207, 120, 0.14);
  border-left-color: var(--gold);
  color: var(--gold);
}

.hero .eyebrow {
  background:
    linear-gradient(90deg, rgba(255, 248, 233, 0.88), rgba(244, 207, 120, 0.28));
  border-left-color: var(--copper);
  color: var(--amber);
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--ink);
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.16;
  text-wrap: balance;
}

.hero-subcopy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(52, 40, 29, 0.78);
  font-size: var(--fs-body);
}

.intro-band,
.audience-section,
.path-section,
.formats-section,
.mentors-section,
.testimonials-section,
.application-section,
.manifesto {
  scroll-margin-top: 92px;
  padding: var(--section-pad) 0;
}

.intro-band {
  background:
    linear-gradient(180deg, rgba(255, 248, 233, 0.98) 0%, rgba(234, 223, 200, 0.96) 100%),
    linear-gradient(135deg, rgba(244, 207, 120, 0.22), rgba(160, 112, 16, 0));
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
}

.section-grid.reversed {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr);
}

.section-grid.reversed .section-copy {
  order: 2;
}

.section-copy {
  max-width: 720px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.application-panel > p,
.about-hero-copy p:not(.eyebrow),
.manifesto p {
  max-width: 66ch;
  color: var(--muted);
  font-size: var(--fs-body);
}

.visual-panel,
.wide-image,
.application-media {
  overflow: hidden;
  border-radius: 0;
  background: var(--ink);
  border: 1px solid rgba(185, 131, 24, 0.2);
}

.visual-panel {
  box-shadow: var(--shadow-soft);
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  filter: saturate(1.08) sepia(0.14) contrast(1.04) brightness(0.98);
  object-fit: cover;
}

.wide-image {
  width: var(--container);
  margin: 0 auto;
}

.wide-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  filter: saturate(1.08) sepia(0.14) contrast(1.04) brightness(0.98);
  object-fit: cover;
}

.reason-grid,
.audience-cards,
.journey-diagram,
.path-map,
.path-components,
.format-grid,
.attraction-grid,
.project-faces,
.mentor-principles,
.quote-grid {
  display: grid;
  width: var(--container);
  margin: var(--block-gap) auto 0;
  gap: 22px;
}

.reason-grid {
  grid-template-columns: repeat(4, 1fr);
}

.reason-grid article,
.format-grid article,
.attraction-grid article,
.path-components article,
.mentor-principles article,
.path-map article,
.audience-cards article {
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.reason-grid span,
.format-grid span,
.attraction-grid span,
.event-calendar span,
.step-label,
.placement-label,
.quote-meta span,
.component-icon,
.journey-node span {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.reason-grid p,
.format-grid p,
.mentor-principles p,
.path-map li,
.path-components p,
.attraction-grid p,
.event-calendar p,
.quote-grid p,
.audience-cards p,
.project-faces p:not(.placement-label) {
  color: var(--muted);
}

.section-heading {
  width: var(--container);
  margin: 0 auto var(--block-gap);
}

.section-heading h2 {
  max-width: 940px;
}

.audience-section {
  background:
    linear-gradient(180deg, rgba(234, 223, 200, 0.98) 0%, rgba(223, 207, 176, 0.98) 100%),
    linear-gradient(135deg, rgba(255, 248, 233, 0.42), rgba(185, 131, 24, 0.12));
}

.audience-cards {
  grid-template-columns: repeat(5, 1fr);
}

.audience-cards article {
  min-height: 224px;
}

.audience-cards article::after {
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 24px;
  background: var(--copper);
  content: "";
}

.audience-cards p {
  margin-bottom: 0;
  opacity: 1;
  transform: none;
}

.audience-cards article:hover,
.audience-cards article:focus {
  transform: translateY(-3px);
}

.path-section,
.testimonials-section {
  background:
    linear-gradient(180deg, rgba(128, 96, 48, 0.28), rgba(32, 16, 0, 0)),
    linear-gradient(135deg, #241306 0%, #160d08 58%, #3c2a16 100%);
  color: var(--paper);
}

.path-section h2,
.path-section h3,
.testimonials-section h2,
.testimonials-section h3 {
  color: var(--paper);
}

.path-section .section-copy p:not(.eyebrow),
.testimonials-section .section-copy p:not(.eyebrow) {
  color: rgba(251, 251, 248, 0.72);
}

.journey-diagram {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  min-height: 500px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--ink);
  box-shadow: 0 32px 90px rgba(32, 16, 0, 0.42);
  isolation: isolate;
}

.journey-diagram::before {
  position: absolute;
  right: 8%;
  bottom: 43%;
  left: 8%;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(128, 96, 48, 0.36), rgba(244, 207, 120, 0.95), rgba(48, 64, 96, 0.86));
  content: "";
}

.journey-diagram::after {
  position: absolute;
  right: 7%;
  bottom: calc(43% - 6px);
  z-index: 0;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(244, 207, 120, 0.95);
  border-right: 2px solid rgba(244, 207, 120, 0.95);
  content: "";
  transform: rotate(45deg);
}

.journey-diagram img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(1.12) sepia(0.2) contrast(1.08) brightness(0.82);
}

.journey-diagram > img + .journey-node {
  position: relative;
}

.journey-diagram::selection {
  background: var(--copper);
}

.journey-node {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(244, 207, 120, 0.22);
  background: rgba(32, 16, 0, 0.74);
  backdrop-filter: blur(16px);
}

.journey-node::before {
  position: absolute;
  top: -40px;
  left: 26px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--clay);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(244, 207, 120, 0.16);
  content: "";
}

.journey-node h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
}

.journey-node p {
  color: rgba(251, 251, 248, 0.74);
}

.point-mid {
  background: rgba(255, 248, 233, 0.94);
  transform: none;
}

.point-mid h3 {
  color: var(--ink);
}

.point-mid p {
  color: rgba(52, 40, 29, 0.78);
}

.point-b {
  border-color: rgba(244, 207, 120, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 248, 233, 0.96) 0%, rgba(232, 197, 133, 0.92) 45%, rgba(191, 142, 48, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 248, 233, 0.5), 0 26px 76px rgba(128, 96, 48, 0.24);
}

.point-b span {
  color: rgba(128, 96, 48, 0.86);
}

.point-b h3 {
  color: var(--ink);
}

.point-b p {
  color: rgba(52, 40, 29, 0.76);
}

.path-map {
  grid-template-columns: repeat(3, 1fr);
}

.path-map article {
  min-height: 350px;
  border-top-color: var(--line-dark);
}

.path-map ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
}

.path-components {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.components-intro {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 10px;
}

.components-intro h3,
.principles-intro h3,
.event-calendar h3 {
  max-width: 740px;
  margin-bottom: 16px;
  color: inherit;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
}

.components-intro p:not(.eyebrow) {
  max-width: 66ch;
  color: rgba(251, 251, 248, 0.72);
}

.path-components article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(244, 207, 120, 0.16);
  background: rgba(244, 207, 120, 0.07);
}

.path-components article:nth-child(2),
.path-components article:nth-child(4),
.path-components article:nth-child(6) {
  transform: none;
}

.path-components h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}

.path-components p {
  color: rgba(251, 251, 248, 0.72);
}

.formats-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, #e6d7b8 100%),
    linear-gradient(120deg, rgba(244, 207, 120, 0.18), rgba(255, 248, 233, 0));
}

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

.attraction-section {
  padding: var(--section-pad) 0;
  background:
    linear-gradient(180deg, var(--surface) 0%, #f3ead7 100%),
    linear-gradient(135deg, rgba(244, 207, 120, 0.22), rgba(160, 112, 16, 0));
  scroll-margin-top: 92px;
}

.attraction-grid {
  grid-template-columns: repeat(5, 1fr);
}

.event-calendar {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: var(--container);
  margin: var(--block-gap) auto 0;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff2d5 0%, #e0c98f 60%, #c38a22 100%);
}

.event-calendar > div {
  padding-right: 18px;
}

.event-calendar article {
  padding-top: 22px;
  border-top: 1px solid rgba(32, 16, 0, 0.18);
}

.event-calendar article > span {
  color: #a66a10;
  font-size: 13px;
  text-transform: none;
}

.event-calendar h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.22;
}

.event-calendar h4 a {
  color: inherit;
  text-decoration: none;
}

.event-calendar h4 a:hover {
  color: #7c4a02;
}

.events-calendar-tool {
  width: var(--container);
  margin: 22px auto 0;
  padding: 30px 34px 34px;
  border: 1px solid rgba(244, 207, 120, 0.24);
  background:
    linear-gradient(135deg, rgba(68, 43, 20, 0.96), rgba(32, 16, 0, 0.98)),
    var(--ink);
  color: var(--paper);
}

.calendar-tool-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.calendar-tool-head h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
}

.calendar-controls {
  display: flex;
  gap: 8px;
}

.calendar-controls button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 207, 120, 0.32);
  background: rgba(247, 240, 223, 0.04);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.calendar-controls button:hover,
.calendar-controls button:focus-visible {
  border-color: var(--gold);
  background: rgba(244, 207, 120, 0.14);
  outline: none;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: rgba(247, 240, 223, 0.58);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(247, 240, 223, 0.13);
  background: rgba(247, 240, 223, 0.04);
  color: rgba(247, 240, 223, 0.78);
  text-decoration: none;
}

.calendar-day.is-empty {
  border-color: transparent;
  background: transparent;
}

.calendar-day.has-event {
  border-color: rgba(244, 207, 120, 0.62);
  background: linear-gradient(135deg, #fff1ce 0%, #d7a736 100%);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.calendar-day.has-event:hover,
.calendar-day.has-event:focus-visible {
  border-color: var(--paper);
  outline: none;
  transform: translateY(-1px);
}

.calendar-day-number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.calendar-event-stack {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  gap: 4px;
}

.calendar-event-marker {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.calendar-popover {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  z-index: 8;
  display: grid;
  gap: 6px;
  width: 250px;
  padding: 14px;
  border: 1px solid rgba(32, 16, 0, 0.18);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(32, 16, 0, 0.22);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.calendar-day:nth-child(7n) .calendar-popover {
  right: 0;
  left: auto;
  transform: translate(0, 8px);
}

.calendar-day:nth-child(7n + 1) .calendar-popover {
  left: 0;
  transform: translate(0, 8px);
}

.calendar-day.has-event:hover .calendar-popover,
.calendar-day.has-event:focus-visible .calendar-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.calendar-day:nth-child(7n).has-event:hover .calendar-popover,
.calendar-day:nth-child(7n).has-event:focus-visible .calendar-popover,
.calendar-day:nth-child(7n + 1).has-event:hover .calendar-popover,
.calendar-day:nth-child(7n + 1).has-event:focus-visible .calendar-popover {
  transform: translate(0, 0);
}

.calendar-popover strong,
.calendar-popover small {
  display: block;
}

.calendar-popover strong {
  font-size: 14px;
  line-height: 1.25;
}

.calendar-popover small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mentor-principles {
  grid-template-columns: repeat(4, 1fr);
}

.principles-intro {
  width: var(--container);
  margin: var(--block-gap) auto 0;
}

.principles-intro .eyebrow {
  margin-bottom: 16px;
}

.project-faces {
  grid-template-columns: repeat(4, 1fr);
}

.project-faces article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 55px rgba(32, 16, 0, 0.14);
}

.project-faces img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.03) sepia(0.1) contrast(1.03) brightness(0.98);
}

.project-faces article > div {
  padding: 22px;
}

.project-faces p:not(.placement-label) {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.quote-grid blockquote {
  display: flex;
  min-height: 286px;
  margin: 0;
  padding: 30px 0 0;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
}

.quote-grid p {
  color: rgba(251, 251, 248, 0.86);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.16;
  text-wrap: balance;
}

.quote-meta {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 251, 248, 0.13);
}

.quote-grid cite {
  color: rgba(251, 251, 248, 0.7);
  font-style: normal;
  font-weight: 700;
}

.application-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 76px;
  align-items: start;
  width: var(--container);
  margin: 0 auto;
}

.application-media {
  position: sticky;
  top: 102px;
  box-shadow: var(--shadow-soft);
}

.application-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  filter: saturate(1.08) sepia(0.14) contrast(1.04) brightness(0.98);
  object-fit: cover;
}

.application-panel {
  padding: 42px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(32, 16, 0, 0.22);
  border-radius: 0;
  background: var(--surface);
  color: var(--graphite);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--copper);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--copper);
}

.lead-form .field-error {
  border-color: var(--error);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-weight: 700;
}

.form-status.error {
  color: var(--error);
}

.site-footer {
  padding: 48px max(20px, calc((100vw - 1280px) / 2 + 28px)) 34px;
  background: var(--ink);
  color: var(--paper);
}

.footer-nav {
  justify-content: flex-start;
  color: rgba(251, 251, 248, 0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 251, 248, 0.13);
  color: rgba(251, 251, 248, 0.64);
  font-size: 14px;
}

.footer-bottom a {
  position: relative;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 251, 248, 0.13);
}

.footer-socials p {
  margin: 0;
  color: rgba(251, 251, 248, 0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 207, 120, 0.42);
  border-radius: 50%;
  background: rgba(244, 207, 120, 0.08);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 120, 0.88);
  background: var(--gold);
  color: var(--ink);
}

.social-link-placeholder {
  cursor: default;
  opacity: 0.72;
}

.social-link-placeholder:hover {
  transform: none;
}

.social-link-in {
  font-size: 14px;
  text-transform: lowercase;
}

.footer-legal,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.footer-legal {
  max-width: 560px;
}

.footer-links {
  justify-content: flex-end;
}

.footer-legal p {
  margin: 0;
}

.consent a,
.legal-section a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.legal-page {
  padding: 128px 0 var(--section-pad);
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 54%, var(--surface) 100%);
}

.legal-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-shell h1 {
  max-width: 980px;
  margin-bottom: 26px;
  text-wrap: balance;
}

.legal-lede {
  max-width: 780px;
  margin-bottom: 52px;
  padding-left: 22px;
  border-left: 2px solid var(--copper);
  color: var(--muted);
  font-size: var(--fs-lead);
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: var(--fs-h3);
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.about-hero {
  position: relative;
  min-height: calc(86svh - 76px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.about-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) sepia(0.16) contrast(1.04) brightness(0.94);
}

.about-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(32, 16, 0, 0.9) 0%, rgba(32, 16, 0, 0.64) 46%, rgba(160, 112, 16, 0.16) 100%),
    linear-gradient(0deg, rgba(32, 16, 0, 0.42), rgba(32, 16, 0, 0.02));
  content: "";
}

.about-hero-copy {
  display: flex;
  min-height: calc(86svh - 76px);
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0 82px;
  flex-direction: column;
  justify-content: center;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(251, 251, 248, 0.84);
  font-size: var(--fs-lead);
}

.manifesto {
  width: 100%;
  margin: 0;
  padding-inline: max(20px, calc((100vw - 1280px) / 2 + 28px));
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 58%, var(--surface) 100%);
}

.manifesto-intro {
  max-width: 880px;
  margin: 0 auto;
}

.manifesto-intro p {
  font-size: var(--fs-lead);
  line-height: 1.48;
}

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

.manifesto-grid,
.manifesto-columns {
  display: grid;
  gap: 68px;
  width: min(100%, 1224px);
  margin-right: auto;
  margin-left: auto;
  margin-top: var(--block-gap);
}

.manifesto-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.manifesto-grid aside {
  align-self: start;
  padding-top: 28px;
  border-top: 2px solid var(--copper);
}

.manifesto-grid aside h2 {
  font-size: var(--fs-h2);
}

.question-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: var(--fs-body);
}

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

.manifesto-columns section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

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

.manifesto-cta {
  width: min(100%, 1224px);
  margin-top: var(--block-gap);
  margin-right: auto;
  margin-left: auto;
  padding: 56px;
  border: 1px solid rgba(244, 207, 120, 0.24);
  background:
    linear-gradient(135deg, rgba(244, 207, 120, 0.13), rgba(32, 16, 0, 0) 48%),
    var(--ink);
  color: var(--paper);
}

.manifesto-cta p {
  margin-bottom: 30px;
  color: rgba(251, 251, 248, 0.72);
}

.event-page {
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 44%, var(--surface) 100%);
}

.event-hero {
  position: relative;
  min-height: calc(76svh - 76px);
  display: flex;
  align-items: center;
  padding: 112px 0 82px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.event-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.08) sepia(0.16) contrast(1.04) brightness(0.9);
}

.event-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 16, 0, 0.9) 0%, rgba(32, 16, 0, 0.62) 48%, rgba(160, 112, 16, 0.14) 100%),
    linear-gradient(0deg, rgba(32, 16, 0, 0.44), rgba(32, 16, 0, 0.02));
}

.event-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 42px;
  align-items: end;
  width: var(--container);
  margin: 0 auto;
}

.event-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--paper);
  text-wrap: balance;
}

.event-hero-copy p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(251, 251, 248, 0.84);
  font-size: var(--fs-lead);
}

.event-date-card {
  padding: 30px;
  border: 1px solid rgba(244, 207, 120, 0.38);
  background: rgba(32, 16, 0, 0.54);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.event-date-card time {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.event-meta-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(247, 240, 223, 0.78);
}

.event-meta-list span {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(247, 240, 223, 0.14);
}

.event-content {
  padding: var(--section-pad) 0;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: var(--block-gap);
  width: var(--container);
  margin: 0 auto;
}

.event-detail-card {
  padding: 32px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.event-detail-card h2,
.event-detail-card h3 {
  margin-bottom: 18px;
}

.event-detail-card p,
.event-detail-card li {
  color: var(--muted);
}

.event-detail-card ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
}

.event-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.event-sidebar .event-detail-card {
  padding: 28px;
  border: 1px solid rgba(185, 131, 24, 0.2);
  background: var(--surface);
}

.event-next-step {
  width: var(--container);
  margin: var(--block-gap) auto 0;
  padding: 52px;
  border: 1px solid rgba(244, 207, 120, 0.24);
  background:
    linear-gradient(135deg, rgba(244, 207, 120, 0.13), rgba(32, 16, 0, 0) 48%),
    var(--ink);
  color: var(--paper);
}

.event-next-step h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--paper);
}

.event-next-step p {
  max-width: 680px;
  margin-bottom: 26px;
  color: rgba(247, 240, 223, 0.74);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open {
    align-items: start;
  }

  .site-header.nav-open .primary-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.nav-open .primary-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
    font-size: 20px;
  }

  .site-header.nav-open .header-actions {
    width: 100%;
    padding-bottom: 10px;
  }

  .reason-grid,
  .audience-cards,
  .attraction-grid,
  .mentor-principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .path-components {
    grid-template-columns: repeat(2, 1fr);
  }

  .path-components article:nth-child(2),
  .path-components article:nth-child(4),
  .path-components article:nth-child(6) {
    transform: none;
  }

  .audience-cards article:last-child {
    grid-column: 1 / -1;
  }

  .project-faces {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .event-calendar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .event-calendar > div {
    grid-column: 1 / -1;
    max-width: 560px;
    padding-right: 0;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100vw - 32px, 704px);
    --section-pad: 62px;
    --block-gap: 32px;
    --fs-display: 52px;
    --fs-h2: 40px;
    --fs-h3: 24px;
    --fs-lead: 22px;
  }

  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .hero,
  .hero-content,
  .about-hero,
  .about-hero-copy {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(250, 236, 209, 0.94), rgba(232, 197, 133, 0.72)),
      linear-gradient(0deg, rgba(160, 112, 16, 0.16), rgba(255, 248, 233, 0.08));
  }

  .hero-image {
    object-position: 70% top;
  }

  .hero-content,
  .about-hero-copy {
    padding: 92px 0 84px;
  }

  .section-grid,
  .section-grid.reversed,
  .application-section,
  .manifesto-grid,
  .manifesto-columns,
  .event-hero-inner,
  .event-detail-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-grid.reversed .section-copy {
    order: 0;
  }

  .wide-image img,
  .visual-panel img {
    aspect-ratio: 4 / 3;
  }

  .path-map,
  .path-components,
  .journey-diagram,
  .format-grid,
  .attraction-grid,
  .event-calendar,
  .mentor-principles,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .journey-diagram {
    min-height: auto;
    padding: 20px;
  }

  .journey-diagram::before,
  .journey-diagram::after,
  .journey-node::before {
    display: none;
  }

  .point-mid {
    transform: none;
  }

  .application-media {
    position: static;
  }

  .application-media img {
    aspect-ratio: 16 / 10;
  }

  .application-panel {
    padding: 26px 0 0;
  }

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

  .events-calendar-tool {
    padding: 28px 24px 30px;
  }

  .event-hero {
    min-height: auto;
    padding: 98px 0 60px;
  }

  .event-date-card {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  :root {
    --container: min(100vw - 24px, 420px);
    --section-pad: 50px;
    --block-gap: 26px;
    --fs-display: 42px;
    --fs-h2: 32px;
    --fs-h3: 22px;
    --fs-lead: 20px;
    --fs-body: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text span {
    font-size: 14px;
  }

  .brand-text strong {
    font-size: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .button {
    width: 100%;
  }

  h1,
  h2 {
    max-width: 100%;
    line-height: 1.04;
  }

  .hero-actions,
  .format-actions,
  .header-actions {
    width: 100%;
  }

  .reason-grid,
  .audience-cards,
  .project-faces {
    grid-template-columns: 1fr;
  }

  .audience-cards article,
  .path-map article {
    min-height: auto;
  }

  .journey-node,
  .project-faces article > div {
    padding: 22px;
  }

  .path-components article {
    min-height: auto;
  }

  .components-intro h3,
  .principles-intro h3,
  .event-calendar h3 {
    font-size: 32px;
  }

  .calendar-tool-head {
    flex-direction: column;
  }

  .calendar-controls button {
    width: 40px;
    height: 40px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 5px;
  }

  .calendar-day {
    min-height: 46px;
    padding: 6px;
  }

  .calendar-popover {
    display: none;
  }

  .event-date-card,
  .event-detail-card,
  .event-next-step {
    padding: 24px;
  }

  .quote-grid p {
    font-size: 24px;
  }

  .manifesto-cta {
    padding: 32px 22px;
  }

  .footer-nav,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
