/* =========================================================
   Surinaams Olympisch Comité — Website Stylesheet
   ========================================================= */

:root {
  /* Shared house-style palette — same tokens as the SOCAR web app splash
     screen, sampled from the official SOC logo, so the marketing site and
     the app read as one ecosystem. */
  --green-dark: #005D28;
  --green: #009640;
  --green-light: #40B070;
  --red: #E63946;
  --red-dark: #9C2730;
  --gold: #F5C518;
  --gold-dark: #BF9A13;
  --gold-tint: #FDF1C9;
  --blue: #0070A8;
  --blue-dark: #005179;

  /* Neutrals — theme-aware (flip under prefers-color-scheme: dark) */
  --cream: #FAF6EE;
  --cream-deep: #F1EEE0;
  --surface: #FFFFFF;
  --ink: #161616;
  --ink-soft: #4A463F;
  --line: #E6DED0;

  /* Fixed tokens — intentionally do NOT flip with theme */
  --white: #FFFFFF;
  --ink-fixed: #161616;
  --surface-dark: #141311;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #141311;
    --cream-deep: #1F1C17;
    --surface: #1C1A17;
    --ink: #F3EFE5;
    --ink-soft: #B8B2A4;
    --line: #332F28;
    --gold-tint: #2C2513;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; line-height: 1.12; letter-spacing: 0.01em; text-transform: none; }
p { margin: 0 0 1em; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }

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

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--surface); }
.section--deep { background: var(--green-dark); color: var(--white); }
.section--deep p { color: rgba(255,255,255,.78); }
.section--deep h2, .section--deep h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section--deep .eyebrow { color: var(--gold); }

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink-fixed); }
.btn-primary:hover { background: #fff; }
.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-dark { border-color: var(--green); color: var(--green-dark); }
.btn-outline-dark:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ---------- Loading screen ---------- */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background:
    radial-gradient(120% 90% at 50% 12%, var(--gold-tint) 0%, transparent 60%),
    var(--cream);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-rings { width: 200px; height: auto; }
.loader-rings .ring {
  fill: none;
  stroke-width: 11;
  stroke-linecap: round;
  stroke-dasharray: 214;
  stroke-dashoffset: 214;
  animation: ring-draw 1s var(--ease) forwards, ring-pulse 1.6s ease-in-out .9s infinite;
}
.ring-blue   { stroke: var(--blue);        animation-delay: 0s,   .9s; }
.ring-black  { stroke: var(--ink);         animation-delay: .12s, 1.02s; }
.ring-red    { stroke: var(--red);         animation-delay: .24s, 1.14s; }
.ring-yellow { stroke: var(--gold);        animation-delay: .36s, 1.26s; }
.ring-green  { stroke: var(--green);       animation-delay: .48s, 1.38s; }
@keyframes ring-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes ring-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}
.loader-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .03em;
  color: var(--green-dark);
  opacity: 0;
  animation: loader-label-in .6s var(--ease) .5s forwards;
}
@keyframes loader-label-in {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .loader-rings .ring { animation: none; stroke-dashoffset: 0; }
  .loader-label { animation: none; opacity: 1; }
  .site-loader { transition: opacity .2s linear; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 0;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { line-height: 1.18; max-width: 190px; }
.brand-text strong { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: 0.005em; color: var(--green-dark); }
.brand-text span { display: block; font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; row-gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--green-dark); background: var(--cream-deep); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 168px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .18s var(--ease);
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.lang-menu button:hover { background: var(--cream-deep); }
.lang-menu button.active { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 62%, var(--green-light) 100%);
  color: var(--white);
  padding: 96px 0 120px;
}
.hero-bg-shape {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  font-size: clamp(36px, 5.2vw, 62px);
  color: var(--white);
  max-width: 15ch;
}
.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-meta div strong { display: block; font-family: var(--font-display); font-size: 26px; }
.hero-meta div span { font-size: 12.5px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }

.hero-emblem { position: relative; display: flex; align-items: center; justify-content: center; }
.emblem-ring { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.emblem-ring-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.emblem-card {
  position: relative;
  width: 62%;
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.emblem-card img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 24px;
}
.stat-item { text-align: center; border-left: 1px solid var(--line); }
.stat-item:first-child { border-left: none; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 34px; color: var(--green-dark); }
.stat-item span { font-size: 12.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.value-list { display: grid; gap: 18px; margin-top: 28px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.value-item h4 { font-size: 15.5px; margin-bottom: 2px; font-family: var(--font-body); font-weight: 700; }
.value-item p { font-size: 14.5px; margin: 0; }

.leader-cards { display: grid; gap: 16px; }
.leader-card {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.leader-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; flex-shrink: 0;
}
.leader-card h4 { margin: 0 0 2px; font-size: 16px; }
.leader-card span { font-size: 13px; color: var(--ink-soft); }

/* ---------- History timeline ---------- */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}
.timeline-item { position: relative; padding-left: 64px; margin-bottom: 34px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 12px;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--green);
}
.timeline-item.milestone .timeline-dot { background: var(--gold); border-color: var(--gold-dark); }
.timeline-year { font-family: var(--font-display); font-weight: 700; color: var(--green-dark); font-size: 15px; }
.timeline-item h4 { font-size: 16.5px; margin: 4px 0 6px; }
.timeline-item p { font-size: 14.5px; margin: 0; max-width: 62ch; }

/* ---------- Cards / grids ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.fed-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
  width: 100%;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
.fed-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.fed-card[aria-expanded="true"] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.fed-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--cream-deep); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fed-card h4 { font-size: 15px; margin: 0 0 2px; }
.fed-card span { font-size: 12.5px; color: var(--ink-soft); }
.fed-card-chevron {
  margin-left: auto; flex-shrink: 0; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease);
}
.fed-card[aria-expanded="true"] .fed-card-chevron { transform: rotate(90deg); color: var(--green); }

/* ---------- Federation detail panel ---------- */
.fed-detail {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  animation: fedDetailIn .3s var(--ease);
}
@keyframes fedDetailIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.fed-detail-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.fed-detail-head h4 { margin: 0; font-size: 17px; }
.fed-detail-close {
  background: var(--cream-deep); border: none; color: var(--ink);
  width: 32px; height: 32px; border-radius: 50%; font-size: 20px; line-height: 1;
  cursor: pointer; flex-shrink: 0;
}
.fed-detail-empty { color: var(--ink-soft); font-size: 14px; margin: 0; }
.fed-detail-body { display: grid; gap: 18px; }
.fed-member { display: flex; gap: 16px; align-items: flex-start; }
.fed-member-logo {
  width: 56px; height: 56px; border-radius: 12px; background: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; padding: 8px;
  box-shadow: var(--shadow-sm); color: var(--green-dark);
}
.fed-member-logo img { width: 100%; height: 100%; object-fit: contain; }
.fed-member-body h5 { margin: 0 0 4px; font-size: 15px; }
.fed-member-body p { margin: 0 0 8px; font-size: 13.5px; color: var(--ink-soft); }
.fed-member-links { display: flex; gap: 16px; flex-wrap: wrap; }
.fed-member-links a {
  font-size: 13px; font-weight: 600; color: var(--green-dark);
  display: inline-flex; align-items: center; gap: 4px; text-decoration: none;
}
.fed-member-links a:hover { text-decoration: underline; }

.athlete-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.athlete-media {
  height: 168px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85);
  position: relative;
}
.athlete-media .sport-icon { width: 52px; height: 52px; }
.athlete-media .medal-flag {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--ink-fixed); font-size: 11px; font-weight: 800;
  padding: 5px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
}
.athlete-body { padding: 18px 20px 20px; }
.athlete-body h4 { font-size: 16px; margin: 0 0 3px; }
.athlete-body .sport-name { font-size: 12.5px; color: var(--green-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; display:block; }
.athlete-body p { font-size: 14px; margin: 0; }

.spotlight {
  background: linear-gradient(120deg, var(--surface-dark) 0%, var(--green-dark) 100%);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.spotlight p { color: rgba(255,255,255,.82); }
.spotlight-tag {
  display: inline-block; background: var(--gold); color: var(--ink-fixed);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.spotlight-figure { display: flex; align-items: center; justify-content: center; }
.spotlight-figure svg { width: 100%; max-width: 260px; }
.spotlight-photo {
  width: 100%; max-width: 320px; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 20px; border: 3px solid var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* ---------- Events ---------- */
.event-list { display: grid; gap: 16px; }
.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 22px;
  align-items: center;
}
.event-date {
  text-align: center;
  background: var(--cream-deep);
  border-radius: 12px;
  padding: 12px 8px;
}
.event-date strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--green-dark); }
.event-date span { font-size: 11.5px; text-transform: uppercase; color: var(--ink-soft); letter-spacing: .05em; }
.event-info h4 { font-size: 16.5px; margin: 0 0 4px; }
.event-info p { margin: 0; font-size: 14px; }
.event-tag {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--green-dark); background: rgba(7,124,62,.1); padding: 5px 10px; border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Knowledge center ---------- */
.kc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.kc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.kc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.kc-card h4 { font-size: 17px; margin-bottom: 8px; }
.kc-card p { font-size: 14.5px; margin-bottom: 16px; }
.kc-link { font-size: 13.5px; font-weight: 700; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Quick links (partners) ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.partner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.partner-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--green); }
.partner-badge {
  width: 84px; height: 84px; border-radius: 18px;
  margin: 0 auto 16px; padding: 12px;
  background: #fff; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
}
.partner-badge img { width: 100%; height: 100%; object-fit: contain; }
.partner-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.partner-card p { font-size: 13px; margin-bottom: 14px; min-height: 54px; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 22px; }
.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-card.featured { grid-row: span 1; }
.news-media {
  height: 190px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  position: relative;
}
.news-media .pattern { position: absolute; inset: 0; opacity: .5; }
.news-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--green-dark); font-weight: 700; margin-bottom: 8px; }
.news-body h4 { font-size: 18px; margin-bottom: 10px; }
.news-card.featured .news-body h4 { font-size: 22px; }
.news-body p { font-size: 14px; margin-bottom: 0; }

/* ---------- Social ---------- */
.social-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.social-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.social-icon {
  width: 48px; height: 48px; border-radius: 50%;
  margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; color: #fff;
}
.social-card h4 { font-size: 14.5px; margin-bottom: 2px; }
.social-card span { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-list { display: grid; gap: 20px; margin-top: 26px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ic {
  width: 42px; height: 42px; border-radius: 10px; background: var(--cream-deep); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.contact-row span, .contact-row a { font-size: 14.5px; color: var(--ink-soft); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 100%; min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold);
  border-radius: 24px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-size: clamp(22px, 3vw, 30px); max-width: 24ch; margin: 0; color: var(--ink-fixed); }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-dark); color: rgba(255,255,255,.7); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text span { color: rgba(255,255,255,.55); }
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .2s;
}
.footer-social a:hover { background: var(--green); }
.footer-col h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,.68); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-emblem { order: -1; max-width: 220px; margin: 0 auto 20px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid, .card-grid--4, .kc-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: span 2; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat-item:nth-child(3) { border-left: none; }
  .spotlight { grid-template-columns: 1fr; padding: 34px; }
  .spotlight-figure { order: -1; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .main-nav a { padding: 13px 14px; }
  .card-grid, .card-grid--4, .kc-grid, .partner-grid, .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { grid-template-columns: 1fr; text-align: left; }
  .event-date { width: 90px; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
}
