@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
                   :root {
  --navy: #0d1f4c;
  --navy-2: #0a1838;
  --gold: #d4af37;
  --cream: #f5f1e4;
  --green: #2f6a3e; /* buttons / accents */
  --green-dark: #245231; /* hover */
  --green-bright: #3a7d4a;/* login on navy */
  --nav-h: 92px;



      --navy-deep: #060f26;

      --cream: #f5f1e4;
      --muted-blue: #8ea0c4;
      --card-frame: rgba(212, 175, 55, 0.18);

  --badge-navy: #0d1f4c;
  --badge-green: #2f6a3e;
  --badge-blue: #2c6e8f;
  --badge-gold: #c9a23a;

  --mission-tint: #eaf1ec;
  --vision-tint: #e9f0f7;
  --values-tint: #f8f4e9;



      --link: #c3cad8;
      --link-dim: #9aa3b7;

  /* consolidated (were previously declared twice) */
  --ink: #1c2540;
  --muted: #5b6478;
  --check: #4a7c59;

  /* was used but never defined -> borders silently failed */
  --line: rgba(13, 31, 76, 0.10);

  /* referenced by the committee/leadership cards but never defined -> transparent backgrounds and unreadable text */
  --card-bg: #ffffff;
  --text-dark: var(--navy);
  --ink-muted: var(--muted);
  --gold-soft: #e6c665;
  --cream-deep: #efe8d4;

  --card-radius: 14px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html, body { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream) !important;
  -webkit-font-smoothing: antialiased;
}

/* Anchor targets land below the sticky navbar instead of behind it */
#about, #contact { scroll-margin-top: var(--nav-h); }

/* ============ NAVBAR ============ */
.site-nav {
  background:linear-gradient(45deg, #1a3821, #010b23);
  min-height: var(--nav-h);
  padding-block: .5rem;
  position: sticky !important;
  top: 0;
  z-index: 1030;
  animation: slideDown .7s cubic-bezier(.2,.7,.2,1) both;
}

.brand-logo { height: 46px; width: auto; max-width: 160px; object-fit: contain; flex: 0 0 auto; display: block; }

.brand-text { line-height: 1.05; }
.brand-name {

  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 1.55rem;
  color: #fff;
}
.brand-sub {
  display: block;
  font-size: .56rem;
  letter-spacing: .22em;
  color: #c9cfdd;
  font-weight: 500;
}

.site-nav .nav-link {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    padding: 0 20px;
    height: 76px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: all .25s;
}
.nav-link:focus, .nav-link:hover {
    color: #d4af37 !important;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: #fff; }
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }

.btn-login {
  background: var(--green-bright);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: .6rem 1.6rem;
  transition: background .2s ease, transform .2s ease;
}
.btn-login:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }

.lang {
  color: #eef1f7;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  white-space: nowrap;
}
.lang:hover { color: var(--gold); }

/* white hamburger */
.navbar-toggler {
  border: 1px solid rgba(255,255,255,.35);
  padding: .35rem .55rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(212,175,55,.35); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ HERO (full-bleed background image) ============ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
  background: #f2ecdc;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:url('/alcotexa/static/src/img/hero_section.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  animation: heroZoom 1.6s cubic-bezier(.2,.7,.2,1) both;
}

/* cream gradient veil so navy text stays readable over the photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(245,241,228,.97) 0%,
    rgba(245,241,228,.88) 34%,
    rgba(245,241,228,.45) 60%,
    rgba(245,241,228,0) 90%);
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__inner { max-width: 710px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: clamp(.72rem, 1.4vw, .84rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--gold);
  flex: 0 0 auto;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -2px;
  font-size: clamp(2.3rem, 3.2vw, 3.15rem);
  margin: 0 0 1.4rem;
}

.hero__lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  max-width: 60ch;
  margin: 0 0 2.4rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 600;
  font-size: 1.02rem;
  padding: .95rem 1.85rem;
  border-radius: 10px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn-primary-solid {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  box-shadow: 0 12px 26px -14px rgba(47,106,62,.9);
}
.btn-primary-solid:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary-solid svg { transition: transform .25s ease; }
.btn-primary-solid:hover svg { transform: translateX(5px); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid rgba(47,106,62,.45);
}
.btn-outline-green:hover {
  border-color: var(--green);
  background: rgba(47,106,62,.06);
  transform: translateY(-2px);
}

/* ============ ENTRANCE ANIMATIONS ============ */
.reveal { opacity: 0; animation: fadeUp .85s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal:nth-child(1) { animation-delay: .15s; }
.reveal:nth-child(2) { animation-delay: .30s; }
.reveal:nth-child(3) { animation-delay: .45s; }
.reveal:nth-child(4) { animation-delay: .60s; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  :root { --nav-h: 76px; }
  .site-nav .navbar-collapse {
    background: var(--navy-2);
    margin-top: .75rem;
    border-radius: 12px;
    padding: 1rem 1rem 1.25rem;
  }
  .site-nav .nav-link::after { left: 0; right: auto; width: 26px; }
  .nav-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
    justify-content: space-between;
  }
  .hero__overlay {
    background: linear-gradient(180deg,
      rgba(245,241,228,.93) 0%,
      rgba(245,241,228,.82) 55%,
      rgba(245,241,228,.72) 100%);
  }
  .hero__bg { background-position: center; }
}

@media (max-width: 575.98px) {
  .brand-name { font-size: 1.3rem; }
  .brand-sub { font-size: .5rem; }
  .btn-hero { flex: 1 1 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav, .reveal, .hero__bg { animation: none !important; opacity: 1 !important; }
}

/* ============ ABOUT ============ */
.about { padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 3vw, 4rem); }
.about__stack { position: relative; }

.about__panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 20px 45px -30px rgba(13,31,76,.35);
}
.about__row { min-height: 360px; }

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem); /* room for the floating card */
}

.breadcrumb-mini {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb-mini svg { width: 14px; height: 14px; }

.about__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.about__lead {
  color: var(--muted);
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.btn-discover:hover { background: var(--green-dark); transform: translateY(-2px); color: #fff; }
.btn-discover svg { transition: transform .25s ease; }
.btn-discover:hover svg { transform: translateX(4px); }

/* cotton photo — add your own asset via background-image */
.about__media {
  background-size: cover;
  background-position: center;
  min-height: 260px;
}
.about__media::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* ---------- floating stats card ---------- */
.stats-card {
  position: relative;
  z-index: 3;
  margin: -8.25rem auto 0;
  width: calc(100% - 3rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 26px 55px -30px rgba(13,31,76,.4);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(.75rem, 2vw, 1.5rem);
}

.stat {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-inline: clamp(.75rem, 2vw, 1.5rem);
}

.stat__badge {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.stat__badge svg { width: 22px; height: 22px; }
.badge-navy { background: var(--badge-navy); }
.badge-green { background: var(--badge-green); }
.badge-blue { background: var(--badge-blue); }
.badge-gold { background: var(--badge-gold); }

.stat__title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .15rem;
}
.stat__desc {
  font-size: .78rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
  max-width: 24ch;
}

@media (min-width: 992px) {
  .stat--divider { border-left: 1px solid var(--line); }
}

/* ---------- entrance ---------- */
.fade-up { opacity: 0; animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .15s; }
.d3 { animation-delay: .25s; } .d4 { animation-delay: .35s; }

.fade-in { opacity: 0; animation: fadeIn .9s ease .15s forwards; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
  .about__media { min-height: 220px; order: -1; }
  .about__content { padding-bottom: clamp(3rem, 6vw, 4rem); }
  .stat--divider { border-left: 0; }
  .stat { padding-block: .35rem; }
}

@media (max-width: 575.98px) {
  .stats-card { margin-top: -2rem; width: calc(100% - 1.5rem); }
  .about__media { min-height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in { animation: none !important; opacity: 1 !important; }
}

/* ============ LEGACY ============ */
.legacy { padding: clamp(.3rem, 3vw, 3rem) 0; }

.legacy__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(0rem, 3vw, 2rem);
}

.legacy__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  margin: 0 0 1.1rem;
}

.legacy__lead {
  color: var(--muted);
  font-size: clamp(.92rem, 1.5vw, 1.02rem);
  line-height: 1.75;
  max-width: 40ch;
  margin: 0 0 1.9rem;
}

.btn-learn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #2f6a3e;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  padding: .72rem 1.6rem;
  border: 1.5px solid rgb(47 106 62);
  border-radius: 9px;
  background: transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-learn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.legacy__img {
  border-radius: 18px;
  background-image: url("https://images.unsplash.com/photo-1620756236300-3d9d3f9c2a0f?w=1000&q=70"), linear-gradient(135deg,#dfe8dd,#eadfcb);
  background-size: cover;
  background-position: center;
  height: clamp(240px, 34vw, 380px);
  box-shadow: 0 24px 50px -30px rgba(13,31,76,.45);
}

@media (max-width: 991.98px) {
  .legacy__content { padding-right: 0; text-align: left; }
  .legacy__img { height: clamp(220px, 48vw, 340px); }
}
@media (max-width: 575.98px) {
  .legacy__img { height: 210px; }
  .btn-learn { align-self: stretch; justify-content: center; }
}

/* ============ ABOUT (redesigned) ============ */
.about2 { padding: clamp(2.5rem, 6vw, 5rem) 0; overflow: hidden; }
.about2__grid { align-items: center; }

/* ----- media: image + offset gold frame + heritage seal ----- */
.about2__media { position: relative; }
.about2__frame {
  position: absolute;
  z-index: 0;
  right: -14px;
  bottom: -14px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  border: 2px solid var(--gold);
  border-radius: 18px;
  opacity: 0;
  transform: translate(-10px, -10px);
  transition: opacity 0.8s var(--ease) 0.15s, transform 0.8s var(--ease) 0.15s;
}
.about2__imgwrap {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(13, 31, 76, 0.55);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease), opacity 0.9s var(--ease);
}
.about2__img {
  background-image: url(/alcotexa/static/src/img/cotton-Dx55hhAj.jpg), linear-gradient(135deg,#dfe8dd,#eadfcb);
  background-size: cover;
  background-position: center;
  height: clamp(280px, 40vw, 440px);
  transition: transform 1.3s var(--ease);
}
.about2__media:hover .about2__img { transform: scale(1.04); }

/* reveal the media group */
.about2__media.in .about2__frame { opacity: 1; transform: translate(0, 0); }
.about2__media.in .about2__imgwrap { opacity: 1; clip-path: inset(0 0 0 0); }
.about2__media.in  { opacity: 1; transform: scale(1) rotate(0); }

/* ----- content ----- */
.about2__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  margin: 0 0 1rem;
}
.about2__lead {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  max-width: 70ch;
  margin: 0 0 1.7rem;
}
.about2__facts { display: flex; flex-direction: column; gap: 1.15rem; margin-bottom: 1.9rem; }
.fact2 { display: flex; gap: 0.9rem; align-items: flex-start; }
.fact2__ic {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--green);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.fact2__ic svg { width: 21px; height: 21px; }
.fact2:hover .fact2__ic { transform: translateY(-3px); background: var(--green); color: #fff; }
.fact2__label { font-weight: 600; color: var(--navy); font-size: 0.98rem; margin: 0 0 0.15rem; }
.fact2__text { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin: 0; max-width: 60ch; }

@media (min-width: 992px) {
  .about2__content { padding-left: clamp(1rem, 3vw, 2.5rem); }
}
@media (max-width: 991.98px) {
  .about2__content { margin-top: 2.75rem; }
}

/* scroll-reveal for the content column (staggered) */
.a2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--a2-delay, 0s);
}
.a2-reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .about2__frame,
  .about2__imgwrap,

  .a2-reveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .about2__img { transition: none !important; }
}

/* ============ MISSION / VISION / VALUES ============ */
.mvv-section {
  background: #fffcf2;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  font-family: "Poppins", system-ui, sans-serif;
}

/* ============================================================
   MVV CARDS
   ============================================================ */
.mvv-card {
  position: relative;
  height: 100%;
  min-height: clamp(300px, 40vh, 380px);
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: var(--card-radius);
  overflow: hidden;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.25rem, 3vw, 2.25rem) clamp(3.25rem, 6vw, 4.5rem);
  box-shadow: 0 12px 34px rgba(13, 31, 76, 0.07);
  border: 1px solid rgba(13, 31, 76, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.mvv-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  background: var(--mvv-accent, var(--gold));
  transform: scaleX(0.28);
  transform-origin: center;
  opacity: 0.85;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
  z-index: 3;
}
.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(13, 31, 76, 0.14);
  border-color: color-mix(in srgb, var(--mvv-accent, var(--gold)) 40%, transparent);
}
.mvv-card:hover::after { transform: scaleX(1); opacity: 1; }

.mvv-card--mission { background: var(--mission-tint); --mvv-accent: #3f6b52; }
.mvv-card--vision  { background: var(--vision-tint);  --mvv-accent: #35618f; }
.mvv-card--values  { background: var(--values-tint);  --mvv-accent: var(--gold); }

.mvv-fill { display: block; flex: 1 1 0%; transition: flex-grow 0.55s var(--ease); }
.mvv-fill--top { flex-grow: 1; }
.mvv-fill--bot { flex-grow: 1; }

.mvv-head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mvv-icon {
  width: clamp(58px, 8vw, 72px);
  height: clamp(58px, 8vw, 72px);
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(13, 31, 76, 0.06);
  transition: background 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.mvv-icon svg { width: 46%; height: 46%; transition: stroke 0.45s var(--ease); }
.mvv-card--mission .mvv-icon svg { stroke: #3f6b52; }
.mvv-card--vision  .mvv-icon svg { stroke: #35618f; }
.mvv-card--values  .mvv-icon svg { stroke: var(--gold); }

.mvv-title {
  font-family: "Playfair Display", "Noto Serif", serif;
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

.mvv-body {
  flex: 0 0 auto;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.mvv-body-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease) 0.05s, transform 0.45s var(--ease) 0.05s;
}

.mvv-divider {
  width: 46px;
  height: 2px;
  margin: 1.15rem auto 1.15rem;
  background: var(--gold);
  border: 0;
  opacity: 0.9;
}
.mvv-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 30ch;
  margin: 0 auto;
}
.mvv-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
}
.mvv-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 400;
}
.mvv-list li svg { flex: 0 0 auto; width: 18px; height: 18px; stroke: var(--check); }

.mvv-scene {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transform-origin: bottom center;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.mvv-scene svg { width: 100%; height: auto; display: block; }

/* ============ card reveal on scroll ============ */
@media (prefers-reduced-motion: no-preference) {
  .mvv-card {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease),
                box-shadow 0.4s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease);
    transition-delay: var(--reveal-delay, 0s);
  }
  .mvv-card.is-visible { opacity: 1; transform: translateY(0) scale(1); }
  .mvv-card.is-visible:hover { transform: translateY(-6px); }

  .mvv-icon, .mvv-title { opacity: 0; }
  .mvv-card.is-visible .mvv-icon  { animation: popIn 0.55s var(--ease) 0.15s forwards; }
  .mvv-card.is-visible .mvv-title { animation: fadeUp 0.55s var(--ease) 0.3s forwards; }

  .mvv-list li svg path { stroke-dasharray: 24; stroke-dashoffset: 24; }
  .mvv-card.is-visible .mvv-list li:nth-child(1) svg path { animation: drawCheck 0.45s var(--ease) 0.62s forwards; }
  .mvv-card.is-visible .mvv-list li:nth-child(2) svg path { animation: drawCheck 0.45s var(--ease) 0.74s forwards; }
  .mvv-card.is-visible .mvv-list li:nth-child(3) svg path { animation: drawCheck 0.45s var(--ease) 0.86s forwards; }
  .mvv-card.is-visible .mvv-list li:nth-child(4) svg path { animation: drawCheck 0.45s var(--ease) 0.98s forwards; }
  .mvv-card.is-visible .mvv-list li:nth-child(5) svg path { animation: drawCheck 0.45s var(--ease) 1.1s forwards; }

  .mvv-card.is-visible .ship   { animation: bob 4.5s ease-in-out 1.4s infinite; transform-origin: center; }
  .mvv-card.is-visible .wave   { animation: waveShift 6s ease-in-out infinite; }
  .mvv-card.is-visible .cotton { animation: sway 5s ease-in-out 1.4s infinite; transform-origin: bottom center; }
}

@keyframes fadeRight { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
@keyframes popIn { 0% { opacity: 0; transform: scale(0.7); } 60% { opacity: 1; transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
@keyframes growLine { from { width: 0; opacity: 0; } to { width: 46px; opacity: 0.9; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
@keyframes sceneIn { from { opacity: 0; } to { opacity: 0.5; } }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-7px) rotate(1deg); } }
@keyframes waveShift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-13px); } }
@keyframes sway { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }


@media (max-width: 767.98px) {
  .mvv-card { min-height: auto; padding-bottom: 3.5rem; }
  .mvv-text { max-width: 36ch; }
}

/* ============================================================
   hover state: head rises + body/scene appear
   ============================================================ */
@media (hover: hover) {
  .mvv-card:hover .mvv-fill--top { flex-grow: 0; }

  .mvv-card:hover .mvv-body { grid-template-rows: 1fr; }
  .mvv-card:hover .mvv-body-inner { opacity: 1; transform: translateY(0); }

  .mvv-card:hover .mvv-scene { opacity: 0.65; transform: translateY(0) scale(1.12); }

  .mvv-card:hover::before { opacity: 0; animation: none; }

  .mvv-card:hover { background: #fff; }
  .mvv-card:hover .mvv-icon { transform: scale(1.1) translateY(-2px); }

  .mvv-card--mission:hover .mvv-icon {
    background: #3f6b52;
    box-shadow: inset 0 0 0 1px rgba(63,107,82,.45), 0 12px 24px -10px rgba(63,107,82,.65);
  }
  .mvv-card--mission:hover .mvv-icon svg { stroke: #fff; }

  .mvv-card--vision:hover .mvv-icon {
    background: #35618f;
    box-shadow: inset 0 0 0 1px rgba(53,97,143,.45), 0 12px 24px -10px rgba(53,97,143,.65);
  }
  .mvv-card--vision:hover .mvv-icon svg { stroke: #fff; }

  .mvv-card--values:hover .mvv-icon {
    background: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,.5), 0 12px 24px -10px rgba(212,175,55,.7);
  }
  .mvv-card--values:hover .mvv-icon svg { stroke: #fff; }
}

/* ============================================================
   touch / reduced-motion / no-hover fallback: show card fully open
   ============================================================ */
@media (hover: none) {
  .mvv-fill--top { flex-grow: 0; }
  .mvv-body { grid-template-rows: 1fr; }
  .mvv-body-inner { opacity: 1; transform: none; }
  .mvv-scene { opacity: 0.55; transform: none; }
}

/* ============ SECTION EYEBROW / TITLE ============ */
.isvc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.isvc-eyebrow::before,
.isvc-eyebrow::after {
  content: "";
  height: 1px;
  width: 36px;
  background: var(--gold);
  display: inline-block;
}

.isvc-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  text-align: center;
  margin-bottom: 56px;
}

/* Contact Us */
.contact-section{
  background-color: var(--cream);
  padding: 80px 15px;
}

.contact-title{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 18px;
}

.contact-intro{
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.contact-info-item{
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--values-tint);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label{
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 5px;
}

.contact-detail{
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

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

.contact-form-card{
  background-color: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(13, 31, 76, 0.08);
  border-radius: 10px;
  padding: 36px 30px;
  transition: box-shadow 0.3s ease;
}

.contact-form-card:hover{
  box-shadow: 0 20px 46px rgba(13, 31, 76, 0.12);
}

.form-label-custom{
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}

.form-control-custom{
  background-color: #faf9f5;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.9rem;
  width: 100%;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control-custom:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
  background-color: #fff;
}

textarea.form-control-custom{
  resize: vertical;
  min-height: 120px;
}

.attach-note{
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 8px;
}

.attach-label{
  cursor: pointer;
  width: fit-content;
  transition: color 0.2s ease;
}

.attach-label:hover{
  color: var(--gold);
}

.attach-file-list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.attach-file-list:empty{
  margin-bottom: 0;
}

.attach-file-chip{
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--values-tint);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 5px 10px 5px 12px;
  font-size: 0.78rem;
  color: var(--ink);
}

.attach-file-remove{
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
}

.attach-file-remove:hover{
  color: var(--navy);
}

.btn-send{
  background-color: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  width: 100%;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-send:hover{
  background-color: var(--gold);
  color: var(--navy);
}

.icon-svg{
  width: 18px;
  height: 18px;
}

@media (max-width: 991.98px){
  .contact-form-card{
    margin-top: 40px;
  }
}

/* ============================================================
   ANIMATION LAYER — small helper animations layered on existing elements
   ============================================================ */

.btn-primary-solid,
.btn-outline-green,
.btn-discover,
.btn-learn,
.btn-send {
  position: relative;
  overflow: hidden;
}
.btn-primary-solid::after,
.btn-outline-green::after,
.btn-discover::after,
.btn-learn::after,
.btn-send::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.38) 50%, transparent 66%);
  transform: translateX(-130%) skewX(-12deg);
  transition: transform .8s var(--ease);
}
.btn-primary-solid:hover::after,
.btn-outline-green:hover::after,
.btn-discover:hover::after,
.btn-learn:hover::after,
.btn-send:hover::after {
  transform: translateX(130%) skewX(-12deg);
}

.legacy__img { transition: transform 1.2s var(--ease); }
.legacy__img:hover { transform: scale(1.035); }

.stat { transition: transform .4s var(--ease); }
.stat:hover { transform: translateY(-5px); }
.stat__badge { transition: transform .4s var(--ease); }
.stat:hover .stat__badge { transform: scale(1.1); }
.contact-form-card { transition: transform .35s var(--ease), box-shadow .3s ease; }
.contact-form-card:hover { transform: translateY(-4px); }

body.js-anim .eyebrow::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s var(--ease);
}
body.js-anim .eyebrow.line-in::before { transform: scaleX(1); }
body.js-anim .isvc-eyebrow::before,
body.js-anim .isvc-eyebrow::after {
  transform: scaleX(0);
  transition: transform .9s var(--ease);
}
body.js-anim .isvc-eyebrow::before { transform-origin: right; }
body.js-anim .isvc-eyebrow::after { transform-origin: left; }
body.js-anim .isvc-eyebrow.line-in::before,
body.js-anim .isvc-eyebrow.line-in::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .btn-primary-solid::after,
  .btn-outline-green::after,
  .btn-discover::after,
  .btn-learn::after,
  .btn-send::after { display: none; }
  .legacy__img,
  .stat,
  .stat__badge,
  .contact-form-card { transition: none !important; }
  .legacy__img:hover,
  .stat:hover,
  .contact-form-card:hover,
  .stat:hover .stat__badge { transform: none !important; }
  body.js-anim .eyebrow::before,
  body.js-anim .isvc-eyebrow::before,
  body.js-anim .isvc-eyebrow::after { transform: none !important; }
}

/* ============================================================
   NO-JS FALLBACK — show content without waiting for scroll reveal
   ============================================================ */
html:not(.js) .mvv-card,
html:not(.js) .mvv-icon,
html:not(.js) .mvv-title,
html:not(.js) .mvv-divider,
html:not(.js) .mvv-text,
html:not(.js) .mvv-list,
html:not(.js) .a2-reveal,
html:not(.js) .about2__frame,
html:not(.js) .about2__imgwrap {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}
html:not(.js) .mvv-scene { opacity: 0.5 !important; }
html:not(.js) .mvv-fill--top { flex-grow: 0 !important; }
html:not(.js) .mvv-body { grid-template-rows: 1fr !important; }
html:not(.js) .mvv-body-inner { opacity: 1 !important; }

/* ============================================================
   NAVBAR refinements + THEME TOGGLE
   ============================================================ */
.site-nav.navbar { padding-block: .5rem; }

.site-nav {
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              padding .35s var(--ease), backdrop-filter .35s var(--ease);
  will-change: background-color, box-shadow, padding;
}
.site-nav.scrolled {
  background-color: rgba(13, 31, 76, .82);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 10px 30px -12px rgba(13, 31, 76, .45);
  padding-block: .2rem;
}
.site-nav.scrolled .brand-sub { opacity: .85; }
.site-nav .navbar-brand { margin: 0; padding: 0; display: inline-flex; align-items: center; gap: .65rem; }
.site-nav .brand-logo { height: 44px; width: auto; max-width: 150px; object-fit: contain; }
.site-nav .navbar-nav { gap: .1rem; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* light/dark toggle button */
.theme-toggle {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.theme-toggle:hover { background: rgba(255,255,255,.14); border-color: rgba(212,175,55,.6); transform: translateY(-1px); }
.theme-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.theme-toggle svg {
  position: absolute; width: 20px; height: 20px;
  transition: opacity .28s ease, transform .4s var(--ease);
}

@media (max-width: 991.98px) {
  .nav-actions {
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
    justify-content: flex-start;
  }
}

/* ============================================================
   DARK MODE — toggled via html[data-theme="dark"] (navbar button)
   ============================================================ */
html[data-theme="dark"] {
  --page-bg: #0b1220;
  --surface: #10192b;
  --surface-2: #16223a;
  --line: rgba(255,255,255,.10);
  --ink: #e7ecf6;
  --muted: #9fb0c9;
  --card-bg: var(--surface);
  --text-dark: #eef2fb;
  --ink-muted: var(--muted);
}
html[data-theme="dark"] body { background: var(--page-bg) !important; color: var(--ink); }
html[data-theme="dark"] .site-nav.scrolled {
  background-color: rgba(8, 13, 26, .82);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .6);
}

html[data-theme="dark"] .hero__title,
html[data-theme="dark"] .about2__title,
html[data-theme="dark"] .legacy__title,
html[data-theme="dark"] .about__title,
html[data-theme="dark"] .mvv-title,
html[data-theme="dark"] .isvc-title,
html[data-theme="dark"] .stat__title,
html[data-theme="dark"] .fact2__label,
html[data-theme="dark"] .contact-title,
html[data-theme="dark"] .contact-label,
html[data-theme="dark"] .form-label-custom { color: #eef2fb; }

html[data-theme="dark"] .hero__lead,
html[data-theme="dark"] .about2__lead,
html[data-theme="dark"] .mvv-text,
html[data-theme="dark"] .mvv-list li,
html[data-theme="dark"] .fact2__text,
html[data-theme="dark"] .stat__desc,
html[data-theme="dark"] .contact-intro,
html[data-theme="dark"] .contact-detail { color: var(--muted); }

html[data-theme="dark"] .eyebrow { color: #7fd0a0; }

html[data-theme="dark"] .hero { background: #0b1220; }
html[data-theme="dark"] .hero__overlay {
  background: linear-gradient(90deg,
    rgba(8,13,26,.96) 0%,
    rgba(8,13,26,.88) 34%,
    rgba(8,13,26,.55) 60%,
    rgba(8,13,26,0) 90%);
}
@media (max-width: 991.98px) {
  html[data-theme="dark"] .hero__overlay {
    background: linear-gradient(180deg, rgba(8,13,26,.93) 0%, rgba(8,13,26,.82) 55%, rgba(8,13,26,.74) 100%);
  }
}

html[data-theme="dark"] .stats-card {
  background: var(--surface); border-color: var(--line);
  box-shadow: 0 26px 55px -30px rgba(0,0,0,.6);
}

html[data-theme="dark"] .fact2__ic { background: rgba(255,255,255,.05); border-color: var(--line); color: #7fd0a0; }
html[data-theme="dark"] .fact2:hover .fact2__ic { background: var(--green); color: #fff; }
html[data-theme="dark"] .btn-learn { color: #7fd0a0; border-color: rgba(127,208,160,.5); }
html[data-theme="dark"] .btn-learn:hover { background: var(--gold); border-color: var(--gold); color: #0b1220; }

html[data-theme="dark"] .mvv-section { background: #0e1728; }
html[data-theme="dark"] .mvv-card {
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(0,0,0,.4);
}
html[data-theme="dark"] .mvv-card--mission { background: #14261d; }
html[data-theme="dark"] .mvv-card--vision  { background: #142131; }
html[data-theme="dark"] .mvv-card--values  { background: #241f14; }
html[data-theme="dark"] .mvv-icon { background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
@media (hover: hover) {
  html[data-theme="dark"] .mvv-card:hover { background: var(--surface-2); }
}

html[data-theme="dark"] .contact-section { background: #0e1728; }
html[data-theme="dark"] .contact-icon { background: rgba(212,175,55,.12); }
html[data-theme="dark"] .contact-form-card {
  background: var(--surface); border-color: var(--line);
  box-shadow: 0 15px 40px rgba(0,0,0,.5);
}
html[data-theme="dark"] .form-control-custom {
  background: #0f1a2e; border-color: var(--line); color: #e7ecf6;
}
html[data-theme="dark"] .form-control-custom::placeholder { color: #6f8199; }
html[data-theme="dark"] .form-control-custom:focus { background: #0f1a2e; border-color: var(--gold); }
html[data-theme="dark"] .attach-note { color: var(--muted); }
html[data-theme="dark"] .attach-file-chip { background: #0f1a2e; border-color: var(--line); color: #cdd6e6; }
html[data-theme="dark"] .btn-send { background: var(--gold); color: #0b1220; }
html[data-theme="dark"] .btn-send:hover { background: #e6c655; color: #0b1220; }

html[data-theme="dark"] .about2__imgwrap,
html[data-theme="dark"] .legacy__img { filter: brightness(.9); }

html[data-theme="dark"] .committee-title,
html[data-theme="dark"] .committee-section .member-name { color: var(--text-dark); }

html[data-theme="dark"] .president-card,
html[data-theme="dark"] .vp-card,
html[data-theme="dark"] .member-card {
  background-color: var(--card-bg);
  border-color: var(--line);
}


/* ================= FOOTER ================= */
.site-footer {
    background: linear-gradient(45deg, #010b23 , #1a3821);
  color: var(--link);
  font-size: .92rem;
}

.footer__top { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); }

.footer__brand-row { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
.footer__logo { width: 46px; height: 46px; flex: 0 0 auto; }
.footer__name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .13em;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.footer__sub {
  display: block;
  font-size: .52rem;
  letter-spacing: .2em;
  color: var(--link-dim);
  margin-top: .3rem;
}
.footer__about { color: var(--link-dim); line-height: 1.7; max-width: 34ch; margin: 0 0 1.4rem; }

.socials { display: flex; gap: .6rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #dfe4ee;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.footer__title {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: .7rem;
}
.footer__title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px; background: var(--gold);
}

.footer__links { list-style: none; margin: 0; padding: 0; }
.footer__links li { margin-bottom: .7rem; }
.footer__links a {
  color: var(--link);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}
.footer__links a:hover { color: var(--gold); padding-left: 5px; }

.contact-item { display: flex; gap: .7rem; margin-bottom: .95rem; color: var(--link-dim); line-height: 1.5; }
.contact-item svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--gold); margin-top: 2px; }
.contact-item a { color: var(--link-dim); text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

.newsletter { display: flex; margin-top: 1.2rem; max-width: 320px; }
.newsletter input {
  flex: 1 1 auto;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  color: #fff;
  padding: .6rem .85rem;
  font-size: .88rem;
  outline: none;
}
.newsletter input::placeholder { color: #8791a6; }
.newsletter input:focus { border-color: var(--gold); }
.newsletter button {
  border: none;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 0 1.05rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.newsletter button:hover { background: #e6c356; }
.newsletter button svg { width: 18px; height: 18px; }

.footer__bottom {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0;
}
.footer__bottom .container {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  align-items: center; justify-content: space-between;
}
.footer__copy { margin: 0; color: var(--link-dim); font-size: .84rem; }
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a { color: var(--link-dim); text-decoration: none; font-size: .84rem; }
.footer__legal a:hover { color: var(--gold); }

/* ================= SCROLL REVEAL ================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 575.98px) {
  .footer__bottom .container { justify-content: center; text-align: center; }
  .footer__copy { width: 100%; }
  .footer__legal { justify-content: center; }
}

/* ================= GAZETTE (legacy milestone cards) ================= */
.gazette {
  background:
   linear-gradient(45deg, #101425, #1a3722);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.gazette__eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.gazette__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.gazette__lead {
  color: #e2e2e2;
  font-weight: 300;
  max-width: 34rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.gazette__archive {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.25s ease, opacity 0.25s ease;
}
.gazette__archive:hover,
.gazette__archive:focus-visible {
  color: var(--gold);
  gap: 0.85rem;
}
.gazette__archive svg { transition: transform 0.25s ease; }
.gazette__archive:hover svg { transform: translateX(3px); }

.issue-card { height: 100%; }

.issue-card__frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(160deg, #17284f 0%, #0c1836 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  outline: 1px solid var(--card-frame);
  outline-offset: -1px;
}

.issue-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.issue-card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.issue-card__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--cream);
  font-size: 1.4rem;
  margin: 1.15rem 0 0.5rem;
}

.issue-card__text {
  color:white;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (hover: hover) {
  .issue-card__frame {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .issue-card:hover .issue-card__frame {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

@media (max-width: 767.98px) {
  .gazette__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ================= COMMITTEE / MEMBERS (about page) ================= */
.committee-section{
  padding: 60px 15px;
}

.committee-title{
  font-family: 'Playfair Display', serif;
  letter-spacing: 4px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.75rem);
}

.title-divider{
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 18px auto 45px;
}

.role-label{
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.member-name{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  font-size: 1.05rem;
  margin: 0;
  text-transform: uppercase;
}

.president-card{
  background-color: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  padding: 30px 20px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.president-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.president-card .member-name{
  font-size: clamp(1.15rem, 3vw, 1.6rem);
}

.vp-card{
  background-color: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  padding: 28px 15px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vp-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.09);
  border-color: var(--gold);
}

.members-heading{
  text-align: center;
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px 0 30px;
}

.member-card{
  background-color: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  padding: 20px 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.member-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.member-card .member-name{
  font-size: 0.85rem;
}

.show-more-wrap{
  text-align: center;
  margin-top: 35px;
}

.btn-show-more{
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: all 0.25s ease;
}

.btn-show-more:hover{
  background-color: var(--gold);
  color: #fff;
}

@media (max-width: 767.98px){
  .president-card, .vp-card, .member-card{
    padding: 22px 12px;
  }
}
