/* ═══════════════════════════════════════════════════════════
   Keystone Consulting LLC — Shared Design System
   NOTE: Satoshi loaded via Fontshare CDN (preview only — self-host before launch for China)
   ═══════════════════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --navy:       #0b1f3a;
  --navy-mid:   #122847;
  --navy-soft:  #1a3560;
  --navy-glass: rgba(11, 31, 58, 0.95);
  --gold:       #c9a84c;
  --gold-lt:    #e8c87a;
  --gold-glass: rgba(201, 168, 76, 0.12);
  --cream:      #f8f5ef;
  --cream-dk:   #ede8de;
  --white:      #ffffff;
  --text:       #1c2a3a;
  --muted:      #5a6a7a;
  --success:    #15803d;

  --serif: 'Satoshi', 'Segoe UI', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', Arial, sans-serif;
  --sans:  'Satoshi', 'Segoe UI', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', Arial, sans-serif;

  --r:     6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-pill: 100px;

  --shadow-sm:  0 2px 12px rgba(11, 31, 58, 0.07);
  --shadow-md:  0 4px 30px rgba(11, 31, 58, 0.10);
  --shadow-lg:  0 12px 48px rgba(11, 31, 58, 0.15);

  --ease: 0.25s ease;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Chinese text gets slightly more line height */
html[lang="zh"] body {
  line-height: 1.9;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; letter-spacing: 0; }

p { line-height: 1.75; }

a { color: inherit; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

.section        { padding: 96px 0; }
.section--dark  { background: var(--navy); color: var(--white); }
.section--mid   { background: var(--navy-mid); color: var(--white); }
.section--cream { background: var(--cream-dk); }
.section--white { background: var(--white); }

.label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.gold        { color: var(--gold); }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.lead        { font-size: 1.1rem; line-height: 1.8; }

/* ── GRID HELPERS ─────────────────────────────────────────── */
.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card--dark {
  background: var(--navy-soft);
  color: var(--white);
}

.card--bordered {
  border-top: 3px solid var(--gold);
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  max-width: 1320px;  /* wider than default container for nav breathing room */
}

/* LOGO — natural width, flush left */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 6px 0;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* NAV LINKS — fill middle, centered between logo and CTA */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex: 1 1 auto;
  justify-content: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--ease);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a.active {
  color: var(--gold-lt);
  border-bottom-color: var(--gold);
}

/* CTA — flush right */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
  font-family: var(--sans);
}
.lang-toggle:hover {
  background: var(--gold-glass);
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold-lt);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 24px 28px 32px;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.mobile-menu ul a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 1.05rem; }
.mobile-menu ul a.active { color: var(--gold-lt); }
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lang-toggle--large {
  font-size: 0.88rem;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 60%, rgba(26, 53, 96, 0.6) 0%, transparent 70%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden; opacity: 0.07;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 60px, rgba(201, 168, 76, 0.5) 60px, rgba(201, 168, 76, 0.5) 61px
  );
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 72px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
}
.hero-badge::before { content: '★'; font-size: 0.7rem; }
.hero h1 { color: var(--white); margin-bottom: 22px; max-width: 800px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  margin-bottom: 38px;
  max-width: 580px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 56px; flex-wrap: wrap; justify-content: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 560px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ── COMPACT HERO (interior pages) ───────────────────────── */
.hero-compact {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-compact .hero-bg { position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.hero-compact-inner {
  position: relative; z-index: 2;
  padding: 140px 0 72px;
  text-align: center;
}
.hero-compact h1 { color: var(--white); margin-bottom: 16px; }
.hero-compact .hero-sub { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── SCHOOLS STRIP (marquee) ──────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.schools-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.schools-label {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  padding: 0 28px 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  margin-right: 0;
}
.marquee-track-wrap {
  flex: 1;
  overflow: hidden;
  /* fade edges to navy */
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 0 30px;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.school-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.55);
  transition: filter 0.2s ease;
  flex-shrink: 0;
}
.school-logo:hover {
  filter: brightness(0) invert(1) opacity(0.9);
}
.school-logo--square { height: 34px; max-width: 70px; }
.school-logo--wide   { max-width: 130px; }
.school-logo--xwide  { max-width: 160px; }
@media (max-width: 640px) {
  .schools-label { padding: 0 16px 0 20px; font-size: 0.65rem; }
  .school-logo { height: 22px; max-width: 90px; }
  .school-logo--square { height: 28px; max-width: 55px; }
  .marquee-track { gap: 40px; animation-duration: 22s; }
}

/* ── INDUSTRY ADVISORS SECTION ────────────────────────────── */
.industry-section {
  background: var(--cream);
  border-top: 1px solid rgba(11, 31, 58, 0.07);
  border-bottom: 1px solid rgba(11, 31, 58, 0.07);
}
.industry-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 8px;
}
.industry-sub {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.industry-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 44px;
}
.industry-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: opacity(0.6) grayscale(0.15);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.industry-logo:hover {
  filter: opacity(1) grayscale(0);
  transform: translateY(-2px);
}
.industry-logo--wide   { max-width: 120px; }
.industry-logo--xwide  { max-width: 160px; }
.industry-logo--square { height: 44px; max-width: 80px; }
@media (max-width: 640px) {
  .industry-logos { gap: 32px; }
  .industry-logo  { height: 28px; }
  .industry-logo--square { height: 36px; }
}

/* ── WHY US CARDS ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 26px; height: 26px;
  fill: var(--gold);
}
.why-card h3 { margin-bottom: 10px; color: var(--navy); }
.why-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── SERVICES GRID (home preview) ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 56px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}
.service-item {
  background: var(--navy-soft);
  padding: 40px 36px;
  transition: background var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.service-item:hover::before { transform: scaleY(1); }
.service-item:hover { background: rgba(201, 168, 76, 0.08); }
.service-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.service-item h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.service-item p  { color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; line-height: 1.7; }
.service-item .service-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.service-item .service-link:hover { color: var(--gold-lt); }

/* ── SERVICES DETAIL (services page) ─────────────────────── */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.service-detail-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-detail-card .service-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.service-detail-card h3 { color: var(--navy); margin-bottom: 14px; font-size: 1.2rem; }
.service-detail-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 18px; }
.service-detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-detail-card ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.service-detail-card ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ── PACKAGES ─────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.package-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.featured {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
}
.package-card.featured h3 { color: var(--white); }
.package-card.featured p  { color: rgba(255,255,255,0.6); }
.package-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.package-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.package-card .package-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }
.package-features { list-style: none; text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.package-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.package-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.package-card.featured .package-features li { color: rgba(255,255,255,0.75); }

/* ── PROCESS ──────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}
.step {
  text-align: center;
  padding: 0 20px 40px;
  position: relative;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  position: relative; z-index: 2;
}
.step h4 { color: var(--navy); margin-bottom: 8px; }
.step p   { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* Section--cream step circles get white bg */
.section--cream .step-circle { background: var(--cream-dk); }

/* ── AI DIFFERENTIATION ───────────────────────────────────── */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.ai-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ai-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ai-card-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.ai-card-icon svg { width: 24px; height: 24px; }
.ai-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--navy); }
.ai-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.ai-question {
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--navy);
  border-radius: var(--r-md);
  border-left: 4px solid var(--gold);
  text-align: center;
}
.ai-question p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ai-grid { grid-template-columns: 1fr; }
  .ai-question { padding: 24px 20px; }
}

/* ── FOUNDER / ABOUT BIO ──────────────────────────────────── */
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.founder-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  background: var(--navy-soft);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.25);
  position: relative; overflow: hidden;
}
.founder-portrait-inner {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex; align-items: center; justify-content: center;
}
.founder-portrait-inner svg {
  width: 64px; height: 64px;
  fill: rgba(201, 168, 76, 0.5);
}
.founder-portrait-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.founder-content h2 { color: var(--white); margin-bottom: 6px; }
.founder-title  { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.founder-content p { color: rgba(255, 255, 255, 0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 18px; }
.founder-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cred-tag {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-lt);
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}

/* Timeline */
.timeline { margin-top: 56px; position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.1));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-year { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.timeline-year {
  width: 72px; height: 72px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  z-index: 2;
}
.timeline-content {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.timeline-content h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.timeline-content p  { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* Pull quote */
.pullquote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  position: relative;
}
.pullquote blockquote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -30px; left: -20px;
  line-height: 1;
  font-family: var(--serif);
}
.pullquote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.t-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.t-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.t-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute; top: 10px; left: 24px;
  line-height: 1;
}
.t-stars  { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }
.t-body   { font-size: 0.93rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.t-author { font-weight: 700; color: var(--navy); font-size: 0.85rem; }
.t-meta   { color: var(--gold); font-size: 0.78rem; margin-top: 4px; letter-spacing: 0.03em; }

/* ── CASE STUDIES ─────────────────────────────────────────── */
.section--cream { background: var(--cream); }
.section-sub {
  max-width: 600px; margin: 14px auto 0;
  color: var(--muted); font-size: 0.95rem; line-height: 1.75;
}
.btn-outline-navy {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--navy);
  border-radius: var(--r-pill);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.case-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-top: 48px;
}
.case-header {
  background: var(--navy);
  padding: 24px 36px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.case-admitted-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45); display: block; margin-bottom: 4px;
}
.case-admitted-school {
  font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em;
}
.case-tag {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-lt);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: var(--r-pill);
}
.case-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.case-col {
  padding: 36px;
}
.case-col:first-child {
  border-right: 1px solid var(--cream-dk);
}
.case-section-title {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 18px; font-weight: 700;
}
.case-profile-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
}
.case-profile-list li {
  display: flex; gap: 12px; font-size: 0.88rem;
}
.case-key { color: var(--muted); min-width: 110px; flex-shrink: 0; }
.case-val { color: var(--text); font-weight: 500; }
.case-challenge {
  background: rgba(201,168,76,0.07);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  font-size: 0.85rem; color: var(--muted); line-height: 1.75;
  border-radius: 0 var(--r) var(--r) 0;
}
.case-challenge strong { color: var(--navy); }
.case-actions {
  list-style: none; display: flex; flex-direction: column; gap: 20px;
}
.case-actions li {
  display: flex; gap: 14px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); line-height: 1.75;
}
.case-actions li strong { color: var(--text); }
.case-actions li em { color: var(--gold); font-style: normal; font-weight: 600; }
.case-action-icon {
  min-width: 28px; height: 28px;
  background: var(--navy); color: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  flex-shrink: 0; margin-top: 2px;
}
.case-result {
  background: var(--navy);
  padding: 28px 36px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.case-result-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 10px;
}
.case-result-label {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-pill);
}
.case-result-text {
  color: var(--white); font-weight: 600; font-size: 0.95rem;
}
.case-result-note {
  color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.75;
}
@media (max-width: 720px) {
  .case-body { grid-template-columns: 1fr; }
  .case-col:first-child { border-right: none; border-bottom: 1px solid var(--cream-dk); }
  .case-header { padding: 20px 24px; }
  .case-col { padding: 28px 24px; }
  .case-result { padding: 22px 24px; }
}

/* Success story filter + grid */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  background: var(--white);
  border: 1.5px solid #dde2e8;
  border-radius: var(--r-pill);
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  font-family: var(--sans);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.story-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story-uni {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.story-field { font-size: 0.82rem; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.story-quote { font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.story-meta  { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }

/* Featured story */
.featured-story {
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 48px 56px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.featured-story::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 10rem;
  color: var(--gold);
  opacity: 0.08;
  position: absolute;
  top: -20px; left: 24px;
  line-height: 1;
}
.featured-story .label { display: block; margin-bottom: 16px; }
.featured-story blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.featured-story cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: 56px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid rgba(201, 168, 76, 0.2); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  gap: 16px;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--gold-lt); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.3s, background var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.8;
  padding: 0 4px;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

/* Light FAQ variant */
.faq-list--light .faq-item { border-bottom-color: rgba(11,31,58,0.12); }
.faq-list--light .faq-q { color: var(--navy); }
.faq-list--light .faq-q:hover { color: var(--gold); }
.faq-list--light .faq-a { color: var(--muted); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { color: var(--muted); margin-bottom: 36px; line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; }
.c-method { display: flex; gap: 14px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.c-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
.c-value { font-size: 0.95rem; color: var(--text); font-weight: 600; margin-top: 2px; }
.c-value a { color: var(--navy); text-decoration: none; }
.c-value a:hover { color: var(--gold); }

/* Contact method cards (full-width row) */
.contact-method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-method-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.contact-method-card .c-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-method-card .c-icon svg {
  width: 26px; height: 26px;
  color: var(--gold);
  fill: var(--gold);
}
.contact-method-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.contact-method-card p  { color: var(--muted); font-size: 0.88rem; }
.contact-method-card a  { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-method-card a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-family: var(--serif); color: var(--navy); margin-bottom: 24px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #dde2e8; border-radius: var(--r);
  font-family: var(--sans); font-size: 0.92rem; color: var(--text);
  background: #fafbfc;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: var(--white);
}
.form-group textarea { min-height: 110px; }
.form-success {
  display: none;
  background: #f0fdf4; border: 1.5px solid #86efac; border-radius: var(--r);
  padding: 16px; color: var(--success);
  font-size: 0.9rem; margin-top: 16px; text-align: center;
}

.wechat-box {
  margin-top: 28px;
  background: var(--cream-dk);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex; gap: 16px; align-items: center;
}
.wechat-qr {
  width: 60px; height: 60px; background: #07C160;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wechat-qr svg {
  width: 34px; height: 34px;
  fill: #fff;
}
.wechat-text { font-size: 0.85rem; color: var(--muted); }
.wechat-text strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 2px; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-soft) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img svg {
  width: 52px; height: 52px;
  fill: rgba(201, 168, 76, 0.6);
}
/* Per-category tint overlays */
.blog-card-img--tips     { background: linear-gradient(135deg, #0b2040, #14305a); }
.blog-card-img--strategy { background: linear-gradient(135deg, #1a1040, #2d1a6e); }
.blog-card-img--test     { background: linear-gradient(135deg, #0b3030, #0d4a3a); }
.blog-card-img--list     { background: linear-gradient(135deg, #1a0b28, #3d1560); }
.blog-card-img--research { background: linear-gradient(135deg, #0b2030, #0d3050); }
.blog-card-img--essay    { background: linear-gradient(135deg, #2a1408, #5a2c10); }
.blog-card-body { padding: 28px 24px; }
.blog-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glass);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card .blog-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.blog-meta { font-size: 0.78rem; color: var(--muted); }
.blog-meta span + span::before { content: '·'; margin: 0 6px; }
.blog-read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.blog-read-more:hover { color: var(--gold); }

/* ── STATS BANNER ─────────────────────────────────────────── */
.stats-banner {
  background: var(--gold);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-grid .stat-num  { color: var(--navy); font-size: 3rem; }
.stats-grid .stat-label { color: rgba(11,31,58,0.65); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; }

/* ── SCHOOLS PLACED GRID ──────────────────────────────────── */
.schools-placed-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}
.school-pill {
  background: var(--white);
  border: 1.5px solid #dde2e8;
  border-radius: var(--r-pill);
  padding: 8px 20px;
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--navy);
  transition: border-color var(--ease), background var(--ease);
}
.school-pill:hover { border-color: var(--gold); background: var(--cream); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 56px 0 32px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 20px;
  height: auto;
  padding: 0;
}
.footer-brand .nav-logo-img {
  height: 72px;
  width: auto;
  max-width: 260px;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.75; max-width: 300px; }
.footer-col h4 { font-family: var(--serif); color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.85rem; transition: color var(--ease); }
.footer-col ul a:hover { color: var(--gold-lt); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 8px;
}

/* ── SCROLL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-method-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 240px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 36px; }
  .timeline-item { grid-template-columns: auto 1fr; gap: 16px; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-item:nth-child(even) .timeline-spacer { display: none; }
  .featured-story { padding: 36px 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-inner { padding-top: 80px; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-method-cards { grid-template-columns: 1fr; }
  .featured-story { padding: 28px 24px; }
  .hero-compact-inner { padding: 120px 0 56px; }
}
