/* =========================================================
   [FIRM NAME] — Shared Stylesheet
   Fonts: EB Garamond (headings + firm/attorney name), Inter (body, UI)
   ========================================================= */

:root {
  --navy-darkest: #0b1f3a;
  --navy-mid: #13305c;
  --navy-light: #1a4278;
  --navy-lightest: #1e5095;
  --steel-blue: #7A9DBB;
  --steel-blue-light: #A0BED4;
  --white: #ffffff;
  --off-white: #f4f6fa;
  --border: #dce3ef;
  --near-black: #1a1a2e;
  --muted-slate: #556080;

  --max-width: 1200px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 4px 14px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 12px 40px rgba(11, 31, 58, 0.18);
  --transition: 0.2s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ---------- Base typography ---------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--near-black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .firm-name, .attorney-name {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  color: var(--navy-darkest);
  margin: 0 0 0.5em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--near-black); }
.muted { color: var(--muted-slate); }

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

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4em; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }
section.alt { background: var(--off-white); }
section.dark {
  background: var(--navy-darkest);
  color: var(--white);
}
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--white); }
section.dark p { color: rgba(255,255,255,0.85); }
section.dark .eyebrow { color: var(--steel-blue-light); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-header.left { text-align: left; margin-left: 0; }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--navy-darkest);
  color: rgba(255,255,255,0.78);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-bar a { color: rgba(255,255,255,0.78); }
.utility-bar a:hover { color: var(--steel-blue-light); }
.utility-bar .util-locations { letter-spacing: 0.04em; }

/* ---------- Navbar ---------- */
.navbar {
  background: var(--navy-darkest);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--steel-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  color: var(--steel-blue);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
}
.brand-text {
  font-family: 'EB Garamond', serif;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-top: 0.25rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--steel-blue-light); }

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-darkest);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--steel-blue);
}
.btn-secondary:hover {
  background: var(--steel-blue);
  color: var(--navy-darkest);
}
.btn-accent {
  background: var(--steel-blue);
  color: var(--navy-darkest);
  border-color: var(--steel-blue);
}
.btn-accent:hover {
  background: var(--steel-blue-light);
  border-color: var(--steel-blue-light);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy-darkest);
  border-color: var(--navy-darkest);
}
.btn-outline-dark:hover {
  background: var(--navy-darkest);
  color: var(--white);
}
.btn-large { padding: 1.05rem 2rem; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(19,48,92,0.88) 60%, rgba(30,80,149,0.85) 100%),
    radial-gradient(circle at 80% 20%, rgba(122,157,187,0.18), transparent 50%);
  background-color: var(--navy-darkest);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,157,187,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,157,187,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.2vw, 4.25rem);
  font-weight: 500;
  max-width: 18ch;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--steel-blue-light); font-style: italic; }
.hero p.lede {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 60ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: 3.5rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(122,157,187,0.25);
  padding-top: 2rem;
}
.hero-meta div {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.hero-meta strong {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 1.625rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--navy-darkest);
  color: var(--white);
  padding: 5rem 0 3.5rem;
  position: relative;
  border-bottom: 1px solid rgba(122,157,187,0.18);
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.page-header p {
  color: rgba(255,255,255,0.78);
  font-size: 1.0625rem;
  max-width: 60ch;
  margin: 0;
}
.breadcrumbs {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.breadcrumbs a { color: var(--steel-blue-light); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--steel-blue);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--steel-blue-light);
}
.card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.6rem;
}
.card p {
  color: var(--muted-slate);
  font-size: 0.9375rem;
  margin: 0;
}
.card .card-meta {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.8125rem;
  color: var(--steel-blue);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Highlight / key-point cards ---------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) { .highlight-grid { grid-template-columns: 1fr; } }
.highlight {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(122,157,187,0.18);
  border-radius: var(--radius);
}
.highlight h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.highlight p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 0.9375rem;
}
.highlight .num {
  font-family: 'EB Garamond', serif;
  color: var(--steel-blue);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  background: rgba(122,157,187,0.15);
  color: var(--steel-blue);
  border: 1px solid rgba(122,157,187,0.35);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.badge-light {
  background: var(--off-white);
  color: var(--navy-mid);
  border-color: var(--border);
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-darkest);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.field .req { color: #b14a4a; margin-left: 0.15rem; }
.field .help {
  font-size: 0.8125rem;
  color: var(--muted-slate);
  margin-top: 0.3rem;
}
.field input,
.field select,
.field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--near-black);
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(26,66,120,0.12);
}
.field-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--near-black);
}
.field-check input { margin-top: 0.25rem; }
.field-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  background: var(--white);
}
.field-group legend {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  color: var(--navy-darkest);
  padding: 0 0.5rem;
}

/* ---------- Disclaimer / callout ---------- */
.callout {
  background: var(--off-white);
  border-left: 3px solid var(--steel-blue);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--muted-slate);
}
.callout strong { color: var(--navy-darkest); }

/* ---------- Practice areas list ---------- */
.practice-list { display: grid; gap: 1.25rem; }
.practice-list .card { padding: 1.5rem 1.75rem; }

/* ---------- Featured strip ---------- */
.strip {
  background: var(--navy-darkest);
  color: var(--white);
  padding: 4rem 0;
  border-top: 1px solid rgba(122,157,187,0.18);
}
.strip h2 { color: var(--white); }
.strip p { color: rgba(255,255,255,0.78); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.85);
  padding: 2rem 0 1.25rem;
  font-size: 0.9375rem;
}
.footer h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
  font-family: 'EB Garamond', serif;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.55rem; }
.footer a { color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--steel-blue-light); }
.footer-brand .firm-name {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  max-width: 32ch;
}
.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.disclaimer-block {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ---------- Blog list ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.blog-card .blog-image {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.blog-card .blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,157,187,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,157,187,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
.blog-card .blog-image .topic {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: 'EB Garamond', serif;
  color: var(--steel-blue-light);
  font-size: 1.5rem;
  z-index: 1;
}
.blog-card .blog-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.blog-card .blog-meta {
  font-size: 0.75rem;
  color: var(--muted-slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.blog-card p { color: var(--muted-slate); font-size: 0.9375rem; flex: 1; }
.blog-card .read-more {
  margin-top: 1rem;
  color: var(--navy-light);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}

/* ---------- Article body ---------- */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.article .meta-line {
  font-size: 0.8125rem;
  color: var(--muted-slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.article h1 { font-size: clamp(2rem, 4vw, 2.875rem); margin-bottom: 1rem; }
.article h2 { font-size: 1.625rem; margin-top: 2.5rem; }
.article h3 { font-size: 1.25rem; margin-top: 2rem; }
.article p, .article li { font-size: 1.0625rem; line-height: 1.75; }
.article blockquote {
  border-left: 3px solid var(--steel-blue);
  margin: 1.5rem 0;
  padding: 0.5rem 1.25rem;
  color: var(--muted-slate);
  font-style: italic;
}
.article hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ---------- Stat row ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 800px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  color: var(--steel-blue);
  font-weight: 500;
}
.stat .label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Calendly placeholder ---------- */
.calendly-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 720px;
  display: flex;
  flex-direction: column;
}
.calendly-wrap .embed-note {
  background: var(--off-white);
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--muted-slate);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.calendly-wrap iframe {
  width: 100%;
  flex: 1;
  border: 0;
  min-height: 660px;
}

/* ---------- Office cards ---------- */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .office-grid { grid-template-columns: 1fr; } }
.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--steel-blue);
}
.office-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.office-card p { font-size: 0.9375rem; color: var(--muted-slate); margin-bottom: 0.4rem; }
.office-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-blue);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* ---------- TOC for practice areas ---------- */
.toc {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.toc h4 {
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-mid);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.toc ul { columns: 2; column-gap: 2rem; padding: 0; list-style: none; }
@media (max-width: 700px) { .toc ul { columns: 1; } }
.toc li { margin-bottom: 0.5rem; font-size: 0.9375rem; break-inside: avoid; }
.toc a { color: var(--navy-mid); }
.toc a:hover { color: var(--navy-light); }

/* ---------- Practice area detail ---------- */
.practice-detail {
  border: 1px solid var(--border);
  border-left: 3px solid var(--steel-blue);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  background: var(--white);
}
.practice-detail h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.practice-detail p {
  color: var(--near-black);
  font-size: 1rem;
  margin: 0;
}
.practice-detail .badge { margin-top: 1rem; }

/* ---------- Attorney profile ---------- */
.attorney-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .attorney-profile { grid-template-columns: 1fr; } }
.attorney-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-blue-light);
  font-family: 'EB Garamond', serif;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.attorney-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,157,187,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,157,187,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}
.attorney-name {
  font-size: 2.25rem;
  margin: 0 0 0.25rem;
}
.attorney-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.bio-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 700px) { .bio-stats { grid-template-columns: 1fr; } }
.bio-stat {
  border-left: 2px solid var(--steel-blue);
  padding-left: 1rem;
}
.bio-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-slate);
  font-weight: 600;
}
.bio-stat .value {
  font-family: 'EB Garamond', serif;
  font-size: 1.125rem;
  color: var(--navy-darkest);
}

/* ---------- CTA strip on interior pages ---------- */
.cta-strip {
  background: var(--navy-darkest);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip p {
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.cta-strip .btn-secondary { color: var(--white); }

/* ---------- Two-column with sidebar ---------- */
.with-aside {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .with-aside { grid-template-columns: 1fr; } }
.aside-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--steel-blue);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.aside-card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.aside-card p { font-size: 0.9375rem; color: var(--muted-slate); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}
