/* ═══════════════════════════════════════════════════════════════
   BBJ — Corporate professional (Trident-style)
   Palette: Navy · Teal · Lime · Cool paper
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --ink:        #101827;
  --ink-2:      #2D3648;
  --ink-3:      #5D6779;
  --ink-4:      #93A0B4;

  --navy:       #1E5EFF;   /* primary accent blue, like reference */
  --navy-2:     #0B3ECC;   /* deep primary for hero bg */
  --navy-3:     #082E9A;   /* darkest banner blue */
  --navy-mist:  #EEF3FF;   /* airy tint for section backgrounds */

  --teal:       #2FA5B0;   /* teal from client palette */
  --teal-2:     #25787D;
  --lime:       #B6EA6C;   /* bright accent from client palette */
  --lime-2:     #93CC42;

  --paper:      #FFFFFF;
  --paper-2:    #F7F9FC;
  --paper-3:    #EEF1F6;

  --terra:      #D14A3E;

  --line:       rgba(16, 24, 39, 0.08);
  --line-2:     rgba(16, 24, 39, 0.14);
  --line-cream: rgba(255, 255, 255, 0.15);

  /* Shadows */
  --shadow-sm: 0 2px 8px -4px rgba(11, 62, 204, 0.15);
  --shadow-md: 0 12px 32px -12px rgba(11, 62, 204, 0.18);
  --shadow-lg: 0 30px 60px -24px rgba(11, 62, 204, 0.28);

  /* Type */
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", "SF Mono", Menlo, monospace;
  --arabic:"Amiri", "Noto Naskh Arabic", serif;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --nav-h: 73px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "cv11" 1;
}
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--navy); color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ═══════════════════════════════════════════════════════════════
   NAV — pill-style chip nav, corporate
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -18px rgba(11, 62, 204, 0.4);
}
.nav__inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  min-height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
}
.nav__logo { width: 40px; height: 40px; object-fit: contain; }
.nav__brand-name {
  font-size: 15px; font-weight: 700; color: var(--ink);
  line-height: 1.1; letter-spacing: -0.005em;
  white-space: nowrap;
}
.nav__brand-sub {
  font-size: 11px; color: var(--ink-3); font-weight: 500;
  margin-top: 2px; letter-spacing: 0.01em;
}
.nav__links { display: flex; align-items: center; gap: 0; }
.nav__links a {
  padding: 7px clamp(7px, 0.85vw, 13px);
  font-size: clamp(12px, 0.95vw, 13.5px); font-weight: 500; color: var(--ink-2);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { color: var(--navy); background: var(--navy-mist); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  white-space: nowrap;
  background: var(--navy); color: #fff !important;
  font-size: 13px; font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px -6px rgba(11, 62, 204, 0.5);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.nav__cta:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px rgba(11, 62, 204, 0.6);
}
.nav__cta svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin: 0; padding: 0;
  vertical-align: middle;
  display: block;
}
.btn svg {
  margin: 0; padding: 0;
  vertical-align: middle;
  flex-shrink: 0;
  display: block;
}
.nav__toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  width: 44px; height: 44px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 5px auto; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav__brand-sub { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column; align-items: stretch;
    padding: 0 clamp(20px, 4vw, 40px);
    max-height: 0; overflow: hidden;
    opacity: 0; pointer-events: none;
    transition: max-height 0.4s var(--ease), opacity 0.25s var(--ease), padding 0.4s var(--ease);
    border-top: 1px solid transparent;
    box-shadow: 0 24px 40px -20px rgba(11, 62, 204, 0.25);
  }
  .nav__links.is-open {
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    opacity: 1; pointer-events: auto;
    padding: 12px clamp(20px, 4vw, 40px) 24px;
    border-top-color: var(--line);
  }
  .nav__links a {
    padding: 14px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink) !important;
    background: transparent !important;
  }
  .nav__links a:last-of-type { border-bottom: 0; }
  .nav__cta {
    margin-top: 12px;
    padding: 12px 22px !important;
    text-align: center; justify-content: center;
    color: #fff !important;
    background: var(--navy) !important;
    border-bottom: 0 !important;
    border-radius: var(--radius-full) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SLIDER — full-bleed, fading slides with photo backgrounds
   ═══════════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  margin-top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  height: calc(100svh - var(--nav-h));
  overflow: hidden;
  background: var(--navy-3);
  isolation: isolate;
}
.hero-slider__track {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Sharper down/up-scale rendering across engines */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* Nudge to trigger GPU compositing so the sub-pixel raster stays crisp */
  transform: translateZ(0) scale(var(--bg-zoom, 1));
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Directional dark scrim — ensures text is always readable regardless of image */
.hero-slide__overlay {
  display: block;
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(4, 16, 52, 0.72) 0%, rgba(4, 16, 52, 0.35) 55%, transparent 100%),
    linear-gradient(to top, rgba(4, 16, 52, 0.55) 0%, transparent 50%);
}
.hero-slide--tr .hero-slide__overlay,
.hero-slide--br .hero-slide__overlay {
  background:
    linear-gradient(to left, rgba(4, 16, 52, 0.72) 0%, rgba(4, 16, 52, 0.35) 55%, transparent 100%),
    linear-gradient(to top, rgba(4, 16, 52, 0.55) 0%, transparent 50%);
}
.hero-slide--cc .hero-slide__overlay {
  background: rgba(4, 16, 52, 0.52);
}
.hero-slide__pattern { display: none; }

/* Text position — each slide picks the corner that avoids its subject.
   .hero-slide is a flex container; the .container inside is our anchor.
   Slider itself already begins below nav (margin-top: --nav-h), so no extra top offset here. */
.hero-slide {
  align-items: flex-end;      /* default = bottom */
  justify-content: flex-start; /* default = left  */
  padding: 40px 0 60px;
}
.hero-slide--tl { align-items: flex-start; justify-content: flex-start; padding-top: calc(var(--nav-h) + 24px); }
.hero-slide--tr { align-items: flex-start; justify-content: flex-end;   padding-top: calc(var(--nav-h) + 24px); }
.hero-slide--bl { align-items: flex-end;   justify-content: flex-start; }
.hero-slide--br { align-items: flex-end;   justify-content: flex-end;   }
.hero-slide--cc { align-items: center;     justify-content: center;     text-align: center; }
.hero-slide--cc .hero-slide__body { text-align: center; }
.hero-slide--tr .hero-slide__body,
.hero-slide--br .hero-slide__body { text-align: right; }
.hero-slide--tr .hero-slide__actions,
.hero-slide--br .hero-slide__actions,
.hero-slide--cc .hero-slide__actions { justify-content: flex-end; }
.hero-slide--cc .hero-slide__actions { justify-content: center; }

/* Give the inner container its full width so position modifiers actually work.
   Without this, the container shrinks to content width in flex layout and
   is always centred — making bl/br/tl/tr visually identical to cc. */
.hero-slide > .container { width: 100%; }
/* Right-side and center positions: push the body within the container */
.hero-slide--tr .hero-slide__body,
.hero-slide--br .hero-slide__body { margin-left: auto; }
.hero-slide--cc .hero-slide__body { margin: 0 auto; }

.hero-slide__body {
  position: relative;
  max-width: 560px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Editorial title treatment — subtle vignette blur behind text (not on image
   as a whole), soft lift-shadow, and a thin lime accent bar under the eyebrow. */
.hero-slide__body {
  /* Radial vignette blur BEHIND the text block only — feels like soft focus, not overlay */
  background:
    radial-gradient(ellipse 90% 70% at 20% 60%, rgba(4, 16, 52, 0.70), transparent 75%);
  padding: 24px 32px 24px 24px;
  border-radius: 6px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.hero-slide__eyebrow {
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-slide__title {
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 8px 32px rgba(0,0,0,0.55);
  letter-spacing: -0.03em;
  font-weight: 800;
}
/* Italic em inside title becomes a soft lime gradient — no more flat lime */
.hero-slide__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--lime) 0%, #fff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-slide__lede {
  color: rgba(255,255,255,0.94);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.hero-slide--tr .hero-slide__body,
.hero-slide--br .hero-slide__body {
  background:
    radial-gradient(ellipse 90% 70% at 80% 60%, rgba(4, 16, 52, 0.70), transparent 75%);
}
/* Bottom-positioned slides: anchor the vignette at the bottom so it wraps the content */
.hero-slide--bl .hero-slide__body {
  background: radial-gradient(ellipse 110% 80% at 0% 100%, rgba(4, 16, 52, 0.82), transparent 68%);
}
.hero-slide--br .hero-slide__body {
  background: radial-gradient(ellipse 110% 80% at 100% 100%, rgba(4, 16, 52, 0.82), transparent 68%);
}

@media (max-width: 640px) {
  .hero-slide { padding-bottom: 40px; }
  .hero-slide__body { max-width: 100%; }
}
.hero-slide__body { color: #fff; max-width: 680px; position: relative; z-index: 1; }
.hero-slide__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-slide__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(182, 234, 108, 0.25);
  animation: pulse 2.4s var(--ease) infinite;
}
.hero-slide__title {
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero-slide__title em { font-style: normal; color: var(--lime); }
.hero-slide__lede {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 0 28px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Slide-in text animation — title & lede sweep in from the right */
.hero-slide.is-active .hero-slide__eyebrow,
.hero-slide.is-active .hero-slide__title,
.hero-slide.is-active .hero-slide__lede,
.hero-slide.is-active .hero-slide__actions {
  animation: slideInRight 1.05s var(--ease) both;
}
.hero-slide.is-active .hero-slide__title,
.hero-slide.is-active .hero-slide__lede {
  animation-name: slideInRightSoft;
}
.hero-slide.is-active .hero-slide__eyebrow  { animation-delay: 0.06s; }
.hero-slide.is-active .hero-slide__title    { animation-delay: 0.18s; }
.hero-slide.is-active .hero-slide__lede     { animation-delay: 0.34s; }
.hero-slide.is-active .hero-slide__actions  { animation-delay: 0.50s; }
@keyframes slideInRight {
  from { opacity: 0; transform: translate3d(48px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
/* Same travel, plus a blur that clears — reads as depth on the photo bg */
@keyframes slideInRightSoft {
  from { opacity: 0; transform: translate3d(80px, 0, 0); filter: blur(8px); }
  55%  { opacity: 1; }
  to   { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-slide__eyebrow,
  .hero-slide.is-active .hero-slide__title,
  .hero-slide.is-active .hero-slide__lede,
  .hero-slide.is-active .hero-slide__actions {
    animation: fadeInPlace 0.4s ease-out both;
    animation-delay: 0s;
  }
  @keyframes fadeInPlace { from { opacity: 0; } to { opacity: 1; } }
}

/* Slider controls */
.hero-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-slider__arrow svg { width: 20px; height: 20px; }
.hero-slider__arrow:hover {
  background: var(--lime); color: var(--navy-3); border-color: var(--lime);
}
.hero-slider__arrow--prev { left: 24px; }
.hero-slider__arrow--next { right: 24px; }

.hero-slider__dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 10px;
}
.hero-slider__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.35);
  padding: 0;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero-slider__dot:hover { background: rgba(255,255,255,0.7); }
.hero-slider__dot.is-active {
  background: var(--lime);
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(182, 234, 108, 0.2);
}

.hero-slider__progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 5;
}
.hero-slider__progress > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--lime), #fff);
  width: 0;
  transform-origin: left;
}
.hero-slider.is-playing .hero-slider__progress > span {
  animation: slideProgress var(--slide-duration, 6500ms) linear forwards;
}
@keyframes slideProgress {
  from { width: 0; }
  to   { width: 100%; }
}

@media (max-width: 760px) {
  .hero-slider { height: calc(100vh - var(--nav-h)); height: calc(100svh - var(--nav-h)); }
  .hero-slide__title { font-size: clamp(30px, 8vw, 42px); }
  .hero-slider__arrow { width: 42px; height: 42px; }
  .hero-slider__arrow--prev { left: 12px; }
  .hero-slider__arrow--next { right: 12px; }
  .hero-slider__dots { bottom: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   CAMPAIGN STRIP — full-width band below hero
   ═══════════════════════════════════════════════════════════════ */
.campaign-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  position: relative;
  z-index: 4;
  box-shadow: 0 -20px 40px -30px rgba(11, 62, 204, 0.15), 0 20px 40px -30px rgba(11, 62, 204, 0.15);
}
.campaign-strip__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr minmax(280px, auto);
  gap: 36px;
  align-items: center;
}
.campaign-strip__brand { display: flex; align-items: center; gap: 14px; }
.campaign-strip__logo {
  width: 52px; height: 52px; padding: 6px;
  background: var(--navy-mist);
  border-radius: 12px;
  flex-shrink: 0;
}
.campaign-strip__title {
  font-size: 15px; font-weight: 700; color: var(--ink);
  line-height: 1.25; letter-spacing: -0.005em;
}
.campaign-strip__sub {
  font-size: 12px; color: var(--ink-3);
  margin-top: 3px;
}
.campaign-strip__meter { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.campaign-strip__nums {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  font-size: 13px; color: var(--ink-3);
}
.campaign-strip__raised {
  font-size: 22px; font-weight: 800; color: var(--navy);
  line-height: 1; letter-spacing: -0.02em;
}
.campaign-strip__lbl {
  font-size: 10px; color: var(--ink-3); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 4px;
}
.campaign-strip__target { text-align: right; }
.campaign-strip__target strong { color: var(--ink); font-weight: 700; }

.campaign-strip__stats {
  display: flex; align-items: center; gap: 20px;
  justify-content: flex-end;
}
.campaign-strip__stat { text-align: center; }
.campaign-strip__stat-num {
  font-size: 26px; font-weight: 800; color: var(--ink);
  line-height: 1; letter-spacing: -0.02em;
}
.campaign-strip__stat-lbl {
  font-size: 10px; color: var(--ink-3); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 6px;
  line-height: 1.3;
}
.campaign-strip__cta { padding: 12px 22px; font-size: 13px; }

@media (max-width: 960px) {
  .campaign-strip__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .campaign-strip__stats { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .campaign-strip__stats { flex-wrap: wrap; }
  .campaign-strip__cta { flex: 1 1 100%; justify-content: center; }
}
/* Keyframes still used by hero-slider + progress + banner */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(182, 234, 108, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(182, 234, 108, 0); }
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}
.progress {
  background: var(--paper-3);
  border-radius: var(--radius-full);
  height: 10px;
  overflow: hidden;
  position: relative;
}
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 60%, var(--lime) 100%);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.6s var(--ease);
  position: relative;
}
.progress__bar::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2.4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   Feature chips row (below hero)
   ═══════════════════════════════════════════════════════════════ */
.chip-row {
  background: var(--navy);
  position: relative;
  margin-top: -40px;
  z-index: 5;
}
.chip-row__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chip {
  background: var(--navy);
  color: #fff;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 14px;
  transition: background 0.2s var(--ease);
}
.chip:hover { background: var(--navy-2); }
.chip__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
}
.chip__icon svg { width: 22px; height: 22px; }
.chip__title { font-size: 15px; font-weight: 700; margin: 0 0 3px; color: #fff; }
.chip__sub { font-size: 12px; color: rgba(255, 255, 255, 0.7); margin: 0; }

@media (max-width: 760px) {
  .chip-row__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(11, 62, 204, 0.5);
}
.btn--primary:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(11, 62, 204, 0.6);
}
.btn--white {
  background: #fff; color: var(--navy);
}
.btn--white:hover { background: var(--lime); color: var(--navy-3); }
.btn--outline {
  background: transparent; color: var(--ink); border-color: var(--line-2);
}
.btn--outline:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-mist); }
.btn--outline-dark {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.35);
}
.btn--outline-dark:hover { border-color: var(--lime); color: var(--lime); }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section { position: relative; padding: clamp(70px, 9vw, 120px) 0; }
.section--white { background: #fff; }
.section--mist  { background: var(--paper-2); }
.section--navy  {
  background: linear-gradient(180deg, var(--navy-2), var(--navy-3));
  color: #fff;
}
.section--navy a { color: var(--lime); }
.section--navy a:hover { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--navy); text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 22px; height: 2px;
  background: var(--navy);
  transform: translateY(-50%);
}
.section--navy .eyebrow { color: var(--lime); }
.section--navy .eyebrow::before { background: var(--lime); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }
.section-head--left .eyebrow { display: inline-flex; }
.section-head--center .eyebrow { display: inline-flex; }
.section-head h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.028em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-head h2 em { font-style: normal; color: var(--navy); }
.section--navy .section-head h2 { color: #fff; }
.section--navy .section-head h2 em { color: var(--lime); }
.section-head p {
  font-size: 16px; color: var(--ink-3);
  max-width: 620px; margin: 0 auto;
  line-height: 1.65;
}
.section--navy .section-head p { color: rgba(255, 255, 255, 0.75); }
.section-head--left p { margin-left: 0; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT — image (with photo badge) + text + inline stats
   ═══════════════════════════════════════════════════════════════ */
.about__eyebrow-row { margin-bottom: 20px; text-align: center; }
.about {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  align-items: start;
}
.about__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__image {
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-3);
  position: relative;
  box-shadow: var(--shadow-md);
  width: 100%;
}
.about__image::before {
  content: "Photo forthcoming";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4); font-size: 14px; font-weight: 500;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  z-index: 0;
}
.about__image img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.about__image img.placeholder { visibility: hidden; }
.about__badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 12px 30px -10px rgba(11, 62, 204, 0.4);
}
.about__badge-num {
  font-size: 30px; font-weight: 800;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.about__badge-lbl {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 700; color: rgba(255, 255, 255, 0.85);
  max-width: 90px; line-height: 1.15;
  margin-left: 6px;
}

.about__body { }
.about__body h2 { margin-top: 0; }
.about__lede {
  font-size: 16.5px; line-height: 1.7; color: var(--ink-2);
  margin: 0 0 16px;
}
.about__lede strong { color: var(--ink); font-weight: 700; }
.about__subhead {
  font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  color: var(--navy);
  margin: 20px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: var(--paper-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.about__stat {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
}
.about__stat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--navy-mist);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.about__stat-icon svg { width: 18px; height: 18px; }
.about__stat-num { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.015em; }
.about__stat-lbl { font-size: 12px; color: var(--ink-3); margin-top: 4px; font-weight: 500; }

.about__majlisnoor {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line);
  padding: 20px 16px; gap: 8px;
}
.about__majlisnoor-logo {
  width: 80px; height: 80px; object-fit: contain; filter: none;
}
.about__majlisnoor-title {
  font-size: 16px; font-weight: 700; color: var(--ink); margin: 0;
}
.about__majlisnoor-body {
  font-size: 13px; color: var(--ink-3); line-height: 1.55; margin: 0;
}

.about__contact {
  display: flex; gap: 22px; align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.about__contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.about__contact-item svg { width: 18px; height: 18px; color: var(--navy); }
.about__contact-item strong { color: var(--ink); font-weight: 700; }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__contact { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMMITTEE — office bearers, portrait cards
   ═══════════════════════════════════════════════════════════════ */
.committee__term {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px;
  padding: 7px 16px;
  background: var(--navy-mist);
  border: 1px solid rgba(30, 94, 255, 0.16);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy-2);
}
.committee__term-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime-2);
  box-shadow: 0 0 0 3px rgba(147, 204, 66, 0.22);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.committee-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.committee-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 94, 255, 0.22);
}
.committee-card__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, var(--navy-mist), var(--paper-3));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.committee-card__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 20%;       /* default; overridden by inline style when focal is set */
  transition: transform 0.55s var(--ease);
}
.committee-card:hover .committee-card__photo img { transform: scale(1.045); }
/* Sits behind the photo — visible when there is no image, or it fails to load */
.committee-card__initials {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(30, 94, 255, 0.28);
  user-select: none;
}
.committee-card__body {
  padding: 18px 18px 22px;
  text-align: center;
}
.committee-card__role {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 11px;
  background: var(--ink);
  color: var(--lime);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.3s var(--ease);
}
.committee-card:hover .committee-card__role { background: var(--navy-2); }
.committee-card__name {
  margin: 0;
  font-size: 16px; font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.committee-card__sub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-3);
}

@media (max-width: 900px) { .committee-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (max-width: 700px) {
  .committee-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .committee-card__body { padding: 14px 12px 18px; }
  .committee-card__name { font-size: 14px; }
  .committee-card__role { font-size: 10px; padding: 3px 9px; letter-spacing: 0.04em; }
  .committee-card__sub { font-size: 12px; }
}
.committee-grid--center {
  grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
  justify-content: center;
}
.committee-grid--lg {
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  justify-content: center;
  gap: 36px;
}
.committee-grid--lg .committee-card__photo    { aspect-ratio: 4 / 5; }
.committee-grid--lg .committee-card__initials { font-size: clamp(38px, 5vw, 56px); }
.committee-grid--lg .committee-card__name     { font-size: clamp(15px, 1.3vw, 17px); }
@media (max-width: 700px) {
  .committee-grid--lg { grid-template-columns: repeat(auto-fit, minmax(160px, 220px)); gap: 20px; }
}
.ilm-faculty {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ilm-faculty__title {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 32px;
  color: var(--ink-1);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE 4-CARD GRID — dark navy cards on white section
   (mirrors "Tailoring Talent For Excellence" strip)
   ═══════════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  background: var(--navy-2);
  transform: translateY(-4px);
}
.feature-card__icon {
  width: 76px; height: 76px;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(182, 234, 108, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(182, 234, 108, 0.25);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  margin-bottom: 22px;
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.feature-card__icon::before {
  /* Faint corner tick — adds craft */
  content: "";
  position: absolute; top: 8px; right: 8px;
  width: 8px; height: 8px;
  border-top: 1px solid rgba(182, 234, 108, 0.5);
  border-right: 1px solid rgba(182, 234, 108, 0.5);
  border-radius: 0 3px 0 0;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.feature-card:hover .feature-card__icon {
  transform: translateY(-2px);
  border-color: rgba(182, 234, 108, 0.55);
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(182, 234, 108, 0.32), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}
.feature-card:hover .feature-card__icon::before { opacity: 1; }
.feature-card__icon svg {
  width: 44px; height: 44px;
  transition: transform 0.5s var(--ease);
}
.feature-card__icon-img {
  width: 44px; height: 44px;
  object-fit: contain;
  /* Tint black silhouette PNG → lime brand color */
  filter: brightness(0) saturate(100%) invert(87%) sepia(24%) saturate(1094%) hue-rotate(30deg) brightness(101%) contrast(88%);
  transition: transform 0.5s var(--ease);
}
.feature-card__icon--img {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  width: 130px; height: 130px;
}
.feature-card__icon--img::before { display: none; }
.feature-card__icon--img .feature-card__icon-img {
  width: 130px; height: 130px;
  object-fit: contain;
  filter: none !important;
}
.feature-card:hover .feature-card__icon--img {
  background: transparent;
  border-color: transparent;
}
.feature-card:hover .feature-card__icon svg,
.feature-card:hover .feature-card__icon-img {
  transform: scale(1.06);
}
.feature-card__title {
  font-size: 17px; font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -0.01em;
}
.feature-card__body {
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   WAYS TO GIVE — 6-item grid, blue cards on mist section
   (mirrors "Ready Jobs" grid)
   ═══════════════════════════════════════════════════════════════ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.way-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex; gap: 16px; align-items: flex-start;
}
.way-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.way-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--navy-mist);
  color: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.way-card__icon svg { width: 24px; height: 24px; }
.way-card__title { font-size: 16px; font-weight: 700; margin: 0 0 4px; color: var(--ink); letter-spacing: -0.01em; }
.way-card__body { font-size: 14px; color: var(--ink-3); margin: 0; line-height: 1.5; }

@media (max-width: 900px) { .ways-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ways-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   ILM CENTER — image with badge + numbered points
   (mirrors "Finding The Right Fit" section)
   ═══════════════════════════════════════════════════════════════ */
.ilm {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.ilm__image {
  aspect-ratio: 4 / 4.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--paper-3);
  box-shadow: var(--shadow-md);
}
.ilm__image::before {
  content: "Ilm Center · Photo forthcoming";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4); font-size: 14px;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  z-index: 0;
}
.ilm__image img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.ilm__image img.placeholder { visibility: hidden; }

/* Ilm slider — multiple images stacked, fade between them */
.ilm-slider .ilm-slider__img {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.ilm-slider .ilm-slider__img.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.ilm-slider__dots {
  position: absolute; z-index: 4;
  bottom: 20px; right: 20px;
  display: flex; gap: 8px;
}
.ilm-slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.ilm-slider__dot:hover { background: rgba(255, 255, 255, 0.75); }
.ilm-slider__dot.is-active {
  background: var(--lime);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(182, 234, 108, 0.25);
}

.ilm-slider__nav {
  position: absolute; z-index: 4;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s var(--ease);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}
.ilm-slider:hover .ilm-slider__nav { opacity: 1; }
.ilm-slider__nav svg { width: 18px; height: 18px; }
.ilm-slider__nav:hover { background: var(--lime); color: var(--navy-3); }
.ilm-slider__nav--prev { left: 12px; }
.ilm-slider__nav--next { right: 12px; }
@media (hover: none) {
  .ilm-slider__nav { opacity: 1; }
}

.ilm__badge {
  position: absolute; z-index: 3;
  bottom: 20px; left: 20px;
  background: rgba(30, 94, 255, 0.95);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

.ilm__text .about__lede { max-width: none; }
.ilm__points { margin-top: 24px; display: flex; flex-direction: column; gap: 22px; }
.ilm__point { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: flex-start; }
.ilm__point-num {
  width: 44px; height: 44px;
  background: var(--navy-mist);
  color: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.02em;
}
.ilm__point-title { font-size: 16px; font-weight: 700; margin: 0 0 4px; color: var(--ink); letter-spacing: -0.005em; }
.ilm__point-body { font-size: 14px; color: var(--ink-3); margin: 0; line-height: 1.55; }
.ilm__cta { margin-top: 24px; }

@media (max-width: 900px) { .ilm { grid-template-columns: 1fr; gap: 40px; } }

/* ═══════════════════════════════════════════════════════════════
   BANNER — full-width blue banner (mirrors "Shaping Futures")
   ═══════════════════════════════════════════════════════════════ */
.banner {
  padding: 60px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/img/hero-pattern.png') center/400px repeat;
  opacity: 0.06;
  mix-blend-mode: soft-light;
}
.banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.banner__title {
  font-size: clamp(24px, 3.2vw, 36px); font-weight: 700;
  margin: 0; color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 24ch;
}
.banner__title em { font-style: normal; color: var(--lime); }
.banner__progress {
  min-width: 320px;
  max-width: 420px;
}
.banner__progress-bar {
  background: rgba(0, 0, 0, 0.28);
  border-radius: var(--radius-full);
  height: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);
}
.banner__progress-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--lime), #fff);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.6s var(--ease);
  box-shadow: 0 0 12px rgba(182, 234, 108, 0.6);
}
.banner__progress-nums {
  display: flex; justify-content: space-between;
  margin-top: 12px;
  font-size: 13px; color: rgba(255,255,255,0.85);
}
.banner__progress-nums strong { color: #fff; font-weight: 700; }

@media (max-width: 780px) {
  .banner__inner { grid-template-columns: 1fr; text-align: center; }
  .banner__progress { min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   COST + PLEDGE — two columns on white section
   (mirrors "Precision Placements" section)
   ═══════════════════════════════════════════════════════════════ */
.cost-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.cost-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cost-card::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(closest-side, rgba(47, 165, 176, 0.35), transparent);
  transform: translate(50%, -50%);
}
.cost-card__lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--lime); font-weight: 700; margin: 0 0 14px;
  position: relative;
}
.cost-card__amount {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
  position: relative;
}
.cost-card__amount .cur { font-size: 0.55em; color: var(--lime); vertical-align: 0.25em; margin-right: 0.08em; font-weight: 700; }
.cost-card__amount .unit { font-size: 0.45em; color: var(--lime); font-weight: 700; margin-left: 0.08em; }
.cost-card__note { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin: 12px 0 24px; max-width: 40ch; position: relative; }
.cost-card__row {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.cost-card__row-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.55); font-weight: 700; margin: 0 0 6px; }
.cost-card__row-val { font-size: 20px; font-weight: 700; color: #fff; margin: 0; letter-spacing: -0.015em; }

.why-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.why-card__title {
  font-size: clamp(22px, 2.6vw, 28px); font-weight: 700;
  color: var(--ink); margin: 12px 0 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.why-card__title em { font-style: normal; color: var(--navy); }
.why-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 14px;
}
.why-card p strong { color: var(--ink); font-weight: 700; }
.why-card__tag {
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-top: 20px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) { .cost-block { grid-template-columns: 1fr; } .cost-card, .why-card { padding: 28px 24px; } }

/* Give — bank + form */
.give-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.give-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--ink);
}
.give-card__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.give-card__title { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0; letter-spacing: -0.02em; }
.give-card__title em { font-style: normal; color: var(--navy); }
.give-card__badge {
  padding: 4px 10px;
  background: var(--navy-mist); color: var(--navy);
  border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}

/* Bank list */
.bank-list { display: flex; flex-direction: column; }
.bank-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.bank-item:last-child { border-bottom: 0; }
.bank-item__lbl {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3); font-weight: 700;
}
.bank-item__val { font-size: 15px; color: var(--ink); font-weight: 500; }
.bank-item__val--mono { font-family: var(--mono); font-weight: 500; color: var(--navy); font-size: 14px; letter-spacing: 0.02em; }

/* Value doubles as copy trigger — subtle affordance, no button chrome */
button.bank-copy {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 0;
  padding: 6px 10px;
  margin-left: -10px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  position: relative;
  justify-self: start;
}
button.bank-copy > span {
  font: inherit; color: inherit;
}
.bank-copy__ico,
.bank-copy__ok {
  width: 14px; height: 14px;
  color: var(--ink-4);
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.25s var(--ease);
}
.bank-copy__ok { display: none; color: var(--lime-2); }
button.bank-copy:hover {
  background: var(--navy-mist);
  color: var(--navy-2);
}
button.bank-copy:hover .bank-copy__ico { color: var(--navy); transform: scale(1.1); }
button.bank-copy:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
button.bank-copy.is-copied {
  background: rgba(147, 204, 66, 0.14);
  color: var(--navy-3);
}
button.bank-copy.is-copied .bank-copy__ico { display: none; }
button.bank-copy.is-copied .bank-copy__ok  { display: inline-block; color: var(--lime-2); }
/* Tiny helper hint on hover */
button.bank-copy::after {
  content: "Click to copy";
  position: absolute;
  top: 50%; right: -12px;
  transform: translate(100%, -50%);
  padding: 4px 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s var(--ease);
  white-space: nowrap;
}
button.bank-copy:hover::after { opacity: 0.9; }
button.bank-copy.is-copied::after { content: "Copied"; background: var(--lime-2); color: var(--navy-3); opacity: 1; }
@media (max-width: 720px) {
  button.bank-copy::after { display: none; }
}

.trust-note {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-3); line-height: 1.55;
}

@media (max-width: 900px) {
  .give-grid { grid-template-columns: 1fr; }
  .give-card { padding: 24px; }
  .bank-item { grid-template-columns: 1fr; gap: 6px; padding: 12px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */
.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: flex; flex-direction: column; gap: 14px; }
.form__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form__row--split { grid-template-columns: 1fr; } }

.form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
}
.form label span { color: var(--terra); margin-left: 2px; }
.form input, .form select, .form textarea {
  font-family: var(--sans); font-size: 14.5px; font-weight: 400;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-transform: none; letter-spacing: normal;
}
.form textarea { resize: vertical; min-height: 90px; font-family: var(--sans); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(30, 94, 255, 0.14);
}
.form input::placeholder, .form textarea::placeholder { color: var(--ink-4); }
.form button[type="submit"] { margin-top: 8px; }
.form__status { margin: 0; min-height: 20px; font-size: 13px; color: var(--ink-3); }
.form__status.is-success { color: var(--navy); font-weight: 600; }
.form__status.is-error { color: var(--terra); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   STAT BAR — full-width blue strip with 4 big stats
   ═══════════════════════════════════════════════════════════════ */
.stat-bar {
  background: var(--navy);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stat-bar::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/img/hero-pattern.png') center/400px repeat;
  opacity: 0.05;
  mix-blend-mode: soft-light;
}
.stat-bar__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-bar__item { text-align: center; padding: 0 12px; }
.stat-bar__item + .stat-bar__item { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.stat-bar__num {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.035em;
  display: block;
}
.stat-bar__num sup { font-size: 0.5em; color: var(--lime); vertical-align: 0.4em; margin-left: 3px; font-weight: 700; }
.stat-bar__lbl {
  display: block; margin-top: 10px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7); font-weight: 600;
}

@media (max-width: 780px) {
  .stat-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .stat-bar__item + .stat-bar__item { border-left: 0; }
  .stat-bar__item:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.16); padding-top: 32px; }
  .stat-bar__item:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.16); padding-top: 32px; }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — clean grid
   ═══════════════════════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-3);
  aspect-ratio: 4 / 3;
  margin: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery__item::before {
  content: "Photo coming soon";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4); font-size: 13px; font-weight: 500;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  z-index: 0;
}
.gallery__item img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item img.placeholder { visibility: hidden; }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 24px 20px 14px;
  background: linear-gradient(180deg, transparent, rgba(11, 62, 204, 0.92));
  color: #fff;
  font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
  z-index: 2;
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   CONTACT + FAQ two-column (like reference)
   ═══════════════════════════════════════════════════════════════ */
.contact-faq {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-form-card {
  background: var(--navy);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-form-card .give-card__title { color: #fff; }
.contact-form-card .give-card__title em { color: var(--lime); }
.contact-form-card .give-card__head { border-bottom-color: rgba(255,255,255,0.14); }
.contact-form-card .give-card__badge { background: rgba(255,255,255,0.14); color: var(--lime); }
.contact-form-card .form label { color: rgba(255,255,255,0.75); }
.contact-form-card .form input,
.contact-form-card .form select,
.contact-form-card .form textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.contact-form-card .form input::placeholder,
.contact-form-card .form textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact-form-card .form input:focus,
.contact-form-card .form select:focus,
.contact-form-card .form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(182, 234, 108, 0.18);
  background: rgba(255,255,255,0.12);
}
.contact-form-card .btn--primary { background: var(--lime); color: var(--navy-3); box-shadow: none; }
.contact-form-card .btn--primary:hover { background: #fff; color: var(--navy-2); }
.contact-form-card .form__status.is-success { color: var(--lime); }
.contact-form-card .form__status.is-error { color: #FFB4A8; }

/* Contact info list */
.contact-mini {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-mini__item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.contact-mini__item svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; margin-top: 2px; }
.contact-mini__item strong { color: #fff; font-weight: 700; display: block; margin-bottom: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 520px) { .contact-mini { grid-template-columns: 1fr; } }

/* FAQ */
.faq-eyebrow-row .eyebrow { color: var(--navy); }
.faq-title {
  font-size: clamp(24px, 3vw, 34px); font-weight: 700;
  margin: 0 0 12px; color: var(--ink); letter-spacing: -0.025em;
  line-height: 1.15;
}
.faq-lede { color: var(--ink-3); font-size: 15px; margin: 0 0 28px; line-height: 1.6; max-width: 44ch; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item[open] {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 18px 22px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--navy);
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 22px 20px;
  color: var(--ink-3); font-size: 14.5px; line-height: 1.65;
}

@media (max-width: 900px) { .contact-faq { grid-template-columns: 1fr; gap: 32px; } }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — dark navy with columns (like reference)
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand { display: flex; align-items: flex-start; gap: 14px; }
.footer__logo { width: 48px; height: 48px; opacity: 0.95; }
.footer__brand-name { font-size: 17px; color: #fff; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.005em; }
.footer__brand-sub {
  font-size: 10px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin: 0;
}
.footer__brand-body p:last-child {
  font-size: 13px; color: rgba(255,255,255,0.7);
  line-height: 1.6; margin: 14px 0 0;
  max-width: 36ch;
}

.footer__col-title {
  font-size: 12px; color: var(--lime);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--lime);
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255, 255, 255, 0.75); transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--lime); }

.footer__mini { display: flex; flex-direction: column; gap: 14px; }
.footer__mini-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.5; }
.footer__mini-item svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; margin-top: 2px; }
.footer__mini-item strong { color: #fff; font-weight: 700; display: block; margin-bottom: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__mini-item span { color: rgba(255,255,255,0.75); }

.footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__thanks { font-size: 13px; font-weight: 500; color: var(--lime); margin: 0; }
.footer__thanks span { color: rgba(255,255,255,0.7); font-weight: 400; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }

@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; } }

/* ═══════════════════════════════════════════════════════════════
   TOAST + MOTION
   ═══════════════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: var(--ink); color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
  z-index: 200;
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--stagger > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal--stagger.is-in > * { opacity: 1; transform: none; }
.reveal--stagger.is-in > *:nth-child(1) { transition-delay: 0.02s; }
.reveal--stagger.is-in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal--stagger.is-in > *:nth-child(3) { transition-delay: 0.14s; }
.reveal--stagger.is-in > *:nth-child(4) { transition-delay: 0.20s; }
.reveal--stagger.is-in > *:nth-child(5) { transition-delay: 0.26s; }
.reveal--stagger.is-in > *:nth-child(6) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal, .reveal--stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   FULL GALLERY PAGE (/gallery.php)
   ═══════════════════════════════════════════════════════════════ */
.gallery-hero {
  background: linear-gradient(180deg, var(--navy-2), var(--navy-3));
  color: #fff;
  padding: calc(var(--nav-h) + 56px) 0 56px;
  position: relative;
  overflow: hidden;
}
.gallery-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/img/hero-pattern.png') center/440px repeat;
  opacity: 0.07; mix-blend-mode: soft-light;
}
.gallery-hero .container { position: relative; }
.gallery-hero__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  transition: color 0.2s var(--ease);
}
.gallery-hero__back:hover { color: var(--lime); }
.gallery-hero__back svg { width: 16px; height: 16px; }
.gallery-hero__title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 14px; color: #fff;
}
.gallery-hero__title em { font-style: normal; color: var(--lime); }
.gallery-hero__sub { font-size: 16px; color: rgba(255,255,255,0.8); margin: 0; max-width: 60ch; }

/* Masonry-ish responsive grid */
.gallery-full {
  columns: 4 260px;
  column-gap: 16px;
}
.gallery-full__item {
  break-inside: avoid;
  margin: 0 0 16px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-3);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-full__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-full__item img { width: 100%; height: auto; display: block; transition: transform 0.5s var(--ease); }
.gallery-full__item:hover img { transform: scale(1.04); }
.gallery-full__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 28px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(8, 46, 122, 0.92));
  color: #fff; font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
}
.gallery-full__item:hover figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 620px) { .gallery-full { columns: 2 140px; column-gap: 12px; } .gallery-full__item { margin-bottom: 12px; } }

/* ── Lightbox ─────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8, 20, 42, 0.94);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__figure { margin: 0; max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lightbox__img {
  max-width: 92vw; max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lightbox__caption { color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 500; text-align: center; }
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 26px; line-height: 1;
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover { background: var(--terra); border-color: var(--terra); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease);
}
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav:hover { background: var(--navy); border-color: var(--navy); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 600px) {
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   NAV — pill next to Admission link
   ═══════════════════════════════════════════════════════════════ */
.nav__pill {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 4px;
  background: var(--lime);
  color: var(--navy-3);
  border-radius: var(--radius-full);
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  vertical-align: 2px;
  animation: navPillPulse 2.4s var(--ease) infinite;
}
@keyframes navPillPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(147, 204, 66, 0.55); }
  50%      { box-shadow: 0 0 0 5px rgba(147, 204, 66, 0); }
}
.nav__links a.is-current { color: var(--navy); background: var(--navy-mist); }

/* ═══════════════════════════════════════════════════════════════
   SUB-HERO (used on /admission.php and future subpages)
   ═══════════════════════════════════════════════════════════════ */
.sub-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(47, 165, 176, 0.28), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(182, 234, 108, 0.10), transparent 60%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%);
}
.sub-hero__pattern {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.08;
  background-image: url("/assets/img/hero-pattern.png");
  background-size: 500px auto;
  background-repeat: repeat;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.sub-hero__body { max-width: 780px; }
.sub-hero__crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.sub-hero__crumbs a { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.25); transition: border-color 0.2s var(--ease); }
.sub-hero__crumbs a:hover { border-color: var(--lime); }
.sub-hero__crumbs span[aria-hidden] { opacity: 0.4; }
.sub-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.sub-hero__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(182, 234, 108, 0.25);
  animation: pulse 2.4s var(--ease) infinite;
}
.sub-hero__title {
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.sub-hero__title em { font-style: normal; color: var(--lime); }
.sub-hero__lede {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 0 26px;
}
.sub-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ═══════════════════════════════════════════════════════════════
   SUB-HERO PHOTO (bbj-masjid.php) — seamless blended background
   ═══════════════════════════════════════════════════════════════ */
.sub-hero--photo {
  background:
    linear-gradient(to right,
      var(--navy-2) 0%,
      var(--navy-2) 32%,
      rgba(11,62,204,0.90) 44%,
      rgba(11,62,204,0.48) 57%,
      rgba(11,62,204,0.12) 69%,
      transparent 80%
    ),
    url('/assets/img/masjid-exterior.jpg') right center / 65% auto no-repeat,
    var(--navy-2);
}
.sub-hero--photo .sub-hero__inner { max-width: 560px; }
@media (max-width: 768px) {
  .sub-hero--photo {
    background:
      linear-gradient(rgba(4,16,52,0.68), rgba(4,16,52,0.52)),
      url('/assets/img/masjid-exterior.jpg') center / cover no-repeat;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MASJID PHOTOS GRID
   ═══════════════════════════════════════════════════════════════ */
.masjid-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.masjid-photo--wide {
  grid-column: span 2;
  grid-row: span 2;
}
.masjid-photo {
  position: relative; display: block;
  overflow: hidden; border-radius: var(--radius);
  background: var(--paper-3);
}
.masjid-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.masjid-photo--wide img { object-fit: cover; }
.masjid-photo:hover img { transform: scale(1.04); }
.masjid-photo__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px 10px;
  background: linear-gradient(transparent, rgba(4,16,52,0.72));
  color: #fff; font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .masjid-photos-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .masjid-photo--wide { grid-column: span 2; grid-row: span 1; height: 220px; }
  .masjid-photo:not(.masjid-photo--wide) { height: 160px; }
}

/* ═══════════════════════════════════════════════════════════════
   ADMISSION PAGE — two-column layout, numbered blocks, contact
   ═══════════════════════════════════════════════════════════════ */
.admission-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.admission-main { display: flex; flex-direction: column; gap: 40px; }
.admission-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.admission-block:last-child { border-bottom: 0; padding-bottom: 0; }
.admission-block__num {
  width: 52px; height: 52px;
  background: var(--navy-mist);
  color: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; letter-spacing: 0.05em;
}
.admission-block__title {
  font-size: clamp(22px, 2.6vw, 28px); font-weight: 700;
  color: var(--ink); margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.admission-block__body {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-2); margin: 0;
}
.admission-cta-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 20px;
}
.admission-docs {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.admission-docs li {
  display: grid; grid-template-columns: 32px 1fr;
  gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.admission-docs li:hover { border-color: var(--navy); background: var(--navy-mist); }
.admission-docs__ico {
  width: 32px; height: 32px;
  background: var(--navy); color: var(--lime);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.admission-docs__ico svg { width: 16px; height: 16px; }
.admission-docs strong { display: block; font-size: 15px; color: var(--ink); font-weight: 700; }
.admission-docs__note { display: block; font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.admission-contact {
  position: sticky; top: calc(var(--nav-h) + 20px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.admission-contact__head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.admission-contact__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(147, 204, 66, 0.15);
  color: var(--navy-3);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.admission-contact__pill-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime-2);
  box-shadow: 0 0 0 3px rgba(147, 204, 66, 0.2);
  animation: pulse 2.4s var(--ease) infinite;
}
.admission-contact__title {
  font-size: 20px; font-weight: 700; margin: 0;
  color: var(--ink); letter-spacing: -0.015em;
}
.admission-contact__list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.admission-contact__list li {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 14px; align-items: flex-start;
}
.admission-contact__ico {
  width: 40px; height: 40px;
  background: var(--navy-mist); color: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.admission-contact__ico svg { width: 20px; height: 20px; }
.admission-contact__lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); font-weight: 700; margin-bottom: 4px; }
.admission-contact__val { font-size: 15px; color: var(--ink); line-height: 1.5; }
.admission-contact__val a { color: var(--navy); border-bottom: 1px solid var(--line-2); transition: border-color 0.2s var(--ease); }
.admission-contact__val a:hover { border-color: var(--navy); }
@media (max-width: 900px) {
  .admission-grid { grid-template-columns: 1fr; gap: 40px; }
  .admission-contact { position: static; padding: 24px; }
}
@media (max-width: 560px) {
  .admission-block { grid-template-columns: 44px 1fr; gap: 16px; }
  .admission-block__num { width: 44px; height: 44px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Ilm section "Admissions Now Open" callout
   ═══════════════════════════════════════════════════════════════ */
.ilm-callout {
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(182, 234, 108, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(30, 94, 255, 0.06), rgba(47, 165, 176, 0.03));
  border: 1px solid rgba(30, 94, 255, 0.16);
  position: relative;
  overflow: hidden;
}
.ilm-callout::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--lime), var(--navy));
  border-radius: 2px;
}
.ilm-callout__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: var(--lime);
  color: var(--navy-3);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.ilm-callout__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--navy);
  animation: pulse 2.4s var(--ease) infinite;
}
.ilm-callout__title {
  font-size: clamp(22px, 2.4vw, 26px); font-weight: 700;
  color: var(--ink); margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.ilm-callout__body {
  font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0 0 18px;
  max-width: 60ch;
}
.ilm-callout__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   RESULTS page — card grid
   ═══════════════════════════════════════════════════════════════ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.result-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  color: var(--ink);
  align-items: start;
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: var(--ink);
}
.result-card__icon {
  width: 64px; height: 64px;
  background: var(--navy-mist);
  color: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.result-card__icon svg { width: 32px; height: 32px; }
.result-card__body { min-width: 0; }
.result-card__meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.result-card__cat {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.result-card__cat--exam        { background: var(--navy-mist);   color: var(--navy);   }
.result-card__cat--competition { background: #FEF4DC;            color: #8A6205;       }
.result-card__cat--achievement { background: rgba(182,234,108,0.28); color: #4A7A16;   }
.result-card__cat--other       { background: rgba(0,0,0,0.06);   color: var(--ink-3);  }
.result-card__year {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}
.result-card__title {
  font-size: 17px; font-weight: 700;
  color: var(--ink); margin: 0 0 6px;
  line-height: 1.25; letter-spacing: -0.005em;
}
.result-card__desc {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-3);
  margin: 0 0 14px;
}
.result-card__action {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.result-card__action svg { width: 16px; height: 16px; }
.result-card:hover .result-card__action { color: var(--navy-2); }

.results-empty {
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.results-empty h2 {
  font-size: 22px; font-weight: 700;
  color: var(--ink); margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.results-empty p {
  color: var(--ink-3);
  font-size: 15px; margin: 0;
}

@media (max-width: 500px) {
  .result-card { grid-template-columns: 48px 1fr; gap: 14px; padding: 16px; }
  .result-card__icon { width: 48px; height: 48px; border-radius: 10px; }
  .result-card__icon svg { width: 24px; height: 24px; }
}

/* ── Our Vision ────────────────────────────────────── */
.ourvision-callout {
  background: linear-gradient(135deg, var(--navy-2) 0%, #1a4fd8 100%);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
  color: #fff;
  max-width: 780px;
  margin: 0 auto;
}
.ourvision-callout__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.35;
}
.ourvision-callout__body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin: 0 0 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.ourvision-callout__sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0;
}
.ourvision-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.ourvision-body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 18px;
}
@media (max-width: 640px) {
  .ourvision-callout { padding: 28px 24px; }
}
