:root {
  --color-white: #ffffff;
  --color-soft: #f7f8fa;
  --color-navy: #0b1f3a;
  --color-dark-navy: #071629;
  --color-gold: #c9a227;
  --color-text: #172033;
  --color-muted: #667085;
  --color-border: #e4e7ec;
  --color-success: #15803d;
  --color-live: #dc2626;

  --container-width: 1280px;
  --page-padding: 40px;

  --radius-sm: 6px;

  --transition-fast: 180ms ease;
  --transition: 300ms ease;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

section[id] {
  scroll-margin-top: 100px;
}

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

button {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container-width);
  margin-inline: auto;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

/* =========================================================
   HEADER — SCROLLED STATE
========================================================= */

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);

  box-shadow: 0 6px 24px rgba(7, 22, 41, 0.12);

  border-bottom-color: rgba(7, 22, 41, 0.08);
}

.site-header.scrolled .nav-link {
  color: var(--color-dark-navy);
}

.site-header.scrolled .nav-link:hover {
  color: var(--color-gold);
}

.site-header.scrolled .menu-toggle {
  color: var(--color-dark-navy);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  z-index: 100;

  background: transparent;

  transition:
    background-color 350ms ease,
    box-shadow 350ms ease,
    color 350ms ease;
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;

  background: rgba(255, 255, 255, 0.98);

  box-shadow: 0 4px 18px rgba(7, 22, 41, 0.12);
}

.header-inner {
  min-height: 74px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
  padding: 0 6.2rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  object-position: center;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
}

.nav-link {
  position: relative;

  padding-block: 8px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
  font-weight: 500;

  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--color-gold);

  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.nav-current {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.nav-current::after {
  width: 100%;
}

/* =========================================================
   MEDIA DROPDOWN
========================================================= */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;

  gap: 6px;
  padding-block: 8px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
  font-weight: 500;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.nav-dropdown-toggle:hover {
  color: var(--color-white);
}

.nav-dropdown-toggle::after {
  display: none;
}

.dropdown-arrow {
  display: inline-block;

  font-size: 11px;
  line-height: 1;

  transition: transform var(--transition-fast);
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;

  top: calc(100% + 12px);
  left: 50%;

  min-width: 200px;

  padding: 8px;

  background: var(--color-white);

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  box-shadow: 0 14px 35px rgba(7, 22, 41, 0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, -8px);

  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast),
    transform var(--transition-fast);

  z-index: 1000;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translate(-50%, 0);
}

.nav-dropdown-link {
  display: block;
  width: 100%;

  padding: 10px 13px;

  color: var(--color-text);

  font-size: 13px;
  font-weight: 500;

  border-radius: 4px;

  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.nav-dropdown-link:hover {
  color: var(--color-gold);
  background: var(--color-soft);
}

/* =========================================================
   MOBILE MENU BASE
========================================================= */

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  width: 20px;
  height: 2px;

  background: var(--color-white);

  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;

  position: absolute;

  top: 96px;
  left: 0;

  width: 100%;

  padding: 20px var(--page-padding) 30px;

  background: var(--color-dark-navy);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 15px 0;

  color: rgba(255, 255, 255, 0.85);

  font-size: 16px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link:hover {
  color: var(--color-gold);
}

/* =========================================================
  HERO SECTION
========================================================= */
.hero {
  display: flex;
  position: relative;
  min-height: 60rem;
  max-width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 127px;
  left: 0;
  width: 100%;
  height: calc(100vh - 8rem);
  margin: 0 auto;
  transition: transform 4s ease-in-out;
}

#firstSlide {
  background:
    /* radial-gradient(circle at 75% 45%, rgba(11, 31, 58, 0.9), transparent 45%), */
    linear-gradient(45deg, transparent, transparent),
    url(../assets/img/bg-img/bgImg01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#secSlide {
  display: none;
  background:
    /* radial-gradient(circle at 75% 45%, rgba(11, 31, 58, 0.9), transparent 45%), */
    linear-gradient(45deg, transparent, transparent),
    url(../assets/img/bg-img/bgImg1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#thirdSlide {
  display: none;
  background:
    /* radial-gradient(circle at 75% 45%, rgba(11, 31, 58, 0.9), transparent 45%), */
    linear-gradient(45deg, transparent, transparent),
    url(../assets/img/bg-img/bgImg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide-content {
  padding-top: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-textContent {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-eyebrow::before {
  content: "";
  width: 35px;
  height: 1px;
  background: var(--color-gold);
}

.hero-textContent h1 {
  display: flex;
  flex-direction: column;
  align-items: start;
  /* max-width: 700px; */
  font-family: Barlow;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.025em;

  color: var(--color-white);
}

.spant {
  color: var(--color-white) !important;
  font-weight: 200 !important;
  letter-spacing: 1px !important;
}

.hero-slide p {
  max-width: 560px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
  HERO SECTION IMAGES
========================================================= */
.hero-slide img {
  height: 40rem;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.96);
}

/* =========================================================
  HERO BUTTON
========================================================= */

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

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.5s ease-in;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(to bottom, var(--color-gold), #a34e07);
}

.btn-primary:hover {
  background: #d8b33c;
}

.btn-outline {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* =========================================================
   RUNNING PICTURE BLOCK
========================================================= */

.pictures-block {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 274px;
  margin-top: -58px;
  overflow: hidden;
  pointer-events: auto;
  isolation: isolate;
  cursor: pointer;
}

.pictures-track {
  height: 81%;
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  width: max-content;
  will-change: transform;
}

.pictures-track img {
  flex: 0 0 auto;
  height: 200px;
  width: auto;
  max-width: none;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
  transition: transform 180ms ease-out;
  border: 1px solid var(--color-white);
  box-shadow: 3px 1px 15px 5px rgba(0, 0, 0, 0.233);
  border-radius: 10px;
}

/* =========================================================
   INTRO SECTION
========================================================= */

.intro-section {
  padding: 120px 0;

  background: var(--color-white);
}

.section-heading {
  max-width: 750px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.section-label::before {
  content: "";

  width: 30px;
  height: 1px;

  background: var(--color-gold);
}

.section-heading h2 {
  font-family: Barlow;

  font-size: 42px;

  font-weight: 600;

  line-height: 1.1;

  letter-spacing: -0.025em;
}

.section-heading h2 span {
  color: var(--color-navy);
}

.section-heading p {
  margin-top: 22px;

  color: var(--color-muted);

  font-size: 16px;

  line-height: 1.8;
}

/* =========================================================
   ANNIVERSARY SECTION
========================================================= */

.anniversary-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--color-white);
  background:
    linear-gradient(45deg, #16355ce6, #001b3de8),
    url(../assets/img/bg-img/bgImg4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: contain;
}

.anniversary-section::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  top: -220px;
  right: -180px;

  border: 1px solid rgba(201, 162, 39, 0.18);

  border-radius: 50%;
}

.anniversary-section::after {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  bottom: -220px;
  left: -160px;

  border: 1px solid rgba(201, 162, 39, 0.12);

  border-radius: 50%;
}

.anniversary-container {
  position: relative;

  z-index: 2;

  width: min(calc(100% - (var(--page-padding) * 2)), var(--container-width));

  margin-inline: auto;

  min-height: 430px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(300px, 0.9fr);

  align-items: center;

  gap: 80px;
}

.anniversary-content {
  max-width: 650px;
}

/* =========================================================
   ANNIVERSARY LABEL
========================================================= */

.anniversary-label {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  color: var(--color-gold);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.anniversary-label::before {
  content: "";

  width: 35px;
  height: 1px;

  background: var(--color-gold);
}

/* =========================================================
   ANNIVERSARY TEXT
========================================================= */

.anniversary-content h2 {
  max-width: 700px;

  font-family: Barlow;

  font-size: 42px;

  font-weight: 600;

  line-height: 1.08;

  letter-spacing: -0.035em;
}

.anniversary-content h2 span {
  display: block;

  color: var(--color-gold);
}

.anniversary-content p {
  max-width: 570px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   ANNIVERSARY BUTTON
========================================================= */

.anniversary-button {
  display: inline-flex;
  align-items: center;

  gap: 18px;

  min-height: 50px;

  margin-top: 34px;

  padding: 0 22px;

  color: var(--color-dark-navy);

  background: var(--color-gold);

  border-radius: var(--radius-sm);

  font-size: 14px;
  font-weight: 600;

  transition:
    transform var(--transition-fast),
    background var(--transition),
    gap var(--transition);
}

.anniversary-button:hover {
  transform: translateY(-2px);

  background: #d8b33c;

  gap: 24px;
}

.anniversary-button span {
  font-size: 18px;

  line-height: 1;
}

/* =========================================================
   ANNIVERSARY NUMBER
========================================================= */

.anniversary-number {
  min-height: 300px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.anniversary-outline {
  display: block;

  color: transparent;

  font-family: "Helvetica", Arial, sans-serif;

  font-size: clamp(80px, 11vw, 150px);

  font-weight: 700;

  line-height: 0.9;

  -webkit-text-stroke: 1px rgba(201, 162, 39, 0.45);
}

.anniversary-number strong {
  margin-top: 22px;

  color: var(--color-white);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.28em;
}

.anniversary-line {
  width: 55px;
  height: 1px;

  margin-top: 22px;

  background: var(--color-gold);
}

/* =========================================================
   ANNIVERSARY MOMENTS
========================================================= */

.anniversary-moments {
  padding: 110px 0 120px;

  background: var(--color-white);

  overflow: hidden;
}

.moments-heading {
  max-width: 720px;

  margin-bottom: 50px;
}

.moments-label {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: var(--color-gold);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.moments-label::before {
  content: "";

  width: 30px;
  height: 1px;

  background: var(--color-gold);
}

.moments-heading h2 {
  font-family: Barlow;

  font-size: 42px;

  font-weight: 600;

  line-height: 1.08;

  letter-spacing: -0.035em;
}

.moments-heading h2 span {
  display: block;

  color: var(--color-gold);
}

.moments-heading p {
  max-width: 600px;

  margin-top: 22px;

  color: var(--color-muted);

  font-size: 16px;

  line-height: 1.8;
}

/* =========================================================
   VIDEO
========================================================= */

.moments-video {
  width: 100%;

  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 800ms ease,
    transform 800ms ease;
}

.moments-video.is-visible {
  opacity: 1;

  transform: translateY(0);
}

.moments-video-frame {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: var(--color-dark-navy);

  border-radius: 8px;
}

.anniversary-video {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 8.2;

  object-fit: cover;

  object-position: center;
}

/* =========================================================
   VIDEO SOUND BUTTON
========================================================= */

.video-sound-toggle {
  position: absolute;

  right: 22px;
  bottom: 22px;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  color: var(--color-white);

  background: rgba(7, 22, 41, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.22);

  border-radius: 50%;

  backdrop-filter: blur(8px);

  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.video-sound-toggle:hover {
  transform: scale(1.08);

  background: rgba(7, 22, 41, 0.9);

  border-color: var(--color-gold);
}

.video-sound-toggle .sound-on {
  display: none;
}

.video-sound-toggle .sound-off {
  display: block;
}

.video-sound-toggle.is-unmuted .sound-on {
  display: block;
}

.video-sound-toggle.is-unmuted .sound-off {
  display: none;
}

/* =========================================================
   IMPACT / COUNTING
========================================================= */

.impact-section {
  width: 100%;
  padding: 9.5rem 40px;

  background: var(--color-soft);
}

.impact-section .container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

/* =========================
   IMPACT BLOCK
========================= */

.impact-wrapper {
  position: relative;

  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;

  min-height: 430px;

  /* overflow: hidden; */

  border-radius: 30px;

  background: var(--color-navy);
}

/* =========================
   PORTRAIT
========================= */

.impact-portrait {
  position: relative;
  align-self: end;

  width: 100%;
  max-width: 390px;
  height: 470px;

  margin-top: -40px;

  z-index: 2;

  transform: translateY(-6rem);
}

.impact-portrait::before {
  content: "Obong Bassey Albert(OBA)";
  position: absolute;
  /* top: 5rem; */
  bottom: -96px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  width: 350px;
  text-transform: uppercase;
  font-family: Barlow;
  font-size: 18px;
  font-weight: 900;
  background: var(--color-gold);
  color: var(--color-navy);
}

.impact-portrait img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: bottom center;
}

/* =========================
   IMPACT CONTENT
========================= */

.impact-content {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 430px;

  padding: 65px 45px 45px 0;
}

/* =========================
   INTRO
========================= */

.impact-intro {
  max-width: 620px;
  margin-bottom: 55px;
}

.impact-label {
  display: inline-block;
  margin-bottom: 15px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.impact-intro h2 {
  margin: 0 0 18px;

  color: var(--color-white);

  font-size: 42px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.impact-intro h2 span {
  display: block;

  color: var(--color-gold);
}

.impact-intro p {
  max-width: 560px;
  margin: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 14px;
  line-height: 1.8;
}

/* =========================
   STATISTICS
========================= */

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.impact-stat {
  position: relative;

  min-height: 105px;
  padding: 22px 20px 0;

  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.impact-stat:first-child {
  padding-left: 0;
}

.impact-stat:last-child {
  border-right: 0;
}

.impact-number {
  display: inline-block;

  color: var(--color-white);

  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}

.impact-plus {
  color: var(--color-gold);

  font-size: 20px;
  font-weight: 700;
  vertical-align: top;
}

.impact-stat p {
  margin: 10px 0 0;

  color: rgba(255, 255, 255, 0.48);

  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* =========================================================
   JOURNEY / MOMENTS & MILESTONES
========================================================= */

.journey-moments {
  position: relative;
  padding: 130px 0 150px;
  overflow: hidden;
  background: var(--color-white);
}

/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.journey-moments-heading {
  max-width: 720px;
  margin-bottom: 70px;
}

.journey-label {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  color: var(--color-gold);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-label::before {
  content: "";

  width: 32px;
  height: 1px;

  background: var(--color-gold);
}

.journey-moments-heading h2 {
  max-width: 700px;
  margin: 0;
  font-family: Barlow;
  color: var(--color-dark-navy);

  font-size: 42px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.journey-moments-heading h2 span {
  display: block;
  color: var(--color-gold);
}

.journey-moments-heading p {
  max-width: 620px;

  margin: 25px 0 0;

  color: rgba(7, 22, 41, 0.68);

  font-size: 16px;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   IMAGE GALLERY
--------------------------------------------------------- */

.journey-gallery {
  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(0, 0.9fr)
    minmax(0, 0.9fr);

  grid-template-rows:
    260px
    260px;

  gap: 18px;
}

/* ---------------------------------------------------------
   IMAGE
--------------------------------------------------------- */

.journey-image {
  position: relative;

  margin: 0;

  overflow: hidden;

  background: #e9edf2;

  border-radius: 4px;
}

.journey-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-image:hover img {
  transform: scale(1.045);
}

/* ---------------------------------------------------------
   GRID POSITIONS
--------------------------------------------------------- */

.journey-image-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.journey-image-two {
  grid-column: 2;
  grid-row: 1;
}

.journey-image-three {
  grid-column: 3;
  grid-row: 1;
}

.journey-image-four {
  grid-column: 2;
  grid-row: 2;
}

.journey-image-five {
  grid-column: 3;
  grid-row: 2;
}

/* ---------------------------------------------------------
   IMAGE REVEAL
--------------------------------------------------------- */

.journey-reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* Stagger */

.journey-image:nth-child(1) {
  transition-delay: 80ms;
}

.journey-image:nth-child(2) {
  transition-delay: 160ms;
}

.journey-image:nth-child(3) {
  transition-delay: 240ms;
}

.journey-image:nth-child(4) {
  transition-delay: 320ms;
}

.journey-image:nth-child(5) {
  transition-delay: 400ms;
}

/* =========================================================
   PEOPLE / MOMENTS / CONNECTIONS
========================================================= */

.people-moments {
  padding: 120px 0;
  background: var(--color-white);
}

/* ---------------------------------------------------------
   SECTION INTRO
--------------------------------------------------------- */

.people-moments-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.people-moments-label {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: var(--color-gold);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.people-moments-label::before {
  content: "";

  width: 34px;
  height: 1px;

  background: var(--color-gold);
}

.people-moments-heading h2 {
  margin-top: 18px;

  font-family: "Barlow", sans-serif;

  font-size: 42px;
  font-weight: 600;

  line-height: 1.08;
  letter-spacing: -0.025em;

  color: var(--color-dark-navy);
}

.people-moments-heading h2 span {
  display: block;
  color: var(--color-gold);
}

.people-moments-heading p {
  max-width: 650px;

  margin-top: 24px;

  color: rgba(7, 22, 41, 0.68);

  font-size: 16px;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */

.people-gallery {
  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(0, 0.9fr)
    minmax(0, 0.9fr);

  grid-template-rows:
    260px
    260px;

  gap: 18px;
}

/* ---------------------------------------------------------
   IMAGE
--------------------------------------------------------- */

.people-image {
  position: relative;

  margin: 0;

  overflow: hidden;

  background: #e9edf2;

  border-radius: 5px;
}

.people-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.people-image:hover img {
  transform: scale(1.045);
}

/* ---------------------------------------------------------
   GRID POSITIONS
--------------------------------------------------------- */

.people-image-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.people-image-two {
  grid-column: 2;
  grid-row: 1;
}

.people-image-three {
  grid-column: 3;
  grid-row: 1;
}

.people-image-four {
  grid-column: 2;
  grid-row: 2;
}

.people-image-five {
  grid-column: 3;
  grid-row: 2;
}

/* ---------------------------------------------------------
   SCROLL REVEAL
--------------------------------------------------------- */

.people-image.journey-reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.people-image.journey-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ---------------------------------------------------------
   STAGGER
--------------------------------------------------------- */

.people-image:nth-child(1) {
  transition-delay: 80ms;
}

.people-image:nth-child(2) {
  transition-delay: 160ms;
}

.people-image:nth-child(3) {
  transition-delay: 240ms;
}

.people-image:nth-child(4) {
  transition-delay: 320ms;
}

.people-image:nth-child(5) {
  transition-delay: 400ms;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
  outline: 3px solid var(--color-gold);

  outline-offset: 4px;
}

/* =========================================================
   TOP INFORMATION BAR
   Added for the FOBA contact/social strip.
========================================================= */

.top-info-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 110;

  width: 100%;
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px var(--page-padding);

  color: rgba(255, 255, 255, 0.86);

  background: transparent;

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.top-info-email a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;

  transition: color var(--transition-fast);
}

.top-info-email a:hover {
  color: var(--color-gold);
}

.top-info-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-info-social > span {
  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 8px;

  flex-wrap: nowrap;
  white-space: nowrap;
}

.top-social-links a {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  flex: 0 0 28px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 12px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.top-social-links a:hover {
  color: var(--color-dark-navy);
  background: var(--color-gold);
  border-color: var(--color-gold);

  transform: translateY(-2px);
}

/* The main header sits below the information bar at the top of the page. */
.site-header {
  top: 48px;
}

.site-header.scrolled {
  top: 0;
}

/* =========================================================
   TOP BAR / HEADER — SCROLLED STATE
========================================================= */

.site-header.scrolled .top-info-bar {
  color: var(--color-dark-navy);
}

/* =========================================================
   ABOUT FOBA
========================================================= */

.about-foba-section {
  padding: 120px 0;

  background: var(--color-soft);
}

.about-foba-section .section-heading {
  margin-bottom: 55px;
}

.about-foba-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

.about-foba-block {
  padding: 32px;

  background: var(--color-white);

  border: 1px solid var(--color-border);
  border-radius: 8px;

  box-shadow: 0 10px 30px rgba(7, 22, 41, 0.05);
}

.about-foba-block h3 {
  margin-bottom: 12px;

  font-family: Cinzel, serif;

  color: var(--color-navy);

  font-size: 22px;
  font-weight: 600;
}

.about-foba-block p {
  color: var(--color-muted);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   INTRO BUTTON
========================================================= */

.intro-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 28px;

  min-height: 48px;
  padding: 0 24px;

  color: var(--color-white);
  background: var(--color-navy);

  border: 1px solid var(--color-navy);
  border-radius: 5px;

  font-size: 13px;
  font-weight: 600;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.intro-section .btn:hover {
  background: var(--color-dark-navy);
  border-color: var(--color-dark-navy);

  transform: translateY(-2px);
}

/* =========================================================
   LIVE WIDGET
========================================================= */

.live-widget {
  position: fixed;

  left: 28px;
  bottom: 28px;

  z-index: 1000;
}

/* =========================================================
   LIVE TRIGGER
========================================================= */

.live-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  min-width: 86px;
  height: 42px;

  padding: 0 16px;

  color: var(--color-white);

  background: var(--color-dark-navy);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  cursor: pointer;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.live-trigger:hover {
  transform: translateY(-2px);

  border-color: var(--color-gold);
}

/* =========================================================
   LIVE INDICATOR
========================================================= */

.live-indicator {
  width: 8px;
  height: 8px;

  flex: 0 0 8px;

  border-radius: 50%;

  background: #777;
}

/* =========================================================
   LIVE LABEL
========================================================= */

.live-label {
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

/* =========================================================
   LIVE PANEL
========================================================= */

.live-panel {
  position: absolute;

  right: 0;
  bottom: calc(100% + 12px);

  width: 280px;

  padding: 20px;

  background: var(--color-dark-navy);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.live-widget.open .live-panel {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* =========================================================
   LIVE STATUS
========================================================= */

.live-status {
  display: block;

  margin-bottom: 9px;

  color: var(--color-white);

  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   LIVE MESSAGE
========================================================= */

.live-panel p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;

  line-height: 1.7;
}

/* =========================================================
   WATCH LIVE
========================================================= */

.live-watch {
  display: inline-flex;

  margin-top: 15px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-watch:hover {
  color: var(--color-white);
}

/* =========================================================
   ABOUT FOBA
========================================================= */

.about-foba-section {
  padding: 120px 0;

  background: var(--color-light-bg);
}

.about-foba-container {
  display: grid;

  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);

  align-items: center;

  gap: 80px;
}

/* =========================================================
   IMAGE
========================================================= */

.about-foba-image {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 4px;
}

.about-foba-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(8, 13, 24, 0.18), transparent 45%);

  pointer-events: none;
}

.about-foba-image img {
  display: block;

  width: 100%;
  height: 520px;

  object-fit: cover;

  object-position: center;

  transition: transform 600ms ease;
}

.about-foba-image:hover img {
  transform: scale(1.025);
}

/* =========================================================
   CONTENT
========================================================= */

.about-foba-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: start;
  gap: 26px;
}

.about-foba-content a:link {
  background: var(--color-text);
}

.about-foba-content .section-label {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 22px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.about-foba-content .section-label::before {
  content: "";

  width: 30px;
  height: 1px;

  background: var(--color-gold);
}

/* =========================================================
   HEADING
========================================================= */

.about-foba-content h2 {
  margin: 0;

  color: var(--color-dark-navy);

  font-family: "Barlow", sans-serif;

  font-size: 42px;

  font-weight: 600;

  line-height: 1.12;

  letter-spacing: -0.02em;
}

.about-foba-content h2 span {
  display: block;

  color: var(--color-gold);
}

/* =========================================================
   TEXT
========================================================= */

.about-foba-content p {
  margin: 22px 0 0;
  color: var(--color-secondary-text);
  font-size: 15px;
  line-height: 1.8;
}

.about-foba-content .about-foba-intro {
  margin-top: 28px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.85;
}

/* =========================================================
   VISION / MISSION
========================================================= */

.about-foba-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-foba-block {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.about-foba-block h3 {
  margin: 0;
  color: var(--color-dark-navy);
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 600;
}

.about-foba-block p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   ANNIVERSARY PROGRAMME
========================================================= */

.anniversary-programme {
  padding: 120px 0 130px;
  background: var(--color-soft);
  overflow: hidden;
}

/* =========================================================
   HEADING
========================================================= */

.programme-heading {
  max-width: 780px;

  margin: 0 auto 60px;

  text-align: center;
}

.programme-label {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.programme-label::before,
.programme-label::after {
  content: "";

  width: 30px;
  height: 1px;

  background: var(--color-gold);
}

.programme-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Barlow", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.programme-heading h2 span {
  display: block;
  color: var(--color-gold);
}

.programme-heading p {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   PROGRAMME LIST
========================================================= */

.programme-list {
  display: grid;

  grid-template-columns: 1fr;

  gap: 30px;
}

/* =========================================================
   PROGRAMME CARD
========================================================= */

.programme-card {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(0, 0.85fr);

  min-height: 440px;

  background: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-sm);

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(7, 22, 41, 0.07);
}

/* =========================================================
   MEDIA
========================================================= */

.programme-card-media {
  min-height: 440px;

  background: var(--color-dark-navy);
}

.programme-placeholder {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    var(--color-dark-navy),
    var(--color-navy)
  );
}

.programme-placeholder span {
  color: rgba(255, 255, 255, 0.45);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.2em;
}

/* =========================================================
   CONTENT
========================================================= */

.programme-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
  border-bottom: 5px solid var(--color-gold);
}

.programme-card-type {
  margin-bottom: 18px;

  color: var(--color-gold);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.programme-card-content h3 {
  margin: 0;

  color: var(--color-navy);

  font-family: "Barlow", sans-serif;

  font-size: 34px;

  font-weight: 700;

  line-height: 1.15;
}

.programme-card-date {
  margin: 15px 0 0;

  color: var(--color-gold);

  font-size: 13px;

  font-weight: 600;
}

.programme-card-content > p:not(.programme-card-date) {
  margin: 22px 0 0;

  color: var(--color-muted);

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
   BUTTON
========================================================= */

.programme-card-button {
  align-self: flex-start;

  margin-top: 30px;

  padding: 13px 22px;

  color: var(--color-white);

  background: var(--color-navy);

  border: 1px solid var(--color-navy);

  border-radius: var(--radius-sm);

  font-family: inherit;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition-fast);
}

.programme-card-button:hover {
  color: var(--color-navy);

  background: var(--color-white);

  transform: translateY(-2px);
}

/* =========================================================
   EVENTS
========================================================= */

.events-section {
  padding: 120px 0 130px;

  background: var(--color-white);

  overflow: hidden;
}

/* =========================================================
   ANNIVERSARY PROGRAMME — YOUTUBE VIDEO
========================================================= */

.programme-card-media {
  overflow: hidden;
}

.programme-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #071629;
}

.programme-video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Keep programme images consistent with videos */

.programme-card-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   EVENTS HEADING
========================================================= */

.events-heading {
  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);

  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}

.events-heading .section-label {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.18em;
}

.events-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Barlow", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.events-heading h2 span {
  color: var(--color-gold);
}

.events-heading > p {
  margin: 0;

  color: var(--color-muted);

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
   EVENTS LIST
========================================================= */

.events-list {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* =========================================================
   EVENT CARD
========================================================= */

.event-card {
  display: grid;

  grid-template-columns: 105px minmax(0, 1fr) auto;

  gap: 35px;

  align-items: center;

  padding: 30px 35px;

  background: var(--color-soft);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-sm);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-3px);

  border-color: var(--color-gold);

  box-shadow: 0 15px 35px rgba(7, 22, 41, 0.07);
}

/* =========================================================
   EVENT DATE
========================================================= */

.event-date {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 90px;
  min-height: 95px;

  background: var(--color-navy);

  border-radius: var(--radius-sm);

  text-align: center;
}

.event-month {
  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.event-date strong {
  margin: 3px 0;

  color: var(--color-white);

  font-family: "Barlow", sans-serif;

  font-size: 32px;

  line-height: 1;

  font-weight: 700;
}

.event-year {
  color: rgba(255, 255, 255, 0.65);

  font-size: 10px;

  letter-spacing: 0.08em;
}

/* =========================================================
   EVENT CONTENT
========================================================= */

.event-type {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--color-gold);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.event-content h3 {
  margin: 0;

  color: var(--color-navy);

  font-family: "Barlow", sans-serif;

  font-size: 27px;

  font-weight: 700;

  line-height: 1.2;
}

.event-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 10px;
}

.event-meta span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: var(--color-muted);

  font-size: 12px;
}

.event-meta i {
  color: var(--color-gold);
}

.event-content > p {
  max-width: 680px;

  margin: 12px 0 0;

  color: var(--color-muted);

  font-size: 13px;

  line-height: 1.7;
}

/* =========================================================
   EVENT BUTTON
========================================================= */

.event-action {
  padding-left: 15px;
}

.event-button {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 18px;

  color: var(--color-navy);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-sm);

  font-size: 12px;
  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.event-button i {
  font-size: 10px;

  transition: transform var(--transition-fast);
}

.event-button:hover {
  color: var(--color-white);

  background: var(--color-navy);

  border-color: var(--color-navy);
}

.event-button:hover i {
  transform: translateX(3px);
}

/* =========================================================
   EVENT DETAILS MODAL
========================================================= */

.event-modal-overlay {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 24px;

  background: rgba(7, 22, 41, 0.72);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast);
}

.event-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.event-modal {
  position: relative;

  width: min(900px, 100%);
  max-height: 90vh;

  overflow-y: auto;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  background: var(--color-white);

  box-shadow: 0 30px 80px rgba(7, 22, 41, 0.25);

  transform: translateY(20px) scale(0.98);

  transition: transform var(--transition);
}

.event-modal-overlay.is-open .event-modal {
  transform: translateY(0) scale(1);
}

/* =========================================================
   EVENT MODAL CLOSE
========================================================= */

.event-modal-close {
  position: absolute;

  top: 20px;
  right: 20px;

  z-index: 2;

  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border: 1px solid var(--color-border);
  border-radius: 50%;

  background: var(--color-white);
  color: var(--color-navy);

  cursor: pointer;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.event-modal-close:hover {
  background: var(--color-navy);
  color: var(--color-white);

  transform: rotate(90deg);
}

.event-modal-close i {
  font-size: 14px;
}

/* =========================================================
   EVENT MODAL IMAGE
========================================================= */

.event-modal-image {
  display: none;

  width: 100%;

  aspect-ratio: 16 / 8;

  overflow: hidden;

  background: var(--color-soft);
}

.event-modal-image.has-image {
  display: block;
}

.event-modal-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================================================
   EVENT MODAL CONTENT
========================================================= */

.event-modal-content {
  padding: 40px;
}

.event-modal-type {
  display: inline-flex;

  margin-bottom: 12px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2.5px;

  text-transform: uppercase;
}

.event-modal-content h2 {
  margin: 0;

  max-width: 700px;

  color: var(--color-navy);

  font-family: "Barlow", sans-serif;

  font-size: 32px;
  font-weight: 600;

  line-height: 1.15;
}

.event-modal-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 20px;

  margin-top: 22px;

  color: var(--color-muted);

  font-size: 13px;
}

.event-modal-meta span {
  display: inline-flex;
  align-items: center;

  gap: 8px;
}

.event-modal-meta i {
  color: var(--color-gold);
}

.event-modal-description {
  margin-top: 28px;

  max-width: 720px;

  color: var(--color-muted);

  font-size: 15px;

  line-height: 1.8;
}

body.event-modal-open {
  overflow: hidden;
}

/* =========================================================
   MEDIA & GALLERY
========================================================= */

.media-gallery {
  width: 100%;
  padding: 110px 0 120px;
  background: var(--color-white);
}

/* Keep the content inside the main site container */
.media-gallery > .container {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--container-width));

  margin-inline: auto;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.media-gallery .section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.media-gallery .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  color: var(--color-gold);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.media-gallery .section-label::before {
  content: "";

  width: 30px;
  height: 1px;

  background: var(--color-gold);
}

.media-gallery h2 {
  margin: 0;

  color: var(--color-navy);

  font-family: "Barlow", sans-serif;
  font-size: 42px;
  font-weight: 600;

  line-height: 1.05;
  letter-spacing: -0.025em;
}

.media-gallery h2 span {
  display: block;
  color: var(--color-gold);
}

.media-gallery .section-heading p {
  max-width: 620px;

  margin-top: 22px;

  color: var(--color-muted);

  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(0, 0.8fr)
    minmax(0, 0.8fr);

  grid-template-rows:
    250px
    250px;

  gap: 16px;

  width: 100%;
}

/* =========================================================
   GALLERY ITEM
========================================================= */

.gallery-item {
  position: relative;

  min-height: 250px;
  margin: 0;

  overflow: hidden;

  border-radius: var(--radius-sm);

  background: var(--color-soft);
}

.gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform var(--transition),
    filter var(--transition);
}

/* Featured image occupies both rows */

.gallery-featured {
  grid-row: span 2;
}

/* =========================================================
   IMAGE HOVER
========================================================= */

.gallery-item::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(7, 22, 41, 0.78),
    rgba(7, 22, 41, 0.04) 65%
  );

  opacity: 0;

  pointer-events: none;

  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* =========================================================
   GALLERY OVERLAY
========================================================= */

.gallery-overlay {
  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 22px;

  z-index: 2;

  color: var(--color-white);

  opacity: 0;
  transform: translateY(10px);

  transition:
    opacity var(--transition),
    transform var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay span {
  display: block;

  margin-bottom: 5px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-overlay h3 {
  margin: 0;

  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

/* =========================================================
   EXPLORE GALLERY BUTTON
========================================================= */

.gallery-action {
  display: flex;
  justify-content: center;

  margin-top: 48px;
}

.gallery-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 14px 26px;

  border: 1px solid var(--color-navy);
  border-radius: var(--radius-sm);

  color: var(--color-navy);
  background: transparent;

  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.gallery-button span {
  font-size: 20px;
  line-height: 1;

  transition: transform var(--transition-fast);
}

.gallery-button:hover {
  color: var(--color-white);
  background: var(--color-navy);

  transform: translateY(-2px);
}

.gallery-button:hover span {
  transform: translateX(5px);
}

/* =========================================================
   NEWS & UPDATES
========================================================= */

.news-section {
  width: 100%;
  padding: 100px 40px;
  background: var(--color-white);
}

.news-container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

/* =========================
   SECTION HEADER
========================= */

.news-header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.news-heading {
  max-width: 700px;
}

.news-heading .section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.news-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.news-heading h2 span {
  display: block;
  color: var(--color-gold);
}

.news-intro {
  max-width: 520px;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   NEWS GRID
========================= */

.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
}

/* =========================
   NEWS CARD
========================= */

.news-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 18px 45px rgba(7, 22, 41, 0.08);
}

/* =========================
   FEATURED CARD
========================= */

.news-card-featured {
  grid-row: span 2;
}

.news-card-featured .news-card-image {
  height: 390px;
}

/* =========================
   IMAGE
========================= */

.news-card-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--color-soft);
}

.news-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

/* =========================
   CONTENT
========================= */

.news-card-content {
  padding: 30px;
}

.news-category {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 700;
}

.news-card-featured h3 {
  max-width: 650px;
  font-size: 32px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 13px;
}

.news-card p {
  margin: 0 0 22px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================
   READ MORE
========================= */

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.news-read-more span {
  font-size: 18px;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.news-read-more:hover {
  color: var(--color-gold);
}

.news-read-more:hover span {
  transform: translateX(4px);
}

/* =========================================================
   GET INVOLVED
========================================================= */

.get-involved {
  width: 100%;
  padding: 100px 40px;
  background: var(--color-soft);
}

.get-involved .container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.involved-header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.involved-heading {
  max-width: 680px;
}

.involved-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.involved-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.involved-heading h2 span {
  display: block;
  color: var(--color-gold);
}

.involved-intro {
  max-width: 520px;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   INVOLVEMENT CARDS
========================= */

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

.involved-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  overflow: hidden;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  background: var(--color-white);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.involved-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 18px 40px rgba(7, 22, 41, 0.08);
}

/* =========================
   CARD NUMBER
========================= */

.involved-number {
  position: absolute;
  top: 25px;
  right: 28px;

  color: rgba(11, 31, 58, 0.07);

  font-size: 70px;
  line-height: 1;
  font-weight: 700;
}

/* =========================
   CARD CONTENT
========================= */

.involved-card-content {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding-top: 70px;
}

.involved-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 700;
}

.involved-card p {
  margin: 0 0 25px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================
   CARD LINK
========================= */

.involved-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--color-navy);

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition: color var(--transition-fast);
}

.involved-link span {
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.involved-link:hover {
  color: var(--color-gold);
}

.involved-link:hover span {
  transform: translateX(4px);
}

/* =========================
   CTA
========================= */

.involved-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  margin-top: 30px;
  padding: 38px 42px;

  border-radius: var(--radius-sm);

  background: var(--color-navy);
}

.involved-cta-content {
  max-width: 680px;
}

.involved-cta-label {
  display: inline-block;
  margin-bottom: 10px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.involved-cta h3 {
  margin: 0 0 8px;

  color: var(--color-white);

  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.involved-cta p {
  margin: 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  line-height: 1.7;
}

/* =========================
   CTA BUTTON
========================= */

.involved-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 10px;

  min-height: 50px;
  padding: 0 24px;

  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);

  color: var(--color-white);
  background: var(--color-gold);

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.involved-cta-button span {
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.involved-cta-button:hover {
  color: var(--color-navy);
  background: var(--color-white);
  transform: translateY(-2px);
}

.involved-cta-button:hover span {
  transform: translateX(4px);
}

/* =========================================================
   COMMUNITY VOICES
========================================================= */

.community-voices {
  width: 100%;
  padding: 100px 40px;
  background: var(--color-white);
}

.community-voices .container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

/* =========================
   SECTION HEADER
========================= */

.voices-header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.voices-heading {
  max-width: 680px;
}

.voices-label {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--color-gold);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.voices-heading h2 {
  margin: 0;

  color: var(--color-navy);

  font-size: 42px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.voices-heading h2 span {
  display: block;
  color: var(--color-gold);
}

.voices-intro {
  max-width: 520px;
  margin: 0;

  color: var(--color-muted);

  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   MAIN LAYOUT
========================= */

.voices-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 45px;
  align-items: start;
}

/* =========================
   COMMENT FORM
========================= */

.comment-box {
  position: sticky;
  top: 30px;

  padding: 35px;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  background: var(--color-soft);
}

.comment-box-header {
  margin-bottom: 28px;
}

.comment-box-label,
.comments-label {
  display: inline-block;
  margin-bottom: 10px;

  color: var(--color-gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.comment-box h3 {
  margin: 0;

  color: var(--color-navy);

  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

/* =========================
   FORM
========================= */

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: var(--color-text);

  font-size: 13px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  outline: none;

  color: var(--color-text);
  background: var(--color-white);

  font-family: inherit;
  font-size: 14px;

  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-field input {
  height: 48px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 135px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #98a2b3;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

/* =========================
   SUBMIT BUTTON
========================= */

.comment-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  min-height: 50px;
  margin-top: 4px;

  border: 1px solid var(--color-navy);
  border-radius: var(--radius-sm);

  color: var(--color-white);
  background: var(--color-navy);

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.comment-submit span {
  font-size: 18px;

  transition: transform var(--transition-fast);
}

.comment-submit:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.comment-submit:hover span {
  transform: translateX(4px);
}

.comment-note {
  margin: -4px 0 0;

  color: var(--color-muted);

  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

/* =========================
   COMMENTS AREA
========================= */

.comments-area {
  min-width: 0;
}

.comments-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;

  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
}

.comments-heading h3 {
  margin: 0;

  color: var(--color-navy);

  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.comments-count {
  flex-shrink: 0;

  color: var(--color-muted);

  font-size: 12px;
  font-weight: 600;
}

/* =========================
   COMMENT
========================= */

.comment {
  display: flex;
  gap: 16px;

  padding: 28px 0;

  border-bottom: 1px solid var(--color-border);
}

.comment-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  color: var(--color-white);
  background: var(--color-navy);

  font-size: 15px;
  font-weight: 700;
}

.comment-body {
  min-width: 0;
  flex: 1;
}

.comment-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 9px;
}

.comment-top h4 {
  margin: 0 0 3px;

  color: var(--color-navy);

  font-size: 15px;
  font-weight: 700;
}

.comment-date {
  color: var(--color-muted);

  font-size: 11px;
}

.comment-body > p {
  margin: 0;

  color: var(--color-muted);

  font-size: 14px;
  line-height: 1.75;
}

/* =========================
   COMMENT ACTIONS
========================= */

.comment-actions {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 15px;
}

.comment-like,
.comment-reply {
  padding: 0;

  border: 0;

  color: var(--color-muted);
  background: transparent;

  font-family: inherit;
  font-size: 12px;
  font-weight: 600;

  cursor: pointer;

  transition: color var(--transition-fast);
}

.comment-like {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.comment-like:first-letter {
  font-size: 17px;
}

.comment-like:hover,
.comment-reply:hover {
  color: var(--color-gold);
}

/* =========================
   REPLY
========================= */

.comment-reply-item {
  display: flex;
  gap: 13px;

  margin-top: 25px;
  padding-top: 23px;
  padding-left: 20px;

  border-top: 1px solid var(--color-border);
}

.comment-reply-item .comment-avatar {
  width: 36px;
  height: 36px;

  font-size: 12px;
}

.comment-reply-item .comment-body > p {
  font-size: 13px;
}

/* =========================
   VIEW MORE
========================= */

.comments-footer {
  display: flex;
  justify-content: center;

  margin-top: 30px;
}

.comments-view-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 12px 20px;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  color: var(--color-navy);
  background: var(--color-white);

  font-family: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition:
    border-color var(--transition-fast),
    color var(--transition-fast),
    background var(--transition-fast);
}

.comments-view-more span {
  font-size: 17px;

  transition: transform var(--transition-fast);
}

.comments-view-more:hover {
  border-color: var(--color-navy);
  color: var(--color-white);
  background: var(--color-navy);
}

.comments-view-more:hover span {
  transform: translateX(4px);
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  width: 100%;
  padding: 100px 40px;
  background: var(--color-soft);
}

.contact-section .container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

/* =========================
   SECTION HEADER
========================= */

.contact-header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.contact-heading {
  max-width: 680px;
}

.contact-label {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--color-gold);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin: 0;

  color: var(--color-navy);

  font-size: 42px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.contact-heading h2 span {
  display: block;
  color: var(--color-gold);
}

.contact-intro {
  max-width: 520px;
  margin: 0;

  color: var(--color-muted);

  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   MAIN LAYOUT
========================= */

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: stretch;
}

/* =========================
   CONTACT INFORMATION
========================= */

.contact-information {
  display: flex;
  flex-direction: column;

  padding: 40px;

  border-radius: var(--radius-sm);

  background: var(--color-navy);
}

.contact-info-heading {
  margin-bottom: 30px;
}

.contact-info-label {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--color-gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.contact-info-heading h3 {
  margin: 0 0 14px;

  color: var(--color-white);

  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-info-heading p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
  line-height: 1.8;
}

/* =========================
   CONTACT INFO ITEMS
========================= */

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 20px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: inherit;
  text-decoration: none;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50%;

  color: var(--color-gold);

  font-size: 17px;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-title {
  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-info-value {
  color: var(--color-white);

  font-size: 14px;
  line-height: 1.5;
}

a.contact-info-item:hover .contact-info-value {
  color: var(--color-gold);
}

/* =========================
   SOCIAL
========================= */

.contact-social {
  margin-top: auto;
  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 12px;
}

.contact-social-links a {
  padding: 8px 12px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);

  color: rgba(255, 255, 255, 0.75);

  font-size: 11px;
  font-weight: 600;
  text-decoration: none;

  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.contact-social-links a:hover {
  border-color: var(--color-gold);

  color: var(--color-navy);
  background: var(--color-gold);
}

/* =========================
   CONTACT FORM BOX
========================= */

.contact-form-box {
  padding: 40px;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  background: var(--color-white);
}

.contact-form-heading {
  margin-bottom: 28px;
}

.contact-form-label {
  display: inline-block;
  margin-bottom: 10px;

  color: var(--color-gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  margin: 0;

  color: var(--color-navy);

  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
}

/* =========================
   FORM
========================= */

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-field:nth-child(3),
.contact-form-field:nth-child(4),
.contact-submit,
.contact-form-note {
  grid-column: 1 / -1;
}

.contact-form-field label {
  color: var(--color-text);

  font-size: 13px;
  font-weight: 600;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  outline: none;

  color: var(--color-text);
  background: var(--color-white);

  font-family: inherit;
  font-size: 14px;

  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-form-field input {
  height: 48px;
  padding: 0 15px;
}

.contact-form-field textarea {
  min-height: 145px;
  padding: 14px 15px;

  resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #98a2b3;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--color-gold);

  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

/* =========================
   SUBMIT
========================= */

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 52px;
  margin-top: 3px;

  border: 1px solid var(--color-navy);
  border-radius: var(--radius-sm);

  color: var(--color-white);
  background: var(--color-navy);

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.contact-submit span {
  font-size: 18px;

  transition: transform var(--transition-fast);
}

.contact-submit:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.contact-submit:hover span {
  transform: translateX(4px);
}

/* =========================
   FORM NOTE
========================= */

.contact-form-note {
  margin: -6px 0 0;

  color: var(--color-muted);

  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  width: 100%;
  padding: 75px 40px 25px;

  color: var(--color-white);
  background: var(--color-dark-navy);
}

.site-footer .container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

/* =========================
   FOOTER TOP
========================= */

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 55px;

  padding-bottom: 55px;
}

/* =========================
   BRAND
========================= */

.footer-brand {
  max-width: 390px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--color-white);
  text-decoration: none;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border: 1px solid var(--color-gold);
  border-radius: 50%;

  color: var(--color-gold);

  font-size: 22px;
  font-weight: 700;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-logo-text strong {
  font-size: 14px;
  letter-spacing: 1.5px;
}

.footer-logo-text small {
  color: var(--color-muted);

  font-size: 8px;
  letter-spacing: 1.5px;
}

.footer-description {
  max-width: 360px;
  margin: 22px 0 25px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 13px;
  line-height: 1.8;
}

/* =========================
   SOCIALS
========================= */

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-socials a {
  padding: 8px 11px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);

  color: rgba(255, 255, 255, 0.65);

  font-size: 10px;
  text-decoration: none;

  transition:
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* =========================
   FOOTER COLUMNS
========================= */

.footer-column h3 {
  margin: 0 0 20px;

  color: var(--color-white);

  font-size: 13px;
  font-weight: 700;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-column li a {
  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;
  text-decoration: none;

  transition: color var(--transition-fast);
}

.footer-column li a:hover {
  color: var(--color-gold);
}

/* =========================
   NEWSLETTER
========================= */

.footer-newsletter p {
  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;
  line-height: 1.7;
}

.footer-subscribe {
  display: flex;

  width: 100%;
  max-width: 330px;
}

.footer-subscribe input {
  min-width: 0;
  flex: 1;

  height: 44px;
  padding: 0 13px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);

  outline: none;

  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);

  font-family: inherit;
  font-size: 12px;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.footer-subscribe input:focus {
  border-color: var(--color-gold);
}

.footer-subscribe button {
  width: 48px;
  height: 44px;

  border: 1px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;

  color: var(--color-dark-navy);
  background: var(--color-gold);

  font-family: inherit;
  font-size: 19px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.footer-subscribe button:hover {
  color: var(--color-white);
  background: transparent;
}

.footer-subscribe-note {
  display: block;

  max-width: 320px;
  margin-top: 10px;

  color: rgba(255, 255, 255, 0.35);

  font-size: 9px;
  line-height: 1.5;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.38);

  font-size: 10px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.38);

  font-size: 10px;
  text-decoration: none;

  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-gold);
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border: 1px solid var(--color-gold);
  border-radius: 50%;

  color: var(--color-gold);
  background: var(--color-navy);

  font-family: inherit;
  font-size: 20px;
  line-height: 1;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(12px);

  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    background var(--transition-fast),
    color var(--transition-fast);

  z-index: 999;
}

.back-to-top span {
  transition: transform var(--transition-fast);
}

.back-to-top:hover {
  color: var(--color-navy);
  background: var(--color-gold);
}

.back-to-top:hover span {
  transform: translateY(-2px);
}

/* ACTIVE STATE — JAVASCRIPT WILL ADD THIS */

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

/* =========================================================
   HOMEPAGE HEADER / TOP BAR — WHITE PRESENTATION
   Uses the current project only.
========================================================= */
.top-info-bar {
  color: var(--color-dark-navy);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(7, 22, 41, 0.08);
}

.top-info-email a {
  color: var(--color-dark-navy);
}

.top-info-email a:hover {
  color: var(--color-gold);
}

.top-info-social > span {
  color: rgba(7, 22, 41, 0.68);
}

.top-social-links a {
  color: rgba(7, 22, 41, 0.78);
  border-color: rgba(7, 22, 41, 0.16);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  /* border-bottom: 1px solid rgba(7, 22, 41, 0.06); */
}

.nav-link {
  color: rgba(7, 22, 41, 0.82);
}

.nav-link:hover,
.nav-link.nav-current {
  color: var(--color-dark-navy);
}

.nav-link::after {
  background: var(--color-gold);
}

.nav-dropdown-menu {
  background: #ffffff;
  border-color: rgba(7, 22, 41, 0.1);
}

.nav-dropdown-link {
  color: var(--color-dark-navy);
}

/* Official Mail becomes the compact header action shown in the reference. */
.desktop-nav > .nav-link:last-child {
  padding: 9px 15px;
  color: var(--color-dark-navy);
  background: #f5b342;
  border-radius: 5px;
}

.desktop-nav > .nav-link:last-child::after {
  display: none;
}

.desktop-nav > .nav-link:last-child:hover {
  color: var(--color-dark-navy);
  background: #e9a631;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.site-header.scrolled .nav-link {
  color: var(--color-dark-navy);
}

.site-header.scrolled .nav-link:hover {
  color: var(--color-gold);
}

.site-header.scrolled .menu-toggle {
  color: var(--color-dark-navy);
}

/* =========================================================
   CONTACT FORM RESPONSE
========================================================= */

.contact-form-response {
  grid-column: 1 / -1;

  margin: 0;

  padding: 12px 14px;

  border-radius: var(--radius-sm);

  font-size: 13px;

  line-height: 1.5;

  text-align: center;
}

/* SUCCESS */

.contact-form-response.is-success {
  color: #166534;

  background: #f0fdf4;

  border: 1px solid #bbf7d0;
}

/* ERROR */

.contact-form-response.is-error {
  color: #991b1b;

  background: #fef2f2;

  border: 1px solid #fecaca;
}

/* DISABLED SEND BUTTON */

.contact-submit:disabled {
  opacity: 0.7;

  cursor: wait;
}

/* =========================================================
   HERO CAROUSEL — SMOOTH SLIDE TRANSITION
========================================================= */

.hero-slide {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition:
    opacity 0.75s ease,
    visibility 0.75s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Text enters from the left */
.hero-slide .hero-textContent {
  opacity: 0;
  transform: translateX(-45px);
  transition:
    opacity 0.75s ease,
    transform 0.85s ease;
}

.hero-slide.active .hero-textContent {
  opacity: 1;
  transform: translateX(0);
}

/* Image enters from the right */
.hero-slide img {
  opacity: 0;
  transform: translateX(55px);
  transition:
    opacity 0.8s ease,
    transform 0.9s ease;
}

.hero-slide.active img {
  opacity: 1;
  transform: translateX(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide .hero-textContent,
  .hero-slide img {
    transition: none;
  }
}

/* =========================================================
   HERO CAROUSEL INDICATORS
========================================================= */

.hero-dots {
  position: absolute;
  z-index: 50;
  left: 20rem;
  bottom: 65px;
  display: flex;
  align-items: center;
  gap: 9px;

  /* transform: translateX(-50%); */
}

.hero-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.4);

  cursor: pointer;

  transition:
    width 0.35s ease,
    background-color 0.35s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-dot.active {
  width: 30px;
  background: var(--color-gold);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 5px;
}

/* =========================================================
   FOBA PODCAST
========================================================= */

.podcast-section {
  width: 100%;
  padding: 110px 0 120px;
  background: var(--color-soft);
}

.podcast-container {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--container-width));
  margin-inline: auto;
}

.podcast-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.podcast-heading {
  max-width: 700px;
}

.podcast-heading .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.podcast-heading .section-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

.podcast-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Barlow", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.podcast-heading h2 span {
  display: block;
  color: var(--color-gold);
}

.podcast-intro {
  max-width: 500px;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

.podcast-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.podcast-feature-video {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--color-navy);
}

.podcast-feature-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.podcast-artwork {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 45px;
  background: var(--color-navy);
}

.podcast-artwork-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(270px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50%;
  color: var(--color-white);
  text-align: center;
}

.podcast-artwork-label {
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.podcast-artwork-inner i {
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: 58px;
}

.podcast-artwork-title {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
}

.podcast-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 65px;
  border-bottom: 5px solid var(--color-gold);
}

.podcast-episode {
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.podcast-content h3 {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--color-navy);
  font-family: "Barlow", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
}

.podcast-content > p {
  max-width: 620px;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

.podcast-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 13px;
}

.podcast-action {
  margin-top: 30px;
}

.podcast-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast);
}

.podcast-button:hover {
  transform: translateY(-2px);
  background: var(--color-dark-navy);
}

.podcast-button i {
  font-size: 11px;
}

/* =========================================================
   PODCAST OVERLAY
========================================================= */

.podcast-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 24px;

  background: rgba(7, 22, 41, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast);
}

.podcast-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.podcast-modal {
  position: relative;

  width: min(1100px, 100%);
  max-height: 90vh;

  overflow-y: auto;

  padding: 40px;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  background: var(--color-white);

  box-shadow: 0 30px 80px rgba(7, 22, 41, 0.25);
}

.podcast-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;

  margin-bottom: 35px;
}

.podcast-modal-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: var(--color-gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.podcast-modal-header h2 {
  margin: 0;

  color: var(--color-navy);

  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
}

.podcast-modal-close {
  display: grid;
  place-items: center;

  flex-shrink: 0;

  width: 42px;
  height: 42px;

  border: 1px solid var(--color-border);
  border-radius: 50%;

  background: var(--color-white);
  color: var(--color-navy);

  cursor: pointer;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.podcast-modal {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.podcast-modal::-webkit-scrollbar {
  display: none;
}

.podcast-modal-close:hover {
  transform: rotate(90deg);
  background: var(--color-navy);
  color: var(--color-white);
}

/* PODCAST GRID */

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

/* =========================================================
   PODCAST VIDEO PLAYER
========================================================= */

.podcast-player {
  display: none;
  width: 100%;
  opacity: 0;
  transform: scale(0.92);
  transform-origin: center;
}

.podcast-modal.is-playing .podcast-player {
  display: block;
  animation: podcastPlayerOpen 0.35s ease forwards;
}

@keyframes podcastPlayerOpen {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* HIDE EPISODE LIST WHILE VIDEO IS PLAYING */

.podcast-modal.is-playing .podcast-modal-header,
.podcast-modal.is-playing .podcast-grid {
  display: none;
}

/* PLAYER HEADER */

.podcast-player-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
}

.podcast-player-eyebrow {
  display: block;
  margin-bottom: 10px;

  color: var(--color-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.podcast-player-header h2 {
  margin: 0;

  color: var(--color-navy);
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

/* PLAYER CLOSE BUTTON */

.podcast-player-close {
  display: grid;
  place-items: center;
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  border: 1px solid var(--color-border);
  border-radius: 50%;

  background: var(--color-white);
  color: var(--color-navy);

  cursor: pointer;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.podcast-player-close:hover {
  transform: rotate(90deg);
  background: var(--color-navy);
  color: var(--color-white);
}

/* VIDEO */

.podcast-player-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-radius: var(--radius-sm);

  background: var(--color-navy);
  box-shadow: 0 20px 50px rgba(7, 22, 41, 0.18);
}

.podcast-player-video iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0;
}

/* PODCAST CARD */

.podcast-card {
  overflow: hidden;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  background: var(--color-white);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.podcast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(7, 22, 41, 0.1);
}

/* CARD MEDIA */

.podcast-card-media {
  position: relative;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: var(--color-navy);
}

.podcast-card-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.podcast-card:hover .podcast-card-media > img {
  transform: scale(1.03);
}

.podcast-card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  gap: 12px;

  color: var(--color-white);
}

.podcast-card-placeholder i {
  color: var(--color-gold);
  font-size: 38px;
}

.podcast-card-placeholder span {
  color: var(--color-gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

/* PLAY BUTTON */

.podcast-play {
  position: absolute;
  left: 50%;
  top: 50%;

  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;

  background: rgba(7, 22, 41, 0.78);
  color: var(--color-white);

  cursor: pointer;
}

.podcast-play i {
  margin-left: 3px;
  font-size: 14px;
}

/* CARD CONTENT */

.podcast-card-content {
  padding: 24px;
}

.podcast-card-episode {
  display: block;

  margin-bottom: 10px;

  color: var(--color-gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.podcast-card-content h3 {
  margin: 0 0 12px;

  color: var(--color-navy);

  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.podcast-card-content p {
  margin: 0;

  color: var(--color-muted);

  font-size: 14px;
  line-height: 1.7;
}

.podcast-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 20px;
  padding: 0;

  border: 0;

  background: transparent;
  color: var(--color-navy);

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
}

.podcast-watch i {
  font-size: 10px;
}

body.podcast-overlay-open {
  overflow: hidden;
}

/* =========================================================
   ORGANIZATION PAGE
   ========================================================= */

.organization-section {
  padding-block: 110px 120px;
  background: var(--color-white);
}

.organization-container {
  width: 100%;
}

.organization-header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 70px;
}

.organization-header .section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.organization-header h1 {
  margin: 0;
  color: var(--color-navy);
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.organization-header h1 span {
  display: block;
  color: var(--color-gold);
}

.organization-header p {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   MEMBER LIST
   --------------------------------------------------------- */

.organization-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.organization-member {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: 430px;
  overflow: hidden;

  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: 10px;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.organization-member:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 18px 45px rgba(7, 22, 41, 0.08);
}

/* ---------------------------------------------------------
   MEMBER IMAGE
   --------------------------------------------------------- */

.organization-member-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--color-border);
}

.organization-member-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(7, 22, 41, 0) 55%,
    rgba(7, 22, 41, 0.08) 100%
  );
}

.organization-member-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;

  object-fit: cover;
  object-position: center;

  transition: transform 600ms ease;
}

.organization-member:hover .organization-member-image img {
  transform: scale(1.035);
}

/* ---------------------------------------------------------
   MEMBER CONTENT
   --------------------------------------------------------- */

.organization-member-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 60px;
}

.organization-member-role {
  display: inline-flex;
  align-items: center;

  width: fit-content;
  margin-bottom: 16px;

  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.organization-member-content h2 {
  margin: 0;

  color: var(--color-navy);
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.organization-member-content p {
  max-width: 620px;
  margin: 22px 0 0;

  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   MEMBER ACTIONS
   --------------------------------------------------------- */

.organization-member-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 32px;
}

.organization-member-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 46px;
  padding: 0 20px;

  color: var(--color-white);
  background: var(--color-navy);
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-sm);

  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.organization-member-button span {
  font-size: 1.05rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.organization-member-button:hover {
  color: var(--color-dark-navy);
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.organization-member-button:hover span {
  transform: translateX(3px);
}

/* ---------------------------------------------------------
   FACEBOOK
   --------------------------------------------------------- */

.organization-member-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);

  font-size: 1rem;
  text-decoration: none;

  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.organization-member-facebook:hover {
  color: var(--color-dark-navy);
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   KEYBOARD ACCESSIBILITY
   --------------------------------------------------------- */

.organization-member-button:focus-visible,
.organization-member-facebook:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.35);
  outline-offset: 3px;
}

/* =========================================================
   MEMBER PROFILE PAGE
   ========================================================= */

.member-profile-section {
  min-height: 100vh;
  padding-block: 70px 110px;
  background: var(--color-soft);
}

.member-profile-container {
  width: 100%;
}

/* ---------------------------------------------------------
   BACK TO ORGANIZATION
   --------------------------------------------------------- */

.member-profile-back {
  margin-bottom: 30px;
}

.member-profile-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--color-muted);

  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.member-profile-back-link span {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.member-profile-back-link:hover {
  color: var(--color-navy);
}

.member-profile-back-link:hover span {
  transform: translateX(-3px);
}

/* ---------------------------------------------------------
   PROFILE CARD
   --------------------------------------------------------- */

.member-profile {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);

  overflow: hidden;

  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;

  box-shadow: 0 20px 55px rgba(7, 22, 41, 0.07);
}

/* ---------------------------------------------------------
   PROFILE IMAGE
   --------------------------------------------------------- */

.member-profile-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--color-border);
}

.member-profile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(7, 22, 41, 0) 55%,
    rgba(7, 22, 41, 0.1) 100%
  );
}

.member-profile-image img {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 650px;

  object-fit: cover;
  object-position: center;
}

/* ---------------------------------------------------------
   PROFILE CONTENT
   --------------------------------------------------------- */

.member-profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 70px;
}

.member-profile-role {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--color-gold);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.member-profile-content h1 {
  margin: 0;

  color: var(--color-navy);

  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.member-profile-divider {
  width: 55px;
  height: 3px;

  margin-top: 25px;

  background: var(--color-gold);
}

.member-profile-intro {
  max-width: 650px;

  margin: 25px 0 0;

  color: var(--color-muted);

  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   BIOGRAPHY
   --------------------------------------------------------- */

.member-profile-bio {
  max-width: 680px;

  margin-top: 38px;
  padding-top: 30px;

  border-top: 1px solid var(--color-border);
}

.member-profile-bio h2 {
  margin: 0 0 15px;

  color: var(--color-navy);

  font-size: 1.35rem;
  line-height: 1.3;
}

.member-profile-bio p {
  margin: 0;

  color: var(--color-muted);

  font-size: 0.98rem;
  line-height: 1.85;
}

/* ---------------------------------------------------------
   PROFILE ACTIONS
   --------------------------------------------------------- */

.member-profile-actions {
  display: flex;
  align-items: center;

  margin-top: 35px;
}

.member-profile-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 46px;

  padding: 0 20px;

  color: var(--color-white);
  background: var(--color-navy);
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-sm);

  font-size: 0.9rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.member-profile-facebook i {
  font-size: 0.95rem;
}

.member-profile-facebook:hover {
  color: var(--color-dark-navy);
  background: var(--color-gold);
  border-color: var(--color-gold);

  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   KEYBOARD ACCESSIBILITY
   --------------------------------------------------------- */

.member-profile-back-link:focus-visible,
.member-profile-facebook:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.35);
  outline-offset: 3px;
}
