:root {
  --green: #147141;
  --deep: #074022;
  --soft: #eaefe8;
  --text: #111111;
  --muted: #555d57;
  --white: #ffffff;
  --line: rgba(7, 64, 34, 0.16);
  --shadow: 0 20px 60px rgba(7, 64, 34, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Roboto, Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}
.brand img { width: clamp(180px, 20vw, 270px); height: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--deep);
  font-size: 15px;
  font-weight: 400;
  transition: color 180ms ease, transform 180ms ease;
}
.main-nav a:hover { color: var(--green); transform: translateY(-1px); }
.nav-item { position: relative; }
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-item:hover .sub-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sub-menu a { display: block; padding: 10px; color: var(--deep); font-size: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--deep); transition: transform 200ms ease, opacity 200ms ease; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-slider { position: relative; min-height: 620px; overflow: hidden; background: var(--deep); }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 110px);
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.25)), var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 1800ms ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.slide-content { max-width: 680px; }
.slide-content h1,
.section-title,
.conference h2,
.value-card h2,
.site-footer h2 {
  margin: 0;
  font-family: Antonio, Roboto, sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}
.slide-content h1 { font-size: clamp(48px, 8vw, 104px); text-transform: uppercase; }
.slide-content p { max-width: 620px; margin: 22px 0 28px; font-family: "Shippori Mincho", serif; font-size: clamp(17px, 2vw, 24px); line-height: 1.65; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 26px;
  border: 1px solid transparent;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.btn-light { background: var(--white); color: var(--deep); }
.btn-green { background: var(--green); color: var(--white); }
.slider-dots { position: absolute; z-index: 4; left: 50%; bottom: 26px; display: flex; gap: 10px; transform: translateX(-50%); }
.slider-dots button { width: 11px; height: 11px; border: 1px solid var(--white); border-radius: 999px; background: transparent; cursor: pointer; }
.slider-dots button.is-active { background: var(--white); }

.sponsors { padding: 26px 0; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.logo-track { display: flex; align-items: center; gap: 42px; width: max-content; animation: logo-scroll 34s linear infinite; }
.logo-track img { width: 128px; height: 78px; object-fit: contain; filter: saturate(.95); }

.conference { padding: 34px 20px 52px; text-align: center; }
.conference h2 { color: var(--green); font-size: clamp(30px, 4vw, 46px); }
.conference p { margin: 8px 0 24px; font-family: "Shippori Mincho", serif; font-size: 16px; }

.intro-band { display: grid; grid-template-columns: 1.45fr 1fr; gap: 34px; align-items: center; padding: 20px clamp(24px, 5vw, 70px) 58px; }
.image-collage { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.image-collage img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; border-radius: 10px; box-shadow: 0 14px 35px rgba(0,0,0,.12); }
.image-collage .wide { min-height: 480px; }
.stacked { display: grid; gap: 20px; }
.intro-copy p { margin: 0 0 26px; font-family: "Shippori Mincho", serif; font-size: 18px; line-height: 1.85; }
.intro-copy .btn { min-width: 30%; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 60px clamp(24px, 5vw, 70px); background: var(--deep); }
.value-card { color: var(--white); background: var(--green); border-radius: 20px; overflow: hidden; transform-style: preserve-3d; }
.value-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 20px; transition: transform 700ms ease; }
.value-card:hover img { transform: scale(1.06); }
.value-card h2 { padding: 18px 20px 8px; font-size: clamp(28px, 3vw, 40px); }
.value-card p { margin: 0; padding: 0 20px 26px; font-family: "Shippori Mincho", serif; line-height: 1.7; }

.program { max-width: 900px; margin: 0 auto; padding: 68px 24px; text-align: center; }
.program p { margin: 0 0 26px; font-family: "Shippori Mincho", serif; font-size: 17px; line-height: 1.85; }

.about-video { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; padding: 54px clamp(24px, 5vw, 70px); background: var(--soft); }
.video-shell, .video-grid iframe, .watch iframe { overflow: hidden; border-radius: 2px; background: #000; box-shadow: var(--shadow); }
.video-shell iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.about-copy p { margin: 0 0 24px; font-family: "Shippori Mincho", serif; font-size: 17px; line-height: 1.85; }

.team { padding: 68px clamp(24px, 5vw, 70px); }
.section-title { margin-bottom: 28px; color: var(--green); font-size: clamp(34px, 5vw, 58px); text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; transition: transform 500ms ease, box-shadow 500ms ease; }
.team-card:hover img { transform: translateY(-8px); box-shadow: var(--shadow); }
.team-card h3 { margin: 14px 0 8px; font-family: Antonio, Roboto, sans-serif; font-size: 25px; line-height: 1.15; }
.team-card p { margin: 0; font-family: "Shippori Mincho", serif; font-size: 15px; font-weight: 700; }

.watch { padding: 90px clamp(24px, 5vw, 70px); background: var(--soft); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.video-grid iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; }

.site-footer { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 38px; padding: 58px clamp(24px, 5vw, 70px); background: var(--deep); color: var(--white); }
.site-footer img { width: 230px; margin-bottom: 18px; }
.site-footer h2 { margin-bottom: 14px; font-size: 26px; }
.site-footer a { display: block; width: fit-content; margin: 9px 0; font-family: "Shippori Mincho", serif; color: var(--white); opacity: .92; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 750ms ease, transform 750ms ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes logo-scroll { to { transform: translateX(-50%); } }

@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 92px; left: 0; right: 0; bottom: 0; display: block; padding: 20px; background: var(--white); transform: translateX(100%); transition: transform 260ms ease; overflow-y: auto; }
  .menu-open .main-nav { transform: translateX(0); }
  .main-nav > a, .nav-item > a { width: 100%; min-height: 50px; border-bottom: 1px solid var(--line); }
  .sub-menu { position: static; min-width: 0; padding: 0 0 0 18px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .intro-band, .about-video { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-header { min-height: 78px; padding-inline: 16px; }
  .brand img { width: 170px; }
  .main-nav { top: 78px; }
  .hero-slider { min-height: 560px; }
  .hero-slide { padding-inline: 22px; }
  .image-collage { grid-template-columns: 1fr; }
  .image-collage .wide, .image-collage img { min-height: 240px; }
  .team-grid, .video-grid, .site-footer { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}

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

.main-nav a.active {
  color: var(--green);
  font-weight: 400;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  min-height: 520px;
  padding: clamp(54px, 8vw, 100px) clamp(24px, 7vw, 110px);
  background: var(--soft);
  overflow: hidden;
}

.about-hero-copy p {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero-copy h1,
.mission-copy h2,
.core-copy h2 {
  margin: 0;
  color: var(--green);
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 1.02;
}

.about-icon {
  width: min(100%, 360px);
  justify-self: center;
  animation: icon-float 5s ease-in-out infinite;
}

.mission-history {
  padding: clamp(56px, 8vw, 90px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.mission-copy {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mission-copy h2,
.core-copy h2 {
  font-size: clamp(34px, 5vw, 60px);
}

.mission-copy p,
.about-long-copy p,
.core-copy p {
  color: var(--text);
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  line-height: 1.9;
}

.about-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 86px) clamp(24px, 7vw, 110px);
  background: var(--deep);
  color: var(--white);
}

.about-video-file video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  background: #000;
  box-shadow: var(--shadow);
}

.about-long-copy p {
  color: var(--white);
}

.core-values {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 90px) clamp(24px, 7vw, 110px);
  background: var(--soft);
}

.core-values img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.core-copy p:last-child {
  margin-bottom: 0;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@media (max-width: 900px) {
  .about-hero,
  .about-media-text,
  .core-values {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
    text-align: center;
  }

  .core-values img {
    min-height: 280px;
  }
}

/* Multi-page header and utility page styles */
.site-header {
  display: grid;
  grid-template-columns: minmax(170px, 270px) minmax(0, 1fr) auto;
}

.main-nav {
  justify-self: center;
  justify-content: center;
}

.register-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 2px;
  background: var(--green);
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  white-space: nowrap;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.register-cta:hover,
.register-cta.active {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(7, 64, 34, 0.24);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 520px;
  padding: clamp(54px, 8vw, 100px) clamp(24px, 7vw, 110px);
  background: var(--soft);
}

.page-hero-copy p {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  text-transform: uppercase;
}

.page-hero-copy h1,
.page-section h2 {
  margin: 0;
  color: var(--green);
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(44px, 8vw, 94px);
  line-height: 1.02;
}

.page-hero-copy span,
.page-section p {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  line-height: 1.85;
}

.page-hero-image,
.feature-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.page-section {
  padding: clamp(56px, 8vw, 92px) clamp(24px, 7vw, 110px);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

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

.info-card {
  display: block;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 64, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.info-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Antonio, Roboto, sans-serif;
  font-size: 30px;
}

.info-card p {
  margin: 0 0 18px;
}

.gallery-preview .info-card {
  padding: 0;
  overflow: hidden;
}

.gallery-preview .info-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-preview .info-card h3,
.gallery-preview .info-card p {
  padding-inline: 22px;
}

.gallery-preview .info-card p {
  padding-bottom: 22px;
}

.page-values {
  margin-top: 0;
}

.contact-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
}

.contact-form-page {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-page label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 700;
}

.contact-form-page input,
.contact-form-page select,
.contact-form-page textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form-page textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr) auto;
    gap: 14px;
  }

  .main-nav > a,
  .nav-item > a {
    padding-inline: 8px;
    font-size: 14px;
  }

  .register-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    display: flex;
  }

  .register-cta {
    margin-left: auto;
    margin-right: 8px;
  }

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

  .page-hero,
  .split-section,
  .card-grid-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .register-cta {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 13px;
  }

  .page-hero-image,
  .feature-image {
    min-height: 240px;
  }
}

/* Dropdown usability refinements */
.nav-item > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-item:hover > a::after,
.nav-item.is-open > a::after {
  transform: translateY(1px) rotate(180deg);
  opacity: 1;
}

.nav-item.is-open .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav > a,
.nav-item > a,
.sub-menu a,
.register-cta,
.main-nav a.active {
  font-weight: 400;
}
/* Redesigned team page */
.team-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 680px;
  padding: clamp(64px, 8vw, 108px) clamp(24px, 7vw, 110px);
  background:
    linear-gradient(135deg, rgba(234, 239, 232, 0.96), rgba(255, 255, 255, 0.82)),
    url('https://innovateafricacorps.com/wp-content/uploads/2026/05/159A1102.jpg') center/cover;
  overflow: hidden;
}

.team-hero-copy p,
.team-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  text-transform: uppercase;
}

.team-hero-copy h1,
.team-feature-copy h2,
.team-profile h2,
.team-cta h2 {
  margin: 0;
  color: var(--green);
  font-family: Antonio, Roboto, sans-serif;
  line-height: 1.02;
}

.team-hero-copy h1 {
  max-width: 7ch;
  font-size: clamp(64px, 11vw, 132px);
}

.team-hero-copy > span {
  display: block;
  max-width: 690px;
  margin-top: 18px;
  color: var(--text);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.72;
}

.team-stats {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
  gap: 8px 12px;
  align-items: baseline;
  max-width: 620px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.team-stats strong {
  color: var(--green);
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1;
}

.team-stats span {
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
}

.team-hero-collage {
  position: relative;
  min-height: 560px;
}

.hero-portrait {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-portrait.primary {
  right: 8%;
  top: 0;
  z-index: 3;
}

.hero-portrait.secondary {
  left: 0;
  bottom: 9%;
  z-index: 2;
  transform: rotate(-4deg);
}

.hero-portrait.tertiary {
  right: 0;
  bottom: 0;
  width: 42%;
  z-index: 4;
  transform: rotate(5deg);
}

.team-roster {
  position: sticky;
  top: 92px;
  z-index: 10;
  display: flex;
  gap: 14px;
  padding: 14px clamp(24px, 7vw, 110px);
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.94);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.team-roster a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  min-height: 48px;
  padding: 6px 13px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-roster a:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 113, 65, 0.36);
  box-shadow: 0 10px 24px rgba(7, 64, 34, 0.12);
}

.team-roster img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.team-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 8vw, 110px) clamp(24px, 7vw, 110px);
  background: var(--deep);
  color: var(--white);
}

.team-feature-media img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.team-feature-copy h2 {
  color: var(--white);
  font-size: clamp(46px, 7vw, 86px);
}

.team-feature-copy span,
.team-profile span {
  display: inline-flex;
  margin: 12px 0 20px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
}

.team-feature-copy span {
  color: #b9dfc8;
}

.team-feature-copy p,
.team-profile p,
.team-cta p {
  margin: 0 0 16px;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.86;
}

.team-feature-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.team-directory {
  display: grid;
  gap: 1px;
  padding: 0 clamp(24px, 7vw, 110px) clamp(70px, 9vw, 120px);
  background: var(--line);
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(240px, 0.54fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  background: var(--white);
  scroll-margin-top: 170px;
}

.team-profile.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.54fr);
}

.team-profile.reverse img {
  grid-column: 2;
  grid-row: 1;
}

.team-profile.reverse div {
  grid-column: 1;
  grid-row: 1;
}

.team-profile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(7, 64, 34, 0.14);
}

.team-profile h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.team-profile p {
  color: var(--muted);
}

.team-cta {
  margin: 0 clamp(24px, 7vw, 110px) clamp(72px, 8vw, 110px);
  padding: clamp(34px, 6vw, 70px);
  border-radius: 24px;
  background: var(--soft);
  text-align: center;
}

.team-cta h2 {
  max-width: 840px;
  margin-inline: auto;
  font-size: clamp(38px, 6vw, 74px);
}

.team-cta p {
  max-width: 680px;
  margin: 16px auto 26px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .team-hero,
  .team-feature,
  .team-profile,
  .team-profile.reverse {
    grid-template-columns: 1fr;
  }

  .team-hero-collage {
    min-height: 430px;
  }

  .team-profile.reverse img,
  .team-profile.reverse div {
    grid-column: auto;
    grid-row: auto;
  }

  .team-profile {
    scroll-margin-top: 140px;
  }
}

@media (max-width: 680px) {
  .team-hero {
    min-height: auto;
  }

  .team-hero-copy h1 {
    font-size: clamp(58px, 20vw, 88px);
  }

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

  .team-hero-collage {
    min-height: 330px;
  }

  .hero-portrait {
    border-width: 6px;
    border-radius: 16px;
  }

  .team-roster {
    top: 78px;
  }

  .team-profile {
    padding: 28px 20px;
  }
}

/* Team page image scale adjustment */
.team-hero-collage {
  min-height: 380px;
}

.hero-portrait {
  width: 37.2%;
}

.hero-portrait.tertiary {
  width: 25.2%;
}

.team-feature-media {
  display: flex;
  justify-content: center;
}

.team-feature-media img {
  width: 60%;
  max-height: 380px;
}

.team-profile img {
  width: 60%;
  justify-self: center;
}

@media (max-width: 980px) {
  .team-hero-collage {
    min-height: 300px;
  }

  .team-feature-media img,
  .team-profile img {
    width: min(60%, 360px);
  }
}

@media (max-width: 680px) {
  .team-hero-collage {
    min-height: 230px;
  }

  .team-feature-media img,
  .team-profile img {
    width: min(72%, 300px);
  }
}

/* Get Involved page */
.involved-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(206, 28, 37, 0.1), transparent 28%),
    linear-gradient(135deg, #f8faf4 0%, #ffffff 54%, #eef5e8 100%);
}

.involved-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% 34%;
  height: 42%;
  background: repeating-linear-gradient(90deg, rgba(20, 113, 65, 0.1) 0 1px, transparent 1px 38px);
  transform: rotate(-8deg);
  pointer-events: none;
}

.involved-hero-copy,
.involved-visual {
  position: relative;
  z-index: 1;
}

.involved-hero-copy p,
.section-kicker,
.involved-path-copy p {
  margin: 0 0 16px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.involved-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(64px, 10vw, 134px);
  line-height: 0.9;
}

.involved-hero-copy span {
  display: block;
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.7;
}

.involved-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-outline {
  border: 1px solid rgba(7, 64, 34, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep);
}

.involved-visual {
  min-height: 600px;
}

.involved-visual img {
  position: absolute;
  inset: 6% 0 auto auto;
  width: min(84%, 620px);
  height: 74%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(7, 64, 34, 0.2);
  animation: involvedFloat 7s ease-in-out infinite;
}

.involved-orbit {
  position: absolute;
  border: 1px solid rgba(20, 113, 65, 0.24);
  border-radius: 50%;
  animation: involvedSpin 18s linear infinite;
}

.involved-orbit::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(206, 28, 37, 0.12);
}

.involved-orbit-one {
  inset: 2% 10% auto auto;
  width: 340px;
  height: 340px;
}

.involved-orbit-one::after {
  top: 26px;
  right: 54px;
}

.involved-orbit-two {
  right: 48%;
  bottom: 9%;
  width: 210px;
  height: 210px;
  animation-duration: 12s;
  animation-direction: reverse;
}

.involved-orbit-two::after {
  left: 18px;
  bottom: 42px;
  background: var(--green);
}

.involved-note {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: min(320px, 62%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(7, 64, 34, 0.16);
  backdrop-filter: blur(18px);
}

.involved-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 22px;
  font-weight: 400;
}

.involved-note span {
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  line-height: 1.65;
}

.involved-intro {
  padding: clamp(70px, 9vw, 118px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.involved-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.involved-intro h2,
.involved-path-copy h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

.involved-intro p,
.involved-card p,
.involved-step p,
.involved-cta p {
  margin: 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.85;
}

.involved-ways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(24px, 7vw, 110px);
  background: var(--line);
}

.involved-card {
  min-height: 360px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.involved-card:hover {
  background: #f8fbf4;
  box-shadow: 0 28px 70px rgba(7, 64, 34, 0.12);
}

.involved-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 52px;
  border-radius: 50%;
  background: rgba(20, 113, 65, 0.1);
  color: var(--green);
  font-family: "Antonio", sans-serif;
  font-size: 18px;
}

.involved-card h3 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
}

.involved-path {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 6vw, 90px);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 7vw, 110px);
  background: var(--deep);
  color: var(--white);
}

.involved-path-copy h2 {
  color: var(--white);
}

.involved-path-copy p {
  color: #b9dfc8;
}

.involved-steps {
  display: grid;
  gap: 18px;
}

.involved-step {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.involved-step span {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.involved-step p {
  color: rgba(255, 255, 255, 0.78);
}

.involved-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: clamp(58px, 8vw, 104px) clamp(24px, 7vw, 110px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(20, 113, 65, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(20, 113, 65, 0.08), rgba(206, 28, 37, 0.06)),
    var(--soft);
}

.involved-cta p {
  max-width: 900px;
  color: var(--deep);
  font-size: clamp(18px, 2vw, 25px);
}

@keyframes involvedFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(1.4deg); }
}

@keyframes involvedSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .involved-hero,
  .involved-intro-grid,
  .involved-path,
  .involved-cta {
    grid-template-columns: 1fr;
  }

  .involved-hero {
    min-height: auto;
  }

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

  .involved-ways {
    grid-template-columns: 1fr;
  }

  .involved-card {
    min-height: auto;
  }

  .involved-card span {
    margin-bottom: 30px;
  }

  .involved-cta {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .involved-hero {
    padding-top: 42px;
  }

  .involved-hero-copy h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .involved-visual {
    min-height: 380px;
  }

  .involved-visual img {
    width: 92%;
    height: 72%;
  }

  .involved-note {
    width: 78%;
    padding: 18px;
  }

  .involved-orbit-one {
    width: 220px;
    height: 220px;
  }

  .involved-orbit-two {
    width: 150px;
    height: 150px;
  }

  .involved-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .involved-visual img,
  .involved-orbit {
    animation: none;
  }
}

/* Mobile navigation restructuring */
@media (max-width: 1024px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 12px;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    max-width: min(220px, 62vw);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    border-radius: 999px;
    background: rgba(20, 113, 65, 0.08);
  }

  .main-nav {
    position: fixed;
    top: 92px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: auto;
    max-width: none;
    padding: 22px clamp(18px, 5vw, 34px) 118px;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 1px 0 var(--line);
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .main-nav > a,
  .nav-item > a {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .main-nav a:hover {
    transform: none;
  }

  .nav-item {
    width: 100%;
  }

  .sub-menu {
    position: static;
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 10px 0 12px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .sub-menu a {
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(20, 113, 65, 0.06);
    font-size: 15px;
  }

  .register-cta {
    position: fixed;
    right: clamp(18px, 5vw, 34px);
    bottom: 24px;
    left: clamp(18px, 5vw, 34px);
    z-index: 31;
    width: auto;
    min-height: 54px;
    margin: 0;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(7, 64, 34, 0.24);
    transform: translateX(110%);
    transition: transform 260ms ease, background 200ms ease, box-shadow 200ms ease;
  }

  .menu-open .register-cta {
    transform: translateX(0);
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 78px;
  }

  .main-nav {
    top: 78px;
    padding-bottom: 112px;
  }

  .register-cta {
    min-height: 52px;
    padding: 14px 18px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }
}

/* Professional mobile drawer navigation */
@media (max-width: 1024px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 29;
    background: rgba(7, 64, 34, 0.42);
    backdrop-filter: blur(3px);
  }

  .site-header {
    z-index: 40;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 84px;
    padding: 12px clamp(16px, 4vw, 28px);
  }

  .brand img {
    width: auto;
    max-width: min(218px, 64vw);
  }

  .menu-toggle {
    position: relative;
    z-index: 45;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(20, 113, 65, 0.16);
    border-radius: 50%;
    background: #f4f8f1;
    box-shadow: 0 10px 26px rgba(7, 64, 34, 0.1);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
  }

  .main-nav {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 39;
    width: min(420px, calc(100vw - 26px));
    padding: 104px 22px 118px;
    border-left: 1px solid rgba(7, 64, 34, 0.12);
    background: #ffffff;
    box-shadow: -28px 0 70px rgba(7, 64, 34, 0.2);
    transform: translateX(106%);
  }

  .main-nav > a,
  .nav-item > a {
    min-height: 54px;
    padding: 15px 4px;
    color: var(--deep);
    font-size: 17px;
    line-height: 1.2;
  }

  .main-nav > a.active,
  .nav-item > a.active {
    color: var(--green);
  }

  .nav-item > a::after {
    margin-left: auto;
  }

  .sub-menu {
    gap: 8px;
    margin: 0 0 8px;
    padding: 8px 0 14px;
  }

  .sub-menu a {
    min-height: 42px;
    padding: 11px 14px;
    border: 1px solid rgba(20, 113, 65, 0.1);
    border-radius: 8px;
    background: #f5f9f3;
    color: var(--deep);
  }

  .sub-menu a:hover {
    background: rgba(20, 113, 65, 0.1);
  }

  .register-cta {
    right: 22px;
    bottom: 24px;
    left: auto;
    z-index: 41;
    width: min(376px, calc(100vw - 70px));
    min-height: 56px;
    border-radius: 10px;
    font-size: 16px;
    transform: translateX(116%);
  }

  .menu-open .register-cta {
    transform: translateX(0);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
    padding-inline: 14px;
  }

  .brand img {
    max-width: min(184px, 58vw);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    width: min(360px, calc(100vw - 18px));
    padding: 88px 18px 108px;
  }

  .main-nav > a,
  .nav-item > a {
    min-height: 50px;
    font-size: 16px;
  }

  .register-cta {
    right: 18px;
    bottom: 18px;
    width: min(324px, calc(100vw - 54px));
    min-height: 52px;
    border-radius: 9px;
    font-size: 15px;
  }
}

/* Full-screen mobile menu override */
@media (max-width: 1024px) {
  .main-nav {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100vw;
    max-width: none;
    height: 100vh;
    min-height: 100vh;
    padding: 104px clamp(20px, 6vw, 44px) 126px;
    border-left: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    transform: translateX(100%);
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .register-cta {
    right: clamp(20px, 6vw, 44px);
    bottom: 24px;
    left: clamp(20px, 6vw, 44px);
    width: auto;
    max-width: none;
    transform: translateY(120%);
  }

  .menu-open .register-cta {
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  .main-nav {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    padding: 88px 20px 112px;
  }

  .register-cta {
    right: 20px;
    left: 20px;
    bottom: 18px;
    width: auto;
  }
}

/* Redesigned Services page */
.services-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 64, 34, 0.96), rgba(20, 113, 65, 0.9)),
    var(--deep);
  color: var(--white);
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 12% -12% auto auto;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: servicesSpin 24s linear infinite;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -16% -8%;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.services-hero-copy,
.services-hero-media {
  position: relative;
  z-index: 1;
}

.services-hero-copy p,
.services-method-heading p,
.services-cta p {
  margin: 0 0 16px;
  color: #b9dfc8;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(66px, 11vw, 150px);
  line-height: 0.86;
}

.services-hero-copy span {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.72;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.services-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.services-hero-media {
  min-height: 620px;
}

.services-hero-media img {
  position: absolute;
  right: 0;
  top: 5%;
  width: min(88%, 680px);
  height: 78%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  animation: servicesFloat 7s ease-in-out infinite;
}

.services-hero-card {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: min(360px, 70%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.services-hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.14;
}

.services-hero-card span {
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  line-height: 1.65;
}

.services-vision {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(64px, 8vw, 110px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.services-vision-label {
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  text-transform: uppercase;
}

.services-vision p {
  max-width: 1060px;
  margin: 0;
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(21px, 2.5vw, 34px);
  line-height: 1.55;
}

.services-showcase {
  display: grid;
  gap: 1px;
  padding: 1px clamp(24px, 7vw, 110px);
  background: var(--line);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 62px);
  background: var(--white);
}

.service-panel-reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
}

.service-panel-reverse .service-panel-media {
  grid-column: 2;
  grid-row: 1;
}

.service-panel-reverse .service-panel-copy {
  grid-column: 1;
  grid-row: 1;
}

.service-panel-media {
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
  box-shadow: 0 24px 70px rgba(7, 64, 34, 0.13);
}

.service-panel-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 800ms ease;
}

.service-panel:hover .service-panel-media img {
  transform: scale(1.055);
}

.service-panel-copy span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(20, 113, 65, 0.1);
  color: var(--green);
  font-family: "Antonio", sans-serif;
  font-size: 18px;
}

.service-panel-copy h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.94;
}

.service-panel-copy p {
  max-width: 680px;
  margin: 20px 0 26px;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.85;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  text-transform: uppercase;
}

.service-link::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.service-link:hover::after {
  width: 54px;
}

.services-method {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px);
  background: var(--deep);
  color: var(--white);
}

.services-method-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.98;
}

.services-method-grid {
  display: grid;
  gap: 16px;
}

.services-method-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, background 220ms ease;
}

.services-method-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.services-method-card span {
  display: block;
  margin-bottom: 12px;
  color: #b9dfc8;
  font-size: 28px;
}

.services-method-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.78;
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin: clamp(58px, 8vw, 104px) clamp(24px, 7vw, 110px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: 24px;
  background: var(--soft);
}

.services-cta p {
  color: var(--green);
}

.services-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.98;
}

@keyframes servicesFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(-1.2deg); }
}

@keyframes servicesSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .services-hero,
  .services-vision,
  .service-panel,
  .service-panel-reverse,
  .services-method,
  .services-cta {
    grid-template-columns: 1fr;
  }

  .services-hero {
    min-height: auto;
  }

  .services-hero-media {
    min-height: 520px;
  }

  .service-panel-reverse .service-panel-media,
  .service-panel-reverse .service-panel-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .services-cta {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .services-hero {
    padding-top: 48px;
  }

  .services-hero-copy h1 {
    font-size: clamp(58px, 19vw, 86px);
  }

  .services-hero-media {
    min-height: 380px;
  }

  .services-hero-media img {
    width: 94%;
    height: 72%;
  }

  .services-hero-card {
    right: 0;
    width: 82%;
    padding: 18px;
  }

  .service-panel {
    padding: 24px 18px 32px;
  }

  .service-panel-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero::before,
  .services-hero-media img {
    animation: none;
  }
}

/* Redesigned Contact page */
.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 64, 34, 0.94), rgba(20, 113, 65, 0.86)),
    url("https://innovateafricacorps.com/wp-content/uploads/2026/05/159A1102.jpg") center / cover;
  color: var(--white);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 14% auto auto 48%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: contactSpin 22s linear infinite;
}

.contact-hero-copy,
.contact-hero-panel {
  position: relative;
  z-index: 1;
}

.contact-hero-copy p,
.contact-intro-copy p,
.contact-signal {
  margin: 0 0 16px;
  color: #b9dfc8;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(66px, 11vw, 150px);
  line-height: 0.86;
}

.contact-hero-copy span {
  display: block;
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.72;
}

.contact-hero-panel {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.contact-hero-panel h2 {
  margin: 0 0 24px;
  color: var(--deep);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.contact-hero-panel a,
.contact-hero-panel span {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  line-height: 1.45;
}

.contact-hero-panel a:hover {
  color: var(--green);
  text-decoration: underline;
}

.contact-signal {
  color: var(--green);
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(64px, 8vw, 110px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.contact-intro-copy h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

.contact-intro > p {
  margin: 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 0 clamp(24px, 7vw, 110px) clamp(72px, 9vw, 120px);
  background: var(--white);
}

.contact-details {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 118px;
}

.contact-detail-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbf4;
}

.contact-detail-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-detail-card a,
.contact-detail-card p {
  display: block;
  margin: 6px 0 0;
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-detail-card a:hover {
  color: var(--green);
  text-decoration: underline;
}

.contact-detail-green {
  background: var(--deep);
  color: var(--white);
}

.contact-detail-green span,
.contact-detail-green p {
  color: var(--white);
}

.contact-redesign-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(20, 113, 65, 0.16);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 64, 34, 0.12);
}

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

.contact-redesign-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
}

.contact-redesign-form input,
.contact-redesign-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(7, 64, 34, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  background: #fbfdf9;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-redesign-form textarea {
  resize: vertical;
}

.contact-redesign-form input:focus,
.contact-redesign-form textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 113, 65, 0.1);
}

.consent-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--muted) !important;
}

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

.contact-redesign-form .btn {
  width: fit-content;
  min-width: 190px;
}

@keyframes contactSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .contact-hero,
  .contact-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-details {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .contact-hero {
    padding-top: 54px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(58px, 19vw, 86px);
  }

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

  .contact-redesign-form .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero::before {
    animation: none;
  }
}

/* Redesigned 2024 Innovate Event page */
.event24-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(72px, 9vw, 124px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background: linear-gradient(135deg, #071f15 0%, var(--deep) 50%, #0c5b34 100%);
  color: var(--white);
}

.event24-hero::before {
  content: "";
  position: absolute;
  inset: 8% -12% auto auto;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: event24Spin 26s linear infinite;
}

.event24-hero-copy,
.event24-hero-media {
  position: relative;
  z-index: 1;
}

.event24-hero-copy p,
.event24-section-heading p,
.event24-cta p {
  margin: 0 0 16px;
  color: #b9dfc8;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event24-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.9;
}

.event24-hero-copy > span {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.7;
}

.event24-meta {
  display: grid;
  gap: 6px;
  max-width: 620px;
  margin-top: 28px;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Shippori Mincho", serif;
}

.event24-meta strong {
  color: var(--white);
  font-weight: 400;
}

.event24-meta span {
  color: rgba(255, 255, 255, 0.72);
}

.event24-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.event24-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.event24-hero-media {
  min-height: 620px;
}

.event24-hero-main,
.event24-hero-float {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.event24-hero-main {
  top: 2%;
  right: 0;
  width: 86%;
  height: 72%;
  border-radius: 28px;
  animation: event24Float 7s ease-in-out infinite;
}

.event24-hero-float {
  left: 0;
  bottom: 4%;
  width: 48%;
  height: 34%;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
}

.event24-hero-badge {
  position: absolute;
  right: 4%;
  bottom: 9%;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  line-height: 1.45;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.event24-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: clamp(66px, 8vw, 112px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.event24-overview > p {
  margin: 0;
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(21px, 2.4vw, 34px);
  line-height: 1.55;
}

.event24-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.event24-stats div {
  min-height: 150px;
  padding: 24px;
  background: #f8fbf4;
}

.event24-stats strong {
  display: block;
  color: var(--green);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
}

.event24-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
}

.event24-gallery-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  padding: 0 clamp(24px, 7vw, 110px) clamp(70px, 8vw, 110px);
  background: var(--white);
}

.event24-gallery-strip img {
  width: 100%;
  height: clamp(260px, 34vw, 470px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(7, 64, 34, 0.13);
}

.event24-gallery-strip img:nth-child(2) {
  margin-top: 42px;
}

.event24-outcomes,
.event24-speakers {
  padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px);
  background: var(--soft);
}

.event24-section-heading {
  max-width: 920px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.event24-section-heading h2,
.event24-cta h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

.event24-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.event24-card {
  min-height: 340px;
  padding: clamp(26px, 3vw, 38px);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.event24-card:hover {
  background: #f8fbf4;
  box-shadow: 0 26px 70px rgba(7, 64, 34, 0.14);
}

.event24-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  border-radius: 50%;
  background: rgba(20, 113, 65, 0.1);
  color: var(--green);
  font-family: Antonio, sans-serif;
}

.event24-card h3,
.event24-highlight-list h3,
.event24-speaker h3 {
  margin: 0 0 14px;
  color: var(--deep);
  font-weight: 400;
  line-height: 1.12;
}

.event24-card h3 {
  font-size: clamp(27px, 2.7vw, 40px);
}

.event24-card p,
.event24-highlight-list p,
.event24-speaker p {
  margin: 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  line-height: 1.75;
}

.event24-highlights {
  padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px);
  background: var(--deep);
  color: var(--white);
}

.event24-highlights .event24-section-heading h2 {
  color: var(--white);
}

.event24-highlight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.event24-highlight-list article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.06);
}

.event24-highlight-list h3 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.event24-highlight-list p {
  color: rgba(255, 255, 255, 0.76);
}

.event24-speakers {
  background: var(--white);
}

.event24-speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.event24-speaker {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(7, 64, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.event24-speaker:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(7, 64, 34, 0.16);
}

.event24-speaker img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.event24-speaker h3 {
  padding: 18px 18px 0;
  font-size: 24px;
}

.event24-speaker p {
  padding: 0 18px 22px;
  font-size: 14px;
}

.event24-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: clamp(58px, 8vw, 104px) clamp(24px, 7vw, 110px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: 24px;
  background: var(--soft);
}

.event24-cta p {
  color: var(--green);
}

@keyframes event24Float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(1deg); }
}

@keyframes event24Spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .event24-card-grid,
  .event24-speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .event24-hero,
  .event24-overview,
  .event24-cta {
    grid-template-columns: 1fr;
  }

  .event24-hero {
    min-height: auto;
  }

  .event24-hero-media {
    min-height: 520px;
  }

  .event24-gallery-strip,
  .event24-highlight-list {
    grid-template-columns: 1fr;
  }

  .event24-gallery-strip img:nth-child(2) {
    margin-top: 0;
  }

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

  .event24-cta {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .event24-hero {
    padding-top: 52px;
  }

  .event24-hero-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .event24-hero-media {
    min-height: 380px;
  }

  .event24-hero-main {
    width: 94%;
    height: 72%;
  }

  .event24-hero-float {
    width: 54%;
    height: 34%;
    border-width: 5px;
  }

  .event24-hero-badge {
    right: 0;
    max-width: 220px;
    padding: 14px;
  }

  .event24-stats,
  .event24-card-grid,
  .event24-speaker-grid {
    grid-template-columns: 1fr;
  }

  .event24-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event24-hero::before,
  .event24-hero-main {
    animation: none;
  }
}

/* Redesigned 2025 Innovate Event page */
.event25-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(72px, 9vw, 124px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background: linear-gradient(135deg, #071f15 0%, #0c4b2d 48%, #126d40 100%);
  color: var(--white);
}

.event25-hero::before {
  content: "";
  position: absolute;
  inset: 7% -14% auto auto;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: event25Spin 24s linear infinite;
}

.event25-hero-copy,
.event25-hero-media {
  position: relative;
  z-index: 1;
}

.event25-hero-copy p,
.event25-overview-copy p,
.event25-section-heading p,
.event25-cta p {
  margin: 0 0 16px;
  color: #b9dfc8;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event25-hero-copy h1 {
  max-width: 840px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.9;
}

.event25-hero-copy > strong {
  display: inline-flex;
  margin-top: 20px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.event25-hero-copy > span {
  display: block;
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.7;
}

.event25-meta {
  display: grid;
  gap: 6px;
  max-width: 650px;
  margin-top: 28px;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Shippori Mincho", serif;
}

.event25-meta strong {
  color: var(--white);
  font-weight: 400;
}

.event25-meta span {
  color: rgba(255, 255, 255, 0.72);
}

.event25-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.event25-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.event25-hero-media {
  min-height: 620px;
}

.event25-hero-main,
.event25-hero-float {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.event25-hero-main {
  top: 2%;
  right: 0;
  width: 86%;
  height: 72%;
  border-radius: 28px;
  animation: event25Float 7s ease-in-out infinite;
}

.event25-hero-float {
  left: 0;
  bottom: 4%;
  width: 48%;
  height: 34%;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
}

.event25-hero-badge {
  position: absolute;
  right: 4%;
  bottom: 9%;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  line-height: 1.45;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.event25-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(66px, 8vw, 112px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.event25-overview-copy h2,
.event25-section-heading h2,
.event25-cta h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

.event25-overview > p {
  margin: 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.68;
}

.event25-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(24px, 7vw, 110px) clamp(70px, 8vw, 110px);
  background: var(--line);
}

.event25-stats div {
  min-height: 150px;
  padding: 24px;
  background: #f8fbf4;
}

.event25-stats strong {
  display: block;
  color: var(--green);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 0.95;
}

.event25-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
}

.event25-program {
  display: grid;
  gap: 1px;
  padding: 1px clamp(24px, 7vw, 110px);
  background: var(--line);
}

.event25-day {
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 62px);
  background: var(--white);
}

.event25-day-reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
}

.event25-day-reverse img {
  grid-column: 2;
  grid-row: 1;
}

.event25-day-reverse div {
  grid-column: 1;
  grid-row: 1;
}

.event25-day img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(7, 64, 34, 0.13);
}

.event25-day span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  text-transform: uppercase;
}

.event25-day h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.event25-day p,
.event25-day li,
.event25-card p,
.event25-speaker p {
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  line-height: 1.75;
}

.event25-day p {
  margin: 20px 0;
}

.event25-day ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.event25-impact,
.event25-speakers {
  padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px);
}

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

.event25-impact .event25-section-heading h2 {
  color: var(--white);
}

.event25-section-heading {
  max-width: 940px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.event25-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.event25-card {
  min-height: 330px;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, background 220ms ease;
}

.event25-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.event25-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #b9dfc8;
  font-family: Antonio, sans-serif;
}

.event25-card h3,
.event25-speaker h3 {
  margin: 0 0 14px;
  font-weight: 400;
  line-height: 1.12;
}

.event25-card h3 {
  color: var(--white);
  font-size: clamp(27px, 2.7vw, 40px);
}

.event25-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.event25-speakers {
  background: var(--white);
}

.event25-speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.event25-speaker {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(7, 64, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.event25-speaker:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(7, 64, 34, 0.16);
}

.event25-speaker img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.event25-speaker h3 {
  padding: 18px 18px 0;
  color: var(--deep);
  font-size: 24px;
}

.event25-speaker p {
  margin: 0;
  padding: 0 18px 22px;
  font-size: 14px;
}

.event25-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: clamp(58px, 8vw, 104px) clamp(24px, 7vw, 110px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: 24px;
  background: var(--soft);
}

.event25-cta p {
  color: var(--green);
}

@keyframes event25Float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(-1deg); }
}

@keyframes event25Spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .event25-impact-grid,
  .event25-speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .event25-hero,
  .event25-overview,
  .event25-day,
  .event25-day-reverse,
  .event25-cta {
    grid-template-columns: 1fr;
  }

  .event25-hero {
    min-height: auto;
  }

  .event25-hero-media {
    min-height: 520px;
  }

  .event25-day-reverse img,
  .event25-day-reverse div {
    grid-column: auto;
    grid-row: auto;
  }

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

  .event25-cta {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .event25-hero {
    padding-top: 52px;
  }

  .event25-hero-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .event25-hero-media {
    min-height: 380px;
  }

  .event25-hero-main {
    width: 94%;
    height: 72%;
  }

  .event25-hero-float {
    width: 54%;
    height: 34%;
    border-width: 5px;
  }

  .event25-hero-badge {
    right: 0;
    max-width: 220px;
    padding: 14px;
  }

  .event25-stats,
  .event25-impact-grid,
  .event25-speaker-grid {
    grid-template-columns: 1fr;
  }

  .event25-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event25-hero::before,
  .event25-hero-main {
    animation: none;
  }
}

/* Redesigned 2026 Innovate Event page */
.event26-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  grid-template-rows: 1fr auto;
  gap: clamp(34px, 5vw, 78px);
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(126px, 12vw, 176px) clamp(24px, 7vw, 110px) clamp(30px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(4, 31, 23, 0.94), rgba(4, 31, 23, 0.8) 42%, rgba(4, 31, 23, 0.18) 74%, rgba(4, 31, 23, 0.02)),
    url("assets/innovate2026-1.png") center right / cover no-repeat,
    #062d21;
}

.event26-hero::before,
.event26-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.event26-hero::before {
  inset: 86px clamp(24px, 7vw, 110px) auto auto;
  width: clamp(180px, 18vw, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(233, 185, 54, 0.38);
  border-radius: 50%;
  animation: event26Spin 26s linear infinite;
}

.event26-hero::after {
  inset: auto auto 0 0;
  width: 100%;
  height: 34%;
  background: linear-gradient(0deg, rgba(6, 45, 33, 0.92), transparent);
}

.event26-hero-copy,
.event26-hero-media,
.event26-hero-rail,
.event26-overview,
.event26-sectors,
.event26-sponsors,
.event26-booth,
.event26-speakers,
.event26-cta {
  position: relative;
  z-index: 1;
}

.event26-hero-copy {
  align-self: center;
  max-width: 800px;
  color: var(--white);
}

.event26-hero-copy p,
.event26-section-heading p,
.event26-booth-card p,
.event26-cta p {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event26-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(233, 185, 54, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.event26-hero-copy h1,
.event26-section-heading h2,
.event26-booth-card h2,
.event26-cta h2 {
  margin: 0;
  font-weight: 400;
  line-height: 0.96;
}

.event26-hero-copy h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(62px, 8vw, 126px);
}

.event26-hero-copy h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.event26-subtitle {
  display: block;
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
}

.event26-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px;
  margin: 34px 0 32px;
}

.event26-meta strong {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 12px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 400;
}

.event26-meta span {
  color: rgba(255, 255, 255, 0.58);
  font-family: Antonio, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event26-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.event26-text-link {
  color: var(--white);
  font-family: Antonio, sans-serif;
  font-size: 17px;
  text-decoration: none;
  text-transform: uppercase;
}

.event26-text-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: currentColor;
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 220ms ease;
}

.event26-text-link:hover::after {
  transform: scaleX(1);
}

.event26-hero-media {
  min-height: 610px;
  align-self: center;
}

.event26-image-stage {
  position: relative;
  height: 100%;
  min-height: 610px;
}

.event26-hero-main,
.event26-hero-float {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(2, 35, 24, 0.34);
}

.event26-hero-main {
  inset: 0 0 auto auto;
  width: 86%;
  height: 74%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 36px;
  animation: event26Float 7s ease-in-out infinite;
}

.event26-hero-float {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 42%;
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 28px;
}

.event26-hero-badge {
  position: absolute;
  right: 3%;
  bottom: 8%;
  display: grid;
  gap: 5px;
  min-width: 190px;
  padding: 22px;
  border: 1px solid rgba(7, 64, 34, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 56px rgba(2, 35, 24, 0.18);
}

.event26-hero-badge span {
  color: var(--green);
  font-family: Antonio, sans-serif;
  font-size: 52px;
  line-height: 1;
}

.event26-hero-badge strong {
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 400;
}

.event26-hero-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.event26-hero-rail strong {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  font-family: Antonio, sans-serif;
  font-size: clamp(36px, 4.4vw, 66px);
  font-weight: 400;
  line-height: 0.96;
}

.event26-hero-rail span {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.event26-overview,
.event26-sectors,
.event26-sponsors,
.event26-booth,
.event26-speakers {
  padding: clamp(72px, 9vw, 126px) clamp(24px, 7vw, 110px);
}

.event26-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  background: var(--white);
}

.event26-section-heading {
  max-width: 960px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.event26-section-heading h2,
.event26-booth-card h2,
.event26-cta h2 {
  color: var(--deep);
  font-size: clamp(40px, 5vw, 76px);
}

.event26-overview .event26-section-heading {
  margin-bottom: 0;
}

.event26-overview-copy {
  display: grid;
  gap: 20px;
  align-content: center;
}

.event26-overview-copy p,
.event26-card p,
.event26-sponsor p,
.event26-booth-card span,
.event26-speaker p {
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  line-height: 1.75;
}

.event26-overview-copy p {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 21px);
}

.event26-sectors {
  background: #f5f8f1;
}

.event26-sector-grid,
.event26-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.event26-card,
.event26-sponsor {
  border: 1px solid rgba(7, 64, 34, 0.12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(7, 64, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.event26-card {
  min-height: 330px;
  padding: clamp(26px, 3vw, 38px);
}

.event26-card:hover,
.event26-sponsor:hover,
.event26-speaker:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 76px rgba(7, 64, 34, 0.16);
  border-color: rgba(46, 139, 87, 0.28);
}

.event26-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--gold);
  font-family: Antonio, sans-serif;
}

.event26-card h3,
.event26-sponsor h3,
.event26-speaker h3 {
  margin: 0 0 14px;
  color: var(--deep);
  font-weight: 400;
  line-height: 1.08;
}

.event26-card h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.event26-card p,
.event26-sponsor p,
.event26-speaker p {
  margin: 0;
}

.event26-sponsors {
  background: var(--deep);
}

.event26-sponsors .event26-section-heading h2 {
  color: var(--white);
}

.event26-sponsor {
  min-height: 370px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.event26-sponsor span {
  display: inline-flex;
  margin-bottom: 32px;
  color: #c7e4ce;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event26-sponsor h3 {
  color: var(--white);
  font-size: clamp(44px, 4.6vw, 70px);
}

.event26-sponsor p {
  color: rgba(255, 255, 255, 0.74);
}

.event26-booth {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 26px;
  align-items: stretch;
  background: #f8fbf5;
}

.event26-booth-card,
.event26-stats {
  border-radius: 26px;
  padding: clamp(28px, 5vw, 60px);
}

.event26-booth-card {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(7, 64, 34, 0.08);
}

.event26-booth-card span {
  display: block;
  margin-top: 18px;
  font-size: 17px;
}

.event26-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--deep);
  color: var(--white);
}

.event26-stats strong {
  display: grid;
  align-content: center;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-family: Antonio, sans-serif;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 400;
  line-height: 0.95;
}

.event26-stats strong:first-child {
  border-left: 0;
}

.event26-stats span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
}

.event26-speakers {
  background: var(--white);
}

.event26-speaker-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.event26-speaker {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 64, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.event26-speaker img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.event26-speaker h3 {
  padding: 17px 17px 0;
  font-size: 23px;
}

.event26-speaker p {
  padding: 0 17px 22px;
  font-size: 13.5px;
}

.event26-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: clamp(58px, 8vw, 104px) clamp(24px, 7vw, 110px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: 26px;
  background: linear-gradient(135deg, #f4f8f1, #ffffff 48%, #eef6ea);
  box-shadow: 0 20px 62px rgba(7, 64, 34, 0.1);
}

@keyframes event26Float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(1deg); }
}

@keyframes event26Spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1240px) {
  .event26-speaker-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .event26-hero,
  .event26-overview,
  .event26-booth,
  .event26-cta {
    grid-template-columns: 1fr;
  }

  .event26-hero {
    min-height: auto;
    background: linear-gradient(180deg, #062d21 0%, #0e4532 56%, #f4f8f1 56.2%, #ffffff 100%);
  }

  .event26-hero-media {
    min-height: 540px;
  }

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

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

  .event26-stats strong,
  .event26-stats strong:first-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .event26-stats strong:first-child {
    border-top: 0;
  }

  .event26-cta {
    justify-items: start;
  }
}

@media (max-width: 700px) {
  .event26-hero {
    padding-top: 54px;
  }

  .event26-hero-copy h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .event26-hero-media {
    min-height: 390px;
  }

  .event26-hero-main {
    width: 94%;
    height: 72%;
    border-radius: 24px;
  }

  .event26-hero-float {
    width: 58%;
    height: 36%;
    border-width: 5px;
    border-radius: 18px;
  }

  .event26-hero-badge {
    right: 0;
    max-width: 210px;
    min-width: 0;
    padding: 15px;
  }

  .event26-sector-grid,
  .event26-sponsor-grid,
  .event26-speaker-grid {
    grid-template-columns: 1fr;
  }

  .event26-card,
  .event26-sponsor {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event26-hero::before,
  .event26-hero-main {
    animation: none;
  }
}

/* 2026 hero responsive refinements */
@media (max-width: 980px) {
  .event26-hero {
    grid-template-rows: auto auto auto;
    padding-top: 118px;
    background:
      linear-gradient(180deg, rgba(4, 31, 23, 0.96), rgba(4, 31, 23, 0.78) 56%, rgba(4, 31, 23, 0.92)),
      url("assets/innovate2026-1.png") center top / cover no-repeat,
      #062d21;
  }

  .event26-hero-copy {
    max-width: 100%;
  }

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

  .event26-hero-media,
  .event26-image-stage {
    min-height: 500px;
  }

  .event26-hero-main {
    width: 82%;
    height: 68%;
  }

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

@media (max-width: 700px) {
  .event26-hero {
    padding: 102px 18px 34px;
  }

  .event26-hero-copy h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  .event26-subtitle {
    font-size: 17px;
  }

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

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

  .event26-actions .btn,
  .event26-text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .event26-text-link::after {
    display: none;
  }

  .event26-hero-media,
  .event26-image-stage {
    min-height: 380px;
  }

  .event26-hero-main {
    inset: 0 auto auto 0;
    width: 100%;
    height: 70%;
  }

  .event26-hero-float {
    left: 0;
    bottom: 10px;
    width: 62%;
    height: 32%;
  }

  .event26-hero-badge {
    right: 0;
    bottom: 4px;
  }

  .event26-hero-rail strong {
    padding: 18px;
    font-size: 42px;
  }
}

/* 2026 hero aligned with 2025 event style */
.event26-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  grid-template-rows: auto;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(72px, 9vw, 124px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background: linear-gradient(135deg, #071f15 0%, #0c4b2d 48%, #126d40 100%);
  color: var(--white);
}

.event26-hero::before {
  content: "";
  position: absolute;
  inset: 7% -14% auto auto;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: event26Spin 24s linear infinite;
}

.event26-hero::after,
.event26-hero-rail,
.event26-image-stage {
  display: none;
}

.event26-hero-copy,
.event26-hero-media {
  position: relative;
  z-index: 1;
}

.event26-hero-copy {
  align-self: auto;
  max-width: none;
  color: var(--white);
}

.event26-hero-copy p {
  margin: 0 0 16px;
  color: #b9dfc8;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event26-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.94;
}

.event26-hero-copy > strong {
  display: inline-flex;
  margin-top: 20px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.event26-hero-copy > span {
  display: block;
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.7;
}

.event26-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  max-width: 650px;
  margin: 28px 0 0;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Shippori Mincho", serif;
}

.event26-meta strong {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 400;
}

.event26-meta span {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.event26-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.event26-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.event26-hero-media {
  min-height: 620px;
  align-self: auto;
}

.event26-hero-main,
.event26-hero-float {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.event26-hero-main {
  top: 2%;
  right: 0;
  width: 86%;
  height: 72%;
  border: 0;
  border-radius: 28px;
  animation: event26Float 7s ease-in-out infinite;
}

.event26-hero-float {
  left: 0;
  bottom: 4%;
  width: 48%;
  height: 34%;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
}

.event26-hero-badge {
  position: absolute;
  right: 4%;
  bottom: 9%;
  display: block;
  max-width: 270px;
  min-width: 0;
  padding: 18px 20px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.45;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

@media (max-width: 980px) {
  .event26-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: linear-gradient(135deg, #071f15 0%, #0c4b2d 52%, #126d40 100%);
  }

  .event26-hero-media {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .event26-hero {
    padding: 58px 18px 54px;
  }

  .event26-hero-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .event26-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .event26-hero-media {
    min-height: 380px;
  }

  .event26-hero-main {
    width: 94%;
    height: 72%;
    border-radius: 24px;
  }

  .event26-hero-float {
    width: 58%;
    height: 36%;
    border-width: 5px;
    border-radius: 18px;
  }

  .event26-hero-badge {
    right: 0;
    max-width: 210px;
    padding: 15px;
  }
}

/* Redesigned index page */
.home-hero.hero-slider {
  min-height: calc(100vh - 92px);
  background: #061d14;
}

.home-hero .hero-slide {
  padding: clamp(86px, 10vw, 148px) clamp(24px, 7vw, 110px);
  background-image:
    linear-gradient(90deg, rgba(2, 15, 10, 0.86) 0%, rgba(2, 15, 10, 0.72) 42%, rgba(2, 15, 10, 0.36) 72%, rgba(2, 15, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(2, 15, 10, 0.62), rgba(2, 15, 10, 0.1) 44%),
    var(--bg);
  background-position: center;
}

.home-hero .slide-content {
  max-width: 790px;
}

.home-kicker,
.home-event-copy > p,
.home-intro-copy > p,
.home-program-card > p,
.home-section-head p {
  margin: 0 0 14px;
  color: #b9dfc8;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero .slide-content h1 {
  max-width: 820px;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  text-transform: none;
}

.home-hero .slide-content p:not(.home-kicker) {
  max-width: 670px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.72;
}

.home-hero-actions,
.home-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero .btn-outline,
.home-event .btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.home-hero-panel {
  position: absolute;
  right: clamp(22px, 7vw, 110px);
  bottom: clamp(64px, 8vw, 92px);
  z-index: 3;
  display: grid;
  gap: 7px;
  max-width: 330px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.home-hero-panel strong {
  color: var(--white);
  font-family: Antonio, sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.9;
}

.home-hero-panel span,
.home-hero-panel p {
  font-family: "Shippori Mincho", serif;
}

.home-hero-panel span {
  color: #b9dfc8;
  text-transform: uppercase;
}

.home-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.home-sponsors {
  padding: 28px 0;
  background: #f8fbf5;
}

.home-event {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(74px, 9vw, 124px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.home-event-copy h2,
.home-intro-copy h2,
.home-program-card h2,
.home-section-head h2 {
  margin: 0;
  color: var(--deep);
  font-family: Antonio, sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 0.98;
}

.home-event-copy > span {
  display: inline-flex;
  margin: 20px 0 22px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
}

.home-event-copy p:last-of-type,
.home-intro > p,
.home-program-card span,
.home-video .about-copy p {
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.78;
}

.home-event-media {
  position: relative;
  min-height: 560px;
}

.home-event-media img {
  width: 88%;
  height: 86%;
  margin-left: auto;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(7, 64, 34, 0.18);
}

.home-event-card {
  position: absolute;
  left: 0;
  bottom: 24px;
  display: grid;
  gap: 6px;
  width: min(260px, 52%);
  padding: 26px;
  border-radius: 20px;
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(7, 64, 34, 0.2);
}

.home-event-card strong {
  font-family: Antonio, sans-serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 0.9;
}

.home-event-card span {
  font-family: "Shippori Mincho", serif;
  text-transform: uppercase;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(70px, 9vw, 118px) clamp(24px, 7vw, 110px);
  background: #f5f8f1;
}

.home-values.values {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 7vw, 110px);
  background: var(--deep);
}

.home-values .value-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-values .value-card img {
  border-radius: 0;
}

.home-values .value-card h2 {
  font-weight: 400;
  text-transform: none;
}

.home-program {
  padding: clamp(70px, 9vw, 116px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.home-program-card {
  max-width: 980px;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 24px;
  background: linear-gradient(135deg, #f4f8f1, #ffffff 54%, #eef6ea);
  box-shadow: 0 20px 62px rgba(7, 64, 34, 0.1);
}

.home-program-card span {
  display: block;
  max-width: 760px;
  margin: 20px 0 28px;
}

.home-video.about-video {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 7vw, 110px);
}

.home-team.team {
  padding: clamp(70px, 9vw, 116px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.home-section-head {
  max-width: 780px;
  margin: 0 auto clamp(28px, 5vw, 54px);
  text-align: center;
}

.home-section-head p {
  color: var(--green);
}

.home-team > .btn {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
}

.home-watch.watch {
  padding: clamp(70px, 9vw, 116px) clamp(24px, 7vw, 110px);
}

@media (max-width: 1024px) {
  .home-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin: auto clamp(24px, 7vw, 110px) 86px;
  }

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

  .home-event-media {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .home-hero.hero-slider {
    min-height: 640px;
  }

  .home-hero .hero-slide {
    padding: 72px 20px 130px;
  }

  .home-hero .slide-content h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .home-hero-panel {
    margin: -112px 18px 70px;
    padding: 18px;
  }

  .home-hero-panel strong {
    font-size: 44px;
  }

  .home-hero-actions,
  .home-event-actions {
    align-items: stretch;
  }

  .home-hero-actions .btn,
  .home-event-actions .btn {
    width: 100%;
  }

  .home-event-media {
    min-height: 360px;
  }

  .home-event-media img {
    width: 100%;
    height: 76%;
    border-radius: 20px;
  }

  .home-event-card {
    width: 72%;
    padding: 20px;
  }

  .home-program-card {
    border-radius: 18px;
  }

  .home-team > .btn {
    width: 100%;
  }
}

.home-event .btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--deep);
}

/* Index page requested refinements */
.home-event-copy p:last-of-type {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.58;
}

.home-intro-copy h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
}

/* Redesigned about-us page */
.about-redesign-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  padding: clamp(82px, 10vw, 138px) clamp(24px, 7vw, 110px);
  background: linear-gradient(135deg, #071f15 0%, #0c4b2d 48%, #126d40 100%);
  color: var(--white);
}

.about-redesign-hero::before {
  content: "";
  position: absolute;
  inset: 9% -14% auto auto;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: event26Spin 24s linear infinite;
}

.about-redesign-copy,
.about-redesign-media,
.about-redesign-mission,
.about-redesign-pillars,
.about-redesign-story,
.about-redesign-values,
.about-redesign-cta {
  position: relative;
  z-index: 1;
}

.about-redesign-copy p,
.about-section-heading p,
.about-redesign-story-copy > p,
.about-values-copy > p,
.about-redesign-cta p {
  margin: 0 0 16px;
  color: #b9dfc8;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-redesign-copy h1,
.about-section-heading h2,
.about-redesign-story-copy h2,
.about-values-copy h2,
.about-redesign-cta h2 {
  margin: 0;
  font-family: Antonio, sans-serif;
  font-weight: 400;
  line-height: 0.98;
}

.about-redesign-copy h1 {
  max-width: 800px;
  color: var(--white);
  font-size: clamp(48px, 6.6vw, 96px);
}

.about-redesign-copy > span {
  display: block;
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.72;
}

.about-redesign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.about-redesign-hero .btn-outline,
.about-redesign-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.about-redesign-media {
  min-height: 610px;
}

.about-redesign-main,
.about-redesign-float {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.about-redesign-main {
  top: 0;
  right: 0;
  width: 86%;
  height: 74%;
  border-radius: 30px;
  animation: event26Float 7s ease-in-out infinite;
}

.about-redesign-float {
  left: 0;
  bottom: 3%;
  width: 50%;
  height: 34%;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
}

.about-redesign-badge {
  position: absolute;
  right: 4%;
  bottom: 9%;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.about-redesign-badge strong {
  color: var(--green);
  font-family: Antonio, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 0.9;
}

.about-redesign-badge span {
  font-family: "Shippori Mincho", serif;
  line-height: 1.45;
}

.about-redesign-mission {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(74px, 9vw, 124px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.about-section-heading h2,
.about-redesign-story-copy h2,
.about-values-copy h2,
.about-redesign-cta h2 {
  color: var(--deep);
  font-size: clamp(38px, 5vw, 72px);
}

.about-section-heading p,
.about-redesign-story-copy > p,
.about-values-copy > p,
.about-redesign-cta p {
  color: var(--green);
}

.about-redesign-text {
  display: grid;
  gap: 20px;
  align-content: center;
}

.about-redesign-text p,
.about-pillar p,
.about-redesign-story-copy span,
.about-values-copy p {
  margin: 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.72;
}

.about-redesign-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(24px, 7vw, 110px) clamp(76px, 9vw, 124px);
  background: var(--white);
}

.about-pillar {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(7, 64, 34, 0.12);
  border-radius: 20px;
  background: #f8fbf5;
  box-shadow: 0 18px 54px rgba(7, 64, 34, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(7, 64, 34, 0.14);
}

.about-pillar span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--deep);
  color: #b9dfc8;
  font-family: Antonio, sans-serif;
}

.about-pillar h3 {
  margin: 0 0 14px;
  color: var(--deep);
  font-family: Antonio, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.about-redesign-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(76px, 9vw, 124px) clamp(24px, 7vw, 110px);
  background: #f5f8f1;
}

.about-redesign-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  object-fit: cover;
  background: #000;
  box-shadow: 0 28px 78px rgba(7, 64, 34, 0.18);
}

.about-redesign-story-copy {
  display: grid;
  gap: 18px;
}

.about-redesign-values {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(76px, 9vw, 124px) clamp(24px, 7vw, 110px);
  background: var(--white);
}

.about-values-image img {
  width: 100%;
  min-height: 560px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 28px 78px rgba(7, 64, 34, 0.14);
}

.about-values-copy {
  display: grid;
  gap: 20px;
}

.about-redesign-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(24px, 7vw, 110px) clamp(76px, 9vw, 124px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: 26px;
  background: var(--deep);
  color: var(--white);
}

.about-redesign-cta h2 {
  color: var(--white);
}

.about-redesign-cta .about-redesign-actions {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .about-redesign-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-redesign-hero,
  .about-redesign-mission,
  .about-redesign-story,
  .about-redesign-values,
  .about-redesign-cta {
    grid-template-columns: 1fr;
  }

  .about-redesign-hero {
    min-height: auto;
  }

  .about-redesign-media {
    min-height: 520px;
  }

  .about-redesign-cta {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .about-redesign-hero {
    padding: 58px 18px 54px;
  }

  .about-redesign-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .about-redesign-media {
    min-height: 390px;
  }

  .about-redesign-main {
    width: 94%;
    height: 72%;
    border-radius: 22px;
  }

  .about-redesign-float {
    width: 58%;
    height: 34%;
    border-width: 5px;
    border-radius: 18px;
  }

  .about-redesign-badge {
    right: 0;
    max-width: 210px;
    padding: 15px;
  }

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

  .about-values-image img {
    min-height: 320px;
  }

  .about-redesign-actions,
  .about-redesign-cta .about-redesign-actions {
    width: 100%;
  }

  .about-redesign-actions .btn {
    width: 100%;
  }
}

/* About page requested typography refinements */
.about-redesign-copy h1 {
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1.02;
}

.about-section-heading h2,
.about-redesign-story-copy h2,
.about-values-copy h2 {
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.06;
}

.about-redesign-cta h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
}

.about-values-copy p {
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 680px) {
  .about-redesign-copy h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .about-section-heading h2,
  .about-redesign-story-copy h2,
  .about-values-copy h2,
  .about-redesign-cta h2 {
    font-size: clamp(30px, 9vw, 44px);
  }
}

/* Index team static single-row layout */
.home-team {
  overflow: visible;
}

.home-team .team-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: 100%;
  gap: 10px;
  align-items: start;
}

.home-team .team-card {
  width: auto;
  padding: 0;
  text-align: center;
}

.home-team .team-card img {
  width: 100%;
  max-width: 178px;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.home-team .team-card h3 {
  margin-top: 12px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.08;
}

.home-team .team-card p {
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .home-team .team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-team .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .home-team .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Get involved requested heading refinement */
.involved-path-copy h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
}

@media (max-width: 680px) {
  .involved-path-copy h2 {
    font-size: clamp(30px, 9vw, 44px);
  }
}

/* Index watch videos single-row layout */
.home-watch .video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1024px) {
  .home-watch .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-watch .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer social icons */
.footer-social-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-simple a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  opacity: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social-simple a:hover {
  background: var(--white);
  color: var(--deep);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-social-simple svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

/* 2024 masonry gallery page */
.gallery24-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(78px, 9vw, 132px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background: linear-gradient(135deg, #071f15 0%, #0c4b2d 48%, #126d40 100%);
  color: var(--white);
}

.gallery24-hero-copy p,
.gallery24-intro-copy p {
  margin: 0 0 16px;
  color: #b9dfc8;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery24-hero-copy h1,
.gallery24-intro-copy h2 {
  margin: 0;
  font-family: Antonio, sans-serif;
  font-weight: 400;
  line-height: 0.98;
}

.gallery24-hero-copy h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(48px, 6.8vw, 98px);
}

.gallery24-hero-copy span {
  display: block;
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.72;
}

.gallery24-hero-stack {
  position: relative;
  min-height: 560px;
}

.gallery24-hero-stack img {
  position: absolute;
  width: 62%;
  height: 58%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.gallery24-hero-stack img:nth-child(1) {
  top: 0;
  right: 0;
}

.gallery24-hero-stack img:nth-child(2) {
  left: 0;
  top: 21%;
  border: 7px solid rgba(255, 255, 255, 0.92);
}

.gallery24-hero-stack img:nth-child(3) {
  right: 12%;
  bottom: 0;
  width: 48%;
  height: 34%;
  border: 7px solid rgba(255, 255, 255, 0.92);
}

.gallery24-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(64px, 8vw, 104px) clamp(24px, 7vw, 110px) clamp(30px, 5vw, 56px);
  background: var(--white);
}

.gallery24-intro-copy p {
  color: var(--green);
}

.gallery24-intro-copy h2 {
  color: var(--deep);
  font-size: clamp(38px, 5vw, 70px);
}

.gallery24-intro > p {
  margin: 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.75;
}

.gallery24-masonry {
  column-count: 4;
  column-gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(78px, 9vw, 124px);
  background: var(--white);
}

.gallery24-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 18px;
  background: var(--soft);
  box-shadow: 0 18px 50px rgba(7, 64, 34, 0.1);
  transform: translateY(34px) scale(0.98);
  transition: opacity 700ms ease, transform 700ms ease, box-shadow 220ms ease;
}

.gallery24-item.is-visible {
  transform: translateY(0) scale(1);
}

.gallery24-item img {
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery24-item:hover {
  box-shadow: 0 26px 70px rgba(7, 64, 34, 0.2);
}

.gallery24-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.gallery24-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(7, 64, 34, 0.76);
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery24-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .gallery24-masonry {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .gallery24-hero,
  .gallery24-intro {
    grid-template-columns: 1fr;
  }

  .gallery24-hero-stack {
    min-height: 480px;
  }

  .gallery24-masonry {
    column-count: 2;
  }
}

@media (max-width: 620px) {
  .gallery24-hero {
    padding-top: 58px;
  }

  .gallery24-hero-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .gallery24-hero-stack {
    min-height: 360px;
  }

  .gallery24-hero-stack img {
    border-radius: 18px;
  }

  .gallery24-masonry {
    column-count: 1;
    column-gap: 0;
  }
}

/* 2024 gallery image path/layout fix */
.gallery24-masonry {
  columns: 4 260px;
  column-gap: 18px;
}

.gallery24-item {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  page-break-inside: avoid;
  background: #eef6ea;
}

.gallery24-item img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

@media (max-width: 620px) {
  .gallery24-masonry {
    columns: 1;
  }
}

/* News redesign */
.news-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: flex-end;
  padding: clamp(92px, 12vw, 150px) clamp(22px, 7vw, 110px) clamp(58px, 8vw, 96px);
  overflow: hidden;
  background: #071b15;
}

.news-hero-bg,
.news-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.news-hero-bg img {
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 18, 12, 0.88), rgba(2, 18, 12, 0.58) 48%, rgba(2, 18, 12, 0.32)), linear-gradient(0deg, rgba(2, 18, 12, 0.82), rgba(2, 18, 12, 0.08) 58%);
}

.news-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--white);
}

.news-hero-content p,
.news-kicker,
.news-section-head p,
.news-post-body span {
  margin: 0 0 14px;
  color: #b7e0c3;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-hero-content h1 {
  margin: 0;
  max-width: 780px;
  color: var(--white);
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
}

.news-hero-content span {
  display: block;
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.65;
}

.news-redesign-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 24px;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 90px);
  background: #f7fbf5;
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 64, 34, 0.12);
  background: var(--white);
}

.news-featured img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.news-featured div {
  padding: clamp(28px, 5vw, 58px);
}

.news-featured h2,
.news-section-head h2 {
  margin: 0;
  color: var(--deep);
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 400;
  line-height: 1;
}

.news-featured p:not(.news-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  line-height: 1.75;
}

.news-featured a,
.news-post-body a {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--green);
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-stat-panel {
  display: grid;
  gap: 1px;
  align-self: stretch;
  background: rgba(7, 64, 34, 0.12);
}

.news-stat-panel div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  padding: 30px;
  background: #0b3b29;
  color: var(--white);
}

.news-stat-panel strong {
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.95;
}

.news-stat-panel span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
}

.news-posts-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 6vw, 90px);
  background: var(--white);
}

.news-section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.news-section-head p,
.news-post-body span {
  color: var(--green);
}

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

.news-post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(7, 64, 34, 0.12);
  background: #fbfdf9;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.news-post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 64, 34, 0.28);
  box-shadow: 0 24px 70px rgba(7, 64, 34, 0.14);
}

.news-post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.news-post-body h3 {
  margin: 0;
  color: var(--deep);
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.05;
}

.news-post-body p {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  line-height: 1.68;
}

.news-post-body a {
  margin-top: auto;
  padding-top: 24px;
}

.news-watch {
  background: #f7fbf5;
}

@media (max-width: 1100px) {
  .news-redesign-intro,
  .news-featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .news-hero {
    min-height: 82vh;
    padding-top: 96px;
  }

  .news-hero-content h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .news-redesign-intro,
  .news-posts-section {
    padding-inline: 16px;
  }

  .news-featured img {
    min-height: 260px;
  }

  .news-post-grid {
    grid-template-columns: 1fr;
  }
}

/* News single story pages */
.story-page {
  background: #f7fbf5;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(88px, 10vw, 136px) clamp(22px, 7vw, 104px) clamp(54px, 7vw, 86px);
  background: #092b20;
  color: var(--white);
}

.story-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  color: #b7e0c3;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-hero-copy > p {
  margin: 0 0 14px;
  color: #b7e0c3;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--white);
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(42px, 6.3vw, 82px);
  font-weight: 400;
  line-height: 1;
}

.story-hero-copy span {
  display: block;
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.68;
}

.story-hero-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.story-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(58px, 8vw, 104px) clamp(22px, 7vw, 104px);
  background: var(--white);
}

.story-content {
  max-width: 780px;
}

.story-content p {
  margin: 0 0 24px;
  color: var(--text);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.85;
}

.story-source-card {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(7, 64, 34, 0.14);
  background: #f7fbf5;
}

.story-source-card p {
  margin: 0 0 14px;
  color: var(--green);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-source-card h2 {
  margin: 0;
  color: var(--deep);
  font-family: Antonio, Roboto, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.story-source-card span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  line-height: 1.7;
}

.story-source-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--green);
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .story-hero,
  .story-content-wrap {
    grid-template-columns: 1fr;
  }

  .story-source-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .story-hero {
    padding-top: 92px;
  }

  .story-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .story-hero-image {
    min-height: 260px;
  }
}
