/* assets/css/style.css — NCC "P" Coy Frontend */

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a3d1a;
  --green-mid:    #2a5c2a;
  --green-light:  #3a7a3a;
  --green-pale:   #f0f5eb;
  --red:          #c0392b;
  --red-dark:     #922b21;
  --gold:         #c9a227;
  --white:        #ffffff;
  --off-white:    #f7f8f3;
  --text-dark:    #1a2e1a;
  --text-muted:   #4a6040;
  --border:       rgba(42,92,42,0.14);
  --nav-h:        64px;
  --radius:       10px;
  --shadow-card:  0 4px 24px rgba(26,61,26,0.09);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  padding-top: var(--nav-h);
}
html {
  overflow-x: hidden;
}

a { color: inherit; }
address { font-style: normal; }

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--green-dark);
  height: var(--nav-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(18,40,18,0.97); backdrop-filter: blur(8px); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2rem; gap: 1rem;
}
.nav-emblem img {
  width: 50px; height: 50px;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
}
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }

.brand-name { display: block; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); letter-spacing: 0.05em; line-height: 1.1; }
.brand-sub  { display: block; font-size: 10.5px; color: rgba(255,255,255,0.58); line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  text-decoration: none; color: rgba(255,255,255,0.85);
  font-size: 13.5px; font-weight: 500; padding: 6px 13px;
  border-radius: 5px; letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s; position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 13px; right: 13px;
  height: 2px; background: var(--red); border-radius: 1px;
}

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-verify-nav {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: var(--white); text-decoration: none;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.07em; padding: 8px 18px; border-radius: 6px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-verify-nav:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-verify-nav svg { width: 13px; height: 13px; flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; background: transparent; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile verify link — shown only inside drawer on small screens */
.nav-link--verify { display: none; color: var(--red) !important; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.07em; text-decoration: none;
  padding: 12px 28px; border-radius: 40px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline-white { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); }
.btn-red-solid { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-red-solid:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn-green-solid { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); border-radius: 8px; }
.btn-green-solid:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); }
.btn-outline-red { border-color: var(--red); color: var(--red); background: transparent; }
.btn-outline-red:hover { background: var(--red); color: var(--white); }

/* ── HERO (shared base) ─────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(12,35,12,0.90) 0%, rgba(28,65,28,0.80) 55%, rgba(10,28,10,0.93) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 680px; padding: 3rem 2rem; text-align: center;
}

.hero-emblem {
  width: 78px; height: 78px; margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInDown 0.7s ease both;
}
.hero-emblem img {
  width: 100%; height: 100%; object-fit: contain;
}
.hs-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

}
.hero-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.2rem); color: var(--white);
  letter-spacing: 0.04em; line-height: 1.15; margin: 0;
  animation: fadeInDown 0.7s 0.08s ease both;
}
.hero-company {
  font-family: 'Oswald', sans-serif; font-size: 1.35rem; color: var(--gold);
  letter-spacing: 0.09em; margin-top: 0.4rem;
  animation: fadeInUp 0.7s 0.18s ease both;
}
.hero-command {
  font-size: 0.95rem; color: rgba(255,255,255,0.72); margin-top: 0.2rem;
  animation: fadeInUp 0.7s 0.26s ease both;
}
.hero-motto {
  display: inline-block; margin: 1.4rem auto 0;
  border: 1px solid rgba(255,255,255,0.32); border-radius: 30px;
  padding: 8px 22px; font-family: 'Merriweather', serif; font-style: italic;
  font-size: 0.9rem; color: rgba(255,255,255,0.88);
  animation: fadeInUp 0.7s 0.34s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2rem; animation: fadeInUp 0.7s 0.42s ease both;
}
.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.5); animation: bounce 2.2s infinite;
  cursor: pointer;
}
.hero-scroll svg { width: 22px; height: 22px; }

/* ── HERO SLIDESHOW ─────────────────────────────────────── */
.hero--slideshow {
  position: relative;
  height: 100vh;
  min-height: 560px;
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hs-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hs-slide--active { opacity: 1; pointer-events: auto; }

.hs-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.hs-slide--active .hs-slide-bg {
  transform: scale(1);
  transition: transform 8s ease;
}
.hs-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hs-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.hs-caption {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  background: rgba(0,0,0,0.35);
  padding: 3px 10px;
  border-radius: 2px;
  z-index: 15;
}

.hs-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}
.hs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hs-dot--active { background: var(--gold); transform: scale(1.3); }

.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.hs-arrow:hover { background: rgba(0,0,0,0.70); }
.hs-arrow svg { width: 18px; height: 18px; }
.hs-arrow--prev { left: 20px; }
.hs-arrow--next { right: 20px; }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--white); border-bottom: 1px solid var(--border);
}
.stat-item { padding: 2rem 1rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.stat-label  { font-size: 0.72rem; letter-spacing: 0.13em; color: var(--text-muted); text-transform: uppercase; margin-top: 5px; }

/* ── SECTION LABELS ────────────────────────────────────── */
.eyebrow {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); font-weight: 600; display: block; margin-bottom: 0.5rem;
}
.section-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.85rem; color: var(--green-dark); line-height: 1.2; }
.section-title.center { text-align: center; }
.eyebrow.center { text-align: center; }

/* ── ABOUT ──────────────────────────────────────────────── */
.about-section { background: var(--off-white); padding: 5rem 2rem; }
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-body { font-size: 1rem; line-height: 1.78; color: var(--text-muted); margin-bottom: 0.8rem; }
.about-body:last-of-type { margin-bottom: 0; }

.about-vision {
  border-left: 3px solid var(--gold); margin: 0;
  padding: 10px 0 10px 16px;
  color: var(--text-muted); font-style: italic;
  font-size: 0.95rem; line-height: 1.7;
}
.about-vision__label {
  display: block; font-style: normal;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}

.about-history-excerpt { color: var(--text-muted); font-size: 0.9rem; opacity: 0.75; }

/* ── LEADERSHIP SECTION ════════════════════════════════════ */
.leadership-section {
  background: var(--off-white);
  padding: 4.5rem 2rem;
  border-top: 1px solid var(--border);
}
.leadership-inner {
  max-width: 900px;
  margin: 0 auto;
}
.leadership-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── Category divider ── */
.leadership-category__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.6rem;
}
.leadership-category__label::before,
.leadership-category__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.leadership-category__label span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  white-space: nowrap;
  padding: 4px 16px;
  border: 1px solid var(--green-mid);
  border-radius: 20px;
}

/* ── Institutional Carousel (Rector + DSS) ── */
.inst-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.inst-carousel {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.inst-slide {
  min-width: 100%;
}

/* Carousel dots */
.inst-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}
.inst-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.inst-dot.active {
  background: var(--green-mid);
  transform: scale(1.3);
}

/* ── Leadership card ── */
.leadership-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: var(--off-white);
  transition: box-shadow 0.25s, transform 0.25s;
}
.leadership-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,61,26,0.13);
}

/* SWC cards stack with margin */
.swc-category .leadership-card {
  margin-bottom: 1.4rem;
}
.swc-category .leadership-card:last-child {
  margin-bottom: 0;
}

.leadership-card__photo {
  overflow: hidden;
  background: var(--green-pale);
  aspect-ratio: 3 / 4;
}
.leadership-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.leadership-card__initials {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--green-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 3px;
}
.leadership-card__body {
  padding: 2.5rem 2.8rem;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leadership-card__cat-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(192,57,43,0.09);
  color: var(--red);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(192,57,43,0.18);
  margin-bottom: 1rem;
}
.leadership-card__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 0.1rem;
}
.leadership-card__prefix {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--gold);
  margin-right: 5px;
}
.leadership-card__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0.75rem 0;
}
.leadership-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.leadership-card__meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--green-mid);
}
.leadership-card__divider {
  width: 44px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 1.2rem 0;
}
.leadership-card__desc {
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin: 0;
}

/* ── EXECUTIVES / CO SECTION ────────────────────────────── */
.co-section { background: var(--white); padding: 4.5rem 2rem; }
.co-inner   { max-width: 900px; margin: 0 auto; }
.co-header  { text-align: center; margin-bottom: 2.5rem; }

.exec-carousel-wrap { width: 100%; }
.exec-carousel      { width: 100%; }
.exec-slide         { display: none; }
.exec-slide.active  { display: block; }

.co-card {
  display: grid; grid-template-columns: 320px 1fr;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.co-photo { overflow: hidden; aspect-ratio: 3/4; }
.co-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.co-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
}
.co-info {
  padding: 2.5rem 2.8rem; background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
}
.co-badge {
  display: inline-block; background: rgba(192,57,43,0.09);
  color: var(--red); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(192,57,43,0.18);
  margin-bottom: 1rem; align-self: flex-start;
}
.co-name { font-family: 'Oswald', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--green-dark); }
.co-meta { display: flex; flex-direction: column; gap: 5px; margin: 0.75rem 0; }
.co-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-muted); }
.co-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--green-mid); }
.co-divider { width: 44px; height: 3px; background: var(--red); border-radius: 2px; margin: 1.2rem 0; }
.co-bio { font-size: 0.93rem; line-height: 1.78; color: var(--text-muted); }

.exec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.exec-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.exec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,61,26,0.14);
}
.exec-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-pale);
}
.exec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.exec-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 180px;
  padding: 1rem;
}
.exec-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
}
.exec-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  line-height: 1.2;
}
.exec-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.exec-card-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.exec-card-footer { margin-top: auto; }
.exec-card-cta { display: inline-flex; }

.exec-team-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.exec-team-card img,
.exec-team-card .exec-card-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.exec-card-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,92,42,0.08);
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 700;
}
.exec-team-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.exec-team-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--red);
}
.exec-team-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
}
.exec-team-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.exec-dots { display: flex; justify-content: center; gap: 10px; margin-top: 1.4rem; }
.exec-dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: 2px solid var(--red); background: transparent;
  cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.exec-dot.active { background: var(--red); transform: scale(1.2); }

/* ── SPOTLIGHT SECTION ══════════════════════════════════════ */
.spotlight-section {
  background: var(--off-white);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spotlight-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.spotlight-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.spotlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.8rem 1.6rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.spotlight-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.spotlight-card--rank .spotlight-card__eyebrow { color: var(--gold); }
.spotlight-card--apt  .spotlight-card__eyebrow { color: var(--red); }
.spotlight-card__eyebrow svg { width: 13px; height: 13px; }
.spotlight-card__media { margin-bottom: 1.2rem; }
.spotlight-card__badge {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 8px;
}
.spotlight-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.spotlight-card__icon svg { width: 38px; height: 38px; }
.spotlight-card__icon--rank {
  background: rgba(201,162,39,0.10);
  border: 2px solid rgba(201,162,39,0.28);
  color: var(--gold);
}
.spotlight-card__icon--apt {
  background: rgba(192,57,43,0.07);
  border: 2px solid rgba(192,57,43,0.20);
  color: var(--red);
}
.spotlight-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-dark);
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}
.spotlight-card__level {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.10);
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 20px;
  padding: 2px 9px;
}
.spotlight-card__sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.spotlight-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.spotlight-card__footer {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.spotlight-card--rank .spotlight-card__footer { color: var(--green-dark); }
.spotlight-card--apt  .spotlight-card__footer { color: var(--red); }

/* ── GALLERY SECTION ────────────────────────────────────── */
.gallery-section { background: var(--off-white); padding: 4rem 2rem; }
.gallery-inner   { max-width: 1100px; margin: 0 auto; }
.gallery-header  { text-align: center; margin-bottom: 2rem; }
.gallery-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 2rem; }
.gallery-footer  { display: flex; justify-content: center; }

.gallery-item {
  position: relative; border-radius: 9px; overflow: hidden;
  aspect-ratio: 3 / 2; cursor: pointer; background: var(--green-pale);
}
.gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.55); }

.gallery-item--empty {
  display: flex; align-items: center; justify-content: center;
}

.gallery-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0.9rem; gap: 4px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.30) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-category {
  display: inline-block; align-self: flex-start;
  background: var(--red); color: var(--white);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px; margin-bottom: 4px;
}
.gallery-caption { color: var(--white); font-size: 0.83rem; font-weight: 500; line-height: 1.4; margin: 0; }
.gallery-year    { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.72); font-size: 0.75rem; }
.gallery-year svg { flex-shrink: 0; }
.gallery-empty-msg { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── GALLERY FILTER — sticky below navbar ── */
.gallery-filter-tabs {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--off-white);
  padding-top: 1rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--green-dark); }
.footer-main {
  display: grid; grid-template-columns: 1.3fr 1fr 1.1fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem;
}
.footer-brand    { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.1rem; }

.footer-emblem {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-corp-name { font-family: 'Oswald', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--white); line-height: 1.1; }
.footer-corp-sub  { font-size: 11px; color: rgba(255,255,255,0.52); margin-top: 2px; }
.footer-motto    { font-family: 'Merriweather', serif; font-style: italic; font-size: 12.5px; color: rgba(255,255,255,0.6); margin-bottom: 0.9rem; }
.footer-addr     { font-size: 12.5px; line-height: 1.75; color: rgba(255,255,255,0.58); }
.footer-col-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
.footer-links    { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.62); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-links li a::before { content: '›'; color: var(--red); font-size: 15px; flex-shrink: 0; }
.footer-links li a:hover   { color: var(--white); }
.footer-contact  { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.62); }
.footer-contact-item a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.fc-icon { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; color: var(--gold); }
.footer-follow-label { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.footer-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.footer-bottom { background: var(--red); padding: 10px 2rem; }
.footer-bottom-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px;
}
.footer-copy    { font-size: 11.5px; color: rgba(255,255,255,0.88); }
.footer-powered { font-size: 11px;   color: rgba(255,255,255,0.65); }

/* ── UTILITY ────────────────────────────────────────────── */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 4.5rem 2rem; }
.bg-white    { background: var(--white); }
.bg-off      { background: var(--off-white); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ── ALERTS ─────────────────────────────────────────────── */
.alert         { padding: 1rem 1.25rem; border-radius: 8px; font-size: 0.9rem; margin-bottom: 1rem; }
.alert-success { background: #eaf5ea; border: 1px solid #b2d9b2; color: #1e5c1e; }
.alert-error   { background: #fef0f0; border: 1px solid #f5c0c0; color: #8b1c1c; }

/* /* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

/* ── LARGE (≤1024px) ────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner { gap: 2.5rem; }
  .co-card { grid-template-columns: 280px 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .exec-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MEDIUM / TABLET (≤860px) ───────────────────────────── */
@media (max-width: 860px) {
  /* Mobile nav drawer */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(18,40,18,0.98);
    padding: 1rem 2rem 1.5rem;
    gap: 0;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 10px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .nav-link.active::after { display: none; }

  .nav-link--verify {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 0.75rem;
    padding: 10px 0;
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,0.10);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.07em;
  }
  .nav-link--verify svg { width: 15px; height: 15px; flex-shrink: 0; }

  .hamburger { display: flex; }
  .navbar { position: fixed; }

  .about-inner { grid-template-columns: 1fr; }
  .co-card { grid-template-columns: 1fr; }
  .co-photo { aspect-ratio: 3 / 4; }                        /* FIX: portrait on tablet */
  .co-photo img { object-position: top center; }            /* FIX: show face at top */
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .hs-arrow { display: none; }

  .leadership-card { grid-template-columns: 1fr; }
  .leadership-card__photo { aspect-ratio: 3 / 4; }          /* FIX: portrait on tablet */
  .leadership-card__photo img { object-position: top center; } /* FIX: show face */
  .leadership-card__body { padding: 2rem 1.8rem; }
}

/* ── SMALL / MOBILE (≤600px) ────────────────────────────── */
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-about { grid-column: auto; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .exec-grid { grid-template-columns: 1fr; }
  .exec-team-card { grid-template-columns: 1fr; }

  .spotlight-grid { grid-template-columns: 1fr; }

  .leadership-card { grid-template-columns: 1fr; }
  .leadership-card__photo { aspect-ratio: 3 / 4; }          /* FIX: portrait */
  .leadership-card__photo img { object-position: top center; } /* FIX: portrait */
  .leadership-card__initials { min-height: 180px; font-size: 2.8rem; }
  .leadership-card__body { padding: 1.5rem 1.25rem; }
}

/* ── SMALL MOBILE (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {

  .nav-inner { padding: 0 0.85rem; gap: 0.5rem; }
  .nav-emblem img { width: 38px; height: 38px; }
  .brand-name { font-size: 12px; }
  .brand-sub  { display: none; }

  .btn-verify-nav { display: none; }

  .nav-links { padding: 0.75rem 1rem 1.25rem; }

  .stat-item   { padding: 1.25rem 0.75rem; }
  .stat-number { font-size: 2.2rem; }

  .hero-content { padding: 2rem 1rem; }
  .hero-emblem img { width: 130px; height: 130px; }
  .hero-title   { font-size: 1.6rem; }
  .hero-company { font-size: 1.1rem; }
  .hero-command { font-size: 0.85rem; }
  .hero-motto   { font-size: 0.82rem; padding: 7px 16px; }
  .hero-actions { gap: 0.65rem; }
  .btn { padding: 10px 20px; font-size: 12px; }

  .hero--slideshow { min-height: 100svh; }

  .co-photo { aspect-ratio: 3 / 4; }                        /* FIX: portrait */
  .co-photo img { object-position: top center; }            /* FIX: portrait */
  .co-info { padding: 1.5rem 1.25rem; }
  .co-name { font-size: 1.4rem; }

  .leadership-card__photo { aspect-ratio: 3 / 4; }          /* FIX: portrait */
  .leadership-card__photo img { object-position: top center; } /* FIX: portrait */
  .leadership-section { padding: 3rem 1rem; }
  .leadership-card__name { font-size: 1.4rem; }
  .leadership-card__body { padding: 1.2rem 1rem; }

  .gallery-section { padding: 3rem 1rem; }
  .gallery-grid { gap: 8px; }

  .about-section { padding: 3rem 1rem; }
  .co-section { padding: 3rem 1rem; }

  .section-pad { padding: 3rem 1rem; }
  .container   { padding: 0 1rem; }

  .footer-main         { padding: 2.5rem 1rem 2rem; gap: 1.5rem; }
  .footer-bottom       { padding: 10px 1rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 4px; }

  .section-title { font-size: 1.55rem; }
}

/* ── EXTRA SMALL (≤360px) ───────────────────────────────── */
@media (max-width: 360px) {
  :root { --nav-h: 56px; }

  .nav-inner    { padding: 0 0.65rem; gap: 0.35rem; }
  .nav-emblem img { width: 32px; height: 32px; }
  .brand-name   { font-size: 11px; letter-spacing: 0; }

  .stat-number  { font-size: 1.9rem; }

  .hero-emblem img { width: 100px; height: 100px; }
  .hero-title      { font-size: 1.35rem; }
  .hero-company    { font-size: 1rem; }

  .co-photo { aspect-ratio: 3 / 4; }                        /* FIX: portrait */
  .leadership-card__photo { aspect-ratio: 3 / 4; }          /* FIX: portrait */

  .gallery-grid    { grid-template-columns: 1fr; }

  .section-title   { font-size: 1.35rem; }

  .footer-main     { padding: 2rem 0.75rem 1.5rem; }
  .footer-bottom   { padding: 10px 0.75rem; }
}