:root {
  --ink: #0d0d0f;
  --panel: #151516;
  --panel-soft: #1e1d1b;
  --line: #3a3227;
  --gold: #c9953d;
  --gold-soft: #e2c07b;
  --paper: #f7f3ea;
  --muted: #b8b0a4;
  --white: #fffaf0;
  --red: #6f1d1b;
  --green: #21423a;
  --shadow: 0 22px 70px rgba(0, 0, 0, .36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(111, 29, 27, .18), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(201, 149, 61, .08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 240, .03), transparent 22%);
  z-index: -1;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
  z-index: 20;
}

.skip-link:focus {
  left: 10px;
}

.topbar {
  border-bottom: 1px solid rgba(201, 149, 61, .32);
  background: rgba(13, 13, 15, .92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner,
.section,
.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 0;
  min-width: 255px;
}

.brand strong {
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.brand span {
  color: var(--gold-soft);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 149, 61, .45);
  background: transparent;
  color: var(--paper);
  border-radius: 6px;
  font-size: 1.25rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .88rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus {
  color: var(--white);
}

.call-link {
  border: 1px solid var(--gold);
  color: var(--gold-soft) !important;
  padding: 10px 13px;
  border-radius: 6px;
}

.hero {
  display: grid;
  align-items: center;
  padding: clamp(34px, 5vw, 58px) 0 26px;
}

.hero .section {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.eyebrow {
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  max-width: 780px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.lead {
  font-family: Arial, Helvetica, sans-serif;
  color: #ddd5c8;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  max-width: 670px;
  margin: 18px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-note {
  margin: 14px 0 0;
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .95rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.button.primary {
  background: var(--gold);
  color: #111;
}

.button.secondary {
  border: 1px solid rgba(255, 250, 240, .35);
  color: var(--paper);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201, 149, 61, .4);
  border: 1px solid rgba(201, 149, 61, .38);
  margin-top: 28px;
}

.proof-strip div {
  background: rgba(21, 21, 22, .92);
  padding: 16px 16px;
  min-height: 90px;
}

.proof-strip strong {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .84rem;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: rgba(201, 149, 61, .42);
  border: 1px solid rgba(201, 149, 61, .42);
}

.credential-list div {
  background: rgba(21, 21, 22, .94);
  min-height: 88px;
  padding: 16px;
}

.credential-list strong {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.05;
}

.credential-list span {
  display: block;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .86rem;
  margin-top: 8px;
}

.hero-art {
  position: relative;
  align-self: stretch;
}

.hero-art img {
  height: 420px;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  background: #090909;
  border: 1px solid rgba(201, 149, 61, .42);
  box-shadow: var(--shadow);
}

.home-portrait {
  justify-self: end;
  max-width: 460px;
  width: 100%;
}

.home-portrait img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.hero-note {
  max-width: 280px;
  margin-top: 12px;
  padding: 14px;
  background: rgba(13, 13, 15, .82);
  border: 1px solid rgba(201, 149, 61, .42);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: .86rem;
}

.band {
  border-top: 1px solid rgba(201, 149, 61, .22);
}

.band.light {
  background: var(--paper);
  color: #181716;
}

.section {
  padding: clamp(46px, 6.5vw, 78px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.section-intro {
  max-width: 760px;
  margin: 16px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
}

.light .section-intro {
  color: #554d43;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(201, 149, 61, .32);
  border-radius: 8px;
  padding: 22px;
  background: rgba(21, 21, 22, .72);
}

.light .card {
  background: #fffaf0;
  border-color: #d6c4a0;
}

.card p,
.timeline p,
.answer p,
.contact-list p {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  margin: 10px 0 0;
}

.light .card p,
.light .timeline p,
.light .answer p {
  color: #554d43;
}

.card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.light .card a {
  color: #7a4b0e;
}

.answer {
  border-top: 1px solid rgba(201, 149, 61, .42);
  padding: 22px 0;
}

.answer:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(201, 149, 61, .35);
  padding-top: 18px;
}

.timeline time {
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .86rem;
  font-weight: 700;
}

.media-wide {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
}

.media-wide img {
  border: 1px solid rgba(201, 149, 61, .32);
  background: rgba(21, 21, 22, .25);
  max-height: 620px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.practice-hero {
  padding: 46px 0 32px;
}

.practice-hero h1 {
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  max-width: 720px;
}

.practice-hero .section {
  padding: 0;
}

.practice-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.page-hero-img {
  width: 100%;
  height: 320px;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(201, 149, 61, .42);
  box-shadow: var(--shadow);
  background: #090909;
}

.practice-hero-bg {
  min-height: 500px;
  padding: clamp(88px, 12vw, 150px) 0 clamp(70px, 8vw, 110px);
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 149, 61, .32);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.practice-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 15, .98) 0%, rgba(13, 13, 15, .86) 42%, rgba(13, 13, 15, .38) 100%),
    linear-gradient(180deg, rgba(13, 13, 15, .12) 0%, rgba(13, 13, 15, .92) 100%);
}

.practice-hero-bg .section {
  position: relative;
  z-index: 1;
}

.practice-hero-bg .practice-hero-grid {
  display: block;
}

.practice-hero-bg h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6vw, 6rem);
}

.practice-hero-bg .lead {
  max-width: 640px;
}

.federal-hero {
  background-image: url("federal-courtroom.png");
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.content-block {
  font-family: Arial, Helvetica, sans-serif;
  color: #ddd5c8;
  font-size: 1rem;
}

.content-block h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--paper);
  margin-top: 42px;
}

.content-block ul {
  padding-left: 20px;
}

.content-block li {
  margin: 9px 0;
}

.sidebar {
  position: sticky;
  top: 100px;
  border: 1px solid rgba(201, 149, 61, .38);
  border-radius: 8px;
  padding: 22px;
  background: rgba(21, 21, 22, .82);
}

.sidebar h2 {
  font-size: 1.6rem;
}

.sidebar a {
  display: block;
  margin-top: 12px;
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  color: var(--gold-soft);
  text-decoration: none;
}

.footer {
  background: #080808;
  border-top: 1px solid rgba(201, 149, 61, .34);
}

.footer-inner {
  padding: 36px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 24px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: .9rem;
}

.footer a {
  color: var(--paper);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 250, 240, .14);
  padding-top: 18px;
  color: #91887a;
}

@media (max-width: 980px) {
  .topbar-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 250, 240, .12);
  }

  .call-link {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid,
  .split,
  .media-wide,
  .practice-layout,
  .practice-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: auto;
  }

  .hero-art img {
    height: 260px;
    max-height: 360px;
  }

  .home-portrait {
    justify-self: start;
    max-width: 420px;
  }

  .home-portrait img {
    height: auto;
  }

  .practice-hero-bg {
    min-height: 460px;
    background-position: center top;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 740px) {
  .proof-strip,
  .credential-list,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .home-portrait {
    max-width: 100%;
  }

  .home-portrait img {
    height: auto;
  }

  .practice-hero-bg {
    min-height: 430px;
    padding: 120px 0 54px;
  }

  .practice-hero-bg h1 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }

  .brand {
    min-width: 0;
  }

  .hero {
    padding-top: 36px;
  }
}
