@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d2340;
  --navy-mid: #163556;
  --teal: #0a7c6e;
  --teal-light: #0d9e8d;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f8f5ef;
  --white: #ffffff;
  --grey-light: #f0ede8;
  --grey-mid: #d4cfc8;
  --grey-text: #6b6560;
  --dark-text: #1a1612;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); 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.1rem; font-weight: 600; }
p { margin-bottom: 1.2rem; color: var(--grey-text); }
p:last-child { margin-bottom: 0; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-light); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(13, 35, 64, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); color: var(--white);
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em;
}
.nav-logo .logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 0.5rem 1.25rem; border-radius: 4px;
}
.nav-cta:hover { background: var(--teal-light); color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(10,124,110,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead {
  font-size: 1.15rem; color: rgba(255,255,255,0.7);
  max-width: 580px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 4px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-light); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
.btn-teal-outline { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-teal-outline:hover { background: var(--teal); color: var(--white); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.stats-inner {
  display: flex; justify-content: space-around; flex-wrap: wrap;
  padding: 2rem; gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--gold); font-weight: 700; line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── AUDIENCE PANELS ── */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.audience-card {
  background: var(--cream); border-radius: 8px;
  padding: 2.5rem; border-top: 3px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.audience-card.gold { border-top-color: var(--gold); }
.audience-icon { font-size: 2rem; margin-bottom: 1rem; }
.audience-card h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.3rem; }
.audience-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block; color: var(--teal); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ── PILLAR PAGES GRID ── */
.pillars-bg { background: var(--grey-light); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.pillar-card {
  background: var(--white); border-radius: 8px; padding: 2rem;
  border: 1px solid var(--grey-mid);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.pillar-card:hover { border-color: var(--teal); box-shadow: 0 8px 30px rgba(10,124,110,0.1); }
.pillar-number {
  font-family: var(--font-display); font-size: 3rem; color: var(--grey-mid);
  font-weight: 700; line-height: 1; margin-bottom: 1rem;
}
.pillar-card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.875rem; flex: 1; }
.pillar-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--teal); font-size: 0.875rem; font-weight: 600;
  margin-top: 1.25rem;
}
.pillar-link::after { content: '→'; transition: transform var(--transition); }
.pillar-card:hover .pillar-link::after { transform: translateX(4px); }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.blog-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--grey-mid); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-card-tag {
  display: inline-block; background: var(--teal); color: var(--white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.75rem; margin: 1.5rem 1.5rem 0;
  border-radius: 2px; align-self: flex-start;
}
.blog-card-body { padding: 1rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; flex: 1; }
.blog-card-meta { font-size: 0.78rem; color: var(--grey-mid); margin-top: 1rem; }
.read-more {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--teal); font-size: 0.875rem; font-weight: 600; margin-top: 1rem;
}
.read-more::after { content: '→'; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy); padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(10,124,110,0.2) 0%, transparent 60%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2rem; }

/* ── BLOG POST PAGE ── */
.post-hero {
  background: var(--navy); padding: 8rem 0 4rem;
  position: relative; overflow: hidden;
}
.post-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(10,124,110,0.15) 0%, transparent 60%);
}
.post-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.post-tag {
  display: inline-block; background: var(--teal); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.post-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.post-meta { color: rgba(255,255,255,0.6); font-size: 0.875rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.post-body { max-width: 780px; margin: 0 auto; padding: 4rem 2rem; }
.post-body h2 { color: var(--navy); margin: 2.5rem 0 1rem; font-size: 1.8rem; }
.post-body h3 { color: var(--navy); margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.post-body p { color: var(--grey-text); line-height: 1.85; margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--grey-text); }
.post-body li { margin-bottom: 0.5rem; line-height: 1.7; }
.post-cta-box {
  background: var(--cream); border-left: 4px solid var(--teal);
  padding: 2rem; border-radius: 0 8px 8px 0; margin: 3rem 0;
}
.post-cta-box h4 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.1rem; }
.post-cta-box p { font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ── PILLAR PAGE ── */
.pillar-hero {
  background: var(--navy); padding: 8rem 0 4rem; position: relative; overflow: hidden;
}
.pillar-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.1) 0%, transparent 50%);
}
.pillar-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.pillar-hero h1 { color: var(--white); margin-bottom: 1rem; }
.pillar-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.pillar-content { max-width: 860px; margin: 0 auto; padding: 4rem 2rem; }
.pillar-content h2 { color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--grey-light); }
.pillar-content h3 { color: var(--navy-mid); margin: 2rem 0 0.75rem; }
.pillar-content p { color: var(--grey-text); line-height: 1.85; }
.pillar-content ul { margin: 1rem 0 1.5rem 1.5rem; color: var(--grey-text); }
.pillar-content li { margin-bottom: 0.6rem; line-height: 1.7; }
.checklist { list-style: none; margin-left: 0; }
.checklist li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

/* ── RESOURCES PAGE ── */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.resource-card {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: 8px; padding: 1.75rem;
  transition: all var(--transition);
}
.resource-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.resource-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.resource-card p { font-size: 0.875rem; margin-bottom: 1rem; }
.resource-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; max-width: 320px; margin-top: 1rem; line-height: 1.7; }
.footer-col h5 {
  color: var(--gold); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: gap; font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ── ABOUT PAGE ── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-intro-text h2 { color: var(--navy); margin-bottom: 1.25rem; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.about-stat { background: var(--cream); padding: 1.5rem; border-radius: 8px; border-top: 3px solid var(--gold); }
.about-stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--navy); font-weight: 700; }
.about-stat .lbl { font-size: 0.8rem; color: var(--grey-text); margin-top: 0.25rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { background: var(--cream); border-radius: 8px; padding: 2rem; text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--navy); margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); font-weight: 700;
}
.team-card h4 { color: var(--navy); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.8rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); padding: 1.5rem 2rem; gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro { grid-template-columns: 1fr; }
  .stats-inner { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
