/* GA Defense Criminal Lawyers — Shared Styles */
/* All pages import this via <style> tag inline */

:root {
  --navy:   #0B1628;
  --navy2:  #0F1E36;
  --navy3:  #162844;
  --gold:   #C9A84C;
  --gold2:  #E8C96A;
  /* Cream kept as a secondary panel color for content sections that need
   * to break up large white walls (e.g. .section-cream, callout boxes). */
  --cream:  #F5F0E8;
  /* Subtler warm panel — used in spots that want differentiation from
   * pure white but lighter than cream (e.g. content card backgrounds). */
  --warm:   #F4F1ED;
  /* Primary page background. Stack C: clean white, no warm tint. */
  --offwhite: #FFFFFF;
  --text:   #14181F;
  /* Muted darkened from #6B7280 to pass WCAG AA (4.5:1) on white (#FFFFFF)
   * and the cream/warm panel backgrounds used throughout. */
  --muted:  #4F5660;
  --border: rgba(201,168,76,0.22);
  --red:    #C0392B;

  /* ── TYPOGRAPHY (Stack C — Confident Trial Lawyer) ────────────────────────
   * One family does everything: Inter (variable, with optical-sizing axis).
   * Three role-vars are defined separately so any one can be re-pointed
   * later without a global find/replace (e.g. swap UI back to a serif
   * accent without touching display or body styles). */
  --f-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --f-ui:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* ss01: stylistic alternates (single-storey g matches the geometric tone).
   * cv11: open digit forms (improves number legibility in trust stats and
   * phone numbers). Both are no-ops on browsers that don't support them. */
  font-feature-settings: "ss01", "cv11";
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

/* ── REDUCED MOTION ─────────────────────────────────────────────────────────
 * Respect users who set prefers-reduced-motion: reduce in their OS.
 * Vestibular disorders, migraines, and motion sensitivity make hover lifts,
 * smooth scroll, and slide animations physically uncomfortable. Override
 * everything to near-instant. WCAG 2.3.3 (Animation from Interactions, AAA).
 * ──────────────────────────────────────────────────────────────────────────*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  /* Kill the hover lift on buttons etc. */
  .btn-primary:hover,
  .practice-card:hover,
  .nav-cta:hover {
    transform: none !important;
  }
}

/* ── FOCUS INDICATORS ───────────────────────────────────────────────────────
 * Strategy: hide focus rings for mouse users (:focus only), show a 2px gold
 * outline + 2px offset for keyboard users (:focus-visible). Form inputs
 * suppress their default outline but get a box-shadow ring instead so the
 * indicator never disappears.
 *
 * WCAG 2.4.7 (Focus Visible) and 2.4.11 (Focus Not Obscured) compliance.
 * ──────────────────────────────────────────────────────────────────────────*/
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
button:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.nav-cta:focus-visible {
  outline-offset: 3px;
}
/* Inputs use a box-shadow ring so the indicator is on the field itself. */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
  border-color: var(--gold);
}

/* WordPress standard "visually hidden" utility — covers any author who needs
 * to hide a heading or label from sight while keeping it for assistive tech. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Skip link — visible only when focused. Defines its own styles so we
 * don't depend on a parent-theme .screen-reader-text class. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* TOPBAR */
.topbar { background: var(--navy); padding: 10px 0; border-bottom: 1px solid var(--border); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { font-family: var(--f-ui); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.01em; }
.topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar-phone { font-family: var(--f-ui); font-weight: 700; font-size: 15px; color: var(--gold); text-decoration: none; letter-spacing: -0.01em; }
.topbar-phone:hover { color: var(--gold2); }
.badge-24 { background: var(--red); color: #fff; font-family: var(--f-ui); font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 3px; letter-spacing: 0.06em; text-transform: uppercase; }

/* NAV */
nav { background: var(--navy2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1; }
.logo-mark { display: block; width: 56px; height: 56px; flex: 0 0 auto; }
.logo-tagline { font-family: var(--f-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; margin: 0; padding: 0; }
.nav-links a { font-family: var(--f-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; line-height: 1; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 11px 22px; font-weight: 700 !important; border-radius: 3px; letter-spacing: 0.02em; }
.nav-cta:hover { background: var(--gold2) !important; }

/* Submenu — desktop dropdown revealed via :hover / :focus-within, mobile inline (handled in @media block).
   Pattern intentionally uses nested <ul> + <a> without ARIA disclosure semantics — per WAI-ARIA Authoring Practices,
   nav submenus are best modeled as nested lists, not menu/menubar widgets. */
.has-submenu { position: relative; }
.submenu-caret { display: inline-block; margin-left: 4px; font-size: 9px; opacity: 0.6; transition: opacity 0.2s, transform 0.2s; }
.has-submenu:hover .submenu-caret,
.has-submenu:focus-within .submenu-caret { opacity: 1; transform: translateY(1px); }

.submenu {
	position: absolute;
	top: 100%;
	left: -16px;
	margin: 0;
	padding: 8px 0;
	min-width: 240px;
	list-style: none;
	background: var(--navy2);
	border: 1px solid var(--border);
	border-radius: 4px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
	z-index: 110;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { width: 100%; }
.submenu a {
	display: block;
	padding: 10px 18px;
	font-family: var(--f-ui);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}
.submenu a:hover,
.submenu a:focus-visible { background: var(--navy3); color: var(--gold); outline: none; }

/* Hamburger toggle — hidden on desktop, visible <900px. Three bars that
 * collapse to an X when aria-expanded="true". */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* URGENCY */
.urgency { background: var(--red); padding: 14px 0; text-align: center; }
.urgency p { font-family: var(--f-ui); font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -0.005em; }
.urgency a { color: #fff; font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.5); }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 72px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%); }
.page-eyebrow { font-family: var(--f-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.page-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: var(--f-display); font-size: clamp(36px, 4.8vw, 60px); font-weight: 800; color: #fff; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 22px; }
/* Hero/CTA em: not italic — use weight + gold color for emphasis (Stack C). */
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero-sub { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.78); max-width: 640px; line-height: 1.55; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); font-family: var(--f-ui); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 16px 30px; border-radius: 3px; text-decoration: none; transition: background 0.2s; }
.btn-primary:hover { background: var(--gold2); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.32); color: rgba(255,255,255,0.92); font-family: var(--f-ui); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 14.5px 30px; border-radius: 3px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* SECTIONS */
section { padding: 96px 0; }
.section-dark { background: var(--navy); }
.section-navy2 { background: var(--navy2); }
.section-cream { background: var(--cream); }
.section-warm { background: var(--warm); }
.section-label { font-family: var(--f-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: var(--f-display); font-size: clamp(32px, 4.2vw, 50px); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 18px; }
.section-title.light { color: #fff; }
.section-body { font-size: 18px; font-weight: 400; color: var(--muted); max-width: 700px; line-height: 1.6; }
.section-body.light { color: rgba(255,255,255,0.78); }
.section-body + .section-body { margin-top: 16px; }

/* CONTENT GRID */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }

/* SIDEBAR */
.sidebar-card { background: var(--navy); border: 1px solid var(--border); border-radius: 6px; padding: 32px 28px; margin-bottom: 24px; }
.sidebar-title { font-family: var(--f-display); font-size: 19px; font-weight: 700; letter-spacing: -0.015em; color: #fff; margin-bottom: 6px; }
.sidebar-sub { font-family: var(--f-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.sidebar-phone { display: block; font-family: var(--f-display); font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--gold); text-decoration: none; margin-bottom: 16px; }
.sidebar-btn { display: block; background: var(--gold); color: var(--navy); font-family: var(--f-ui); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px; border-radius: 3px; text-align: center; text-decoration: none; margin-bottom: 12px; }
.sidebar-btn:hover { background: var(--gold2); }
.sidebar-note { font-family: var(--f-ui); font-size: 12px; color: rgba(255,255,255,0.65); text-align: center; }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-list li a { font-family: var(--f-ui); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
.sidebar-list li a::before { content: '▸'; color: var(--gold); font-size: 10px; flex-shrink: 0; }
.sidebar-list li a:hover { color: var(--gold); }

/* CONTENT BODY */
.content-body h2 { font-family: var(--f-display); font-size: 28px; font-weight: 800; letter-spacing: -0.025em; color: var(--navy); margin: 40px 0 14px; line-height: 1.15; }
.content-body h3 { font-family: var(--f-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin: 32px 0 12px; line-height: 1.25; }
.content-body p { font-size: 17px; color: var(--text); line-height: 1.65; margin-bottom: 16px; }
.content-body ul { list-style: none; margin: 16px 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.content-body ul li { font-size: 17px; color: var(--text); line-height: 1.55; padding-left: 24px; position: relative; }
.content-body ul li::before { content: '▸'; color: var(--gold); font-size: 11px; position: absolute; left: 0; top: 5px; }
.content-body .highlight-box { background: var(--warm); border-left: 4px solid var(--gold); border-radius: 0 4px 4px 0; padding: 24px 28px; margin: 28px 0; }
.content-body .highlight-box p { margin-bottom: 0; font-size: 17px; }
.content-body .highlight-box strong { color: var(--navy); font-weight: 700; }

/* PENALTY TABLE */
.penalty-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 4px; overflow: hidden; }
.penalty-table th { background: var(--navy); color: #fff; font-family: var(--f-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 16px; text-align: left; }
.penalty-table td { padding: 13px 16px; font-size: 15px; border-bottom: 1px solid #EDE5D6; }
.penalty-table tr:nth-child(even) td { background: var(--warm); }
.penalty-table tr:last-child td { border-bottom: none; }

/* STEPS */
.steps-list { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
.step-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid #EDE5D6; }
.step-item:last-child { border-bottom: none; }
.step-circle { flex-shrink: 0; width: 44px; height: 44px; background: rgba(201,168,76,0.12); border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 17px; font-weight: 800; color: var(--gold); letter-spacing: -0.02em; }
.step-item h4 { font-family: var(--f-display); font-size: 19px; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); margin-bottom: 6px; }
.step-item p { font-size: 16px; color: var(--muted); line-height: 1.55; margin-bottom: 0; }

/* RELATED PAGES */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.related-card { background: var(--warm); border: 1px solid #EDE5D6; border-radius: 6px; padding: 24px; text-decoration: none; color: inherit; transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s; }
.related-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); border-color: var(--gold); transform: translateY(-2px); }
.related-card h4 { font-family: var(--f-display); font-size: 18px; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); margin-bottom: 8px; }
.related-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.related-card .link-label { font-family: var(--f-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }

/* CTA BANNER */
.cta-banner { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--f-display); font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; color: #fff; margin-bottom: 14px; }
.cta-banner h2 em { font-style: normal; color: var(--gold); }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 32px; font-weight: 400; }
.cta-phone-large { display: block; font-family: var(--f-display); font-size: 44px; font-weight: 800; letter-spacing: -0.03em; color: var(--gold); text-decoration: none; margin-bottom: 8px; }
.cta-avail { font-family: var(--f-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 32px; }

/* FOOTER */
footer { background: #070E1A; padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-brand h3 { font-family: var(--f-display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 6px; }
.footer-brand-sub { font-family: var(--f-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 300px; }
.footer-col h4 { font-family: var(--f-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--f-ui); font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-disclaimer { font-family: var(--f-ui); font-size: 11px; color: rgba(255,255,255,0.7); max-width: 700px; line-height: 1.55; margin-top: 16px; }

/* ── PRINT ──────────────────────────────────────────────────────────────────
 * Optimized for printed handouts, client packets, and print-to-PDF. Strips
 * promotional chrome (topbar, urgency banner, hero form, sidebar, full
 * footer), inverts to black-on-white, and prints URLs after every link so
 * the printed page remains useful as a reference. Branded mast at top.
 * ──────────────────────────────────────────────────────────────────────────*/
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
    line-height: 1.5;
  }
  /* Hide decorative + promotional chrome. */
  .topbar,
  .urgency,
  .nav-toggle,
  .nav-links,
  .hero-card,
  .sidebar,
  .hero-actions,
  .cta-section,
  .mini-cta,
  .skip-link {
    display: none !important;
  }
  /* Brand mast — minimal, printable. */
  nav { box-shadow: none !important; border-bottom: 1px solid #000 !important; background: #fff !important; }
  .logo { color: #000 !important; }
  .logo span { color: #444 !important; }

  /* Remove hero artwork; keep h1/sub. */
  .hero, .hero-inner {
    background: #fff !important;
    padding: 16pt 0 8pt !important;
  }
  .hero h1, .hero-inner h1 {
    color: #000 !important;
    font-size: 22pt;
    margin-bottom: 8pt;
  }
  .hero h1 em, .hero-inner h1 em { color: #000 !important; }
  .hero-sub, .page-hero-sub { color: #333 !important; max-width: 100% !important; }

  /* Body content — black ink. */
  .page-content h2, .page-content h3 { color: #000 !important; page-break-after: avoid; }
  .page-content p, .page-content li { color: #000 !important; }
  .page-content a { color: #000 !important; text-decoration: underline; }
  /* Print URLs after each link so the page is self-referential offline. */
  .page-content a[href^="http"]::after { content: " (" attr( href ) ")"; font-size: 9pt; color: #444; }
  /* But suppress for tel: links — shows up as awkward "(tel:+1...)" */
  .page-content a[href^="tel:"]::after { content: ""; }

  /* Footer: keep disclaimer + NAP, drop the four-column nav. */
  footer { background: #fff !important; color: #000 !important; padding: 12pt 0 !important; border-top: 1px solid #000 !important; }
  .footer-grid, .footer-bottom { display: none !important; }
  .footer-disclaimer { color: #333 !important; max-width: 100% !important; font-size: 9pt; margin-top: 8pt; }

  /* Page-break hygiene. */
  h1, h2, h3 { page-break-after: avoid; }
  img, table, blockquote, .info-card, .callout { page-break-inside: avoid; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Show hamburger, switch nav-links to drop-down panel below the nav bar.
   * The .nav-links list is hidden by default and revealed when JS toggles
   * aria-expanded="true" on the button (we react via [aria-expanded]
   * sibling selector — no extra class needed). */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy2);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  }
  .nav-toggle[aria-expanded="true"] + .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { margin: 8px 24px; text-align: center; }

  /* Submenu in mobile drop-down — always visible, indented under parent. */
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  .submenu a {
    padding: 12px 24px 12px 44px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
  }
  .submenu-caret { display: none; }
}
@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
}
