:root {
  --ink: #112825;
  --deep: #073f3b;
  --deep-2: #0d514d;
  --teal: #4d9fa3;
  --orange: #f15a1a;
  --lime: #b8d94e;
  --cream: #f5f0e2;
  --paper: #fffdf8;
  --white: #ffffff;
  --muted: #62706d;
  --line: rgba(17, 40, 37, 0.16);
  --shadow: 0 24px 60px rgba(7, 63, 59, 0.15);
  --radius: 26px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.1vw, 1.18rem);
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.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: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--orange);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(7, 63, 59, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 40px, var(--max-width));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
  padding: 4px;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-toggle,
#footer-language-toggle {
  padding: 4px;
  color: inherit;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 20px;
  color: var(--deep);
  background: var(--lime);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(241, 90, 26, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(241, 90, 26, 0.38);
}

.button-light {
  color: var(--deep);
  background: var(--cream);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(184, 217, 78, 0.14), transparent 28%),
    radial-gradient(circle at 78% 15%, rgba(77, 159, 163, 0.3), transparent 32%),
    var(--deep);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(100% - 48px, var(--max-width));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding: 76px 0 88px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--deep-2);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(4.2rem, 7.3vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--orange);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.mobile-hero-highlight {
  display: none;
}

.hero-lead {
  max-width: 680px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.9fr;
  gap: 18px;
  margin: 0 0 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta div {
  display: grid;
  gap: 5px;
}

.meta-label {
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ticket-note {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  top: 3%;
  right: -4%;
  width: 46%;
  aspect-ratio: 1;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.hero-visual::after {
  position: absolute;
  bottom: 12%;
  left: -8%;
  width: 30%;
  aspect-ratio: 1;
  background: var(--lime);
  clip-path: polygon(50% 0, 100% 45%, 60% 100%, 5% 78%, 0 22%);
  content: "";
}

.hero-visual > img {
  position: absolute;
  inset: 7% 3% 10% 6%;
  z-index: 1;
  width: 91%;
  height: 83%;
  object-fit: cover;
  border-radius: 180px 24px 180px 24px;
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: -2%;
  bottom: 3%;
  z-index: 2;
  width: min(390px, 88%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.caption-number {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-style: italic;
}

.hero-visual figcaption span:last-child {
  display: grid;
  gap: 2px;
}

.hero-visual figcaption strong {
  font-size: 1rem;
}

.hero-visual figcaption small {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-ribbon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 76px);
  min-height: 64px;
  padding: 15px 28px;
  color: var(--deep);
  background: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-ribbon span:not(:last-child)::after {
  margin-left: clamp(24px, 5vw, 76px);
  content: "✦";
}

.presented-by {
  padding: 22px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.presented-by-inner {
  width: min(100%, var(--max-width));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  text-decoration: none;
}

.presented-by img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.presented-by span:not(.partner-arrow) {
  display: grid;
  gap: 2px;
}

.presented-by small,
.footer-partner small {
  color: var(--orange);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.presented-by strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.presented-by em,
.footer-partner em {
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
}

.partner-arrow {
  margin-left: auto;
  color: var(--orange);
  font-size: 1.7rem;
  transition: transform 180ms ease;
}

.presented-by-inner:hover .partner-arrow,
.presented-by-inner:focus-visible .partner-arrow {
  transform: translate(3px, -3px);
}

.section {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 54px;
}

.section-heading h2,
.journey-copy h2,
.event-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.pillar {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius);
}

.pillar-accent {
  color: var(--white);
  background: var(--orange);
  transform: translateY(28px);
}

.pillar-number {
  color: rgba(17, 40, 37, 0.5);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pillar-accent .pillar-number {
  color: rgba(255, 255, 255, 0.65);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 36px 0 auto;
  color: var(--white);
  background: var(--deep);
  border-radius: 50%;
  font-size: 2rem;
}

.pillar-accent .pillar-icon {
  color: var(--deep);
  background: var(--lime);
}

.pillar h3 {
  margin: 34px 0 12px;
  font-size: 1.45rem;
}

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

.pillar-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.journey {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.journey-media {
  position: relative;
  min-height: 680px;
}

.journey-media::before {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 52%;
  height: 42%;
  background: var(--lime);
  border-radius: 120px 20px 20px;
  content: "";
}

.journey-media img {
  position: absolute;
  inset: 3% 0 0 3%;
  width: 94%;
  height: 94%;
  object-fit: cover;
  border-radius: 160px 26px 26px 26px;
  box-shadow: var(--shadow);
}

.media-stamp {
  position: absolute;
  right: -24px;
  bottom: 8%;
  max-width: 280px;
  display: grid;
  gap: 4px;
  padding: 22px 26px;
  color: var(--white);
  background: var(--deep);
  border-radius: 16px;
}

.media-stamp span {
  color: var(--lime);
  font-size: 0.85rem;
  letter-spacing: 0.07em;
}

.journey-copy h2 {
  margin-bottom: 52px;
}

.journey-list {
  display: grid;
}

.journey-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.journey-item:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-item > span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
}

.journey-item h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.journey-item p {
  margin: 0;
  color: var(--muted);
}

.people {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--cream);
}

.section-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
}

.section-heading-row > p {
  margin: 0 0 6px;
  color: var(--muted);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.person-card {
  position: relative;
  min-height: 500px;
  grid-column: span 4;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  border-radius: var(--radius);
}

.person-card:nth-child(4),
.person-card:nth-child(5) {
  grid-column: span 6;
  min-height: 430px;
}

.person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 500ms ease, filter 500ms ease;
}

.person-photo {
  display: block;
  width: 100%;
  height: 100%;
}

.person-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.person-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 38%, rgba(7, 63, 59, 0.92) 100%);
  content: "";
  pointer-events: none;
}

.person-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
}

.person-info > span {
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.person-info h3 {
  margin: 8px 0;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
}

.person-info h3 a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: text-decoration-color 180ms ease;
}

.person-info h3 small {
  display: inline;
  font: inherit;
  color: var(--lime);
}

.person-info h3 a:hover,
.person-info h3 a:focus-visible {
  text-decoration-color: var(--lime);
}

.person-info p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.people-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 34px;
  color: var(--white);
  background: var(--deep);
  border-radius: var(--radius);
}

.people-cta p {
  max-width: 700px;
  margin: 0;
}

.people-cta .button {
  flex: 0 0 auto;
}

.vision {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: var(--white);
  background: var(--deep);
}

.vision-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: clamp(50px, 8vw, 130px);
}

.vision blockquote {
  margin: 0 0 40px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.7rem);
  letter-spacing: -0.01em;
  line-height: 1.03;
}

.vision-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.vision-image {
  position: relative;
  min-height: 820px;
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-image span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 15px;
  color: var(--deep);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-info {
  color: var(--white);
  background: var(--deep-2);
  border-radius: 40px;
  padding: clamp(52px, 7vw, 90px);
  margin-top: 110px;
  margin-bottom: 110px;
}

.event-heading {
  max-width: 900px;
  margin-bottom: 56px;
}

.event-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
}

.event-details {
  padding: 36px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 24px;
}

.event-details dl {
  margin: 0;
}

.event-details dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.event-details dt {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.event-details dd span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
}

.event-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 30px;
}

.text-link {
  color: var(--deep);
  font-weight: 800;
  text-underline-offset: 5px;
}

.countdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 24px;
}

.countdown > p:first-child {
  margin: 0 0 24px;
  font-weight: 800;
}

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

.countdown-grid div {
  padding: 18px 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 14px;
}

.countdown-grid strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.countdown-grid span {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-note {
  margin: 24px 0 0;
  color: rgba(17, 40, 37, 0.7);
  font-size: 1rem;
}

.organizers {
  padding: 28px 24px 90px;
}

.organizers-inner {
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: center;
}

.organizers-inner > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.organizer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.organizer-logos img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.organizer-logos a {
  display: block;
  border-radius: 16px;
  transition: transform 180ms ease;
}

.organizer-logos a:hover,
.organizer-logos a:focus-visible {
  transform: translateY(-3px);
}

.organizer-logos span {
  color: var(--orange);
  font-size: 2rem;
}

.partners {
  padding: 0 24px 96px;
}
.partners-inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  text-align: center;
}
.partners-inner > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 28px 40px;
}
.partner-grid a,
.partner-grid figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 132px;
  margin: 0;
  text-decoration: none;
  transition: transform 180ms ease;
}
.partner-grid a:hover,
.partner-grid a:focus-visible {
  transform: translateY(-3px);
}
.partner-grid img {
  height: 60px;
  width: auto;
  max-width: 124px;
  object-fit: contain;
}
.partner-grid span {
  font-size: 0.76rem;
  line-height: 1.3;
  color: var(--muted);
  font-weight: 600;
}

.final-cta {
  padding: 110px 24px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 63, 59, 0.95), rgba(7, 63, 59, 0.7)),
    url("assets/cassava-creation.jpg") center 42% / cover;
}

.final-cta-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  margin: 0 auto 40px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 52px max(24px, calc((100vw - var(--max-width)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #052f2c;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 4px;
  background: var(--white);
  border-radius: 12px;
}

.site-footer p {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 12px;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.footer-partner {
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-partner:hover,
.footer-partner:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.footer-partner img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  padding: 4px;
  background: var(--white);
  border-radius: 12px;
}

.footer-partner span {
  display: grid;
  gap: 2px;
}

.footer-partner strong {
  font-size: 1rem;
}

.footer-partner em {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links a {
  text-underline-offset: 4px;
}

.footer-links button {
  color: var(--lime);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1040px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.85rem;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.4vw, 6rem);
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .person-card {
    grid-column: span 6;
  }

  .person-card:last-child {
    grid-column: 4 / span 6;
  }

  .vision-copy {
    padding-left: 46px;
  }
}

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

  .menu-toggle {
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    height: calc(100vh - 78px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px;
    background: var(--deep);
    transform: none;
  }

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

  .main-nav > a:not(.button) {
    padding: 18px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.15rem;
  }

  .main-nav .language-toggle {
    align-self: flex-start;
    margin: 24px 0;
  }

  .main-nav .button {
    width: 100%;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 64px 0 70px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    min-height: 620px;
    order: 2;
  }

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

  .hero-meta div:first-child {
    grid-column: 1 / -1;
  }

  .hero-ribbon {
    flex-wrap: wrap;
    gap: 12px 30px;
    justify-content: flex-start;
  }

  .hero-ribbon span:not(:last-child)::after {
    margin-left: 30px;
  }

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

  .pillar {
    min-height: 300px;
  }

  .pillar-accent {
    transform: none;
  }

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

  .journey-media {
    min-height: 620px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .person-card,
  .person-card:nth-child(4),
  .person-card:nth-child(5),
  .person-card:last-child {
    min-height: 480px;
    grid-column: span 6;
  }

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

  .vision-copy {
    padding: 90px 40px;
  }

  .vision-image {
    min-height: 600px;
  }

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

@media (max-width: 600px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    font-size: 18px;
  }

  .site-header,
  .header-inner {
    min-height: 72px;
  }

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

  .main-nav {
    top: 72px;
    height: calc(100vh - 72px);
  }

  .hero-inner,
  .section {
    width: min(100% - 32px, var(--max-width));
  }

  .hero-inner {
    gap: 34px;
    padding-top: 46px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .mobile-hero-highlight {
    position: relative;
    order: 3;
    display: block;
    height: 220px;
    margin: 28px 0 0;
    overflow: hidden;
    border-radius: 82px 18px 82px 18px;
  }

  .mobile-hero-highlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-hero-highlight figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--ink);
    background: rgba(245, 240, 226, 0.94);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
  }

  .hero-copy .hero-lead {
    order: 5;
  }

  .hero-copy .hero-actions {
    order: 4;
    margin-top: 26px;
  }

  .hero-copy .hero-meta {
    order: 6;
    margin-top: 28px;
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  .hero-lead {
    margin: 26px 0;
  }

  .hero-lead,
  .section-heading > p:last-child,
  .pillar p,
  .journey-item p,
  .person-info p,
  .vision-copy > p:not(.eyebrow),
  .people-cta p,
  .countdown-note,
  .site-footer p {
    font-size: 18px;
    line-height: 1.65;
  }

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

  .hero-meta div:first-child {
    grid-column: auto;
  }

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

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

  .ticket-note {
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-ribbon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 16px;
  }

  .hero-ribbon span:not(:last-child)::after {
    display: none;
  }

  .presented-by {
    padding: 18px 16px;
  }

  .presented-by-inner {
    align-items: center;
  }

  .presented-by img {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .presented-by strong {
    font-size: 1.15rem;
  }

  .presented-by em {
    font-size: 0.85rem;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .journey-copy h2,
  .event-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .pillar {
    min-height: 290px;
    padding: 24px;
  }

  .journey-media {
    min-height: 480px;
  }

  .journey-media img {
    inset: 2% 0 0 0;
    width: 100%;
  }

  .media-stamp {
    right: 10px;
    bottom: 4%;
  }

  .journey-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .people {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .people-grid {
    display: flex;
    gap: 14px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .person-card,
  .person-card:nth-child(4),
  .person-card:nth-child(5),
  .person-card:last-child {
    min-width: 84vw;
    min-height: 490px;
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .people-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
    padding: 26px 20px;
  }

  .people-cta .button {
    width: 100%;
  }

  .vision-copy {
    padding: 78px 24px;
  }

  .vision blockquote {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .vision-image {
    min-height: 440px;
  }

  .event-info {
    width: calc(100% - 24px);
    margin-top: 72px;
    margin-bottom: 72px;
    padding: 44px 18px 18px;
    border-radius: 28px;
  }

  .event-heading {
    padding: 0 8px;
  }

  .event-details,
  .countdown {
    padding: 24px 20px;
  }

  .event-details dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

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

  .countdown-grid strong {
    font-size: 2rem;
  }

  .organizer-logos {
    gap: 18px;
  }

  .organizer-logos img {
    width: 88px;
    height: 88px;
  }

  .final-cta {
    padding: 84px 20px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 42px 24px;
  }

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

  .footer-partner {
    min-width: 0;
  }

  .footer-links {
    justify-items: start;
  }
}

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

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

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