/* ============================================================
   THE PRIME INITIATIVE — MAIN STYLESHEET
   ============================================================
   Imports design tokens and defines all component styles.
   Organized by: Reset → Layout → Nav → Components → Pages → Responsive
   ============================================================ */

@import url('design-tokens.css');

/* ==================== RESET ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==================== LAYOUT ==================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

main {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==================== NAVIGATION ==================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-line);
  transition: padding var(--transition-slow);
}

nav.scrolled { padding: 1rem 0; }

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.logo em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--blue-deep);
  color: var(--cream) !important;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem !important;
  transition: all var(--transition-med);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-1px);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-med);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue-sky);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* When btn-primary is on a dark background, swap to white fill */
.hero .btn-primary,
.cta-band .btn-primary {
  background: var(--white);
  color: var(--blue-deep);
}
.hero .btn-primary:hover,
.cta-band .btn-primary:hover {
  background: var(--blue-tint);
  color: var(--blue-darker);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 239, 228, 0.3);
}
.btn-secondary:hover {
  border-color: var(--cream);
  background: rgba(245, 239, 228, 0.05);
}

.btn-arrow { transition: transform var(--transition-med); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ==================== HERO (HOME) ==================== */
.hero {
  background: var(--blue-deep);
  color: var(--cream);
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 161, 73, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(231, 111, 81, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.star {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--white);
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.hero h1 em {
  font-style: italic;
  color: var(--white);
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--blue-sky);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--white);
  opacity: 0.6;
  margin: 2rem 0;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--white);
  opacity: 0.92;
  max-width: 620px;
  line-height: 1.5;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==================== MANIFESTO SECTION ==================== */
.manifesto {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-2xl);
  align-items: start;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.manifesto h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.manifesto h2 em {
  font-style: italic;
  color: var(--gold);
}

.manifesto-body p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  color: var(--navy) !important;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  margin: 2rem 0 !important;
}

/* ==================== STATS BAND ==================== */
.stats-band {
  background: var(--blue-deep);
  color: var(--cream);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.5;
}

.stat-item {
  border-left: 2px solid var(--white);
  padding-left: 2rem;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ==================== TWO-PATH SECTION (HOME) ==================== */
.paths {
  padding: var(--space-3xl) 0;
  background: var(--cream-warm);
}

.paths-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.paths-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.path-card {
  background: var(--cream);
  padding: 3rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  border: 1px solid var(--line);
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.path-card h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.path-card h3::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.path-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.path-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ==================== PAGE HEADER (sub-pages) ==================== */
.page-header {
  background: var(--blue-deep);
  color: var(--cream);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212, 161, 73, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-header-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.page-header h1 em {
  font-style: italic;
  color: var(--white);
  position: relative;
  display: inline-block;
}
.page-header h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--blue-sky);
}

.page-content {
  padding: 6rem 0;
  background: var(--cream);
}

/* ==================== CONTENT GRID (about, resources) ==================== */
.content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  max-width: 1100px;
}

.content-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.sidebar-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.content-body p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.content-body h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 3rem 0 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.content-body h3:first-child { margin-top: 0; }

.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.85rem;
  line-height: 1.4;
  color: var(--charcoal);
  padding: 2.5rem;
  background: var(--blue-tint);
  border-left: 3px solid var(--blue-sky);
  margin: 3rem 0;
  letter-spacing: -0.01em;
}

/* ==================== SERVICES PAGE ==================== */
.service-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.service-tab {
  padding: 1rem 2rem;
  border-bottom: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--transition-med);
  letter-spacing: 0.01em;
  margin-bottom: -1px;
}

.service-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.service-tab:hover { color: var(--navy); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }

.tab-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-med);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.97rem;
}

/* ==================== RESOURCES PAGE ==================== */
.resource-section {
  margin-bottom: 5rem;
}

.resource-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.resource-section .lede {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.question-list {
  counter-reset: q-counter;
}

.question-list li {
  counter-increment: q-counter;
  padding: 1.5rem 0 1.5rem 4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.question-list li:last-child { border-bottom: none; }

.question-list li::before {
  content: counter(q-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.symptom-item {
  padding: 1.2rem 1.5rem;
  background: var(--cream-warm);
  border-left: 3px solid var(--coral);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
}

.red-flag-list li {
  padding: 1.25rem 0 1.25rem 2.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.6;
  position: relative;
  font-size: 1.05rem;
}

.red-flag-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.3rem;
  font-family: var(--serif);
  top: 1.1rem;
  line-height: 1;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 3rem;
  border-radius: var(--radius-md);
}

.contact-card.highlighted {
  background: var(--blue-deep);
  color: var(--cream);
  border-color: var(--blue-deep);
}

.contact-card-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.contact-card.highlighted h3 { color: var(--cream); }

.contact-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-card.highlighted p { color: var(--cream-warm); }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.contact-card.highlighted .form-group label { color: var(--cream-warm); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.contact-card.highlighted .form-group input,
.contact-card.highlighted .form-group textarea,
.contact-card.highlighted .form-group select {
  background: var(--cream);
  border-color: rgba(245, 239, 228, 0.25);
  color: var(--ink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(31, 41, 55, 0.45);
}

.contact-card.highlighted .form-group input::placeholder,
.contact-card.highlighted .form-group textarea::placeholder {
  color: rgba(31, 41, 55, 0.5);
}

.contact-card.highlighted .form-group input:focus,
.contact-card.highlighted .form-group textarea:focus,
.contact-card.highlighted .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.35);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Honeypot — hidden from real users, visible to bots */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 1.5em;
}

.form-status.success {
  color: var(--cream);
  background: rgba(201, 169, 97, 0.18);
  border-left: 3px solid var(--gold);
  padding: 0.85rem 1rem;
}

.form-status.error {
  color: var(--cream);
  background: rgba(220, 80, 80, 0.18);
  border-left: 3px solid #d96b6b;
  padding: 0.85rem 1rem;
}

.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-card.highlighted .contact-info {
  border-top-color: rgba(245, 239, 228, 0.15);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.contact-card.highlighted .contact-row { color: var(--cream); }

.contact-row strong {
  color: var(--navy);
  min-width: 70px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card.highlighted .contact-row strong { color: var(--gold); }

.contact-quote {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
}
.contact-quote p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.55;
}

/* ==================== CTA BAND ==================== */
.cta-band {
  background: var(--blue-deep);
  color: var(--cream);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 161, 73, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--white);
  position: relative;
  display: inline-block;
}
.cta-band h2 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--blue-sky);
}

.cta-band p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-band .btn { position: relative; }

/* ==================== FOOTER ==================== */
footer {
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 320px;
  font-size: 0.92rem;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--blue-sky); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.powered-by strong {
  color: var(--blue-sky);
  font-weight: 600;
}

/* ==================== MOBILE NAV TOGGLE ==================== */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition-med), opacity var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  :root {
    --container-pad: 1.5rem;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--grey-line);
    box-shadow: 0 12px 30px rgba(14, 90, 140, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-med), opacity var(--transition-med), visibility var(--transition-med);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--grey-line);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-links .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border-bottom: none;
    padding: 0.85rem 1.4rem;
  }

  .manifesto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .paths-grid, .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .symptom-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .hero { padding: 4rem 0 5rem; }
  .page-header { padding: 3.5rem 0 3rem; }
  .page-content { padding: 4rem 0; }
  .manifesto, .paths { padding: 4rem 0; }
  .cta-band { padding: 4rem 0; }
  .contact-card { padding: 2rem; }
  .path-card { padding: 2rem; }
  .service-card { padding: 1.75rem; }

  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
