:root {
  --navy: #14213d;
  --navy-light: #1f3157;
  --gold: #c9a96e;
  --gold-light: #e3cfa3;
  --paper: #f7f5f1;
  --ink: #1b1b1b;
  --muted: #5c6270;
  --border: #e2ddd2;
  --radius: 6px;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Header / nav */
header.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
nav.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
nav.main-nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
}
.cta-pill {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.cta-pill:hover { background: var(--gold-light); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 0 88px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  max-width: 820px;
  margin: 0 0 20px;
}
.hero p.lede {
  max-width: 640px;
  font-size: 1.08rem;
  color: #d8dcea;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { border-color: #fff; }

/* Sections */
main section { padding: 64px 0; }
main section.alt { background: #fff; }
h2.section-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  margin: 0 0 8px;
  color: var(--navy);
}
p.section-sub { color: var(--muted); max-width: 640px; margin: 0 0 36px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.card h3 { font-family: var(--serif); margin: 0 0 10px; font-size: 1.15rem; color: var(--navy); }
.card p { color: var(--muted); font-size: 0.94rem; margin: 0 0 14px; }
a.link {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}
.card a.link { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.card a.link::after { content: " \2192"; }

.office-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.office-card h3 { font-family: var(--serif); color: var(--navy); margin-top: 0; }
.office-card ul { padding-left: 1.2rem; color: var(--muted); margin: 8px 0 12px; }
.office-card li { margin-bottom: 4px; }

/* Forms */
form.stack { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.practice-rail form.stack { max-width: none; }
label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
input, select, textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--muted); }
.success-msg,
.form-success {
  display: none;
  background: #eef6ee;
  border: 1px solid #bfe0bf;
  color: #235a23;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 600;
}
.form-error {
  background: #f8ecec;
  border: 1px solid #e3b6b6;
  color: #7a2e2e;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 12px;
}
.form-error a { color: #7a2e2e; text-decoration: underline; }
.article-body { max-width: 760px; }
.article-body h2 { font-family: var(--serif); color: var(--navy); font-size: 1.35rem; margin: 28px 0 10px; }
.article-body p, .article-body li, .article-body dd { color: var(--muted); }
.article-body ul { padding-left: 1.2rem; }
.article-meta { font-size: 0.85rem; color: var(--gold-light); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.disclaimer-inline { font-size: 0.88rem; color: var(--muted); border-left: 3px solid var(--gold); padding-left: 14px; }
dl.faq { margin: 12px 0 24px; }
dl.faq dt { font-weight: 700; color: var(--navy); margin-top: 16px; }
dl.faq dd { margin: 6px 0 0; }
.person-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: #e8e4da;
}

/* Practice hub */
.practice-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.practice-hero-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,110,0.55);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 3px;
}
.practice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: start;
}
.practice-copy h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.4rem;
  margin: 32px 0 10px;
}
.practice-copy h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.practice-copy .grid-2 { margin: 12px 0 18px; }
.practice-copy p, .practice-copy li, .practice-copy dd { color: var(--muted); }
.practice-copy ul { padding-left: 1.2rem; }
.practice-rail {
  position: sticky;
  top: 92px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(20,33,61,0.06);
}
.practice-rail h2 { font-family: var(--serif); color: var(--navy); margin: 0 0 8px; font-size: 1.25rem; }
.practice-rail .rail-lede { color: var(--muted); font-size: 0.92rem; margin: 0 0 16px; }
.practice-rail .phone-line {
  font-weight: 700;
  margin-bottom: 14px;
}
.practice-rail .phone-line a { color: var(--navy); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 28px;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.stat span { color: var(--muted); font-size: 0.86rem; }
.step-list { list-style: none; padding: 0; margin: 0 0 8px; }
.step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.step-num {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.fee-callout {
  border-left: 3px solid var(--gold);
  background: #fff;
  padding: 16px 18px;
  color: var(--muted);
  margin: 18px 0 8px;
}
@media (max-width: 900px) {
  .practice-layout { grid-template-columns: 1fr; }
  .practice-rail { position: static; }
  .stat-row { grid-template-columns: 1fr; }
}

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #cfd3e2;
  padding: 48px 0 28px;
  font-size: 0.85rem;
}
footer.site-footer a { color: #fff; }
footer.site-footer .foot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 780px) { footer.site-footer .foot-grid { grid-template-columns: 1fr; } }
footer.site-footer h4 { color: #fff; font-family: var(--serif); font-size: 1rem; margin: 0 0 10px; }
footer.site-footer .legal { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; color: #a7ade0; }
footer.site-footer .legal p { margin: 4px 0; }
