:root {
  --mds-blue: #0e6eb2;
  --mds-blue-deep: #073b63;
  --mds-blue-dark: #062f50;
  --mds-cyan: #50c9ea;
  --mds-orange: #f89d1d;
  --mds-yellow: #fbc312;
  --ink: #102331;
  --muted: #5d6a73;
  --paper: #ffffff;
  --surface: #f3f6f8;
  --surface-warm: #fff9e8;
  --line: #cbd5dc;
  --line-strong: #8195a3;
  --max-width: 1440px;
  --header-height: 76px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Google Sans Flex", "Google Sans", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

figure,
p,
h1,
h2,
h3,
ol,
ul,
dl,
dd {
  margin-top: 0;
}

.shell {
  width: min(var(--max-width), calc(100% - 64px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--mds-yellow);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.long-copy {
  max-width: 70ch;
  text-align: justify;
  text-justify: inter-word;
  word-spacing: -0.025em;
  hyphens: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(16, 35, 49, 0.2);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 64px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 88px;
  height: 64px;
  display: grid;
  place-items: center;
}

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

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #334a5a;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: #e8f2f9;
  color: var(--mds-blue-deep);
  outline: none;
}

.menu-button {
  display: none;
  min-width: 76px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-button__label {
  font-size: 0.78rem;
  font-weight: 800;
}

.menu-button__icon {
  width: 16px;
  display: grid;
  gap: 5px;
}

.menu-button__icon i {
  width: 16px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.hero {
  padding: 28px 0 72px;
  background: var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--mds-yellow);
}

.hero-copy {
  min-width: 0;
  padding: clamp(44px, 5.5vw, 84px);
  align-self: center;
}

.hero-program,
.section-label {
  margin-bottom: 12px;
  color: var(--mds-blue-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-copy h1 {
  display: grid;
  gap: 0.06em;
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 7vw, 7.25rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-program {
  margin-bottom: 22px;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-line--accent {
  color: var(--mds-blue-deep);
  font-size: 0.86em;
}

.hero-intro {
  margin-bottom: 0;
  color: #283b43;
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-dates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid rgba(16, 35, 49, 0.6);
  border-bottom: 1px solid rgba(16, 35, 49, 0.6);
}

.hero-dates div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid rgba(16, 35, 49, 0.45);
}

.hero-dates div:first-child {
  padding-left: 0;
}

.hero-dates div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-dates time,
.hero-dates span {
  display: block;
}

.hero-dates time {
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-dates span {
  margin-top: 2px;
  color: #5b522f;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--mds-blue-deep);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-logo-lockup {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 28px;
  border-top: 1px solid rgba(7, 59, 99, 0.3);
  background: rgba(207, 235, 248, 0.94);
}

.hero-logo-lockup img {
  width: 165px;
  height: 94px;
  object-fit: contain;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.stats article {
  padding: 26px;
  border-right: 1px solid var(--line-strong);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--mds-blue);
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
}

.stats span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.section {
  padding-block: clamp(64px, 6.5vw, 96px);
}

.section--neutral {
  background: var(--surface);
}

.section--blue,
.section--navy {
  color: var(--paper);
}

.section--blue {
  background: var(--mds-blue);
}

.section--navy {
  background: var(--mds-blue-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  margin-bottom: 42px;
}

.section-heading--split {
  grid-template-columns: 82px minmax(0, 1fr) minmax(300px, 0.65fr);
  align-items: end;
}

.section-number,
.value-number,
.communication-number,
.process-number {
  font-variant-numeric: tabular-nums;
}

.section-number {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mds-blue);
  border-radius: 50%;
  color: var(--mds-blue);
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-heading h2 {
  max-width: 940px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 3.8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-subtitle {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 650;
  line-height: 1.35;
}

.section-summary {
  max-width: 55ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.section-heading--on-dark .section-number {
  border-color: var(--mds-yellow);
  color: var(--mds-yellow);
}

.section-heading--on-dark .section-label {
  color: var(--mds-yellow);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
}

.list-panel {
  padding: clamp(32px, 4vw, 58px);
  background: var(--surface-warm);
}

.list-panel h3 {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1.16;
}

.clean-list,
.compact-list,
.benefit-tags,
.timeline ol {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-top: 1px solid var(--line);
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mds-orange);
}

.editorial-photo {
  margin-bottom: 0;
  overflow: hidden;
  background: #dbe6ed;
}

.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-photo--portrait {
  min-height: 460px;
}

.editorial-photo--portrait img {
  object-position: center 42%;
}

.photo-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.photo-ribbon figure {
  aspect-ratio: 16 / 10;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #dbe6ed;
}

.photo-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-ribbon figure:nth-child(2) img {
  object-position: center 36%;
}

.photo-ribbon figure:first-child img {
  object-position: center 38%;
}

.photo-ribbon figure:last-child img {
  object-position: center 44%;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: var(--mds-blue-deep);
}

.recruitment-copy {
  padding: clamp(38px, 5vw, 72px);
}

.recruitment-copy .section-heading {
  margin-bottom: 32px;
}

.recruitment-copy .long-copy {
  color: #ecf5fa;
}

.recruitment-photo {
  min-height: 620px;
  margin-bottom: 0;
  overflow: hidden;
  background: #0b263a;
}

.recruitment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.audience-panel {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.audience-panel h3 {
  margin-bottom: 14px;
  color: var(--mds-yellow);
  font-size: 1.2rem;
}

.compact-list {
  display: grid;
  gap: 8px;
}

.compact-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.compact-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mds-yellow);
}

.compact-list--dark li::before {
  background: var(--mds-blue);
}

.clubfair-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
}

.clubfair-copy {
  padding: clamp(36px, 4.5vw, 64px);
}

.event-facts {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--ink);
}

.event-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.event-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-facts dd {
  margin-bottom: 0;
  font-weight: 750;
}

.clubfair-gallery {
  display: grid;
  grid-auto-rows: 1fr;
  align-content: center;
  gap: 10px;
  padding: 10px;
  border-left: 1px solid var(--ink);
  background: var(--surface);
}

.clubfair-gallery figure {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #dbe6ed;
}

.clubfair-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clubfair-gallery figure:first-child img {
  object-position: center 48%;
}

.clubfair-gallery figure:last-child img {
  object-fit: cover;
  object-position: center;
}

.clubfair-gallery figure:last-child {
  background: #dbe6ed;
}

.sponsor-touchpoint {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 36px;
  margin-top: 16px;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--surface-warm);
}

.sponsor-touchpoint__intro p:last-child {
  margin-bottom: 0;
}

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

.benefit-tags li {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 13px;
  border: 1px solid #dfb94b;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.38;
}

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

.value-card {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.value-number {
  display: block;
  margin-bottom: 28px;
  color: var(--mds-blue);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.value-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1.12;
  text-wrap: balance;
}

.value-card p {
  margin-bottom: 0;
  color: #465762;
  font-size: 0.92rem;
  line-height: 1.55;
}

.value-card--yellow {
  background: var(--mds-yellow);
}

.value-card--orange {
  background: var(--mds-orange);
}

.value-card--blue {
  background: var(--mds-blue-deep);
  color: var(--paper);
}

.value-card--yellow .value-number,
.value-card--orange .value-number {
  color: var(--ink);
}

.value-card--blue .value-number {
  color: var(--mds-yellow);
}

.value-card--blue p {
  color: #e5f0f6;
}

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

.timeline-group {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.timeline-group h3 {
  margin-bottom: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--ink);
  background: var(--mds-blue-deep);
  color: var(--paper);
  font-size: 1.2rem;
}

.timeline-group--highlight h3 {
  background: var(--mds-yellow);
  color: var(--ink);
}

.timeline li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline li span {
  font-weight: 700;
}

.timeline time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
}

.timeline-touchpoint {
  background: #fff5d4;
}

.timeline-touchpoint span,
.timeline-touchpoint time {
  color: #8d4904;
}

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

.package-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 24px;
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-md);
  color: var(--ink);
}

.package-card--gold {
  background: var(--mds-yellow);
}

.package-card--silver {
  background: #dfe7ec;
}

.package-card--bronze {
  background: var(--mds-orange);
}

.package-tier {
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card strong {
  font-size: clamp(2.1rem, 3.5vw, 3.85rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.package-card strong small {
  font-size: 0.33em;
  letter-spacing: 0.04em;
}

.package-card p {
  align-self: end;
  margin-bottom: 0;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.support-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
}

.support-grid article > span {
  color: var(--mds-yellow);
  font-size: 1.3rem;
  font-weight: 850;
}

.support-grid h3 {
  margin: 16px 0 10px;
  font-size: 1.02rem;
  line-height: 1.22;
}

.support-grid p {
  margin-bottom: 0;
  color: #dceaf2;
  font-size: 0.79rem;
  line-height: 1.48;
}

.partner-proof {
  padding-block: clamp(42px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.partner-proof__inner {
  display: grid;
  gap: 28px;
}

.partner-proof__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 16px;
}

.partner-proof__heading .section-label {
  margin-bottom: 8px;
}

.partner-proof__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.partner-groups {
  display: grid;
  gap: 28px;
}

.partner-group {
  display: grid;
  gap: 14px;
}

.partner-group + .partner-group {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.partner-group h3 {
  margin-bottom: 0;
  color: var(--mds-blue-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.partner-group--expertise {
  padding: 22px;
  border: 1px solid rgba(251, 195, 18, 0.72);
  border-radius: var(--radius-md);
  background: var(--surface-warm);
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo-grid li {
  min-width: 0;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.partner-logo-grid img {
  width: auto;
  max-width: 100%;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.partner-logo-grid.partner-logo-grid--expertise {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.partner-logo-grid--expertise li {
  min-height: 118px;
  padding: 22px 30px;
  border-color: rgba(7, 59, 99, 0.28);
}

.partner-logo-grid--expertise img {
  max-height: 70px;
}

.partner-logo-grid.partner-logo-grid--media {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-logo-grid--media li {
  min-height: 78px;
}

.partner-logo-grid--media img {
  max-height: 44px;
}

.tabs {
  position: sticky;
  top: calc(var(--header-height) + 8px);
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 14px;
  padding: 7px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.tab {
  min-height: 46px;
  padding: 8px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #526573;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.tab:hover,
.tab:focus-visible {
  background: #e8f2f9;
  color: var(--mds-blue-deep);
  outline: none;
}

.tab.is-active {
  background: var(--mds-blue-deep);
  color: var(--paper);
}

.tab-panel[hidden] {
  display: none;
}

.table-swipe-hint {
  display: none;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.table-scroll:focus-visible {
  outline: 3px solid rgba(14, 110, 178, 0.35);
  outline-offset: 3px;
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}

.col-benefit {
  width: 41%;
}

.col-tier {
  width: 14.75%;
}

th,
td {
  padding: 16px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

tr > :last-child {
  border-right: 0;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

thead th {
  background: #e4eef5;
  color: var(--mds-blue-deep);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

thead .tier-head--gold {
  background: var(--mds-yellow);
  color: var(--ink);
}

thead .tier-head--silver {
  background: #dfe7ec;
  color: var(--ink);
}

thead .tier-head--bronze {
  background: #f5a24d;
  color: var(--ink);
}

thead .tier-head--in-kind {
  background: #d9edf8;
  color: var(--mds-blue-deep);
}

thead th:first-child,
tbody th {
  width: 41%;
  min-width: 300px;
  text-align: left;
}

tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--paper);
  font-weight: 700;
}

.benefit-row--gold-only > th {
  box-shadow: inset 5px 0 0 var(--mds-yellow);
  background: #fff9e6;
}

.benefit-row--gold-silver > th {
  box-shadow: inset 5px 0 0 var(--mds-blue);
  background: #f2f8fc;
}

.benefit-row--all > th {
  box-shadow: inset 5px 0 0 #9aabb5;
}

thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
}

tbody td {
  color: var(--mds-blue-deep);
  font-weight: 800;
}

.blank-cell {
  display: inline-block;
  min-width: 1em;
  min-height: 1em;
}

.interaction-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
  gap: 32px;
  margin-top: 14px;
  padding: 26px 30px;
  border: 1px solid #dfb94b;
  border-radius: var(--radius-md);
  background: var(--surface-warm);
}

.interaction-note h3,
.interaction-note p {
  margin-bottom: 0;
}

.interaction-note h3 {
  color: var(--mds-blue-deep);
  font-size: 1.18rem;
  line-height: 1.2;
}

.interaction-note p {
  color: #435660;
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.communication-card {
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
}

.communication-number,
.process-number {
  display: block;
  margin-bottom: 36px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.communication-card h3,
.process-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.4vw, 2.6rem);
  line-height: 1.04;
  text-wrap: balance;
}

.communication-card p:last-child,
.process-card > p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.communication-card--yellow {
  background: var(--mds-yellow);
}

.communication-card--blue,
.communication-card--dark {
  color: var(--paper);
}

.communication-card--blue {
  background: var(--mds-blue);
}

.communication-card--dark {
  background: var(--mds-blue-deep);
}

.communication-card--yellow .section-label {
  color: var(--ink);
}

.communication-card--blue .section-label,
.communication-card--dark .section-label {
  color: var(--mds-yellow);
}

.process-card {
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.process-card > p {
  margin-bottom: 22px;
  color: #435660;
}

.process-card--blue {
  background: var(--mds-blue-deep);
  color: var(--paper);
}

.process-card--blue > p {
  color: #dceaf2;
}

.process-card--yellow {
  background: var(--mds-yellow);
}

.process-card--blue .process-number {
  color: var(--mds-yellow);
}

.process-card:not(.process-card--blue) .process-number {
  color: var(--mds-blue);
}

.closing {
  padding: 0 0 48px;
  background: var(--surface);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(390px, 0.58fr);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--mds-blue-deep);
  color: var(--paper);
}

.closing-copy {
  min-width: 0;
  padding: clamp(38px, 4vw, 58px);
}

.closing-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.closing-heading .section-number {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-color: var(--mds-yellow);
  color: var(--mds-yellow);
  font-size: 1.75rem;
}

.closing-heading .section-label {
  margin-bottom: 0;
  color: var(--mds-yellow);
}

.closing-copy h2 {
  max-width: 1000px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.closing-lead {
  max-width: 900px;
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 700;
  line-height: 1.48;
}

.closing-message {
  margin-bottom: 0;
  color: #dceaf2;
  font-size: 0.98rem;
}

.closing-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 20px;
  align-items: start;
  margin-top: 30px;
}

.official-contact,
.sponsor-contacts {
  min-width: 0;
}

.official-contact > h3,
.sponsor-contacts > h3 {
  margin-bottom: 14px;
  color: var(--mds-yellow);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.official-contact {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.sponsor-contacts {
  padding-top: 18px;
}

.official-contact-list {
  display: grid;
  grid-template-columns: minmax(118px, 0.75fr) minmax(0, 1.25fr);
  gap: 13px 18px;
  margin-bottom: 0;
  font-style: normal;
}

.official-contact-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.official-contact-item--wide {
  grid-column: 1 / -1;
}

.contact-icon {
  display: block;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--mds-yellow);
}

.official-contact-item:last-child .contact-icon {
  fill: currentColor;
  stroke: none;
}

.contact-label,
.contact-value {
  display: block;
}

.contact-label {
  margin-bottom: 2px;
  color: #a9cadd;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-value {
  color: #f2f7fa;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.official-contact-item a[href^="mailto:"] {
  white-space: nowrap;
  overflow-wrap: normal;
}

a.contact-value:hover,
a.contact-value:focus-visible {
  color: var(--mds-yellow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.contact-grid address {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.contact-grid span,
.contact-grid strong,
.contact-grid a {
  display: block;
}

.contact-grid span {
  margin-bottom: 6px;
  color: var(--mds-yellow);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-grid a {
  width: fit-content;
  max-width: 100%;
  color: #e6f1f6;
  font-size: 0.83rem;
  overflow-wrap: anywhere;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  color: var(--mds-yellow);
}

.closing-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0b263a;
}

.closing-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.closing-brand {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-top: 1px solid rgba(7, 59, 99, 0.3);
  background: rgba(207, 235, 248, 0.94);
}

.closing-brand img {
  width: 190px;
  height: 106px;
  object-fit: contain;
}

@media (max-width: 1240px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.79rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
  }

  .section-heading--split {
    grid-template-columns: 72px minmax(0, 1fr) minmax(270px, 0.55fr);
  }

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

  .support-grid article:nth-child(4),
  .support-grid article:nth-child(5) {
    grid-column: span 1;
  }

  .closing-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  }

  .closing-contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .sponsor-contacts {
    padding-top: 0;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 70px;
  }

  .site-header,
  .header-inner {
    height: var(--header-height);
  }

  .brand {
    width: 76px;
    height: 60px;
  }

  .brand img {
    width: 70px;
    height: 54px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 22px;
    left: 22px;
    display: none;
    max-height: calc(100dvh - var(--header-height) - 24px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--ink);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: 0 18px 50px rgba(6, 47, 80, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .hero-grid,
  .recruitment-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }

  .section-heading--split {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .section-heading--split .section-summary {
    grid-column: 2;
  }

  .recruitment-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .sponsor-touchpoint {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .value-grid,
  .communication-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .communication-card:last-child,
  .process-card:last-child {
    grid-column: 1 / -1;
  }

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

  .package-card {
    grid-template-columns: minmax(170px, 0.55fr) minmax(280px, 0.85fr) minmax(240px, 0.6fr);
    grid-template-rows: auto;
    align-items: center;
  }

  .package-card p {
    align-self: center;
  }

  .closing-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 1100px) {
  .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-logo-grid.partner-logo-grid--media {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-logo-grid.partner-logo-grid--media {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .shell,
  .header-inner {
    width: min(calc(100% - 36px), var(--max-width));
  }

  body {
    font-size: 16px;
  }

  .section-heading,
  .section-heading--split {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
  }

  .section-number {
    width: 58px;
    height: 58px;
    font-size: 1.62rem;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 8vw, 3.8rem);
  }

  .about-layout,
  .clubfair-grid {
    grid-template-columns: 1fr;
  }

  .partner-proof__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .tab {
    min-width: 0;
    width: 100%;
    white-space: normal;
  }

  .tab-panel {
    min-width: 0;
    max-width: 100%;
  }

  .table-swipe-hint {
    display: block;
    margin: -2px 2px 8px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: right;
  }

  .table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }

  .table-scroll table {
    width: 760px;
    min-width: 760px;
    table-layout: fixed;
  }

  .table-scroll .col-benefit {
    width: 180px;
  }

  .table-scroll .col-tier {
    width: 145px;
  }

  .table-scroll thead th:first-child,
  .table-scroll tbody th {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .table-scroll thead th:not(:first-child),
  .table-scroll tbody td {
    width: 145px;
    min-width: 145px;
  }

  .table-scroll thead th:first-child {
    box-shadow: 7px 0 11px -10px rgba(6, 47, 80, 0.75);
  }

  .table-scroll .benefit-row--gold-only > th {
    box-shadow: inset 5px 0 0 var(--mds-yellow), 7px 0 11px -10px rgba(6, 47, 80, 0.75);
  }

  .table-scroll .benefit-row--gold-silver > th {
    box-shadow: inset 5px 0 0 var(--mds-blue), 7px 0 11px -10px rgba(6, 47, 80, 0.75);
  }

  .table-scroll .benefit-row--all > th {
    box-shadow: inset 5px 0 0 #9aabb5, 7px 0 11px -10px rgba(6, 47, 80, 0.75);
  }

  .editorial-photo--portrait {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .clubfair-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .clubfair-gallery figure {
    aspect-ratio: 16 / 10;
  }

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

  .value-grid,
  .timeline,
  .communication-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .communication-card:last-child,
  .process-card:last-child {
    grid-column: auto;
  }

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

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

  .package-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .interaction-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .closing-copy h2 {
    font-size: clamp(2rem, 6vw, 2.65rem);
  }
}

@media (max-width: 560px) {
  .shell,
  .header-inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    padding-top: 14px;
  }

  .hero-grid {
    border-radius: 20px;
  }

  .hero-copy {
    padding: 38px 24px;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 18vw, 5.6rem);
  }

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

  .hero-dates div,
  .hero-dates div:first-child,
  .hero-dates div:last-child {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 35, 49, 0.4);
  }

  .hero-dates div:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-logo-lockup {
    min-height: 96px;
    padding: 10px 18px;
  }

  .hero-logo-lockup img {
    width: 145px;
    height: 86px;
  }

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

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 56px;
  }

  .section-heading,
  .section-heading--split {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }

  .section-number {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

  .section-label {
    font-size: 0.68rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  .section-heading--split .section-summary {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .list-panel,
  .clubfair-copy,
  .recruitment-copy {
    padding: 28px 22px;
  }

  .editorial-photo--portrait,
  .recruitment-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .photo-ribbon {
    grid-template-columns: 1fr;
  }

  .photo-ribbon figure {
    aspect-ratio: 16 / 10;
  }

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

  .clubfair-gallery figure {
    aspect-ratio: 16 / 10;
  }

  .event-facts div {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
  }

  .sponsor-touchpoint {
    padding: 24px 20px;
  }

  .benefit-tags {
    grid-template-columns: 1fr;
  }

  .benefit-tags li {
    min-height: 58px;
  }

  .value-card,
  .communication-card,
  .process-card {
    padding: 26px 22px;
  }

  .value-number,
  .communication-number,
  .process-number {
    margin-bottom: 22px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .timeline time {
    white-space: normal;
  }

  .package-card {
    padding: 26px 22px;
  }

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

  .support-grid article:last-child {
    grid-column: auto;
  }

  .partner-proof {
    padding-block: 44px;
  }

  .partner-groups {
    gap: 24px;
  }

  .partner-group {
    gap: 11px;
  }

  .partner-group + .partner-group {
    padding-top: 22px;
  }

  .partner-group--expertise {
    padding: 16px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .partner-logo-grid li {
    min-height: 78px;
    padding: 12px 10px;
  }

  .partner-logo-grid img {
    max-height: 40px;
    height: auto;
  }

  .partner-logo-grid.partner-logo-grid--expertise,
  .partner-logo-grid.partner-logo-grid--media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo-grid--expertise li {
    min-height: 92px;
    padding: 14px 12px;
  }

  .partner-logo-grid--expertise img {
    max-height: 54px;
  }

  .partner-logo-grid--media li {
    min-height: 70px;
  }

  .partner-logo-grid--media img {
    max-height: 34px;
  }

  .tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    padding: 5px;
  }

  .tab {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 7px 4px;
    font-size: 0.68rem;
    letter-spacing: 0.025em;
    line-height: 1.15;
    white-space: normal;
  }

  .table-scroll th,
  .table-scroll td {
    padding: 13px 10px;
  }

  .table-scroll {
    border-radius: 12px;
  }

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

  .closing-contact-layout,
  .official-contact-list {
    grid-template-columns: 1fr;
  }

  .closing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .closing-contact-layout {
    gap: 22px;
    margin-top: 26px;
  }

  .sponsor-contacts {
    padding-top: 0;
  }

  .official-contact-item--wide {
    grid-column: auto;
  }

  .official-contact-item {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .closing-copy {
    padding: 34px 22px;
  }

  .closing-heading {
    gap: 12px;
  }

  .closing-heading .section-number {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    font-size: 1.4rem;
  }

  .closing-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .closing-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .closing-brand {
    min-height: 100px;
  }

  .closing-brand img {
    width: 165px;
    height: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
