:root {
  color-scheme: light;
  --ink: #182528;
  --muted: #5c6766;
  --paper: #fbf7ef;
  --soft: #f1eadf;
  --teal: #0b5963;
  --teal-deep: #07383f;
  --gold: #c98f2d;
  --gold-soft: #f3dca8;
  --coral: #ce5d45;
  --white: #ffffff;
  --line: rgba(24, 37, 40, 0.14);
  --shadow: 0 24px 70px rgba(24, 37, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 19, 22, 0.78), rgba(7, 19, 22, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a.active {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--teal-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/level-up-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 23, 27, 0.92) 0%, rgba(6, 23, 27, 0.74) 38%, rgba(6, 23, 27, 0.16) 72%),
    linear-gradient(0deg, rgba(6, 23, 27, 0.78) 0%, rgba(6, 23, 27, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 84px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions,
.donate-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  font-family: inherit;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #19120b;
  background: var(--gold-soft);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band,
.pathways,
.impact-band,
.story-section,
.donate-band {
  padding: clamp(64px, 10vw, 118px) 0;
}

.intro-grid,
.impact-grid,
.story-grid,
.donate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.intro-copy p,
.impact-grid p,
.story-grid p,
.donate-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

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

.event-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 37, 40, 0.08);
}

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

.event-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.event-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--teal);
}

.event-icon span,
.event-icon::before,
.event-icon::after {
  position: absolute;
  content: "";
  background: var(--gold-soft);
}

.event-icon span {
  left: 24px;
  top: 10px;
  width: 10px;
  height: 36px;
  border-radius: 8px;
}

.event-icon::before {
  left: 16px;
  top: 14px;
  width: 30px;
  height: 8px;
  border-radius: 999px;
}

.event-icon::after {
  right: 10px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.event-icon.game {
  background: var(--coral);
}

.event-icon.game span {
  left: 13px;
  top: 26px;
  width: 32px;
  height: 10px;
  border-radius: 999px;
}

.event-icon.game::before,
.event-icon.game::after {
  border-radius: 50%;
}

.event-icon.game::before {
  left: 14px;
  top: 17px;
  width: 9px;
  height: 9px;
}

.event-icon.game::after {
  right: 14px;
  bottom: 16px;
  width: 10px;
  height: 10px;
}

.event-icon.math {
  background: var(--gold);
}

.event-icon.math span {
  left: 16px;
  top: 25px;
  width: 26px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal-deep);
}

.event-icon.math::before,
.event-icon.math::after {
  background: var(--teal-deep);
  border-radius: 999px;
}

.event-icon.math::before {
  left: 26px;
  top: 15px;
  width: 6px;
  height: 26px;
}

.event-icon.math::after {
  right: 13px;
  bottom: 11px;
  width: 12px;
  height: 12px;
}

.impact-band {
  color: var(--white);
  background: var(--teal-deep);
}

.impact-band h2,
.impact-band p {
  color: var(--white);
}

.impact-band p {
  color: rgba(255, 255, 255, 0.76);
}

.impact-list {
  display: grid;
  gap: 14px;
}

.impact-list div {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-list strong,
.impact-list span {
  display: block;
}

.impact-list strong {
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.impact-list span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.story-section {
  background: var(--soft);
}

.story-stat {
  position: sticky;
  top: 110px;
  padding: 32px;
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-stat span,
.story-stat strong {
  display: block;
}

.story-stat span {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.story-stat strong {
  font-size: 1.16rem;
  line-height: 1.4;
}

.donate-band {
  background:
    linear-gradient(135deg, rgba(201, 143, 45, 0.14), rgba(206, 93, 69, 0.12)),
    var(--paper);
}

.donate-grid {
  align-items: center;
}

.donate-panel {
  justify-content: flex-end;
  margin-top: 0;
}

.donate-panel .button-secondary {
  color: var(--teal-deep);
  border-color: rgba(7, 56, 63, 0.28);
  background: rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #10191b;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.footer-grid p {
  margin: 0;
}

.footer-grid strong {
  color: var(--white);
}

/* Annual golf tournament */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tournament-page {
  --tournament-navy: #062b4b;
  --tournament-navy-deep: #031f37;
  --tournament-olive: #6e7448;
  --tournament-gold: #c79636;
  --tournament-cream: #f7f1e7;
  background: var(--tournament-cream);
}

.tournament-header {
  position: absolute;
  background: linear-gradient(180deg, rgba(3, 31, 55, 0.92), rgba(3, 31, 55, 0));
}

.tournament-hero {
  position: relative;
  overflow: hidden;
  background: var(--tournament-navy);
}

.tournament-hero img {
  display: block;
  width: 100%;
  height: auto;
}

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

.tournament-intro {
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 150, 54, 0.12), transparent 28%),
    var(--tournament-cream);
}

.tournament-intro-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.tournament-date-card {
  padding: 44px 34px;
  border: 1px solid rgba(110, 116, 72, 0.36);
  text-align: center;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 14px 14px 0 rgba(110, 116, 72, 0.12);
}

.tournament-date-card span,
.tournament-date-card strong {
  display: block;
}

.date-month,
.date-year {
  color: var(--tournament-olive);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tournament-date-card strong {
  color: var(--tournament-navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
}

.tournament-date-card div {
  width: 48px;
  height: 1px;
  margin: 28px auto;
  background: var(--tournament-gold);
}

.tournament-date-card p {
  margin: 0;
  color: var(--tournament-navy);
  font-weight: 800;
}

.tournament-date-card small {
  color: var(--tournament-olive);
  font-weight: 700;
}

.tournament-copy h2,
.purpose-band h2,
.participate-section h2,
.tournament-cta h2 {
  color: var(--tournament-navy);
}

.tournament-lead {
  max-width: 660px;
  margin: 25px 0 36px;
  color: #4f5855;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  line-height: 1.7;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(6, 43, 75, 0.2);
  border-bottom: 1px solid rgba(6, 43, 75, 0.2);
}

.event-facts div {
  padding: 22px 18px 22px 0;
}

.event-facts div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(6, 43, 75, 0.2);
}

.event-facts span,
.event-facts strong {
  display: block;
}

.event-facts span {
  margin-bottom: 4px;
  color: var(--tournament-olive);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-facts strong {
  color: var(--tournament-navy);
  font-size: 0.98rem;
  line-height: 1.4;
}

.event-facts small {
  color: #65705f;
  font-size: 0.82rem;
  font-weight: 600;
}

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

.tournament-button {
  color: #fff;
  border-color: var(--tournament-gold);
  border-radius: 2px;
  background: var(--tournament-navy);
}

.text-link,
.participate-grid a {
  color: var(--tournament-navy);
  font-weight: 800;
  text-decoration-color: var(--tournament-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.purpose-band {
  padding: clamp(74px, 10vw, 130px) 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--tournament-navy);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(44px, 9vw, 130px);
  align-items: center;
}

.purpose-kicker {
  margin: 0;
  color: var(--tournament-gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-style: italic;
  line-height: 1.2;
}

.purpose-band h2,
.tournament-cta h2 {
  color: #fff;
}

.purpose-band p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.participate-section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.participate-heading {
  max-width: 770px;
  margin-bottom: 50px;
}

.participate-heading > p:last-child {
  color: #59625e;
  font-size: 1.08rem;
}

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

.participate-grid article {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border-top: 3px solid var(--tournament-gold);
  background: #fff;
  box-shadow: 0 18px 45px rgba(3, 31, 55, 0.09);
}

.card-number {
  margin-bottom: 28px;
  color: var(--tournament-olive);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
}

.participate-grid h3 {
  color: var(--tournament-navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.65rem;
}

.participate-grid p {
  color: #606965;
}

.participate-grid a {
  margin-top: auto;
}

.tournament-cta {
  padding: clamp(72px, 10vw, 126px) 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(rgba(3, 31, 55, 0.9), rgba(3, 31, 55, 0.94)),
    url("assets/tournament-banner.png") center 45% / cover;
}

.tournament-cta p:not(.eyebrow) {
  margin: 15px 0 30px;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tournament-cta .tournament-button {
  background: var(--tournament-gold);
}

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

.contact-modal {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(199, 150, 54, 0.55);
  border-radius: 4px;
  color: var(--ink);
  background: var(--tournament-cream);
  box-shadow: 0 30px 100px rgba(3, 31, 55, 0.42);
}

.contact-modal::backdrop {
  background: rgba(3, 31, 55, 0.78);
  backdrop-filter: blur(4px);
}

.contact-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 34px 24px;
  border-bottom: 1px solid rgba(6, 43, 75, 0.15);
}

.contact-modal-head h2 {
  color: var(--tournament-navy);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.modal-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(6, 43, 75, 0.2);
  border-radius: 50%;
  color: var(--tournament-navy);
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 28px 34px 34px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--tournament-navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form label span,
.contact-form-note {
  color: #69716d;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 43, 75, 0.24);
  border-radius: 3px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--tournament-gold);
  outline: 3px solid rgba(199, 150, 54, 0.2);
}

.contact-form-note {
  margin: -4px 0 0;
  font-size: 0.76rem;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.modal-cancel {
  border: 0;
  color: var(--tournament-navy);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.housing-modal {
  --tournament-navy: var(--teal-deep);
  --tournament-gold: var(--gold);
  --tournament-cream: var(--paper);
}

.housing-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form .checkbox-label {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(7, 56, 63, 0.18);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.contact-form .checkbox-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--teal);
}

.contact-form .checkbox-label span {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
}

/* Ryan's story */
.story-page {
  --story-navy: #092f4f;
  --story-cream: #f8f2e8;
  --story-gold: #c79231;
  --story-olive: #6d7449;
  background: var(--story-cream);
}

.story-header {
  position: absolute;
  background: linear-gradient(180deg, rgba(3, 24, 40, 0.9), transparent);
}

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

.story-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 38%, rgba(199, 146, 49, 0.18), transparent 25%),
    linear-gradient(135deg, #041d32, var(--story-navy));
}

.story-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  background: var(--story-gold);
  content: "";
}

.story-hero-decoration {
  position: absolute;
  top: 50%;
  right: clamp(-60px, 4vw, 80px);
  color: rgba(255, 255, 255, 0.035);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: min(56vw, 700px);
  line-height: 0.7;
  transform: translateY(-42%);
  user-select: none;
}

.story-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(76px, 10vw, 125px);
}

.story-hero h1 {
  font-size: clamp(4rem, 10vw, 8.5rem);
}

.story-hero-content > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  line-height: 1.6;
}

.story-opening {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 8vw, 96px);
  padding-top: clamp(80px, 11vw, 140px);
  padding-bottom: clamp(80px, 11vw, 140px);
}

.story-opening p,
.chapter-copy p,
.mission-story-heading > p:last-child,
.mission-pillars p,
.story-closing-grid p {
  color: #515c59;
  font-size: 1.06rem;
}

.story-opening p {
  margin: 0;
}

.story-dropcap {
  color: var(--story-navy) !important;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem) !important;
  line-height: 1.65;
}

.story-dropcap::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  color: var(--story-gold);
  font-size: 4.6rem;
  line-height: 0.75;
}

.story-video-section {
  padding: clamp(74px, 10vw, 125px) 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--story-navy);
}

.story-video-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 8vw, 90px);
  align-items: center;
}

.story-video-section h2 {
  color: #fff;
}

.story-video-section p:not(.eyebrow) {
  margin: 22px 0;
}

.story-video-section a {
  color: #f4dfb7;
  font-weight: 800;
  text-decoration-color: var(--story-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.story-video {
  overflow: hidden;
  border: 1px solid rgba(199, 146, 49, 0.65);
  background: #031727;
  box-shadow: 18px 18px 0 rgba(199, 146, 49, 0.12);
  aspect-ratio: 16 / 9;
}

.story-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-chapter {
  padding: clamp(74px, 10vw, 125px) 0;
  border-top: 1px solid rgba(9, 47, 79, 0.15);
}

.chapter-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 720px);
  gap: clamp(38px, 8vw, 94px);
}

.chapter-marker span {
  display: block;
  color: var(--story-olive);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 3rem;
}

.chapter-marker i {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 18px;
  background: var(--story-gold);
}

.chapter-copy h2,
.mission-story h2,
.story-closing h2 {
  color: var(--story-navy);
}

.chapter-copy p {
  margin: 24px 0 0;
}

.story-quote {
  padding: clamp(76px, 11vw, 140px) 0;
  color: #fff;
  background: var(--story-navy);
}

.story-quote blockquote {
  max-width: 920px;
  margin: 0;
  color: #f6ead2;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-style: italic;
  line-height: 1.35;
}

.mission-story {
  padding: clamp(80px, 11vw, 140px) 0;
  background: #efe7da;
}

.mission-story-heading {
  max-width: 840px;
  margin-bottom: 56px;
}

.mission-story-heading > p:last-child {
  margin-top: 26px;
}

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

.mission-pillars section {
  padding: 30px;
  border-top: 3px solid var(--story-gold);
  background: #fff;
  box-shadow: 0 16px 40px rgba(9, 47, 79, 0.08);
}

.mission-pillars span {
  color: var(--story-olive);
  font-family: "Libre Baskerville", Georgia, serif;
}

.mission-pillars h3 {
  margin-top: 26px;
  color: var(--story-navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
}

.mission-pillars p {
  margin: 18px 0 0;
  font-size: 0.98rem;
}

.story-closing {
  padding: clamp(86px, 12vw, 150px) 0;
}

.story-closing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 9vw, 110px);
  align-items: start;
}

.story-closing h2 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
}

.story-closing-grid p:first-child {
  margin-top: 8px;
}

.story-closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.story-secondary-link,
.story-link {
  color: var(--teal-deep);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
    max-width: 230px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 23, 27, 0.94), rgba(6, 23, 27, 0.62)),
      linear-gradient(0deg, rgba(6, 23, 27, 0.86), rgba(6, 23, 27, 0) 50%);
  }

  .hero-content {
    margin-left: 18px;
    padding-top: 160px;
  }

  .intro-grid,
  .impact-grid,
  .story-grid,
  .donate-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .story-stat {
    position: static;
  }

  .donate-panel {
    justify-content: flex-start;
  }

  .tournament-intro-grid,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

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

  .participate-grid article {
    min-height: 280px;
  }

  .story-opening,
  .chapter-grid,
  .story-video-grid,
  .story-closing-grid {
    grid-template-columns: 1fr;
  }

  .chapter-marker {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .chapter-marker i {
    flex: 1;
    margin: 0;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .site-header {
    display: block;
    padding: 16px 18px;
  }

  .site-nav {
    justify-content: flex-start;
    margin-top: 18px;
    max-width: none;
    font-size: 0.86rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 178px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .button {
    width: 100%;
  }

  .event-card {
    min-height: 0;
  }

  .footer-grid {
    display: grid;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .tournament-shell {
    width: min(100% - 30px, 1200px);
  }

  .event-facts {
    grid-template-columns: 1fr;
  }

  .event-facts div,
  .event-facts div + div {
    padding: 16px 0;
    border-left: 0;
  }

  .event-facts div + div {
    border-top: 1px solid rgba(6, 43, 75, 0.14);
  }

  .tournament-actions {
    align-items: stretch;
  }

  .text-link {
    padding: 10px 0;
    text-align: center;
  }

  .contact-modal-head,
  .contact-form {
    padding-right: 22px;
    padding-left: 22px;
  }

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

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

  .modal-cancel {
    min-height: 40px;
  }

  .story-hero {
    min-height: 620px;
  }

  .story-hero h1 {
    font-size: clamp(3.6rem, 20vw, 5.6rem);
  }

  .story-opening {
    gap: 30px;
  }

  .story-quote blockquote {
    font-size: 1.9rem;
  }

  .mission-pillars section {
    padding: 25px;
  }
}
