/* ===========================================================
   S.K. Bose Jr. College — 2026 Redesign
   Palette: Navy + Gold academic theme
   =========================================================== */

:root {
  --navy:        #0d2149;
  --navy-700:    #14306b;
  --navy-500:    #1e478f;
  --gold:        #f0b429;
  --gold-600:    #d99a16;
  --ink:         #1b2330;
  --muted:       #5d6b82;
  --line:        #e6eaf1;
  --bg:          #ffffff;
  --bg-soft:     #f5f7fb;
  --bg-navy-soft:#f0f4fb;
  --white:       #ffffff;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 10px rgba(13, 33, 73, .06);
  --shadow:      0 14px 40px rgba(13, 33, 73, .10);
  --shadow-lg:   0 24px 60px rgba(13, 33, 73, .16);
  --maxw:        1180px;
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --font:        "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -.02em;
}

p { margin: 0 0 1rem; color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(240, 180, 41, .35);
}
.btn--gold:hover { background: var(--gold-600); box-shadow: 0 16px 32px rgba(240, 180, 41, .45); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--navy); background: var(--bg-navy-soft); }
.btn--outline-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--outline-light:hover { background: rgba(255,255,255,.16); }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-head { max-width: 720px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-sub { font-size: 1.05rem; }

/* ===========================================================
   Topbar
   =========================================================== */
.topbar {
  background: var(--navy);
  color: #cfdcf2;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar a { color: #cfdcf2; transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar__info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { font-weight: 600; }

/* ===========================================================
   Header / Nav
   =========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { height: 46px; width: auto; max-width: 100%; object-fit: contain; flex: 0 1 auto; }
.brand__text strong { display: block; color: var(--navy); font-size: 1.05rem; line-height: 1.1; }
.brand__text span { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.menu > li > a:hover,
.menu > li.active > a { color: var(--navy); background: var(--bg-navy-soft); }
.menu > li.active > a { color: var(--navy-500); }

.dropdown__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s var(--ease);
}
.menu > li:hover .dropdown__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__panel a {
  display: block;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .18s, color .18s;
}
.dropdown__panel a:hover { background: var(--bg-navy-soft); color: var(--navy-500); }

.nav__cta { display: flex; align-items: center; gap: 12px; }
/* Compact header Apply button (all screen sizes) */
.nav__cta .btn--gold { padding: 10px 22px; font-size: .9rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(240,180,41,.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 55%, var(--navy-500) 100%);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 110px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #ffe9b0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--gold); }
.hero__lead {
  color: #c8d6ef;
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero__stat .num { font-size: 2.1rem; font-weight: 800; color: var(--gold); }
.hero__stat .lbl { font-size: .85rem; color: #b9c8e6; }

.hero__card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.hero__card h3 { color: #fff; font-size: 1.2rem; }
.hero__card p { color: #c0d0ec; font-size: .94rem; margin-bottom: 0; }
.hero__streams { display: grid; gap: 14px; margin-top: 6px; }
.stream-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform .25s var(--ease), background .25s;
}
.stream-pill:hover { transform: translateX(6px); background: rgba(255,255,255,.12); }
.stream-pill .ico {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  font-size: 1.3rem;
}
.stream-pill strong { color: #fff; display: block; font-size: 1rem; }
.stream-pill span { color: #b9c8e6; font-size: .82rem; }

/* Wave divider */
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; line-height: 0; }
.hero__wave svg { width: 100%; height: 70px; display: block; }

/* ===========================================================
   Quick highlights strip
   =========================================================== */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}
.highlight {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.highlight:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.highlight .ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--bg-navy-soft);
  color: var(--navy-500);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.highlight h4 { font-size: 1.05rem; margin-bottom: 4px; }
.highlight p { font-size: .88rem; margin: 0; }

/* ===========================================================
   About / image split
   =========================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(150deg, var(--navy-500), var(--navy));
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 30px;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0);
  background-size: 26px 26px;
}
.about-visual__crest {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
}
.about-visual__crest img { height: 70px; margin: 0 auto 16px; }
.about-visual__crest strong { display: block; color: var(--navy); font-size: 1.15rem; }
.about-visual__crest span { color: var(--muted); font-size: .85rem; }
.about-visual__est {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 16px;
  padding: 16px 20px;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-visual__est b { display: block; font-size: 1.6rem; line-height: 1; }
.about-visual__est small { font-size: .7rem; letter-spacing: .1em; }

.check-list { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-weight: 500; }
.check-list .tick {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-navy-soft);
  color: var(--navy-500);
  display: grid; place-items: center;
  font-size: .8rem;
  margin-top: 2px;
}

/* ===========================================================
   Cards grid (streams / courses)
   =========================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { font-size: .94rem; }
.card__subjects { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.card__subjects li {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy-500);
  background: var(--bg-navy-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--navy-500);
  font-size: .92rem;
}
.card__link:hover { color: var(--gold-600); }

/* ===========================================================
   Career paths chips
   =========================================================== */
.careers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}
.career-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), background .25s, color .25s;
}
.career-chip:hover { transform: translateY(-4px); background: var(--navy); color: #fff; }
.career-chip .ico { color: var(--gold-600); }
.career-chip:hover .ico { color: var(--gold); }

/* ===========================================================
   Leadership / testimonials
   =========================================================== */
.leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.leader {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.leader:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.leader__quote { color: var(--ink); font-style: italic; font-size: .96rem; margin-bottom: 20px; position: relative; padding-top: 26px; }
.leader__quote::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: -4px;
  font-size: 3.4rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
}
.leader__person { display: flex; align-items: center; gap: 14px; }
.leader__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy-500), var(--navy));
  color: var(--gold);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex: none;
}
.leader__person strong { display: block; color: var(--navy); font-size: 1rem; }
.leader__person span { color: var(--muted); font-size: .82rem; }

/* ===========================================================
   Stats band
   =========================================================== */
.stats-band {
  background:
    radial-gradient(800px 400px at 90% 120%, rgba(240,180,41,.18), transparent 60%),
    linear-gradient(150deg, var(--navy), var(--navy-700));
  color: #fff;
  border-radius: 24px;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-item .num { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-item .lbl { color: #c0d0ec; font-size: .92rem; margin-top: 8px; }

/* ===========================================================
   Gallery
   =========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 230px;
  background: linear-gradient(150deg, var(--navy-500), var(--navy));
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.gallery-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 24px 24px;
}
.gallery-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow); }
.gallery-card__ico {
  position: absolute;
  top: 22px; left: 22px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--gold);
}
.gallery-card__cap { position: relative; z-index: 2; }
.gallery-card__cap strong { display: block; font-size: 1.1rem; }
.gallery-card__cap span { font-size: .82rem; color: #c8d6ef; }

/* ===========================================================
   Page banner (inner pages)
   =========================================================== */
.page-banner {
  background:
    radial-gradient(700px 360px at 85% -20%, rgba(240,180,41,.18), transparent 60%),
    linear-gradient(150deg, var(--navy), var(--navy-700));
  color: #fff;
  padding: 70px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 30px 30px;
}
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); position: relative; z-index: 2; }
.page-banner p { color: #c8d6ef; position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.breadcrumb {
  position: relative; z-index: 2;
  margin-top: 16px;
  font-size: .88rem;
  color: #b9c8e6;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; opacity: .6; }

/* ===========================================================
   Timings / info table
   =========================================================== */
.info-rows { display: grid; gap: 14px; }
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.info-row .label { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); }
.info-row .label .ico { color: var(--gold-600); }
.info-row .value { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-q .sign { flex: none; color: var(--gold-600); font-size: 1.4rem; transition: transform .3s; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 22px 20px; margin: 0; }

/* ===========================================================
   Contact
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card .ico {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.contact-card strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-card a, .contact-card p { color: var(--muted); margin: 0; font-size: .94rem; }
.contact-card a:hover { color: var(--navy-500); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 71, 143, .1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: .78rem; color: var(--muted); }
.field .req { color: #ef4444; margin-left: 2px; }
.form-alert {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .25);
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.file-input { padding: 0; border: 1.5px dashed var(--line); background: var(--bg-soft); cursor: pointer; }
.file-input::file-selector-button {
  font-family: inherit;
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  background: var(--bg-navy-soft);
  border: 0;
  border-right: 1.5px solid var(--line);
  padding: 13px 18px;
  margin-right: 14px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.file-input:hover { border-color: var(--navy-500); }
.file-input::file-selector-button:hover { background: var(--navy); color: #fff; }
.form-note { font-size: .82rem; color: var(--muted); margin: 14px 0 0; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ===========================================================
   CTA band
   =========================================================== */
.cta-band {
  background:
    radial-gradient(700px 360px at 12% 130%, rgba(240,180,41,.22), transparent 60%),
    linear-gradient(150deg, var(--navy-500), var(--navy));
  color: #fff;
  border-radius: 26px;
  padding: 58px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 8px; }
.cta-band p { color: #cfdcf2; margin: 0; max-width: 520px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: var(--navy);
  color: #aebfdd;
  padding: 70px 0 26px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer__brand img { height: 44px; background: #fff; padding: 8px 12px; border-radius: 10px; margin-bottom: 18px; }
.footer__brand p { color: #9fb2d4; font-size: .92rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: #aebfdd; font-size: .92rem; transition: color .2s, padding-left .2s; }
.footer ul a:hover { color: var(--gold); padding-left: 5px; }
.footer__contact li { display: flex; gap: 10px; color: #aebfdd; font-size: .92rem; margin-bottom: 12px; }
.footer__contact .ico { color: var(--gold); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
  transition: background .25s, transform .25s;
}
.footer__social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: #8ea3c7;
}
.footer__bottom a { color: var(--gold); }

/* ===========================================================
   Images: hero poster, about photo, media cards
   =========================================================== */
.hero__poster {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,.12);
  background: #fff;
}
.hero__poster img { width: 100%; display: block; }

.about-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo__est {
  position: absolute;
  bottom: 22px; right: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-photo__est b { display: block; font-size: 1.5rem; line-height: 1; }
.about-photo__est small { font-size: .68rem; letter-spacing: .1em; }

/* Career / media image cards */
.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.media-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.media-card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.media-card:hover .media-card__img img { transform: scale(1.07); }
.media-card__body { padding: 20px 22px; }
.media-card__body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.media-card__body p { font-size: .9rem; margin: 0; }
.media-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(13,33,73,.86);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* Gallery photo cards (override gradient version when img present) */
.gallery-card.has-photo { padding: 0; min-height: 0; aspect-ratio: 4 / 3; display: block; }
.gallery-card.has-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-card.has-photo::before { display: none; }
.gallery-card.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,33,73,.82) 0%, rgba(13,33,73,.15) 55%, transparent 100%);
  z-index: 1;
}
.gallery-card.has-photo:hover img { transform: scale(1.06); }
.gallery-card.has-photo .gallery-card__cap { position: absolute; left: 22px; bottom: 20px; z-index: 2; }
.gallery-card.has-photo .gallery-card__ico { z-index: 2; background: rgba(13,33,73,.55); }

/* Avatar photos in leader cards */
.leader__avatar.photo { overflow: hidden; padding: 0; }
.leader__avatar.photo img { width: 100%; height: 100%; object-fit: cover; }

/* Founder card */
.founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.founder__photo { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg-soft); }
.founder__photo img { width: 100%; display: block; }
.founder__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Board affiliation strip */
.affiliation {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 30px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.affiliation img { height: 96px; width: auto; border-radius: 10px; }
.affiliation h3 { margin-bottom: 4px; }
.affiliation p { margin: 0; }

@media (max-width: 760px) {
  .founder { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .founder__photo { max-width: 240px; margin: 0 auto; }
}

/* ===========================================================
   Thank you page
   =========================================================== */
.thankyou {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px 44px;
  box-shadow: var(--shadow);
}
.thankyou__icon {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(150deg, var(--navy-500), var(--navy));
  box-shadow: 0 12px 28px rgba(13, 33, 73, .28);
}
.thankyou__title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.thankyou__lead { font-size: 1.1rem; max-width: 560px; margin: 0 auto 12px; }
.thankyou__next {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 30px auto;
}
.thankyou__next h3 { font-size: 1.15rem; margin: 0; }
.thankyou__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.thankyou__note { font-size: .9rem; margin-top: 26px; }
.thankyou__note a { color: var(--navy-500); font-weight: 700; }

/* ===========================================================
   Reveal animation
   =========================================================== */
/* Content is visible by default (fail-open). The hide-then-animate state is
   applied only when JS runs and adds .reveal-on to <html>, so a missing or
   blocked main.js can never leave the page blank. */
.reveal { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-on .reveal { opacity: 0; transform: translateY(28px); }
.reveal-on .reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .leaders { grid-template-columns: 1fr 1fr; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .topbar { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .menu {
    position: fixed;
    top: 74px; left: 0;
    width: 100%;
    height: calc(100vh - 74px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .menu.is-open { transform: translateX(0); }
  .menu > li > a { padding: 14px 16px; font-size: 1.05rem; }
  .dropdown__panel {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 4px 0 4px 16px;
    padding: 0 0 0 8px;
  }
  .burger { display: flex; }
  /* Bigger logo + smaller Apply button on mobile */
  .brand img { height: 50px; max-width: 60vw; }
  .nav__cta { gap: 6px; }
  .nav__cta .btn--gold { padding: 7px 12px; font-size: .78rem; }
  .grid-3, .grid-2, .leaders, .highlights, .gallery-grid, .form-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 28px; text-align: center; justify-content: center; }
  .cta-band__actions { justify-content: center; }
  .hero { padding: 70px 0 90px; }
}
