:root {
  --navy: #0e1b2e;
  --navy-mid: #1a2d47;
  --gold: #b8913a;
  --gold-light: #d4a84b;
  --cream: #f8f4ee;
  --cream-dark: #ede8df;
  --text-dark: #0e1b2e;
  --text-mid: #4a5568;
  --text-light: #8a96a3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--gold); color: var(--navy);
  padding: 8px 16px; font-size: 13px; font-weight: 500;
  text-decoration: none; border-radius: 0 0 4px 4px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── NAVIGATION ── */
.nav {
  background: var(--navy);
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav {
  background: #fff;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo {
  height: 50px;
  width: auto;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #0e1b2e;
  letter-spacing: .02em;
  line-height: 1.2;
  text-decoration: none;
}
.logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4a5568;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: #0e1b2e; }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 7px 18px;
  transition: background .2s !important;
}
.nav-cta:hover { background: rgba(184,145,58,.1) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0e1b2e;
  margin: 5px 0;
  transition: .3s;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 6rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 20%, rgba(184,145,58,.06) 100%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 5.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  text-align: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  line-height: 1.12;
  color: #fff;
  max-width: 580px;
  margin: 0 auto 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--sans);
  border: 1px solid rgba(255,255,255,.55);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: #fff; color: #fff; }
/* Outline button on a light (cream/white) background */
.btn-outline.on-light { color: var(--navy); border-color: rgba(14,27,46,.35); }
.btn-outline.on-light:hover { border-color: var(--navy); color: var(--navy); background: rgba(14,27,46,.04); }
/* Button pair inside a content section — same layout as .hero-btns, no entrance animation */
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
}
.stat-lbl {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.stat-val {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.8);
}
.hero-media {
  position: relative;
  z-index: 1;
}
.hero-media::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: 0;
}
.hero-media img {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  z-index: 1;
}

/* ── TAGLINE BAND ── */
.band {
  background: var(--gold);
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.band-tagline {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
  font-weight: 400;
}
.band-phone {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--navy);
  border-left: 1px solid rgba(14,27,46,.3);
  padding-left: 1.5rem;
  text-decoration: none;
}
.band-phone:hover { text-decoration: underline; }

/* ── SECTIONS ── */
.section { padding: 5rem 4rem; }
.section-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  font-weight: 400;
}
.section-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  text-wrap: balance;
  margin-bottom: 2.5rem;
}

/* ── PRACTICE AREAS ── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}
.practice-card {
  background: #fff;
  padding: 2rem;
  border-bottom: 3px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.practice-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 4px 20px rgba(14,27,46,.06);
}
.practice-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: .06em;
}
.practice-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.practice-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── FIRM / TEAM ── */
.firm-section {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.firm-left {
  padding: 5rem 4rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.firm-right {
  padding: 5rem 4rem;
}
.firm-section .section-title { color: #fff; font-size: 34px; margin-bottom: 1.5rem; }
.firm-section p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,.62);
  margin-bottom: 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem;
  transition: border-color .2s;
}
.team-card:hover { border-color: rgba(184,145,58,.4); }
.team-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184,145,58,.15);
  border: 1px solid rgba(184,145,58,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: .85rem;
}
.team-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
}
.team-role {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}
.values-list { list-style: none; margin-top: 1.5rem; }
.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.values-list li:last-child { border-bottom: none; }
.val-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.val-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
}
.val-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

/* ── REVIEWS ── */
.reviews-section {
  background: #fff;
  padding: 5rem 4rem;
}
.stars-display {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.rating-line {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.75rem 2rem;
}
.review-text {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.review-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.review-source {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 300;
}

/* ── CONTACT FORM ── */
.contact-section {
  background: var(--cream-dark);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-title { font-size: 34px; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; fill: var(--gold-light); }
.contact-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
}
.contact-value:hover { color: var(--gold); }
.map-embed {
  margin-top: 2rem;
  border: 1px solid rgba(14,27,46,.1);
}
/* FORM */
.contact-form-wrap { }
.form-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(14,27,46,.2);
  background: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-disclaimer {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.btn-submit {
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}
.btn-submit:hover { background: var(--navy-mid); }
.form-success {
  display: none;
  background: rgba(14,27,46,.05);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  font-size: 14px;
  color: var(--navy);
  font-weight: 300;
  margin-top: 1rem;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  font-weight: 300;
  margin-top: 6px;
}

/* ── FOOTER ── */
.footer {
  background: #07101e;
  padding: 3rem 4rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}
.footer-tagline {
  font-size: 13px;
  font-style: italic;
  font-family: var(--serif);
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  letter-spacing: .04em;
}
.footer-bar-num {
  font-size: 11px;
  color: rgba(184,145,58,.6);
  letter-spacing: .06em;
}
.footer-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,.15);
  margin-top: .5rem;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 1.5rem; gap: 1rem; border-top: 1px solid rgba(14,27,46,.1); box-shadow: 0 8px 24px rgba(14,27,46,.12); max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero h1 { font-size: 38px; }
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { justify-self: center; }
  .hero-media::before { top: -12px; right: -12px; }
  .hero-media img { width: 260px; height: 380px; }
.band { padding: .9rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .firm-section { grid-template-columns: 1fr; }
  .firm-left { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .firm-right { padding: 3rem 1.5rem; }
  .reviews-section { padding: 3rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 3rem; }
  .cta-strip { padding: 2.5rem 1.5rem; }
  .footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .practice-grid { grid-template-columns: 1fr; }
  .section-sub { font-size: 15px; max-width: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .6s ease both; }
.hero h1      { animation: fadeUp .7s .1s ease both; }
.hero-sub     { animation: fadeUp .7s .2s ease both; }
.hero-btns    { animation: fadeUp .7s .3s ease both; }
.hero-stats   { animation: fadeUp .7s .4s ease both; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION — PRACTICE AREAS DROPDOWN
   ══════════════════════════════════════════════════════════════ */
.nav-links > li { position: relative; }

.nav-dropdown > .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4a5568;
  padding: 0;
  transition: color .2s;
}
.nav-dropdown > .nav-dropdown-toggle:hover,
.nav-dropdown.open > .nav-dropdown-toggle { color: #0e1b2e; }
.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
  flex-shrink: 0;
}
.nav-dropdown.open .nav-caret { transform: rotate(225deg) translateY(-2px); }

.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 18px);
  left: -1.25rem;
  min-width: 268px;
  background: #fff;
  border: 1px solid rgba(14,27,46,.08);
  border-top: 3px solid var(--gold);
  box-shadow: 0 18px 40px -12px rgba(14,27,46,.22);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 120;
}
/* Hover bridge so the menu doesn't close in the gap below the nav bar */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -21px; left: 0; right: 0;
  height: 21px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: .7rem 1.4rem;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.5;
  border-left: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--cream);
  color: var(--navy);
  border-left-color: var(--gold);
}
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--navy);
  border-left-color: var(--gold);
  background: var(--cream);
}
.nav-links > li > a[aria-current="page"] { color: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   CLICKABLE PRACTICE CARDS
   ══════════════════════════════════════════════════════════════ */
a.practice-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
a.practice-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 10px 30px rgba(14,27,46,.1);
  transform: translateY(-2px);
}
a.practice-card { transition: border-color .25s, box-shadow .25s, transform .25s; }
a.practice-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
a.practice-card .practice-name { transition: color .25s; }
a.practice-card:hover .practice-name { color: var(--gold); }
.practice-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1.1rem;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  transition: gap .25s, opacity .25s;
}
a.practice-card:hover .practice-more { gap: 13px; opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   INTERIOR PAGE HERO
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 5rem 4rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 20%, rgba(184,145,58,.07) 100%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.14;
  color: #fff;
  margin-bottom: 1.25rem;
  animation: fadeUp .7s .1s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .hero-eyebrow { animation: fadeUp .6s ease both; }
.page-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 2.25rem;
  animation: fadeUp .7s .2s ease both;
}
.page-hero .hero-btns {
  justify-content: flex-start;
  margin-bottom: 0;
  animation: fadeUp .7s .3s ease both;
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  background: #fff;
  padding: .9rem 4rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: .6rem; color: rgba(14,27,46,.2); }
.breadcrumbs a { color: var(--text-mid); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   PROSE / CONTENT BLOCKS
   ══════════════════════════════════════════════════════════════ */
.content-section { padding: 4.5rem 4rem; }
.content-section.alt { background: #fff; }
.content-inner { max-width: 780px; }
.content-inner-wide { max-width: 1080px; }

.content-section h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 1.25rem;
}
.content-section h2 em { font-style: italic; color: var(--gold); }
.prose p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.15rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose p strong { font-weight: 500; color: var(--navy); }
.prose a:not([class*="btn-"]):not(.arrow-link) { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(184,145,58,.35); }
.prose a:not([class*="btn-"]):not(.arrow-link):hover { border-bottom-color: var(--gold); }
.prose .lead {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

/* ── CHECKLIST ── */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .35rem 2.5rem;
  margin: 2rem 0;
}
.check-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .8rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}
.check-list .check-mark {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  border: 1px solid rgba(184,145,58,.5);
  position: relative;
}
.check-list .check-mark::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(40deg);
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: .4rem 0 .4rem 1.75rem;
  margin: 2rem 0 0;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.55;
  margin: 0;
}

/* ── STATUTE / LAW CARD ── */
.statute-note {
  background: rgba(184,145,58,.07);
  border: 1px solid rgba(184,145,58,.22);
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
}
.statute-note-title {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.statute-note p {
  font-size: 14px;
  margin-bottom: .75rem;
  line-height: 1.8;
}
.statute-note p:last-child { margin-bottom: 0; }
.statute-note code {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-list { max-width: 820px; margin-top: 2.25rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-left: 3px solid transparent;
  margin-bottom: .75rem;
  transition: border-color .25s, box-shadow .25s;
}
.content-section.alt .faq-item { background: var(--cream); }
.faq-item:hover { border-left-color: rgba(184,145,58,.5); }
.faq-item[open] {
  border-left-color: var(--gold);
  box-shadow: 0 6px 24px rgba(14,27,46,.06);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.75rem;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  transition: color .2s;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary h3 {
  font: inherit;
  color: inherit;
  margin: 0;
  font-weight: 400;
}
.faq-item > summary:hover { color: var(--gold); }
.faq-item > summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.faq-toggle {
  position: relative;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 8px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform .25s, opacity .25s;
}
.faq-toggle::before { top: 7px; left: 0; width: 15px; height: 1px; }
.faq-toggle::after  { left: 7px; top: 0; width: 1px; height: 15px; }
.faq-item[open] .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 1.75rem 1.6rem; max-width: 700px; }
.faq-answer p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: .9rem;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ── ARROW LINK ── */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.75rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: gap .25s, color .25s;
}
.arrow-link:hover { gap: 18px; color: var(--gold); }
.arrow-link.on-dark { color: #fff; }
.arrow-link.on-dark:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   FAQ HUB — JUMP MENU
   ══════════════════════════════════════════════════════════════ */
.jump-nav {
  background: #fff;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 2rem 4rem;
}
.jump-nav-title {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.jump-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem 1.5rem;
  max-width: 1080px;
}
.jump-grid a {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  text-decoration: none;
  padding: .55rem .75rem .55rem 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.jump-grid a:hover { color: var(--navy); border-bottom-color: var(--gold); }
.jump-grid .jump-num {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .06em;
  flex-shrink: 0;
}

/* Anchor offset so sticky nav doesn't cover section headings */
.anchor-target,
section[id],
main [id] { scroll-margin-top: 92px; }

.faq-group { padding: 3.5rem 4rem; }
.faq-group + .faq-group { border-top: 1px solid var(--cream-dark); }
.faq-group.alt { background: #fff; }
.faq-group h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.faq-group-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 640px;
}
.coming-soon-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,145,58,.35);
  padding: 4px 10px;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   RELATED PRACTICE AREAS
   ══════════════════════════════════════════════════════════════ */
.related-section { background: var(--navy); padding: 4rem 4rem; }
.related-section .section-label { margin-bottom: .5rem; }
.related-section h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.related-card {
  display: block;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-bottom: 2px solid transparent;
  padding: 1.5rem;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s;
}
.related-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(184,145,58,.4);
  border-bottom-color: var(--gold);
  transform: translateY(-2px);
}
.related-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.related-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin-bottom: .5rem;
}
.related-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — NEW COMPONENTS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .jump-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav-links { align-items: stretch; }
  .nav-dropdown > .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: .25rem 0;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    left: auto;
    border: none;
    border-top: 1px solid var(--cream-dark);
    border-left: 2px solid var(--gold);
    box-shadow: none;
    padding: .35rem 0;
    margin: .6rem 0 .35rem;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: .6rem 1rem; }

  .page-hero { padding: 3rem 1.5rem 2.75rem; }
  .page-hero h1 { font-size: 34px; }
  .page-hero-sub { font-size: 16px; }
  .page-hero .hero-btns { justify-content: flex-start; }
  .breadcrumbs { padding: .8rem 1.5rem; }
  .content-section { padding: 2.75rem 1.5rem; }
  .content-section h2 { font-size: 28px; }
  .check-list { grid-template-columns: 1fr; gap: 0; }
  .jump-nav { padding: 1.75rem 1.5rem; }
  .faq-group { padding: 2.5rem 1.5rem; }
  .faq-group h2 { font-size: 26px; }
  .faq-item > summary { font-size: 18px; padding: 1.1rem 1.25rem; }
  .faq-answer { padding: 0 1.25rem 1.35rem; }
  .related-section { padding: 2.75rem 1.5rem; }
  .prose .lead { font-size: 19px; }
  .pull-quote p { font-size: 19px; }
}

@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .jump-grid { grid-template-columns: 1fr; }
}
