/* ============================================
   FID — Fundamental Initiative for Development
   Design tokens & global styles
   ============================================ */

:root {
  /* Color tokens */
  --cyan: #1fd5f0;
  --cyan-dim: #0fa9c2;
  --ink: #16181b;
  --navy: #0b2538;
  --paper: #ffffff;
  --mist: #f4f6f7;
  --slate: #5a6772;
  --line: #e2e7e9;

  /* Type */
  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-mono: "Poppins", sans-serif;

  /* Layout */
  --container: 1180px;
  --gutter: 24px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   Typography
   ============================================ */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}
h3 {
  font-size: 1.35rem;
}

p {
  color: var(--slate);
}

.lede {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 56ch;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--cyan);
  display: inline-block;
}

/* ============================================
   Signature element: diagonal spark accent
   ============================================ */

.spark {
  display: inline-block;
  width: 46px;
  height: 10px;
  position: relative;
}
.spark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  background: var(--cyan);
  transform: skewX(-22deg);
  transform-origin: left center;
}

.section-divider {
  position: relative;
  height: 1px;
  background: var(--line);
  overflow: visible;
  margin: 0;
}
.section-divider::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  top: -6px;
  width: 64px;
  height: 13px;
  background: var(--cyan);
  transform: skewX(-22deg);
}

/* ============================================
   Header / Nav
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  letter-spacing: -0.02em;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo span {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--cyan);
  font-weight: 600;
  padding-bottom: 3.5px;

  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo .logo-text-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  text-transform: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--slate);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--cyan-dim);
}

.nav-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 18px !important;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.6s var(--ease);
}
.nav-cta::after,
.nav-links a.nav-cta::after,
.nav-links a.nav-cta:hover::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--cyan-dim);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.25s var(--ease);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--slate);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.lang-switch:hover {
  border-color: var(--cyan-dim);
}
.lang-switch .lang-sep {
  color: var(--line);
  font-weight: 400;
}
.lang-switch .lang-en,
.lang-switch .lang-mn {
  transition: color 0.2s var(--ease);
  color: var(--slate);
}
.lang-switch .lang-en {
  color: var(--ink);
}
.lang-switch.is-mn .lang-en {
  color: var(--slate);
}
.lang-switch.is-mn .lang-mn {
  color: var(--ink);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--cyan-dim);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--cyan-dim);
  color: var(--cyan-dim);
}

.btn-light {
  background: var(--cyan);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--paper);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 80px 0 0;
  background: var(--paper);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}

.hero h1 {
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--cyan-dim);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  background: url("../images/stockimage.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.container .lede {
  text-align: justify;
}

/* ============================================
   Generic section spacing
   ============================================ */

.section {
  padding: 88px 0;
}
.section-tight {
  padding: 64px 0;
}
.section-dark {
  background: var(--navy);
  color: var(--paper);
}
.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}
.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}
.section-mist {
  background: var(--mist);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   Stats row - unused section
   ============================================ 

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--paper);
  padding: 32px 28px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .unit {
  font-size: 1.3rem;
  color: var(--cyan-dim);
  font-weight: 600;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--slate);
  margin-top: 8px;
}
*/

/* ============================================
   About page: cards
   ============================================ */

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 16px 40px -24px rgba(11, 37, 56, 0.35);
}

.card-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan-dim);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  display: block;
}

.card h3 {
  margin-bottom: 12px;
}
.card p {
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.card-link .arrow {
  transition: transform 0.2s var(--ease);
}
.card:hover .card-link .arrow {
  transform: translateX(4px);
}

/* ============================================
   Overlapping image collage
   ============================================ */

.img-collage {
  position: relative;
  height: 420px;
  width: 100%;
}

.img-collage-item {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px -12px rgba(11, 37, 56, 0.28);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.img-collage-item:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 52px -12px rgba(11, 37, 56, 0.38);
}

/* Left image — tallest, behind */
.img-collage-item--1 {
  width: 65%;
  height: 90%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Right image — medium, overlaps left */
.img-collage-item--2 {
  width: 80%;
  height: 75%;
  top: 14%;
  right: -28%;
  z-index: 2;
}

/* Bottom center — smallest, in front of both */
.img-collage-item--3 {
  width: 80%;
  height: 63%;
  bottom: -20%;
  left: 22%;
  z-index: 3;
}

/* Placeholder fill — replace with real <img> tags later */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(31, 213, 240, 0.32),
    transparent 60%
  );
}
.img-collage-item--2 .img-placeholder {
  background: #1a2e3e;
}
.img-collage-item--3 .img-placeholder {
  background: #0e3244;
}
.img-placeholder span {
  position: relative;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 920px) {
  .img-collage {
    height: 320px;
  }
}
@media (max-width: 720px) {
  .img-collage {
    height: 260px;
  }
  .img-collage-item--1 {
    width: 60%;
    height: 78%;
  }
  .img-collage-item--2 {
    width: 54%;
    height: 60%;
  }
  .img-collage-item--3 {
    width: 46%;
    height: 44%;
  }
}

/* ============================================
   News page: feautred news
   ============================================ */

.story-highlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.story-highlight-media {
  position: relative;
  aspect-ratio: 5 / 4;
  background: transparent;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
}

.story-highlight-media .spark-mark {
  position: relative;
  width: 64px;
}

.story-highlight-body {
  padding: 16px 32px 16px 0;
  text-align: left;
}

.story-highlight-body .lede {
  text-align: justify;
}

.story-highlight-body h2 {
  margin: 14px 0 16px;
  font-size: 2rem;
}

.story-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 24px;
}
.story-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--slate);
  border-radius: 100px;
}

@media (max-width: 920px) {
  .story-highlight {
    grid-template-columns: 1fr;
  }
  .story-highlight-body {
    padding: 0 24px 24px;
  }
  .story-highlight-media {
    aspect-ratio: 16/9;
  }
}

/* ============================================
   News listing
   ============================================ */

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

.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 16px 40px -24px rgba(11, 37, 56, 0.35);
}
.news-card-media {
  aspect-ratio: 16/10;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.news-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 20%,
    rgba(31, 213, 240, 0.3),
    transparent 60%
  );
}
.news-card-body {
  padding: 24px;
}
.news-card-body h3 {
  margin-bottom: 10px;
}
.news-card-body p {
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.event-row:first-of-type {
  border-top: 1px solid var(--line);
}

.event-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--cyan-dim);
}
.event-date .day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  letter-spacing: -0.02em;
}

.event-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 10px;
}

.event-meta {
  font-size: 0.88rem;
  color: var(--slate);
  margin-top: 4px;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: 16px;
}
.footer-logo .logo-mark {
  width: 60px;
  height: 34px;
}

.footer-col h4 {
  color: var(--paper);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-weight: 400;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   Page hero (sub-pages)
   ============================================ */

.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.page-hero .lede {
  margin-top: 18px;
}

/* ============================================
   Forms (contact)
   ============================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--mist);
  color: var(--ink);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: var(--cyan);
  background: var(--paper);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-card {
  background: var(--navy);
  color: var(--paper);
  border-radius: 6px;
  padding: 40px;
}
.contact-info-card h3 {
  color: var(--paper);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info-item .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}
.contact-info-item .value {
  font-size: 1.05rem;
}
.contact-info-item a:hover {
  color: var(--cyan);
}

/* ============================================
   About page specifics
   ============================================ */

.timeline {
  border-left: 2px solid var(--line);
  padding-left: 36px;
  position: relative;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 100px;
  border: 3px solid var(--paper);
  outline: 1px solid var(--line);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan-dim);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.value-row {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.value-row:first-of-type {
  border-top: 1px solid var(--line);
}
.value-row .num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan-dim);
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 36px;
}

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

.cta-band {
  background: var(--navy);
  border-radius: 6px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--paper);
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   News highlight loading skeleton
   ============================================ */

.story-highlight--loading {
  min-height: 320px;
  background: linear-gradient(
    90deg,
    var(--mist) 25%,
    var(--line) 50%,
    var(--mist) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .story-highlight--loading {
    animation: none;
    background: var(--mist);
  }
}

/* ============================================
   Events empty state
   ============================================ */

.events-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 24px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: var(--mist);
}
.events-empty-icon {
  margin-bottom: 20px;
  opacity: 0.5;
}
.events-empty-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink) !important;
  margin-bottom: 10px;
}
.events-empty-sub {
  font-size: 0.95rem;
  color: var(--slate);
  max-width: 44ch;
}
.events-empty-sub a {
  color: var(--cyan-dim);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.events-empty-sub a:hover {
  color: var(--ink);
}

/* ============================================
   Board member cards (about page)
   ============================================ */

.board-section {
  padding: 88px 0;
}

.chairman-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: flex-start;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  color: var(--paper);
  margin-bottom: 64px;
}
.chairman-card .member-photo {
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}
.chairman-card .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chairman-card .member-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b2538 60%, #1fd5f020);
}
.chairman-card .member-body {
  padding: 40px 40px 40px 0;
}
.chairman-card .member-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: block;
}
.chairman-card .member-name {
  color: var(--paper);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}
.chairman-card .member-bio {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 58ch;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.board-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.board-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 36px -20px rgba(11, 37, 56, 0.25);
  transform: translateY(-3px);
}
.board-card .member-photo {
  width: 120px;
  height: 160 px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--mist);
}
.board-card .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}
.board-card .member-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
}
.board-card .member-photo-placeholder svg {
  opacity: 0.3;
}
.board-card .member-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  margin-bottom: 6px;
  display: block;
}
.board-card .member-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.board-card .member-bio {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .chairman-card {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
  .board-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .chairman-card {
    grid-template-columns: 1fr;
  }
  .chairman-card .member-photo {
    aspect-ratio: 16/9;
  }
  .chairman-card .member-body {
    padding: 0 24px 28px;
  }
  .board-card {
    grid-template-columns: 90px 1fr;
  }
  .board-card .member-photo {
    width: 90px;
    height: 90px;
  }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    aspect-ratio: 16/9;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .event-row {
    grid-template-columns: 90px 1fr;
  }
  .event-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--gutter) 32px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
    transform: translateY(-110%);
    transition: transform 0.3s var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-toggle {
    display: block;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .section {
    padding: 64px 0;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--cyan-dim);
  outline-offset: 2px;
}

/* Anchor scroll offset (accounts for sticky header height) */
#partner {
  scroll-margin-top: 90px;
}
