/* ============================================================
   SAKIRA AFROSE TOMA — ACADEMIC WEBSITE
   Design System: Editorial Academic
   Palette: Deep Teal · Warm Gold · Ivory
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --teal-900: #062E3D;
  --teal-800: #0D4E63;
  --teal-700: #145E76;
  --teal-500: #1E8AA8;
  --teal-300: #7EC8D9;
  --teal-100: #E0F4F8;
  --teal-50:  #F0FAFB;

  --gold-600: #B8862D;
  --gold-500: #C9943E;
  --gold-400: #D9A84F;
  --gold-200: #EDD89B;
  --gold-100: #FAF3DC;

  --ink-900: #111827;
  --ink-700: #2D3748;
  --ink-500: #4A5568;
  --ink-300: #718096;
  --ink-200: #A0AEC0;
  --ink-100: #E2E8F0;

  --ivory:   #F8F5EF;
  --white:   #FFFFFF;
  --cream:   #FBF9F5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(6,46,61,.08);
  --shadow-md:  0 4px 20px rgba(6,46,61,.10);
  --shadow-lg:  0 12px 48px rgba(6,46,61,.14);
  --shadow-xl:  0 24px 80px rgba(6,46,61,.18);

  --transition: 300ms cubic-bezier(.4,0,.2,1);
  --nav-height: 70px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--ivory);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--teal-900);
}
h1 { font-size: clamp(2.4rem,5vw,4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.8; color: var(--ink-500); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--ink-700); }
em     { font-style: italic; }

.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--ink-500);
  font-weight: 300;
}

.caption {
  font-size: .82rem;
  color: var(--ink-300);
  letter-spacing: .04em;
  font-family: var(--font-mono);
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }
.container--wide   { max-width: 1280px; }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-100);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
  transition: color var(--transition);
  flex-shrink: 0;
}
#nav.scrolled .nav-logo { color: var(--teal-800); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.12); }
#nav.scrolled .nav-links a { color: var(--ink-500); }
#nav.scrolled .nav-links a:hover { color: var(--teal-800); background: var(--teal-50); }
.nav-links a.active { color: var(--white); }
#nav.scrolled .nav-links a.active { color: var(--teal-800); font-weight: 600; }

.nav-cta {
  background: var(--gold-500) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
}
.nav-cta:hover { background: var(--gold-600) !important; }
#nav.scrolled .nav-cta { background: var(--teal-800) !important; color: var(--white) !important; }
#nav.scrolled .nav-cta:hover { background: var(--teal-700) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#nav.scrolled .nav-hamburger span { background: var(--ink-700); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--teal-900);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  padding: 8px 24px;
  opacity: .7;
  transition: opacity var(--transition);
}
.nav-mobile a:hover { opacity: 1; }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  opacity: .7;
  transition: opacity var(--transition);
}
.nav-mobile-close:hover { opacity: 1; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(21,94,118,.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,148,62,.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--teal-900) 0%, #0A2D3C 50%, #062028 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-400);
}
.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.hero-tag {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  margin-top: 80px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-stat {
  padding: 32px 28px;
  background: rgba(6,46,61,.4);
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,148,62,.35); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.btn-teal {
  background: var(--teal-800);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-700); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,78,99,.3); }

.btn-outline {
  background: transparent;
  color: var(--teal-800);
  border: 1.5px solid var(--teal-300);
}
.btn-outline:hover { background: var(--teal-50); border-color: var(--teal-500); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold-600);
  border: 1.5px solid var(--gold-400);
}
.btn-gold-outline:hover { background: var(--gold-100); }

.btn-sm { font-size: .82rem; padding: 8px 20px; }
.btn-lg { font-size: 1rem; padding: 16px 36px; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-body { padding: 28px; }

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}
.section-header--center .section-label { justify-content: center; }
.section-header--center .section-label::before { display: none; }
.section-header h2 { margin-bottom: 12px; }
.section-header p.lead { max-width: 600px; }
.section-header--center p.lead { margin: 0 auto; }

/* ── TAG / BADGE ─────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--teal-100);
  color: var(--teal-700);
}
.tag--gold { background: var(--gold-100); color: var(--gold-600); }
.tag--dark { background: var(--ink-100); color: var(--ink-500); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 2px;
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--teal-900) 0%, #0A2D3C 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--ivory);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.6); max-width: 600px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--teal-900);
  color: rgba(255,255,255,.6);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--white); }

/* ── RESEARCH CARDS ──────────────────────────────────────── */
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.research-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.research-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--teal-500);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.research-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.research-card:hover::before { transform: scaleY(1); }
.research-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.research-card h4 { margin-bottom: 10px; font-size: 1.05rem; line-height: 1.4; }
.research-card p { font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-300), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal-500);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--teal-100);
}
.timeline-date {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--gold-500);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}
.timeline-card h4 { margin-bottom: 4px; }
.timeline-card .org {
  font-size: .88rem;
  color: var(--teal-500);
  font-weight: 500;
  margin-bottom: 12px;
}
.timeline-card p { font-size: .9rem; }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-header {
  height: 8px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
}
.blog-card-body { padding: 28px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-card-meta .tag { font-size: .68rem; }
.blog-card-meta .date {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--ink-300);
  margin-left: auto;
}
.blog-card h3 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--teal-600); }
.blog-card p { font-size: .9rem; line-height: 1.7; color: var(--ink-500); margin-bottom: 20px; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid var(--ink-100);
  font-size: .82rem;
}
.read-time { color: var(--ink-300); font-family: var(--font-mono); }
.read-more {
  color: var(--teal-600);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more { gap: 8px; }

/* ── BLOG POST ───────────────────────────────────────────── */
.blog-post {
  max-width: 740px;
  margin: 0 auto;
}
.blog-post h2 { font-size: 1.7rem; margin: 40px 0 16px; }
.blog-post h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.blog-post p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.4rem; color: var(--ink-600); }
.blog-post ul, .blog-post ol { margin: 0 0 1.4rem 1.5rem; }
.blog-post li { margin-bottom: .6rem; font-size: 1.05rem; line-height: 1.7; color: var(--ink-500); }
.blog-post ul { list-style: disc; }
.blog-post ol { list-style: decimal; }
.blog-post blockquote {
  border-left: 4px solid var(--gold-400);
  padding: 20px 28px;
  background: var(--gold-100);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-700);
  line-height: 1.6;
}
.blog-post .niw-box {
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 40px 0;
}
.blog-post .niw-box h4 {
  color: var(--teal-700);
  margin-bottom: 10px;
  font-size: 1rem;
}
.blog-post .niw-box p { font-size: .95rem; color: var(--ink-500); margin: 0; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink-700);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(30,138,168,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── SPEAKING ────────────────────────────────────────────── */
.speaking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition);
}
.speaking-card:hover { box-shadow: var(--shadow-md); }
.speaking-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.speaking-card h4 { font-size: 1rem; margin-bottom: 4px; }
.speaking-card p { font-size: .9rem; color: var(--ink-400); margin: 0; }

/* ── MEDIA / PRESS ───────────────────────────────────────── */
.press-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all var(--transition);
}
.press-card:hover { box-shadow: var(--shadow-md); }
.press-outlet {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-800);
  min-width: 120px;
  flex-shrink: 0;
}
.press-content h4 { font-size: 1rem; margin-bottom: 4px; }
.press-content p { font-size: .88rem; color: var(--ink-400); margin: 0; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }
.fade-in { opacity: 0; animation: fadeIn .7s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MISC UTILITIES ──────────────────────────────────────── */
.bg-ivory   { background: var(--ivory); }
.bg-white   { background: var(--white); }
.bg-teal    { background: var(--teal-900); }
.bg-cream   { background: var(--cream); }
.bg-teal-light { background: var(--teal-50); }

.text-center { text-align: center; }
.text-teal   { color: var(--teal-700); }
.text-gold   { color: var(--gold-500); }
.text-muted  { color: var(--ink-300); }
.text-white  { color: var(--white); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.gold-accent {
  background: linear-gradient(135deg, var(--gold-100) 0%, var(--ivory) 100%);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-xl);
  padding: 48px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .press-card { flex-direction: column; }
  .section { padding: 64px 0; }
}
