/* ------------------------------------------------------------------
   Nextgen Leader Group — global layout (header + footer)
   ------------------------------------------------------------------ */

:root {
  --color-text: #1a1a1a;
  --color-text-muted: #4a4a4a;
  --color-border-light: rgba(0, 0, 0, 0.1);
  --footer-dark: #1a1a1a;
  --footer-text: #ffffff;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --header-pad-x: clamp(1.25rem, 5vw, 3rem);
  --nav-gap: clamp(1rem, 2.5vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

/* ========== Header ========== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--header-pad-x);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 260;
}

/* Figure 1: on top of banner — light translucent bar for clearer logo / nav */
body.has-banner .site-header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.has-banner .site-logo img {
  filter: none;
}

/* Figure 2: solid bar */
body:not(.has-banner) .site-header {
  background: #fff;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.site-logo img {
  height: 44px;
  width: auto;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  position: relative;
  z-index: 261;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  border-radius: 1px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 88vw);
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    padding: 5rem 1.25rem 2rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 250;
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 240;
}

body.nav-open .nav-backdrop {
  display: block;
}

.site-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 0.9rem;
  }

  .site-nav > ul > li {
    border-bottom: 1px solid var(--color-border-light);
  }
}

.site-nav a,
.site-nav .nav-dd__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: inherit;
  cursor: pointer;
  text-align: left;
}

.site-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 0.35rem;
  text-decoration-thickness: 1px;
  color: var(--color-text);
}

.chev {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.has-dropdown.is-open .chev,
.has-dropdown:hover .chev {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .has-dropdown:hover .chev {
    transform: none;
  }

  .has-dropdown.is-open .chev {
    transform: rotate(180deg);
  }
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
  min-width: 200px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 120;
}

.has-dropdown.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* "More" etc.: submenu aligned left so it does not overflow off the right edge */
@media (min-width: 901px) {
  .has-dropdown--menu-left .submenu {
    left: auto;
    right: 0;
  }
}

@media (max-width: 900px) {
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
    border-left: 2px solid var(--color-border-light);
    margin-left: 0.25rem;
  }

  .has-dropdown.is-open .submenu {
    display: block;
  }
}

.submenu li a {
  display: block;
  padding: 0.55rem 1.25rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-text);
}

.submenu li + li.has-sep-before {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 0.35rem;
  padding-top: 0.35rem;
}

@media (max-width: 900px) {
  .submenu li a {
    padding: 0.4rem 0;
  }
}

/* ========== Main / hero carousel ========== */
main {
  flex: 1;
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 88vh;
  overflow: hidden;
  outline: none;
}

.hero-carousel:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.85);
}

.hero-carousel__bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.hero-carousel__bg.is-active {
  opacity: 1;
  z-index: 1;
}

/* Tech-style mesh overlay (reference fig. 1) */
.hero-carousel__mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  background-image: radial-gradient(circle at 18% 32%, rgba(120, 190, 255, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 78% 58%, rgba(80, 140, 220, 0.18) 0%, transparent 48%),
    linear-gradient(rgba(40, 90, 160, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 90, 160, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
}

.hero-carousel__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}

.hero-carousel__content {
  position: relative;
  z-index: 4;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 7rem var(--header-pad-x) clamp(2rem, 5vw, 3.5rem);
  padding-left: calc(var(--header-pad-x) + 1.25rem);
  max-width: 52rem;
}

.hero-carousel__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-carousel__tagline {
  margin: 0 0 1.35rem;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  max-width: 36ch;
}

.hero-carousel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-carousel__cta:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  font-size: 1.75rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.38);
}

.hero-carousel__arrow--prev {
  left: clamp(0.75rem, 3vw, 1.5rem);
}

.hero-carousel__arrow--next {
  right: clamp(0.75rem, 3vw, 1.5rem);
}

.hero-carousel__strip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  width: 10px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.hero-carousel__strip-seg {
  flex: 1;
  min-height: 0;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease, flex-grow 0.25s ease, filter 0.25s ease;
}

.hero-carousel__strip-seg:nth-child(1) {
  background: linear-gradient(180deg, #c94b4b, #a83838);
}

.hero-carousel__strip-seg:nth-child(2) {
  background: linear-gradient(180deg, #e8a838, #c98a2a);
}

.hero-carousel__strip-seg:nth-child(3) {
  background: linear-gradient(180deg, #3d8f6e, #2d6b52);
}

.hero-carousel__strip-seg:nth-child(4) {
  background: linear-gradient(180deg, #4a7ab8, #355f96);
}

.hero-carousel__strip-seg.is-active {
  opacity: 1;
  flex: 1.35;
  filter: brightness(1.08);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .hero-carousel__strip {
    width: 8px;
  }

  .hero-carousel__content {
    padding-left: calc(var(--header-pad-x) + 0.5rem);
  }

  .hero-carousel__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== Home page sections (CMS home_*) ========== */

/* Modules 2 / 4: white block title + body (WHO WE ARE / OUR PURPOSE) */
.home-text-block {
  background: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--header-pad-x);
}

.home-text-block__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
}

.home-text-block__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  line-height: 1.25;
  min-height: 1.2em;
}

.home-text-block__body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  max-width: 100%;
  white-space: pre-line;
  min-height: 3rem;
}

.home-text-block__body:empty,
.home-text-block__title:empty {
  min-height: 0;
}

/* Module 3: full-width image */
.home-fullbleed {
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #e8eaed;
}

.home-fullbleed__img {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

.home-fullbleed--empty .home-fullbleed__img {
  display: none;
}

.home-fullbleed--empty::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 380px);
  background: linear-gradient(105deg, #dfe3e8 0%, #eceef2 45%, #e2e6eb 100%);
}

/* Module 5: background + outlined CTA copy — wide letterbox */
.home-cta {
  position: relative;
  min-height: clamp(6.5rem, 14vw, 9.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2.5vw, 1.15rem) var(--header-pad-x);
  background-color: #6b7280;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-cta--empty-bg {
  background-image: linear-gradient(135deg, #64748b 0%, #94a3b8 50%, #78716c 100%);
}

.home-cta__scrim {
  position: absolute;
  inset: 0;
  /* Slight dim for white type; too strong hides the background */
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.home-cta__link {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  display: block;
  max-width: min(920px, 100%);
}

.home-cta__frame {
  border: 1px solid rgba(255, 255, 255, 0.92);
  padding: clamp(0.55rem, 2vw, 0.85rem) clamp(1rem, 3.5vw, 1.65rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.home-cta__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.home-cta__dash {
  display: none;
  width: 2rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .home-cta__dash {
    display: block;
  }
}

.home-cta__headline {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.65vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  max-width: 36rem;
}

.home-cta__btn {
  margin-top: 0.6rem;
  display: inline-block;
  padding: 0.45rem 1.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-cta__link:hover .home-cta__btn {
  background: rgba(255, 255, 255, 0.15);
}

/* Module 6: map + title + country list */
.home-world {
  background: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--header-pad-x);
  text-align: center;
}

.home-world__map {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 0;
}

.home-world__map img {
  width: 100%;
  height: auto;
  display: block;
}

.home-world__map--placeholder {
  aspect-ratio: 16 / 9;
  max-height: 320px;
  margin-left: auto;
  margin-right: auto;
  background:
    radial-gradient(circle at 20% 35%, rgba(180, 80, 140, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 75% 40%, rgba(180, 80, 140, 0.28) 0%, transparent 40%),
    radial-gradient(circle at 50% 70%, rgba(180, 80, 140, 0.22) 0%, transparent 35%),
    linear-gradient(160deg, #e8e9ec 0%, #f4f4f6 100%);
  border-radius: 4px;
}

.home-world__title {
  margin: 0 auto 1.25rem;
  max-width: 52rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0a;
  line-height: 1.35;
}

.home-world__body {
  margin: 0 auto;
  max-width: 40rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
  color: #555;
  white-space: pre-line;
}

.page-intro {
  padding: 6rem var(--header-pad-x) 2rem;
  max-width: 48rem;
}

.page-intro h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}

/* ========== Events page (CMS: events_page) ========== */
.events-banner {
  width: 100%;
  line-height: 0;
  background: #eef0f3;
}

.events-banner img {
  width: 100%;
  height: clamp(180px, 24vw, 360px);
  object-fit: cover;
  object-position: center;
}

.events-banner--placeholder {
  height: clamp(180px, 24vw, 360px);
  background: linear-gradient(120deg, #eceef2 0%, #f5f6f8 50%, #e8ebf0 100%);
}

.events-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.2rem) var(--header-pad-x) clamp(3rem, 6vw, 4.5rem);
}

.events-head {
  text-align: center;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.events-head__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #111;
}

.events-head__intro {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  color: #444;
  border-top: 1px solid #222;
  padding-top: 0.9rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

.events-grid__card:nth-child(7) {
  grid-column: 1 / -1;
  max-width: min(48%, 520px);
  margin: 0 auto;
}

.events-grid__card-link {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #d8dce2;
}

.events-grid__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.events-grid__img--placeholder {
  background: linear-gradient(135deg, #c8cfd8 0%, #e1e6eb 100%);
}

.events-grid__overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.2) 62%, transparent);
  padding: 1rem 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.events-grid__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.events-grid__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 0.34rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-grid__card:nth-child(7) {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-head__intro {
    font-size: 0.92rem;
  }
}

/* ========== Event detail (static Barclays) ========== */
.event-detail {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem) var(--header-pad-x) clamp(2.4rem, 5vw, 4rem);
}

.event-detail__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(1.6rem, 3.2vw, 2.4rem);
}

.event-detail__hero-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(180deg, rgba(8, 34, 61, 0.14), rgba(5, 12, 20, 0.52)),
    linear-gradient(135deg, #90a5ba, #c0cedb 45%, #8a9db3);
}

.event-detail__hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 0.9rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.28) 65%, transparent);
  text-align: center;
}

.event-detail__hero-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-detail__hero-btn {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  padding: 0.34rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-detail__section {
  margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem);
}

.event-detail__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.8vw, 2.8rem);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-detail__caption {
  margin: 0 0 0.3rem;
  font-family: var(--font-serif);
  font-size: 0.86rem;
  color: #7b4f4f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.event-detail__line {
  height: 1px;
  background: #383838;
  opacity: 0.45;
  margin-bottom: 1rem;
}

.event-detail__img {
  width: 100%;
  height: auto;
  display: block;
}

.event-detail__agenda ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #333;
  line-height: 1.7;
}

.event-detail__step-title {
  margin: 0 0 0.35rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.3vw, 2.4rem);
  font-weight: 400;
  text-transform: uppercase;
}

.event-detail__step-note {
  margin: 0 0 1rem;
  text-align: center;
  color: #555;
}

.event-detail__form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.event-detail__form input,
.event-detail__form textarea {
  width: 100%;
  border: 1px solid #ececec;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.event-detail__form button,
.event-detail__buy-btn {
  justify-self: center;
  display: inline-flex;
  min-width: 220px;
  justify-content: center;
  border: 1px solid #9f8f8f;
  padding: 0.62rem 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  background: #fff;
  color: #6c5c5c;
}

.event-detail__buy-btn {
  width: min(100%, 540px);
  margin: 0 auto;
}

/* ========== Event detail (Columbia static) ========== */
.columbia-detail {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem) var(--header-pad-x) clamp(2.4rem, 5vw, 4rem);
}

.columbia-detail__caption {
  margin: 0 0 0.25rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: #7b4f4f;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.columbia-detail__line {
  height: 1px;
  background: rgba(44, 44, 44, 0.45);
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}

.columbia-detail__partner {
  width: min(100%, 980px);
  display: block;
  margin: 0 auto clamp(1.8rem, 4vw, 2.8rem);
}

.columbia-detail__poster-wrap {
  display: flex;
  justify-content: center;
}

.columbia-detail__poster {
  width: min(100%, 560px);
  height: auto;
  display: block;
}

/* ========== Event detail (Fordham static) ========== */
.fordham-detail {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem) var(--header-pad-x) clamp(2.4rem, 5vw, 4rem);
}

.fordham-detail__section {
  margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem);
}

.fordham-detail__title,
.fordham-detail__subtitle {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #171717;
}

.fordham-detail__title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.fordham-detail__subtitle {
  font-size: clamp(1.3rem, 3.2vw, 2rem);
}

.fordham-detail__lead {
  margin: 0 auto 0.85rem;
  max-width: 860px;
  text-align: center;
  color: #444;
  line-height: 1.65;
}

.fordham-detail__agenda {
  margin: 0 auto;
  max-width: 700px;
  color: #2f2f2f;
  line-height: 1.7;
}

.fordham-guests {
  display: grid;
  gap: 1rem;
}

.fordham-guests__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 1rem;
}

.fordham-guests__item--reverse {
  grid-template-columns: 1fr 220px;
}

.fordham-guests__item img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center 10%;
}

.fordham-guests__item--reverse img {
  order: 2;
  justify-self: end;
}

.fordham-guests__item h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
}

.fordham-guests__item p {
  margin: 0;
  color: #555;
}

.fordham-detail__form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.fordham-detail__form input,
.fordham-detail__form textarea {
  width: 100%;
  border: 1px solid #ececec;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.fordham-detail__form button {
  justify-self: center;
  border: 1px solid #9f8f8f;
  padding: 0.58rem 1.1rem;
  background: #fff;
  color: #6c5c5c;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fordham-detail__sponsors {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 720px) {
  .fordham-guests__item,
  .fordham-guests__item--reverse {
    grid-template-columns: 1fr;
  }

  .fordham-guests__item img,
  .fordham-guests__item--reverse img {
    width: min(100%, 260px);
    height: auto;
    order: initial;
    justify-self: center;
  }

  .fordham-guests__item > div {
    text-align: center;
  }
}

/* ========== Event detail (BDO static) ========== */
.bdo-detail {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem) var(--header-pad-x) clamp(2.4rem, 5vw, 4rem);
}

.bdo-detail__section {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.bdo-detail__title {
  margin: 0 0 0.9rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

.bdo-detail p {
  margin: 0 auto 0.9rem;
  max-width: 920px;
  text-align: center;
  color: #4a4a4a;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

.bdo-detail__italic {
  font-style: italic;
  margin-top: 1.4rem;
}

.bdo-detail ul {
  max-width: 920px;
  margin: 0 auto 1rem;
  color: #3f3f3f;
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.55;
}

.bdo-detail__small {
  max-width: 860px;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
}

.bdo-detail__subtitle {
  max-width: 860px;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bdo-detail__form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.bdo-detail__form input,
.bdo-detail__form textarea {
  width: 100%;
  border: 1px solid #ececec;
  padding: 0.75rem 0.8rem;
  font: inherit;
}

.bdo-detail__form button {
  justify-self: center;
  border: 1px solid #9f8f8f;
  padding: 0.58rem 1.2rem;
  background: #fff;
  color: #6c5c5c;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========== Simple event title pages ========== */
.simple-event-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4rem) var(--header-pad-x) clamp(2.6rem, 6vw, 4.4rem);
}

.simple-event-head__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #111;
}

/* ========== NLG News (static) ========== */
.news-hero {
  padding: clamp(2rem, 5vw, 3.4rem) var(--header-pad-x) clamp(1rem, 3vw, 1.6rem);
  text-align: center;
}

.news-hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.news-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--header-pad-x) clamp(2.6rem, 6vw, 4rem);
}

.news-list__head {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 0.75rem 0;
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.news-card {
  background: #fff;
  border: 1px solid #efefef;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.news-card__link {
  display: block;
}

.news-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #cfd7df 0%, #e6ebf1 45%, #c0ccd9 100%);
  overflow: hidden;
}

.news-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-card__body {
  padding: 0.9rem 0.9rem 1rem;
}

.news-card__meta {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  color: #777;
}

.news-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.16rem;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.3;
}

.news-card__excerpt {
  margin: 0 0 0.5rem;
  color: #555;
  line-height: 1.5;
}

.news-card__read {
  font-size: 0.82rem;
  color: #444;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem) var(--header-pad-x) clamp(2.6rem, 6vw, 4rem);
}

.news-detail__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 400;
}

.news-detail__meta {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: #777;
}

.news-detail__lead {
  margin: 0 0 1rem;
  color: #4c4c4c;
}

.news-detail__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, #cfd7df 0%, #e6ebf1 45%, #c0ccd9 100%);
  overflow: hidden;
}

.news-detail__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-detail__back {
  margin-top: 1.2rem;
}

@media (max-width: 860px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Become a member ========== */
.member-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
}

.member-top__text {
  padding: clamp(1.2rem, 3vw, 2.3rem) clamp(1rem, 4vw, 5rem);
}

.member-top__text h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 400;
  text-transform: uppercase;
}

.member-top__text ul {
  margin: 0 0 1.55rem;
  padding-left: 1.3rem;
  line-height: 1.65;
  color: #3f3f3f;
}

.member-top__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.member-form-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 2.8rem) var(--header-pad-x) clamp(2.5rem, 6vw, 4rem);
}

.member-form__title {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 400;
}

.member-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.member-form__col {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.member-form input,
.member-form textarea {
  width: 100%;
  border: 1px solid #ececec;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 1.02rem;
}

.member-form__upload-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7f6f6f;
}

.member-form__paperclip {
  font-size: 1.05rem;
}

.member-form__attach {
  margin-left: auto;
}

.member-form__submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0.2rem;
}

.member-form__submit-row button {
  border: 1px solid #9f8f8f;
  background: #fff;
  color: #6c5c5c;
  padding: 0.62rem 2.2rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .member-top {
    grid-template-columns: 1fr;
  }

  .member-top__image img {
    min-height: 300px;
  }

  .member-form {
    grid-template-columns: 1fr;
  }
}

/* ========== Our Board (static) ========== */
.board-banner {
  width: 100%;
  background: #e8eaed;
  line-height: 0;
}

.board-banner img {
  width: 100%;
  height: clamp(180px, 24vw, 340px);
  object-fit: cover;
  object-position: center;
}

/* ========== Contact page ========== */
.contact-banner {
  width: 100%;
  background: #e8eaed;
  line-height: 0;
}

.contact-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.contact-panel {
  background: #efefef;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) var(--header-pad-x) clamp(3rem, 7vw, 5rem);
}

.contact-panel__title {
  margin: 0 0 2.2rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #222;
}

.contact-panel__group {
  margin: 0 auto 1.45rem;
  max-width: 720px;
}

.contact-panel__label {
  margin: 0 0 0.3rem;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  color: #5a5a5a;
}

.contact-panel__value {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: #4b4b4b;
}

.contact-panel__value a {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.contact-panel__brand {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #8b2232;
}

.contact-panel__brand span {
  font-style: italic;
  font-weight: 700;
}

/* ========== Unicorn Club page ========== */
.unicorn-banner {
  width: 100%;
  background: #e8eaed;
  line-height: 0;
}

.unicorn-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.unicorn-intro {
  background: #ebebeb;
  padding: clamp(2.8rem, 6vw, 4.5rem) var(--header-pad-x);
}

.unicorn-intro__inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.unicorn-intro__inner p {
  margin: 0 0 1.25rem;
  font-size: clamp(1.02rem, 1.25vw, 1.32rem);
  line-height: 1.65;
  color: #525252;
}

.unicorn-intro__inner p:last-child {
  margin-bottom: 0;
}

.unicorn-visual {
  background: #e4e3d6;
  padding: clamp(2.2rem, 6vw, 4.2rem) var(--header-pad-x) clamp(2.6rem, 7vw, 4.8rem);
}

.unicorn-visual__inner {
  width: min(100%, 600px);
  margin: 0 auto;
  text-align: center;
}

.unicorn-visual__inner img {
  width: min(100%, 360px);
  margin: 0 auto;
}

.unicorn-visual__inner p {
  margin: 1.1rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #1f1f1f;
  font-style: italic;
}

.board-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--header-pad-x) clamp(3rem, 6vw, 4.5rem);
  display: grid;
  gap: clamp(2.2rem, 4vw, 3rem);
}

.board-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  background: #fff;
  column-gap: clamp(1rem, 2.5vw, 2rem);
}

.board-card--reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-card--reverse .board-card__media {
  order: 2;
}

.board-card--reverse .board-card__content {
  order: 1;
}

.board-card__media {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  justify-self: center;
}

.board-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.board-card__content {
  padding: clamp(1rem, 2.2vw, 1.8rem) clamp(1.2rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(100%, 640px);
  justify-self: start;
}

.board-card--reverse .board-card__content {
  justify-self: end;
}

.board-card__name {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #111;
}

.board-card__role {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  line-height: 1.35;
  font-weight: 700;
  color: #222;
}

.board-card__bio {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.35vw, 1.24rem);
  line-height: 1.6;
  color: #444;
}

@media (max-width: 980px) {
  .board-card,
  .board-card--reverse {
    grid-template-columns: 1fr;
  }

  .board-card--reverse .board-card__media,
  .board-card--reverse .board-card__content {
    order: initial;
  }

  .board-card__media {
    width: min(100%, 320px);
    max-width: 100%;
  }

  .board-card__name {
    font-size: clamp(1.6rem, 6.2vw, 2.4rem);
  }
}

/* ========== Footer Figure 5 ========== */
.footer-contact {
  background: var(--footer-dark);
  color: var(--footer-text);
  padding: 2.5rem var(--header-pad-x);
}

.footer-contact__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4.5rem);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact__icon svg {
  width: 20px;
  height: 20px;
}

.footer-contact__label {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.15rem;
}

.footer-contact__value {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.95;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== Footer Figure 6 ========== */
.footer-bar {
  background: #fff;
  color: var(--color-text-muted);
  padding: 1.75rem var(--header-pad-x);
  font-size: 0.8125rem;
}

.footer-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-width: 0;
}

.footer-bar__copy,
.footer-bar__godaddy {
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-bar__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bar__social a {
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-bar__social a:hover {
  opacity: 1;
  transform: scale(1.06);
}

.footer-bar__social .icon-fb {
  background: #1877f2;
}

.footer-bar__social .icon-ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.footer-bar__social .icon-in {
  background: #0a66c2;
}

.footer-bar__social svg {
  width: 18px;
  height: 18px;
}

/* Chat FAB */
.chat-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #555;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chat-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

.chat-fab svg {
  width: 24px;
  height: 24px;
}

/* ========== Global responsive pass (all pages) ========== */
@media (min-width: 1536px) {
  :root {
    --header-pad-x: clamp(2rem, 6vw, 5.5rem);
  }

  .hero-carousel__content,
  .home-text-block__inner,
  .home-world__title,
  .home-world__body,
  .board-list {
    max-width: 1400px;
  }
}

@media (max-width: 1200px) {
  .hero-carousel {
    min-height: 76vh;
  }

  .hero-carousel__content {
    min-height: 76vh;
    max-width: 44rem;
  }

  .footer-bar__inner {
    justify-content: center;
    text-align: center;
    row-gap: 0.9rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-pad-x: clamp(1rem, 3.4vw, 1.6rem);
  }

  .site-header {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .site-logo img {
    height: 38px;
  }

  .hero-carousel {
    min-height: 68vh;
  }

  .hero-carousel__content {
    min-height: 68vh;
    padding-top: 6rem;
    padding-left: calc(var(--header-pad-x) + 0.35rem);
    padding-bottom: 2rem;
  }

  .hero-carousel__title {
    font-size: clamp(1.45rem, 4vw, 2rem);
  }

  .hero-carousel__tagline {
    max-width: 34ch;
  }

  .home-text-block,
  .home-world {
    padding-top: clamp(2.3rem, 6vw, 3.6rem);
    padding-bottom: clamp(2.3rem, 6vw, 3.6rem);
  }

  .home-fullbleed__img,
  .home-fullbleed--empty::after {
    height: clamp(180px, 30vw, 320px);
  }

  .home-world__map {
    margin-bottom: 1.6rem;
  }

  .board-list {
    gap: clamp(1.5rem, 3vw, 2.2rem);
    padding-top: clamp(1.4rem, 3.2vw, 2rem);
  }

  .board-card__content {
    padding: clamp(0.9rem, 1.8vw, 1.2rem);
  }
}

@media (max-width: 768px) {
  .site-header {
    gap: 0.65rem;
  }

  .site-logo img {
    height: 34px;
  }

  .site-nav {
    width: min(300px, 86vw);
    padding-top: 4.5rem;
  }

  .site-nav > ul {
    font-size: 0.82rem;
  }

  .hero-carousel {
    min-height: 62vh;
  }

  .hero-carousel__mesh {
    opacity: 0.35;
  }

  .hero-carousel__scrim {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.16) 100%);
  }

  .hero-carousel__content {
    min-height: 62vh;
    max-width: 34rem;
    padding-top: 5.3rem;
    padding-bottom: 1.5rem;
  }

  .hero-carousel__title {
    font-size: clamp(1.15rem, 5.5vw, 1.5rem);
    margin-bottom: 0.55rem;
  }

  .hero-carousel__tagline {
    font-size: clamp(0.84rem, 3.3vw, 0.98rem);
    margin-bottom: 0.9rem;
  }

  .hero-carousel__cta {
    padding: 0.5rem 1.05rem;
    font-size: 0.72rem;
  }

  .hero-carousel__arrow {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .hero-carousel__strip {
    width: 6px;
  }

  .home-text-block__title,
  .home-world__title {
    letter-spacing: 0.04em;
  }

  .home-text-block__body,
  .home-world__body {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .home-cta {
    min-height: clamp(5.7rem, 19vw, 7.3rem);
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .home-cta__frame {
    width: min(100%, 620px);
    padding: 0.5rem 0.75rem;
  }

  .home-cta__row {
    gap: 0.55rem;
  }

  .home-cta__dash {
    width: 1.4rem;
  }

  .home-cta__headline {
    font-size: clamp(0.66rem, 2.8vw, 0.8rem);
  }

  .home-cta__btn {
    margin-top: 0.42rem;
    padding: 0.34rem 0.82rem;
    font-size: 0.64rem;
  }

  .board-banner img {
    height: clamp(128px, 33vw, 190px);
  }

  .board-list {
    padding-bottom: 2.5rem;
  }

  .board-card {
    row-gap: 0.7rem;
  }

  .board-card__media {
    width: min(100%, 290px);
  }

  .board-card__name {
    line-height: 1.08;
    margin-bottom: 0.5rem;
  }

  .board-card__role {
    margin-bottom: 0.65rem;
    line-height: 1.28;
  }

  .board-card__bio {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .page-intro {
    padding: 4.2rem var(--header-pad-x) 1.6rem;
  }

  .footer-contact {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-contact__grid {
    justify-content: flex-start;
    gap: 1.25rem;
  }

  .footer-contact__item {
    width: min(100%, 420px);
  }

  .footer-bar {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }

  .footer-bar__inner {
    gap: 0.65rem;
  }

  .chat-fab {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-pad-x: 0.85rem;
  }

  .site-header {
    padding-top: 0.68rem;
    padding-bottom: 0.68rem;
  }

  .site-logo img {
    height: 30px;
  }

  .hero-carousel {
    min-height: 56vh;
  }

  .hero-carousel__content {
    min-height: 56vh;
    padding-top: 4.4rem;
    padding-bottom: 1.15rem;
  }

  .hero-carousel__title {
    font-size: clamp(1.02rem, 5.5vw, 1.2rem);
  }

  .hero-carousel__tagline {
    font-size: clamp(0.78rem, 3.7vw, 0.9rem);
  }

  .hero-carousel__arrow {
    display: none;
  }

  .home-fullbleed__img,
  .home-fullbleed--empty::after {
    height: clamp(145px, 42vw, 205px);
  }

  .home-text-block__body,
  .home-world__body {
    font-size: 0.9rem;
  }

  .home-cta {
    min-height: 5.1rem;
  }

  .home-cta__headline {
    letter-spacing: 0.04em;
  }

  .board-banner img {
    height: clamp(110px, 36vw, 150px);
  }

  .board-card__media {
    width: min(100%, 250px);
  }

  .board-card__content {
    padding: 0.6rem 0.2rem;
  }

  .board-card__bio {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .footer-contact__icon {
    width: 38px;
    height: 38px;
  }

  .footer-contact__icon svg {
    width: 17px;
    height: 17px;
  }

  .footer-bar {
    font-size: 0.76rem;
  }
}
