/* USMC Ministries — usmcmin.com Brand Stylesheet */

/* ── LIGHT THEME (default) — Silver/Gray motif ── */
:root {
  --bg-dark: #FFFFFF;
  --bg-card: #F4F5F7;
  --bg-card-2: #EBEDF0;
  --accent: #6B7280;
  --accent-light: #9CA3AF;
  --accent-dim: rgba(107,114,128,0.10);
  --silver: #A8B0BC;
  --silver-light: #C5CBD3;
  --navy: #1E3A5F;
  --white: #1A1A1A;
  --gray: #4B5563;
  --gray-light: #374151;
  --border: #D1D5DB;
  --red: #C0392B;
  --nav-bg: rgba(255,255,255,0.96);
  --nav-text: #1A1A1A;
  /* Legacy aliases so existing classes work */
  --gold: #6B7280;
  --gold-light: #4B5563;
  --gold-dim: rgba(107,114,128,0.10);
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 8px;
  --transition: 0.25s ease;
}

/* ── DARK THEME — Black/Silver/Gray ── */
[data-theme="dark"] {
  --bg-dark: #0A0A0A;
  --bg-card: #141416;
  --bg-card-2: #1A1A1E;
  --accent: #A8B0BC;
  --accent-light: #C5CBD3;
  --accent-dim: rgba(168,176,188,0.12);
  --silver: #C5CBD3;
  --silver-light: #E2E5EA;
  --white: #F0F0F0;
  --gray: #9CA3AF;
  --gray-light: #B0B8C4;
  --border: #2A2D35;
  --nav-bg: rgba(10,10,10,0.94);
  --nav-text: #F0F0F0;
  --gold: #A8B0BC;
  --gold-light: #C5CBD3;
  --gold-dim: rgba(168,176,188,0.12);
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ── NAV ──
   Layout strategy (2026-05-19):
   - brand on the left
   - nav-links flush after brand (no big empty middle)
   - nav-cta pushed right via `margin-left:auto` so the CTA+toggle visually
     anchor the right edge AND get a definite gap from the link cluster
   - theme-toggle sits to the right of the CTA with explicit margin
   This fixes the "BOOK A SESSION jammed against Ministry Site" overlap from
   the previous `justify-content: space-between` layout.

   CRITICAL: scope to `body > nav` so this does NOT apply to other `<nav>`
   elements on the page (profile-page breadcrumb `<nav class="prof-breadcrumb">`,
   profile-page TOC `<nav class="prof-toc-nav">`, etc.). The pre-2026-05-19
   selector was bare `nav` which silently fixed those secondary navs to the
   top of the viewport too. Discovered during the UX audit on 2026-05-19. */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.75rem;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 1.5rem;
  height: 70px;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-brand img { height: 42px; width: 42px; border-radius: 4px; object-fit: contain; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text .name { font-size: 0.95rem; font-weight: 700; color: var(--nav-text, var(--white)); letter-spacing: 0.03em; }
.nav-brand-text .tag { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none;
}
.nav-links a { color: var(--gray-light); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* ── NAV DROPDOWN (Citizen ▾ etc.) ───────────────────────────────
   Added 2026-05-22 to unify scorecard discoverability across all
   pages (citizen.html, profiles, council pages all share one nav). */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a::after { content: " ▾"; font-size: 0.75em; opacity: 0.7; }
.nav-links .nav-sub {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy, #0a1628); border: 1px solid var(--border, rgba(168,176,188,0.2));
  border-radius: 8px; padding: 6px 0; min-width: 210px; z-index: 1000;
  list-style: none; box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  margin: 6px 0 0; flex-direction: column; gap: 0;
}
.nav-links .nav-sub li { width: 100%; }
.nav-links .nav-sub a {
  display: block; padding: 8px 16px; font-size: 0.86rem; white-space: nowrap;
  color: var(--gray-light); border-left: 2px solid transparent;
}
.nav-links .nav-sub a:hover, .nav-links .nav-sub a.active {
  background: rgba(212,175,55,0.08); color: var(--gold); border-left-color: var(--gold);
}
.nav-links .has-sub:hover .nav-sub,
.nav-links .has-sub:focus-within .nav-sub { display: flex; }
[data-theme="dark"] .nav-links .nav-sub { background: #1a2940; }

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-left: auto;          /* push CTA + toggle to the right edge */
  white-space: nowrap;
}
.nav-cta:hover { background: #4A5568 !important; color: #fff !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  position: relative;
  background: radial-gradient(ellipse at center top, rgba(30,58,95,0.4) 0%, rgba(0,0,0,0) 60%),
              radial-gradient(ellipse at center, rgba(168,176,188,0.06) 0%, rgba(0,0,0,0) 70%);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  padding: 0.4rem 1rem; border: 1px solid rgba(168,176,188,0.3); border-radius: 2rem;
}

.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 .gold { color: var(--gold); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-light);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  transition: all var(--transition); cursor: pointer; border: none;
  text-transform: uppercase;
}
.btn-primary {
  background: #2D3748; color: #fff;
}
.btn-primary:hover { background: var(--gold-light); color: #000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168,176,188,0.35); }

.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-gold-outline {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover { background: #2D3748; color: #fff; transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--gray); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── DIVIDER ── */
.gold-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 0 auto 1.5rem;
}

/* ── SECTION COMMONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1180px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem; text-align: center;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; text-align: center; margin-bottom: 1rem;
  line-height: 1.15;
}
.section-sub {
  text-align: center; color: var(--gray-light);
  max-width: 600px; margin: 0 auto 3.5rem;
  font-size: 1.05rem; line-height: 1.7;
}

/* ── MISSION STRIP ── */
.mission-strip {
  background: var(--gold);
  padding: 3.5rem 2rem;
  text-align: center;
}
.mission-strip blockquote {
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: #000;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  font-style: italic;
}
.mission-strip cite {
  display: block; margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #333; font-style: normal;
}

/* ── WHAT WE OFFER CARDS ── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.offer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); opacity: 0;
  transition: opacity var(--transition);
}
.offer-card:hover { border-color: rgba(168,176,188,0.35); transform: translateY(-4px); }
.offer-card:hover::before { opacity: 1; }

.offer-icon {
  font-size: 2.5rem; margin-bottom: 1.25rem;
}
.offer-card h3 {
  font-family: var(--font-main);
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.75rem; color: var(--white);
}
.offer-card p {
  color: var(--gray-light); font-size: 0.95rem; flex: 1; margin-bottom: 1.5rem; line-height: 1.65;
}
.offer-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 2rem;
  background: var(--gold-dim); color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { border-color: rgba(168,176,188,0.35); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }

.product-img {
  background: var(--bg-card-2);
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.product-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: #2D3748; color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: 2rem;
}
.badge-new { background: #22c55e; color: #fff; }
.badge-coming { background: var(--navy); color: var(--white); }

.product-body { padding: 1.5rem; }
.product-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
.product-body p { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 1.25rem; }
.product-price {
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  margin-bottom: 1rem;
}
.product-price .was { font-size: 0.9rem; color: var(--gray); text-decoration: line-through; margin-left: 0.5rem; }

/* ── COACHING TIERS ── */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.coaching-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}
.coaching-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(168,176,188,0.08) 0%, var(--bg-card) 100%);
}
.coaching-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #2D3748; color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em;
  padding: 0.25rem 0.85rem; border-radius: 2rem;
}

.coaching-card h3 { font-family: var(--font-main); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.coaching-subtitle { color: var(--gray); font-size: 0.85rem; margin-bottom: 1.25rem; }
.coaching-price { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.coaching-price span { font-size: 1rem; color: var(--gray-light); font-weight: 400; }
.coaching-price .free { font-size: 1.8rem; color: var(--white); }

.coaching-features { list-style: none; margin: 1.5rem 0; }
.coaching-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--gray-light); padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.coaching-features li:last-child { border-bottom: none; }
.coaching-features li::before { content: '✦'; color: var(--gold); font-size: 0.65rem; margin-top: 0.3rem; flex-shrink: 0; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 400px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: var(--gold);
}
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 1.25rem; }
.about-content p { color: var(--gray-light); line-height: 1.8; margin-bottom: 1.25rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 2rem 0;
}
.stat-item { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card blockquote { font-style: italic; color: var(--gray-light); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; color: var(--gold);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: var(--gray); }

/* ── EMAIL CAPTURE ── */
.email-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f35 100%);
  text-align: center;
  border-top: 1px solid rgba(168,176,188,0.2);
  border-bottom: 1px solid rgba(168,176,188,0.2);
}
.email-section .section-title { color: var(--white); }
.email-section p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; }
.email-form {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}
.email-form input {
  flex: 1; min-width: 240px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(168,176,188,0.3);
  color: var(--white); padding: 0.85rem 1.25rem;
  border-radius: var(--radius); font-size: 0.95rem; outline: none;
  transition: border-color var(--transition);
}
.email-form input::placeholder { color: rgba(255,255,255,0.4); }
.email-form input:focus { border-color: var(--gold); }
.email-note { margin-top: 0.75rem; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── FOOTER ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.footer-brand .tag { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: var(--gray); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  font-size: 0.8rem; color: var(--gray);
}
.footer-bottom .verse { font-style: italic; max-width: 400px; }
.social-links { display: flex; gap: 0.75rem; align-items: center; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: var(--gray);
  border: 1px solid var(--border); border-radius: 50%;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social-links a:hover { color: var(--gold); border-color: var(--gold); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

/* ── SKIP TO CONTENT (a11y) ── */
.skip-link {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
  background: var(--gold); color: #000; padding: 0.75rem 1.25rem; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none; z-index: 10000;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; width: auto; height: auto; overflow: visible;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 2rem 60px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(30,58,95,0.3) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-family: var(--font-main); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { color: var(--gray-light); max-width: 550px; margin: 0 auto; }

/* ── COMING SOON CARD ── */
.coming-soon {
  background: var(--bg-card); border: 1px dashed var(--border);
  border-radius: 12px; padding: 4rem 2rem; text-align: center;
}
.coming-soon h3 { font-size: 1.5rem; margin: 1rem 0 0.5rem; color: var(--gold); }
.coming-soon p { color: var(--gray); }

/* ── THEME TOGGLE ── */
/* Theme toggle — sliding switch: silver-cross shield (dark) <-> silver empty-tomb
   shield (bright), with a Dark/Bright Mode label. Markup-agnostic: restyles the
   button entirely via the host + ::before label + ::after shield thumb, hiding
   the legacy emoji text. Driven by [data-theme] (set by main.js / the pre-paint
   guard), so no per-page markup change is needed. */
.theme-toggle {
  position: relative; box-sizing: border-box;
  width: 118px; min-width: 118px; height: 28px;
  margin-left: 0.5rem; padding: 0; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--bg-card-2);
  cursor: pointer; overflow: hidden; vertical-align: middle;
  font-size: 0; color: transparent; line-height: 1;
  transition: border-color var(--transition);
}
.theme-toggle:hover { border-color: var(--gold); }
.theme-toggle > * { display: none; }
/* label sits opposite the thumb. Default (light/bright): label left, tomb thumb right */
.theme-toggle::before {
  content: "Bright Mode";
  position: absolute; top: 0; bottom: 0; left: 11px; right: 32px;
  display: flex; align-items: center; justify-content: flex-start;
  font-family: var(--font-sans); font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold);
  white-space: nowrap; pointer-events: none;
}
.theme-toggle::after {
  content: ""; position: absolute; top: 50%; left: calc(100% - 25px);
  transform: translateY(-50%); width: 22px; height: 22px;
  background: no-repeat center / contain;
  background-image: url("/assets/icons/shield-toggle-tomb-96.png");
  transition: left var(--transition); pointer-events: none;
}
/* dark mode: cross thumb slides left, label flips right */
[data-theme="dark"] .theme-toggle::before {
  content: "Dark Mode"; left: 32px; right: 11px; justify-content: flex-end;
}
[data-theme="dark"] .theme-toggle::after {
  left: 3px; background-image: url("/assets/icons/shield-toggle-cross-96.png");
}

/* Light mode hero */
:root .hero {
  background: radial-gradient(ellipse at center top, rgba(30,58,95,0.06) 0%, rgba(255,255,255,0) 60%),
              radial-gradient(ellipse at center, rgba(107,114,128,0.04) 0%, rgba(255,255,255,0) 70%);
}
[data-theme="dark"] .hero {
  background: radial-gradient(ellipse at center top, rgba(30,58,95,0.35) 0%, rgba(0,0,0,0) 60%),
              radial-gradient(ellipse at center, rgba(168,176,188,0.06) 0%, rgba(0,0,0,0) 70%);
}

/* Mission strip — silver accent */
:root .mission-strip { background: #2D3748; color: #fff; }
:root .mission-strip blockquote { color: #F0F0F0; }
:root .mission-strip cite { color: var(--silver-light); }
[data-theme="dark"] .mission-strip { background: #1A202C; }
[data-theme="dark"] .mission-strip blockquote { color: #E2E5EA; }
[data-theme="dark"] .mission-strip cite { color: var(--silver); }

/* Email section — navy stays */
.email-section {
  background: linear-gradient(135deg, #1E3A5F 0%, #0d1f35 100%);
}
.email-section .section-title { color: #fff; }
.email-section p { color: rgba(255,255,255,0.75); }
.email-section input { color: #fff; }

/* Nav toggle */
:root .nav-toggle span { background: var(--white); }
[data-theme="dark"] .nav-toggle span { background: #F0F0F0; }

/* Card hover */
:root .product-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
[data-theme="dark"] .product-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.5); }

/* CTA buttons — silver/charcoal */
.btn-primary { background: #2D3748; color: #fff; }
.btn-primary:hover { background: #4A5568; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,55,72,0.35); }
[data-theme="dark"] .btn-primary { background: var(--silver); color: #0A0A0A; }
[data-theme="dark"] .btn-primary:hover { background: var(--silver-light); color: #0A0A0A; }
.nav-cta { background: #2D3748; color: #fff !important; }
.nav-cta:hover { background: #4A5568 !important; color: #fff !important; }
[data-theme="dark"] .nav-cta { background: var(--silver); color: #0A0A0A !important; }
[data-theme="dark"] .nav-cta:hover { background: var(--silver-light) !important; color: #0A0A0A !important; }

/* Offer card top accent — silver */
.offer-card::before { background: var(--silver); }
[data-theme="dark"] .offer-card::before { background: var(--silver); }

/* Coaching featured card — silver accent */
.coaching-card.featured { border-color: var(--silver); background: linear-gradient(135deg, rgba(168,176,188,0.06) 0%, var(--bg-card) 100%); }
.coaching-card.featured::before { background: #2D3748; color: #fff; }
[data-theme="dark"] .coaching-card.featured::before { background: var(--silver); color: #0A0A0A; }

/* Tags & badges — silver */
.offer-tag { background: var(--accent-dim); color: var(--accent); }
.product-badge { background: #2D3748; color: #fff; }
[data-theme="dark"] .product-badge { background: var(--silver); color: #0A0A0A; }

/* Hero eyebrow — silver border */
.hero-eyebrow { color: var(--accent); border-color: rgba(107,114,128,0.3); }
[data-theme="dark"] .hero-eyebrow { color: var(--silver); border-color: rgba(168,176,188,0.3); }

/* Footer brand tag */
.footer-brand .tag { color: var(--accent); }
[data-theme="dark"] .footer-brand .tag { color: var(--silver); }

/* Section label */
.section-label { color: var(--accent); }
[data-theme="dark"] .section-label { color: var(--silver); }

/* Price */
.product-price { color: var(--accent); }
[data-theme="dark"] .product-price { color: var(--silver); }
.coaching-price { color: var(--accent); }
[data-theme="dark"] .coaching-price { color: var(--silver); }

/* Stats */
.stat-num { color: var(--accent); }
[data-theme="dark"] .stat-num { color: var(--silver); }

/* Coaching features bullet */
.coaching-features li::before { color: var(--accent); }
[data-theme="dark"] .coaching-features li::before { color: var(--silver); }

/* Author avatar */
.author-avatar { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }
[data-theme="dark"] .author-avatar { border-color: var(--silver); color: var(--silver); }

/* Testimonial stars */
.testimonial-stars { color: var(--accent); }
[data-theme="dark"] .testimonial-stars { color: var(--silver); }

/* About image placeholder */
.about-img-placeholder { color: var(--accent); }
[data-theme="dark"] .about-img-placeholder { color: var(--silver); }

/* Links — keep navy-ish for light, silver for dark */
a { color: #2D3748; }
a:hover { color: var(--accent); }
[data-theme="dark"] a { color: var(--silver); }
[data-theme="dark"] a:hover { color: var(--silver-light); }

/* Nav links */
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
[data-theme="dark"] .nav-links a:hover, [data-theme="dark"] .nav-links a.active { color: var(--silver); }

/* Nav brand tag */
.nav-brand-text .tag { color: var(--accent); }
[data-theme="dark"] .nav-brand-text .tag { color: var(--silver); }

/* Footer col headers */
.footer-col h4 { color: var(--accent); }
[data-theme="dark"] .footer-col h4 { color: var(--silver); }

/* Social hover */
.social-links a:hover { color: var(--accent); }
[data-theme="dark"] .social-links a:hover { color: var(--silver); }

/* Email form border */
.email-form input { border-color: rgba(168,176,188,0.35); }
.email-form input:focus { border-color: var(--silver); }

/* Secondary button */
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
[data-theme="dark"] .btn-secondary:hover { border-color: var(--silver); color: var(--silver); }

/* Gold outline button → silver outline */
.btn-gold-outline { color: var(--accent); border-color: var(--accent); }
.btn-gold-outline:hover { background: var(--accent); color: #fff; }
[data-theme="dark"] .btn-gold-outline { color: var(--silver); border-color: var(--silver); }
[data-theme="dark"] .btn-gold-outline:hover { background: var(--silver); color: #0A0A0A; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-placeholder { height: 260px; }
}

/* Shield icon utility classes */
.shield-icon { width:44px;height:44px;vertical-align:middle;border-radius:50%;margin-right:8px;object-fit:cover;background:#1a1a2e;padding:4px;box-shadow:0 2px 8px rgba(0,0,0,0.15); }
.shield-icon-sm { width:36px;height:36px;vertical-align:middle;border-radius:50%;margin-right:8px;object-fit:cover;background:#1a1a2e;padding:3px;box-shadow:0 2px 8px rgba(0,0,0,0.15); }
.shield-icon-lg { width:52px;height:52px;vertical-align:middle;border-radius:50%;margin-right:8px;object-fit:cover;background:#1a1a2e;padding:5px;box-shadow:0 2px 8px rgba(0,0,0,0.15); }
.shield-icon-xl { width:64px;height:64px;vertical-align:middle;border-radius:50%;margin-right:8px;object-fit:cover;background:#1a1a2e;padding:6px;box-shadow:0 2px 8px rgba(0,0,0,0.15); }

/* Intermediate width: tighten link gap + shrink brand text so the desktop
   nav doesn't crowd against the CTA before the hamburger breakpoint. */
@media (max-width: 1180px) {
  nav { padding: 0 1.25rem; gap: 1rem; }
  .nav-links { gap: 1.15rem; }
  .nav-links a { font-size: 0.85rem; }
  .nav-brand-text .name { font-size: 0.88rem; }
  .nav-brand-text .tag { font-size: 0.62rem; letter-spacing: 0.08em; }
  .nav-cta { font-size: 0.78rem; padding: 0.5rem 0.9rem; }
}

/* Hamburger breakpoint — raised from 768→1024px on 2026-05-19 so common
   laptop widths (1280-1366) no longer crush the link row into the CTA. */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display:flex;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:var(--navy);padding:1rem;gap:0.5rem;z-index:999;border-bottom:1px solid var(--border); }
  .nav-links.open a { padding:0.5rem 1rem; }
  /* Dropdown flattens inside the open hamburger — everything visible at once. */
  .nav-links.open .has-sub > a::after { content: " ▾"; opacity: 0.5; }
  .nav-links.open .nav-sub {
    display: flex; position: static; background: transparent; border: none;
    box-shadow: none; padding: 0 0 4px 1rem; margin: 0; min-width: 0;
  }
  .nav-links.open .nav-sub a { font-size: 0.85rem; padding: 0.3rem 1rem; border-left-width: 1px; }
  .theme-toggle { margin-left: auto; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 100px 1.25rem 60px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .coaching-card.featured::before { font-size: 0.55rem; }
}
