/* V10 — Production static site (WordPress replacement) */

:root {
  --navy: #0c1a2e;
  --navy-soft: #152238;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --warm: #f97316;
  --ok: #16a34a;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --serif: 'Source Serif 4', Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  height: var(--header-h);
}
.logo img { height: 48px; width: auto; }
.nav { display: flex; gap: 1.25rem; margin-left: auto; font-size: 0.9rem; font-weight: 500; }
.nav a { color: var(--text); text-decoration: none; }
.nav a:hover, .nav a.is-active { color: var(--accent-dark); }
.nav a.is-active { font-weight: 600; }
.header-cta { display: flex; gap: 0.5rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  font-family: var(--font); transition: transform 0.15s, background 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--warm); color: #fff; }
.btn--primary:hover { background: #ea580c; color: #fff; }
.btn--outline { border-color: var(--border); color: var(--text); background: #fff; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn--lg { padding: 0.75rem 1.5rem; font-size: 1rem; }

.menu-toggle {
  display: none; margin-left: auto;
  background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.25rem;
}

/* Hero */
.hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-soft) 55%, #1e3a5f 100%);
  color: #fff; padding: 3.5rem 0 3rem;
}
.hero--compact { padding: 2.5rem 0 2rem; }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.1); padding: 0.35rem 0.75rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.hero__badge::before { content: ''; width: 8px; height: 8px; background: var(--ok); border-radius: 50%; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15; margin-bottom: 1rem; font-weight: 600;
}
.hero h1 em { font-style: italic; color: #7dd3fc; }
.hero__lead { color: #cbd5e1; font-size: 1.05rem; max-width: 48ch; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__visual img { border-radius: 12px; box-shadow: 0 24px 48px rgba(0,0,0,0.35); }

.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-bar dt { font-size: 1.35rem; font-weight: 700; }
.trust-bar dd { font-size: 0.8rem; color: #94a3b8; margin-top: 0.15rem; }

/* Sections */
.section { padding: 4rem 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #fff; }
.section__head { max-width: 640px; margin-bottom: 2.5rem; }
.eyebrow {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 0.5rem;
}
.section--navy .eyebrow { color: #7dd3fc; }
.section h2 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2; margin-bottom: 0.75rem;
}
.section__lede { color: var(--muted); font-size: 1.05rem; }
.section--navy .section__lede { color: #94a3b8; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem; transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(14,165,233,0.08); }
.card__icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; color: var(--muted); }

.audience-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.audience-tabs a {
  padding: 0.5rem 1rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  border: 2px solid var(--border); color: var(--text); text-decoration: none;
}
.audience-tabs a.is-active, .audience-tabs a:hover {
  border-color: var(--accent); background: #e0f2fe; color: var(--accent-dark);
  text-decoration: none;
}

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.team-photo { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.team-cards { display: grid; gap: 1rem; }
.team-card {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem; background: var(--bg-soft); border-radius: 12px;
}
.team-card img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.team-card h3 { font-size: 1rem; }
.team-card p { font-size: 0.85rem; color: var(--muted); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 1.25rem; font-size: 0.95rem;
}
.review__stars { color: #fbbf24; margin-bottom: 0.5rem; }
.review footer { margin-top: 0.75rem; font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.cta-band {
  text-align: center; padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border-radius: 16px; margin-top: 2rem;
}
.cta-band h2 { font-family: var(--serif); margin-bottom: 0.5rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.25rem; }

/* Forms */
.form-card {
  max-width: 520px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem;
}
.form-grid { display: grid; gap: 1rem; }
.form-grid label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; font-weight: 600; }
.form-grid input, .form-grid select, .form-grid textarea {
  padding: 0.65rem 0.75rem; border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--font); font-size: 1rem;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: 2px solid var(--accent); border-color: transparent;
}
.form-ok { margin-top: 1rem; padding: 0.75rem; background: #dcfce7; color: #166534; border-radius: 8px; font-size: 0.9rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-info { display: grid; gap: 1rem; }
.contact-item {
  padding: 1rem; background: var(--bg-soft); border-radius: 12px;
}
.contact-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.25rem; }
.contact-item a { font-size: 1.1rem; font-weight: 600; color: var(--text); text-decoration: none; }

.prose { max-width: 68ch; color: var(--muted); }
.prose h2 { font-family: var(--serif); color: var(--text); font-size: 1.25rem; margin: 1.5rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 1.25rem; }

/* Footer */
.site-footer {
  background: var(--navy); color: #94a3b8;
  padding: 3rem 0 2rem; margin-top: 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer .logo img { height: 56px; margin-bottom: 0.75rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a { color: #cbd5e1; text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

.callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  text-align: center; padding: 0.85rem;
  background: var(--warm); color: #fff;
  font-weight: 700; text-decoration: none;
}

@media (max-width: 900px) {
  .hero__grid, .cards, .reviews, .team-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 1rem; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .menu-toggle { display: block; }
  .header-cta .btn--outline { display: none; }
  .callbar { display: block; }
  body { padding-bottom: 3.25rem; }
}
