:root {
  --navy:          #1c2e4a;
  --navy-dark:     #111e30;
  --gold:          #b8962e;
  --gold-light:    #d4ae50;
  --white:         #ffffff;
  --off-white:     #f7f6f3;
  --text:          #1a1a1a;
  --muted:         #555555;
  --border:        #dedad4;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}

/* ── Accessibility ───────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 200;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

/* ── Header ──────────────────────────────────── */
header {
  background: var(--navy-dark);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.site-wordmark {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  transition: background 0.12s;
}
.nav-toggle:hover span { background: rgba(255, 255, 255, 0.9); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  min-width: 190px;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.12s, background 0.12s;
}
.site-nav a:last-child { border-bottom: none; }
.site-nav a:hover { color: rgba(255, 255, 255, 0.9); background: rgba(255, 255, 255, 0.05); }
.site-nav a[aria-current="page"] { color: var(--gold-light); }

/* ── Hero ────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5.5rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 25% 60%, rgba(184, 150, 46, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 75% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: normal;
  letter-spacing: 0.025em;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.credential {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  opacity: 0.8;
}

.hero p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.075rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto 2.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  text-decoration: none;
  padding: 0.9rem 2.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-primary:active { transform: translateY(1px); }

/* ── Main layout ──────────────────────────────── */
main {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Sections ─────────────────────────────────── */
.section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}
.section:last-child { border-bottom: none; }

.section-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section h2 {
  font-size: 1.65rem;
  font-weight: normal;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.section p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 1rem;
}
.section p:last-of-type { margin-bottom: 0; }

/* ── About grid ───────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-sidebar { padding-top: 0.2rem; }

.lp-badge {
  display: inline-block;
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 1rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: border-top-color 0.15s ease;
}
.lp-badge:hover { border-top-color: var(--gold); }

.lp-badge .badge-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}

.lp-badge .badge-value {
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.3;
}

/* ── Feature cards ────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0 0.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 1.375rem 1.5rem;
}

.feature-card strong {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: none;
}

/* ── Practice area list ───────────────────────── */
.practice-list {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 2rem;
}

.practice-list li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
  padding: 0.2rem 0;
}

.practice-list li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Scope note ───────────────────────────────── */
.scope-note {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1.25rem;
  line-height: 1.65;
}

/* ── Footer ───────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  padding: 2.75rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  line-height: 1.9;
}
footer p + p { margin-top: 0.5rem; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 620px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  main { padding: 0 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .section { padding: 3rem 0; }
  .features { grid-template-columns: 1fr; }
  .practice-list { grid-template-columns: 1fr; }
}
