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

:root {
  --navy: #0d1b2a;
  --navy-mid: #162033;
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --gold-pale: #f0e6c8;
  --cream: #faf8f3;
  --warm-white: #f5f1ea;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-muted: #7a7060;
  --rule: #c8b97a;
  --border: #e8e0d0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 16px 0;
  margin-right: auto;
  letter-spacing: 0.02em;
  text-decoration: none;
}
nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 20px 16px;
  display: inline-block;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
nav a:hover { color: var(--navy); }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: var(--navy); }
nav a.active::after { transform: scaleX(1); }

/* ── PAGE CONTAINER ── */
.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── SECTION ── */
section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
section:last-of-type { border-bottom: none; }

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.section-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}
.section-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rule), transparent);
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* ── HERO (page headers) ── */
.page-hero {
  background: var(--navy);
  color: white;
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}
.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
}
.page-hero .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0.85;
  max-width: 640px;
  line-height: 1.5;
}
.hero-deco {
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: linear-gradient(135deg, transparent 55%, rgba(184,150,46,0.07) 100%);
  pointer-events: none;
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: white; }
.back-link::before { content: '←'; font-size: 16px; }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 32px;
  margin: 40px 0;
  background: var(--warm-white);
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

/* ── BODY TEXT ── */
.body-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 720px;
}
.body-text p + p { margin-top: 18px; }

/* ── LEAD TEXT ── */
.lead-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 720px;
}

/* ── CALLOUT GRID ── */
.callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border);
  margin: 40px 0;
}
.callout-card {
  background: var(--cream);
  padding: 36px 32px;
  position: relative;
}
.callout-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.callout-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.callout-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── LITIGATION BRIDGE BOX ── */
.lit-bridge {
  background: var(--navy);
  color: white;
  padding: 48px;
  margin: 48px 0;
  position: relative;
}
.lit-bridge::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.lit-bridge-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.lit-bridge h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}
.lit-bridge ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lit-bridge li {
  font-size: 15px;
  color: #a8b8cc;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.lit-bridge li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── STAT STRIP ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: var(--border);
  margin: 40px 0;
}
.stat-box {
  background: var(--warm-white);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── TAG ROW ── */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 5px 14px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: white;
  padding: 48px;
  text-align: center;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0.8;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-links a { color: #8899aa; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: #445566;
  letter-spacing: 0.1em;
}

/* ── SCROLL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 780px) {
  .page-container { padding: 0 24px; }
  .page-hero-inner { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  footer { padding: 36px 24px; }
  .lit-bridge { padding: 32px 24px; }
  .pull-quote { padding: 16px 20px; }
  .pull-quote p { font-size: 18px; }
  nav a { padding: 16px 10px; font-size: 11px; }
}
