:root {
  --ink: #152033;
  --muted: #667084;
  --line: #dce4ee;
  --paper: #f7f8fb;
  --white: #ffffff;
  --blue: #0d66a5;
  --blue-deep: #082f55;
  --cyan: #28a8c9;
  --yellow: #f5b633;
  --red: #e2544d;
  --green: #38a169;
  --shadow: 0 18px 60px rgba(18, 32, 51, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  animation: page-enter 420ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

body.is-leaving {
  pointer-events: none;
  animation: page-leave 220ms cubic-bezier(0.4, 0, 1, 1) both;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.78, 0.2, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.78, 0.2, 1) var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-leave {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

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

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);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.subpage .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(18, 32, 51, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(6, 27, 48, 0.18);
  overflow: hidden;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(13, 102, 165, 0.18);
}

.brand-mark img,
.insta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: currentColor;
  opacity: 0.74;
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.main-nav a {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover,
.subpage .main-nav a:hover,
.main-nav a.is-active {
  background: #edf3f8;
}

.nav-instagram {
  background: var(--yellow);
  color: #2a210b;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 122px clamp(20px, 5vw, 70px) 70px;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: clamp(20px, 5vw, 70px);
  bottom: 28px;
  width: 118px;
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
  transform-origin: left center;
  animation: hero-line 3.2s ease-in-out infinite;
}

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

.hero-image {
  object-fit: cover;
  transform: scale(1.035);
  animation: hero-image-motion 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 27, 48, 0.94) 0%, rgba(6, 27, 48, 0.76) 34%, rgba(6, 27, 48, 0.24) 68%, rgba(6, 27, 48, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 27, 48, 0.38), rgba(6, 27, 48, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(670px, 100%);
}

@keyframes hero-image-motion {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes hero-line {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.42);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.93;
  letter-spacing: 0;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  padding: 13px 18px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(245, 182, 51, 0.55);
  outline-offset: 3px;
}

.button.primary {
  background: var(--yellow);
  color: #2a210b;
  box-shadow: 0 12px 30px rgba(245, 182, 51, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.34);
}

.application-form .button.secondary,
.site-header.is-scrolled .button.secondary,
.join-section .button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.button-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 900;
}

.intro-band,
.process-band {
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 70px);
  background: var(--white);
}

.intro-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.intro-grid h2,
.section-heading h2,
.join-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-heading p,
.join-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.page-card-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-card {
  display: block;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(18, 32, 51, 0.07);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.page-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.page-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border-radius: 50%;
  color: var(--blue);
  background: #e8f5fb;
  font-weight: 900;
}

.page-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

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

.audience-section {
  background: var(--paper);
}

.audience-grid,
.results-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-grid article,
.results-grid article {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.audience-grid p,
.results-grid p {
  margin: 0;
  color: var(--muted);
}

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

.homepage-partner-band {
  background: var(--blue-deep);
}

.partner-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.partner-cta-copy .button {
  margin-top: 24px;
}

.photo-section {
  background: var(--white);
}

.photo-strip,
.instagram-gallery {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.photo-strip {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.photo-tile,
.gallery-card {
  position: relative;
  min-height: 320px;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(18, 32, 51, 0.14);
}

.photo-tile {
  transition: opacity 320ms ease, transform 320ms ease, box-shadow 150ms ease;
}

.photo-tile.is-changing {
  opacity: 0.18;
  transform: scale(0.985);
}

.photo-tile.large {
  min-height: 420px;
}

.photo-tile img,
.gallery-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.photo-tile::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 47, 85, 0.02), rgba(8, 47, 85, 0.78));
}

.photo-tile span,
.gallery-card span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.photo-tile:hover img,
.gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.instagram-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.gallery-card {
  min-height: 250px;
}

.gallery-card.tall {
  min-height: 520px;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.page-hero {
  padding: 142px clamp(20px, 5vw, 70px) clamp(48px, 7vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(135deg, #eef9fb 0%, #ffffff 50%, #fff7df 100%);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.page-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.page-hero-card {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-hero-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 0 auto;
}

.page-hero-card strong,
.page-hero-card span {
  display: block;
}

.page-hero-card strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.page-hero-card span {
  margin-top: 10px;
  color: var(--muted);
}

.page-hero-card-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 102, 165, 0.92), rgba(21, 32, 51, 0.96)),
    var(--ink);
}

.page-hero-card-dark span {
  color: rgba(255, 255, 255, 0.78);
}

.activity-path {
  padding: 12px 0;
  border-top: 5px solid var(--yellow);
}

.activity-path > div {
  padding: 18px 4px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.activity-path > div span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.activity-path > div strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 70px);
}

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

.section-heading p:not(.section-kicker) {
  margin-top: 16px;
}

.values-grid,
.activity-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.leadership-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.leadership-card {
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(18, 32, 51, 0.07);
}

.leadership-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leadership-card h2 {
  margin: 36px 0 0;
  font-size: 1.55rem;
  line-height: 1.12;
}

.document-section {
  background: var(--white);
}

.document-toolbar {
  max-width: 1160px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.document-toolbar p {
  margin: 0;
  color: var(--muted);
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.document-frame {
  width: 100%;
  max-width: 1160px;
  height: min(78vh, 920px);
  min-height: 620px;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(18, 32, 51, 0.1);
}

.values-grid article,
.activity-card,
.application-form,
.insta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(18, 32, 51, 0.07);
}

.values-grid article {
  padding: 28px;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: 50%;
  background: #e8f5fb;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.values-grid h3,
.activity-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.values-grid p,
.activity-card p {
  margin: 0;
  color: var(--muted);
}

.activity-section {
  background:
    linear-gradient(180deg, #eef6fb 0%, rgba(247, 248, 251, 0) 58%),
    var(--paper);
}

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

.activity-card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  overflow: hidden;
}

.activity-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--blue);
}

.activity-card span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-card.wide {
  grid-column: span 2;
  background: var(--ink);
  color: var(--white);
}

.activity-card.future-card {
  grid-column: 2 / span 2;
}

.activity-card.wide p,
.activity-card.wide span {
  color: rgba(255, 255, 255, 0.74);
}

.results-section {
  background: var(--white);
}

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

.results-grid article {
  min-height: 250px;
}

.results-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.results-grid h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.accent-yellow::before {
  background: var(--yellow);
}

.accent-red::before {
  background: var(--red);
}

.accent-green::before {
  background: var(--green);
}

.accent-ink::before {
  background: var(--cyan);
}

.section-heading.compact {
  margin-bottom: 28px;
}

.process-list {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-list li {
  min-height: 170px;
  padding: 24px;
  background: #fbfdff;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

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

.process-list strong {
  margin-bottom: 14px;
  font-size: 1.04rem;
}

.process-list span {
  color: var(--muted);
}

.instagram-section {
  background: var(--white);
}

.insta-panel {
  max-width: 850px;
  margin: 0 auto;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
}

.insta-profile {
  display: flex;
  gap: 14px;
  align-items: center;
}

.insta-avatar {
  width: 58px;
  height: 58px;
  padding: 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(13, 102, 165, 0.18);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 32, 51, 0.12);
  overflow: hidden;
}

.insta-profile strong,
.insta-profile span {
  display: block;
}

.insta-profile span {
  color: var(--muted);
}

.insta-stats {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.insta-stats strong {
  display: block;
  color: var(--ink);
  font-size: 1.3rem;
}

.join-section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: linear-gradient(135deg, #fff7df 0%, #eef9fb 54%, #ffffff 100%);
}

.join-section.standalone {
  min-height: 76vh;
  padding-top: 142px;
}

.join-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.join-copy {
  max-width: 700px;
  justify-self: end;
}

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

.join-note {
  max-width: 560px;
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.72);
}

.join-note strong,
.join-note span {
  display: block;
}

.join-note span {
  margin-top: 5px;
  color: var(--muted);
}

.application-form {
  width: min(100%, 720px);
  padding: clamp(22px, 4vw, 36px);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.form-heading p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.form-field label span {
  color: var(--red);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 3px solid rgba(40, 168, 201, 0.26);
  border-color: var(--cyan);
  background: var(--white);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(226, 84, 77, 0.55);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.45;
}

.consent-field input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.consent-field a,
.privacy-content a {
  color: var(--blue);
  font-weight: 800;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-submit.is-submitting {
  opacity: 0.72;
  cursor: wait;
}

.form-privacy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-card {
  min-height: 190px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a,
.contact-card address {
  margin-top: 40px;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--blue);
}

.partner-band {
  padding: clamp(50px, 7vw, 88px) clamp(20px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.partner-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.partner-band > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.partner-band > p a {
  color: var(--yellow);
  font-weight: 850;
}

.forms-section {
  background: linear-gradient(135deg, #eef9fb 0%, #ffffff 48%, #fff7df 100%);
}

.forms-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.compact-form {
  width: 100%;
}

.anonymous-form {
  background: var(--ink);
  color: var(--white);
}

.anonymous-form .form-heading h2,
.anonymous-form .form-field label {
  color: var(--white);
}

.anonymous-form .form-heading p:last-child,
.anonymous-form .form-privacy {
  color: rgba(255, 255, 255, 0.68);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 70px);
}

.privacy-content section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-content section:first-child {
  padding-top: 0;
}

.privacy-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.privacy-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.privacy-updated {
  margin-top: 28px !important;
  font-size: 0.88rem !important;
}

.calendar-section {
  background:
    linear-gradient(180deg, #eef6fb 0%, rgba(247, 248, 251, 0) 55%),
    var(--paper);
}

.calendar-feature {
  padding: 26px 0 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  border-left: 7px solid var(--yellow);
  background: rgba(255, 255, 255, 0.58);
}

.calendar-hero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
}

.calendar-feature-date {
  min-width: 115px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.calendar-feature-date strong,
.calendar-feature-date span {
  display: block;
}

.calendar-feature-date strong {
  color: var(--blue);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.9;
}

.calendar-feature-date span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-feature h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  line-height: 1;
  overflow-wrap: normal;
}

.calendar-feature a {
  color: var(--blue);
  font-weight: 900;
}

.event-card {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(270px, 0.72fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-date {
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue);
}

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

.event-date strong {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.event-date span {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
  text-transform: uppercase;
}

.event-content {
  padding: clamp(26px, 4vw, 44px);
}

.event-status {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.event-content > p:not(.event-status) {
  margin: 18px 0 0;
  color: var(--muted);
}

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

.event-details div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.event-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-details dd {
  margin: 5px 0 0;
  font-weight: 850;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.event-actions .button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.event-card > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.calendar-empty {
  max-width: 1160px;
  margin: 22px auto 0;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px dashed #b9c7d7;
  border-radius: var(--radius);
}

.calendar-empty strong {
  font-size: 1.08rem;
}

.calendar-empty p {
  margin: 0;
  color: var(--muted);
}

.event-info-grid {
  max-width: 1160px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.event-sponsor {
  max-width: 1160px;
  margin: 22px auto 0;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto minmax(150px, 230px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 7px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(18, 32, 51, 0.07);
}

.event-sponsor span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-sponsor a {
  display: block;
}

.event-sponsor img {
  width: min(210px, 100%);
  height: 66px;
  object-fit: contain;
}

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

.event-info-panel {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.event-info-panel h3 {
  margin: 0;
  font-size: 1.4rem;
}

.event-info-panel ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.event-info-panel li + li {
  margin-top: 8px;
}

.event-registration-band {
  max-width: 1160px;
  margin: 22px auto 0;
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.event-registration-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.event-registration-band p:not(.section-kicker) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.event-registration-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}

.event-registration-actions .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  padding: clamp(48px, 7vw, 82px) clamp(20px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(130px, 0.62fr) minmax(230px, 0.9fr) minmax(210px, 0.82fr);
  gap: clamp(30px, 5vw, 72px);
}

.footer-brand p,
.footer-column p,
.footer-column address {
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  padding: 5px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo strong {
  font-size: 1.2rem;
}

.footer-logo small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-brand > p {
  max-width: 390px;
  margin: 22px 0;
}

.footer-social {
  display: inline-flex;
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-column > a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-column > a:hover {
  color: var(--yellow);
}

.footer-partners {
  margin: 12px 0 0;
}

.footer-partners a {
  color: var(--yellow);
  font-weight: 850;
}

.footer-bottom {
  padding: 18px clamp(20px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .values-grid,
  .leadership-grid,
  .audience-grid,
  .results-grid,
  .activity-grid,
  .page-card-grid,
  .page-hero,
  .calendar-hero,
  .photo-strip,
  .process-list,
  .insta-panel,
  .join-section,
  .contact-grid,
  .partner-band,
  .forms-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .activity-card.wide {
    grid-column: auto;
  }

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

  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .steps-three {
    grid-template-columns: 1fr;
  }

  .insta-stats {
    justify-content: space-between;
  }

  .join-copy {
    justify-self: start;
  }

  .page-hero-card {
    min-height: 260px;
  }

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

  .audience-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.tall {
    min-height: 380px;
    grid-row: auto;
  }

  .document-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-card {
    grid-template-columns: 125px minmax(0, 1fr);
  }

  .event-card > img {
    grid-column: 1 / -1;
    min-height: 360px;
    max-height: 480px;
  }

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

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

  .event-sponsor p {
    grid-column: 1 / -1;
  }

  .event-registration-actions {
    min-width: 0;
    flex-direction: row;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding: 14px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 20px 52px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 27, 48, 0.95), rgba(6, 27, 48, 0.68)),
      linear-gradient(0deg, rgba(6, 27, 48, 0.34), rgba(6, 27, 48, 0.22));
  }

  .button,
  .hero-actions a,
  .document-actions .button {
    width: 100%;
  }

  .document-actions {
    width: 100%;
  }

  .document-frame {
    min-height: 520px;
    height: 70vh;
  }

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

  .event-date {
    padding: 20px;
    flex-direction: row;
    align-items: flex-end;
  }

  .event-date span {
    margin-top: 0;
  }

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

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

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

  .event-sponsor p {
    grid-column: auto;
  }

  .calendar-feature {
    padding-left: 20px;
    grid-template-columns: 1fr;
  }

  .calendar-feature-date {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-actions .button {
    width: 100%;
  }

  .event-card > img {
    grid-column: auto;
    min-height: 320px;
  }

  .calendar-empty {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-registration-actions {
    flex-direction: column;
  }

  .event-registration-actions .button {
    width: 100%;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .insta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

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

  .gallery-card,
  .gallery-card.wide,
  .photo-tile,
  .photo-tile.large {
    min-height: 320px;
    grid-column: auto;
  }

  .insta-stats span {
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.7rem;
  }

  .brand small {
    display: none;
  }

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

@media (hover: hover) and (pointer: fine) {
  .brand-mark,
  .main-nav a,
  .button,
  .page-card,
  .audience-grid article,
  .results-grid article,
  .values-grid article,
  .leadership-card,
  .activity-card,
  .process-list li,
  .page-hero-card,
  .activity-path,
  .calendar-feature,
  .application-form,
  .insta-panel,
  .contact-card,
  .event-card,
  .event-sponsor,
  .event-info-panel,
  .event-registration-band,
  .calendar-empty,
  .privacy-content section,
  .document-frame {
    transition:
      scale 220ms cubic-bezier(0.2, 0.78, 0.2, 1),
      translate 220ms cubic-bezier(0.2, 0.78, 0.2, 1),
      rotate 220ms cubic-bezier(0.2, 0.78, 0.2, 1),
      box-shadow 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease,
      color 220ms ease;
  }

  .brand:hover .brand-mark {
    scale: 1.08;
    rotate: -4deg;
    box-shadow: 0 14px 34px rgba(6, 27, 48, 0.26);
  }

  .footer-logo img {
    transition: scale 220ms ease, rotate 220ms ease, box-shadow 220ms ease;
  }

  .footer-logo:hover img {
    scale: 1.08;
    rotate: -4deg;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .main-nav a:hover {
    translate: 0 -2px;
    scale: 1.035;
  }

  .button:hover {
    translate: 0 -3px;
    scale: 1.035;
    box-shadow: 0 14px 30px rgba(18, 32, 51, 0.18);
  }

  .button:active,
  .main-nav a:active {
    translate: 0 0;
    scale: 0.98;
  }

  .page-card:hover,
  .audience-grid article:hover,
  .results-grid article:hover,
  .values-grid article:hover,
  .leadership-card:hover,
  .activity-card:hover,
  .process-list li:hover,
  .contact-card:hover,
  .event-sponsor:hover,
  .event-info-panel:hover,
  .calendar-empty:hover {
    translate: 0 -7px;
    scale: 1.018;
    z-index: 2;
    border-color: rgba(13, 102, 165, 0.34);
    box-shadow: 0 20px 46px rgba(18, 32, 51, 0.15);
  }

  .page-card:hover span,
  .value-icon {
    transition: scale 220ms ease, rotate 220ms ease, background-color 220ms ease;
  }

  .page-card:hover span,
  .values-grid article:hover .value-icon {
    scale: 1.12;
    rotate: 5deg;
    background: var(--yellow);
  }

  .activity-card:hover::before {
    height: 10px;
  }

  .activity-card::before {
    transition: height 220ms ease;
  }

  .page-hero-card:hover,
  .activity-path:hover,
  .calendar-feature:hover,
  .application-form:hover,
  .insta-panel:hover,
  .event-card:hover,
  .event-registration-band:hover {
    translate: 0 -5px;
    scale: 1.012;
    box-shadow: 0 24px 60px rgba(18, 32, 51, 0.18);
  }

  .page-hero-card img,
  .insta-avatar,
  .event-card > img {
    transition: scale 350ms ease, rotate 350ms ease, filter 350ms ease;
  }

  .page-hero-card:hover img {
    scale: 1.08;
    rotate: 3deg;
  }

  .insta-panel:hover .insta-avatar {
    scale: 1.1;
    rotate: -4deg;
  }

  .event-card:hover > img {
    scale: 1.035;
    filter: saturate(1.08);
  }

  .event-sponsor img {
    transition: scale 240ms ease, filter 240ms ease;
  }

  .event-sponsor:hover img {
    scale: 1.06;
    filter: saturate(1.08);
  }

  .photo-tile:hover,
  .gallery-card:hover {
    translate: 0 -6px;
    scale: 1.015;
    box-shadow: 0 24px 54px rgba(18, 32, 51, 0.22);
  }

  .photo-tile,
  .gallery-card {
    transition:
      opacity 320ms ease,
      transform 320ms ease,
      scale 220ms ease,
      translate 220ms ease,
      box-shadow 220ms ease;
  }

  .section-heading h2,
  .intro-grid h2,
  .partner-band h2 {
    transition: color 220ms ease, scale 220ms ease;
    transform-origin: center;
  }

  .section-heading:hover h2,
  .intro-grid:hover h2 {
    color: var(--blue);
    scale: 1.015;
  }

  .partner-band:hover h2 {
    color: var(--yellow);
    scale: 1.012;
  }

  .form-field input:hover,
  .form-field textarea:hover,
  .form-field select:hover {
    border-color: var(--cyan);
    box-shadow: 0 7px 20px rgba(40, 168, 201, 0.12);
  }

  .event-details div {
    transition: translate 180ms ease, color 180ms ease, border-color 180ms ease;
  }

  .event-details div:hover {
    translate: 4px 0;
    border-color: var(--blue);
    color: var(--blue);
  }

  .contact-card a:hover,
  .footer-column a:hover,
  .footer-social:hover,
  .privacy-content a:hover {
    translate: 3px 0;
    color: var(--cyan);
  }

  .contact-card a,
  .footer-column a,
  .footer-social,
  .privacy-content a {
    display: inline-block;
    transition: translate 180ms ease, color 180ms ease;
  }

  .document-frame:hover {
    scale: 1.006;
    box-shadow: 0 24px 64px rgba(18, 32, 51, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  body.is-leaving {
    animation: none;
  }

  .hero-image,
  .hero::after {
    animation: none;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
