/* Denner Lamanna -- primary stylesheet */
/* Default: light theme. Dark: html[data-theme="dark"] */
:root {
  --bg-deep: #f2efe8;
  --bg-elevated: #e8e4db;
  --bg-card: rgba(255, 255, 255, 0.92);
  --border-subtle: rgba(74, 60, 28, 0.14);
  --gold: #8b6914;
  --gold-dim: #6b5428;
  --gold-gradient-end: #6e5210;
  --gold-glow: rgba(139, 105, 20, 0.22);
  --cream: #161a22;
  --muted: #525a66;
  --link-hover: #5c4808;
  --on-gold: #101218;
  --input-bg: #ffffff;
  --input-border: rgba(22, 26, 34, 0.14);
  --mesh-1: rgba(139, 105, 20, 0.08);
  --mesh-2: rgba(70, 90, 130, 0.07);
  --mesh-3: rgba(139, 105, 20, 0.05);
  --header-scrolled: rgba(242, 238, 232, 0.94);
  --card-practice-bg: rgba(255, 255, 255, 0.88);
  --card-practice-hover-border: rgba(139, 105, 20, 0.38);
  --quote-bg: rgba(255, 255, 255, 0.75);
  --lead-banner-shine: rgba(139, 105, 20, 0.11);
  --result-card-shine: rgba(139, 105, 20, 0.1);
  --ghost-hover-bg: rgba(139, 105, 20, 0.09);
  --grain-opacity: 0.035;
  --white: #ffffff;
  --success: #2d7a52;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 12px;
  --radius-lg: 24px;
  --max: 1200px;
}

html[data-theme="dark"] {
  --bg-deep: #0a0e14;
  --bg-elevated: #121820;
  --bg-card: rgba(18, 24, 32, 0.72);
  --border-subtle: rgba(212, 175, 55, 0.12);
  --gold: #d4af37;
  --gold-dim: #9a7b2c;
  --gold-gradient-end: #b8922a;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --cream: #f4f1ea;
  --muted: #8b939e;
  --link-hover: #f4f1ea;
  --on-gold: #0a0e14;
  --input-bg: rgba(10, 14, 20, 0.6);
  --input-border: rgba(255, 255, 255, 0.1);
  --mesh-1: rgba(212, 175, 55, 0.08);
  --mesh-2: rgba(60, 80, 120, 0.15);
  --mesh-3: rgba(212, 175, 55, 0.05);
  --header-scrolled: rgba(10, 14, 20, 0.88);
  --card-practice-bg: rgba(18, 24, 32, 0.5);
  --card-practice-hover-border: rgba(212, 175, 55, 0.35);
  --quote-bg: rgba(18, 24, 32, 0.4);
  --lead-banner-shine: rgba(212, 175, 55, 0.12);
  --result-card-shine: rgba(212, 175, 55, 0.08);
  --ghost-hover-bg: rgba(212, 175, 55, 0.06);
  --grain-opacity: 0.04;
  --success: #3d9a6a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg-deep);
  overflow-x: hidden;
  transition:
    background-color 0.4s var(--ease-out),
    color 0.4s var(--ease-out);
}

/* Ambient background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% -20%, var(--mesh-1), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, var(--mesh-2), transparent),
    radial-gradient(ellipse 50% 30% at 50% 100%, var(--mesh-3), transparent),
    var(--bg-deep);
  transition: background 0.4s var(--ease-out);
}

.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: var(--grain-opacity);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  transition: opacity 0.4s var(--ease-out);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--link-hover);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--on-gold);
  padding: 0.75rem 1rem;
  z-index: 9999;
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.35s var(--ease-out), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: var(--header-scrolled);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  /* Reserve space so nav links do not sit under absolutely positioned tools */
  padding-right: 3.25rem;
}

@media (max-width: 900px) {
  .header-inner {
    padding-right: 5.75rem;
  }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.logo span {
  color: var(--gold);
}

.header-tools {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  z-index: 1001;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 901px) {
  .nav-main {
    flex: 1;
    justify-content: flex-end;
  }
}

.nav-main a:not(.btn-header) {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-main a:not(.btn-header):hover {
  color: var(--cream);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--cream);
  cursor: pointer;
  transition:
    border-color 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.theme-toggle:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-glow);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.theme-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

html:not([data-theme="dark"]) .theme-toggle__icon--sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--on-gold) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-main {
    flex: 0 0 0%;
    min-width: 0;
    overflow: visible;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-subtle);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
  }

  .nav-main.is-open {
    transform: translateX(0);
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 4rem;
  position: relative;
}

.hero-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr);
    gap: 3rem;
  }
}

.hero-content {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.015em;
  font-feature-settings: "kern" 1, "liga" 1;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-lead {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-image {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  min-height: 340px;
  overflow: hidden;
  animation: fadeUp 0.8s var(--ease-out) 0.22s both;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-gradient-end));
  color: var(--on-gold);
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--cream);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--ghost-hover-bg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lead banner + form section */
.section-form {
  padding: 5rem 0;
  position: relative;
}

.section-form .container {
  width: min(100% - 2rem, 1560px);
}

.intake-shell {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background:
    linear-gradient(145deg, var(--lead-banner-shine) 0%, transparent 55%),
    var(--bg-card);
  backdrop-filter: blur(20px);
}

@media (min-width: 1080px) {
  .intake-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }
}

.lead-banner {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, var(--lead-banner-shine) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.lead-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.lead-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.lead-banner p {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-strip span::before {
  content: "\25C6";
  font-size: 0.5rem;
  color: var(--gold);
}

.intake-map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.intake-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.form-card {
  max-width: 640px;
  margin-inline: auto;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  transition:
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

@media (min-width: 1080px) {
  .lead-banner {
    background: transparent;
    border: 0;
    backdrop-filter: none;
    border-radius: 0;
    overflow: visible;
    padding: 1.5rem 1rem;
    margin-bottom: 0;
    height: 100%;
  }

  .form-card {
    background: transparent;
    border: 0;
    backdrop-filter: none;
    border-radius: 0;
    padding: 1.5rem 1rem;
    max-width: none;
    margin-inline: 0;
  }
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  text-align: center;
}

.form-card > p.sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-consent a {
  text-decoration: underline;
}

.form-submit-wrap {
  margin-top: 0.5rem;
}

.form-submit-wrap .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.is-visible {
  display: block;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}

.form-captcha-help {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Sections generic */
.section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

/* Editorial narrative (no card shell -- sits on section background) */
.section--editorial {
  padding-block: 4.5rem 5.25rem;
}

.section-head--editorial {
  max-width: 46rem;
  margin-bottom: 2.25rem;
}

.section-head--editorial h2 {
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

/* Homepage editorial — wide spread, layered panel, editorial detail */
.section--editorial.firm-editorial {
  padding-block: clamp(4.25rem, 8vw, 6.5rem);
  background:
    radial-gradient(ellipse 90% 52% at 50% -8%, color-mix(in srgb, var(--mesh-1) 52%, transparent), transparent 52%),
    radial-gradient(ellipse 55% 42% at 100% 100%, color-mix(in srgb, var(--mesh-2) 38%, transparent), transparent 58%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-elevated) 22%, transparent) 0%, transparent 28%);
}

.firm-editorial__wrap {
  max-width: min(100% - 2rem, 88rem);
  margin-inline: auto;
}

.firm-editorial__shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.firm-editorial__masthead {
  text-align: center;
  margin: 0 auto;
  max-width: min(100%, 52rem);
}

.firm-editorial__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  margin: 0 0 1rem;
}

html[data-theme="dark"] .firm-editorial__eyebrow {
  color: var(--gold);
}

.firm-editorial__masthead h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.95rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 auto;
  max-width: none;
  color: var(--cream);
}

.firm-editorial__rule {
  display: block;
  width: min(6.5rem, 38vw);
  height: 2px;
  margin: 1.65rem auto 0;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.88;
}

html[data-theme="dark"] .firm-editorial__rule {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.firm-editorial__divider {
  height: 1px;
  width: min(100%, 56rem);
  margin: clamp(2rem, 4vw, 2.85rem) auto clamp(1.65rem, 3vw, 2.15rem);
  border-radius: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--border-subtle) 50%, transparent 95%);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--gold) 32%, transparent);
}

.firm-editorial__panel {
  position: relative;
  max-width: min(100%, 72rem);
  margin-inline: auto;
  width: 100%;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.75rem, 4vw, 3.25rem);
  padding-left: clamp(1.65rem, 3.8vw, 2.85rem);
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border-subtle) 85%, var(--gold-dim));
  border-left-width: 4px;
  border-left-color: color-mix(in srgb, var(--gold) 52%, var(--border-subtle));
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--bg-card) 96%, transparent) 0%, color-mix(in srgb, var(--bg-card) 88%, transparent) 100%);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--gold) 12%, transparent),
    0 22px 48px -20px rgba(74, 60, 28, 0.12),
    0 56px 90px -48px rgba(50, 42, 28, 0.08);
  overflow: hidden;
}

.firm-editorial__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 55% at 100% 0%, color-mix(in srgb, var(--gold) 10%, transparent), transparent 52%),
    radial-gradient(ellipse 70% 50% at 0% 100%, color-mix(in srgb, var(--gold) 7%, transparent), transparent 48%);
  opacity: 0.95;
}

.firm-editorial__panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(40%, 14rem);
  height: 3px;
  background: linear-gradient(270deg, var(--gold-dim), transparent);
  opacity: 0.35;
  border-radius: 0 0 0 4px;
}

html[data-theme="dark"] .firm-editorial__panel {
  border-left-color: color-mix(in srgb, var(--gold) 68%, var(--border-subtle));
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--bg-card) 92%, transparent) 0%,
    color-mix(in srgb, var(--bg-card) 78%, transparent) 100%
  );
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--gold) 14%, transparent),
    0 28px 56px -22px rgba(0, 0, 0, 0.45),
    0 64px 100px -52px rgba(0, 0, 0, 0.55);
}

html[data-theme="dark"] .firm-editorial__panel::after {
  opacity: 0.45;
}

.firm-editorial__signals {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin: 0 0 clamp(1.75rem, 3vw, 2.35rem);
  padding: 0;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

html[data-theme="dark"] .firm-editorial__signals {
  color: color-mix(in srgb, var(--gold) 85%, var(--muted));
}

.firm-editorial__signals li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--gold-dim) 35%, var(--border-subtle));
  background: color-mix(in srgb, var(--bg-deep) 35%, transparent);
}

html[data-theme="dark"] .firm-editorial__signals li {
  border-color: color-mix(in srgb, var(--gold) 22%, var(--border-subtle));
  background: color-mix(in srgb, var(--bg-elevated) 40%, transparent);
}

.firm-editorial__article {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.firm-editorial__article.editorial-prose p {
  font-family: var(--font-ui);
  font-size: 1.025rem;
  line-height: 1.82;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.firm-editorial__article.editorial-prose .firm-editorial__lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.35rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -0.012em;
  color: color-mix(in srgb, var(--cream) 90%, var(--muted));
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
  padding-bottom: clamp(1.35rem, 2.5vw, 1.75rem);
  border-bottom: 1px solid color-mix(in srgb, var(--border-subtle) 90%, var(--gold-dim));
}

.firm-editorial__article.editorial-prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 1.85vw, 1.62rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--cream);
  margin: clamp(2.85rem, 5vw, 3.5rem) 0 1.15rem;
  padding: 0 0 0 1rem;
  border-bottom: none;
  position: relative;
}

.firm-editorial__article.editorial-prose h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  bottom: 0.12em;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-gradient-end));
  box-shadow: 0 0 12px var(--gold-glow);
}

.firm-editorial__article.editorial-prose h3::after {
  content: "";
  display: block;
  margin-top: 0.85rem;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--gold) 28%, var(--border-subtle)), transparent);
  max-width: min(100%, 28rem);
}

.firm-editorial__article.editorial-prose > h3:first-of-type {
  margin-top: 0;
}

.firm-editorial__article .editorial-prose__list {
  font-family: var(--font-ui);
  font-size: 0.975rem;
  line-height: 1.55;
  list-style: none;
  padding: 0.35rem 0 0;
  margin: 0 0 2rem;
}

.firm-editorial__article .editorial-prose__list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.55rem;
}

.firm-editorial__article .editorial-prose__list li:last-child {
  margin-bottom: 0;
}

.firm-editorial__article .editorial-prose__list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.58em;
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.firm-editorial__article.editorial-prose strong {
  color: var(--cream);
  font-weight: 600;
}

.firm-editorial__article.editorial-prose a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.firm-editorial__article.editorial-prose a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--gold);
}

.firm-editorial__cta {
  margin-top: 0.65rem;
  padding: 2rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--gold) 22%, var(--border-subtle));
  font-size: 0.97rem !important;
  line-height: 1.78 !important;
  color: color-mix(in srgb, var(--muted) 92%, var(--cream));
}

@media (min-width: 960px) {
  .firm-editorial__article .editorial-prose__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 2.5rem;
    margin-bottom: 2.35rem;
  }

  .firm-editorial__article .editorial-prose__list li {
    margin-bottom: 0.38rem;
  }
}

@media (min-width: 1200px) {
  .firm-editorial__article .editorial-prose__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 2rem 0.65rem;
  }
}

.editorial-prose {
  margin: 0;
  padding: 0;
  border: none;
}

.editorial-prose p {
  margin: 0 0 1.2rem;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--muted);
}

.editorial-prose p:first-of-type {
  font-size: 1.1rem;
  color: var(--muted);
  color: color-mix(in srgb, var(--cream) 88%, var(--muted));
}

.editorial-prose p:last-child {
  margin-bottom: 0;
}

.editorial-prose strong {
  color: var(--cream);
  font-weight: 600;
}

.editorial-prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 2rem 0 0.85rem;
  line-height: 1.28;
}

.editorial-prose h3:first-child {
  margin-top: 0;
}

.editorial-prose__list {
  margin: 0 0 1.35rem;
  padding-left: 1.35rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

.editorial-prose__list li {
  margin-bottom: 0.4rem;
}

.editorial-prose__list li:last-child {
  margin-bottom: 0;
}

/* Practice areas -- max 3 columns on wide viewports (balanced rows for 6-card grids) */
.grid-practice {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .grid-practice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .grid-practice {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card-practice {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--card-practice-bg);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.card-practice:hover {
  border-color: var(--card-practice-hover-border);
  transform: translateY(-4px);
}

.card-practice h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--cream);
}

.card-practice h3 a {
  color: inherit;
  text-decoration: none;
}

.card-practice h3 a:hover {
  color: var(--gold);
}

.card-practice p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.services-page .section-head p {
  max-width: 52rem;
  margin-inline: auto;
}

.services-page .hero .container,
.notable-page .hero .container {
  text-align: center;
}

.services-page .hero-lead,
.notable-page .hero-lead {
  margin-inline: auto;
  text-align: center;
}

.services-page .hero-cta,
.notable-page .hero-cta {
  justify-content: center;
}

/* Attorneys landing -- masthead + roster (see .attorneys-panel below) */
.attorneys-page .attorneys-masthead {
  padding: 6.25rem 0 3rem;
  min-height: auto;
}

/* Homepage embed: masthead sits mid-page under generic .section padding */
#attorneys.attorneys-masthead {
  padding-block: 0 2.5rem;
  min-height: auto;
}

.attorneys-masthead__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .attorneys-masthead__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem 2.5rem;
  }
}

.attorneys-masthead__intro {
  max-width: 36rem;
}

.attorneys-masthead__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.attorneys-masthead__intro h1,
.attorneys-masthead__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--cream);
}

.attorneys-masthead__deck {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.attorneys-masthead__facts {
  margin: 0 0 1.85rem;
  padding: 0;
  display: grid;
  gap: 1rem 1.25rem;
}

@media (min-width: 520px) {
  .attorneys-masthead__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.attorneys-masthead__fact {
  margin: 0;
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.attorneys-masthead__fact dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 0.45rem;
}

.attorneys-masthead__fact dd {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}

.attorneys-masthead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
}

.attorneys-masthead__jump {
  margin: 1.15rem 0 0;
  font-size: 0.88rem;
}

.attorneys-masthead__jump a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.08rem;
}

.attorneys-masthead__jump a:hover {
  color: var(--cream);
  border-bottom-color: var(--gold);
}

.attorneys-masthead__jump-sep {
  margin-inline: 0.45rem;
  color: var(--muted);
  user-select: none;
}

/* Overlapping portrait collage */
.attorneys-masthead__collage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.attorneys-collage {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1 / 1.05;
  margin-inline: auto;
}

.attorneys-collage__ring {
  position: absolute;
  inset: 8% 4% 12% 10%;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(
    ellipse at 30% 30%,
    var(--mesh-1),
    transparent 55%
  );
  pointer-events: none;
}

.attorneys-collage__photo {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

html[data-theme="dark"] .attorneys-collage__photo {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
}

.attorneys-collage__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.attorneys-collage__photo--a {
  width: 58%;
  left: 0;
  bottom: 0;
  z-index: 2;
  aspect-ratio: 4 / 5;
}

.attorneys-collage__photo--b {
  width: 58%;
  right: 0;
  top: 4%;
  z-index: 1;
  aspect-ratio: 4 / 5;
}

.services-page .grid-practice .card-practice {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.services-page .service-modal-open {
  margin-top: auto;
}

.services-split__layout {
  display: grid;
  gap: 2.5rem;
}

.services-split__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.services-split .section-head {
  margin-bottom: 2rem;
}

.services-split__panel .section-head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.services-split__panel .section-head p {
  margin-left: 0;
  margin-right: 0;
}

.notable-cases-section .section-head {
  margin-bottom: 2rem;
}

.notable-attorney-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.notable-attorney-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 1.5rem 1.4rem;
}

.notable-attorney-card__head h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
}

.notable-attorney-card__head p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.notable-case-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.notable-case-list li {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--card-practice-bg);
}

.notable-case-list__title {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.notable-case-list__outcome {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (min-width: 960px) {
  .notable-attorney-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Representative matters page rebuild -- typical AmLaw-style dossier layout */
.notable-results .results-masthead {
  padding: 6.5rem 0 2.25rem;
  text-align: left;
}

.results-masthead__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .results-masthead__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 3rem;
  }
}

.results-masthead__breadcrumb {
  font-size: 0.82rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

.results-masthead__breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.results-masthead__breadcrumb a:hover {
  text-decoration: underline;
}

.results-masthead__breadcrumb span[aria-hidden="true"] {
  margin-inline: 0.35rem;
  opacity: 0.45;
}

.results-masthead__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

.results-masthead__primary h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--cream);
}

.results-masthead__deck {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 40rem;
}

.results-masthead__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
}

.results-masthead__snapshot {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.results-snapshot-card {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.results-snapshot-card strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.results-snapshot-card span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.results-snapshot-card--disclaimer {
  border-left: 3px solid var(--gold);
}

.results-ribbon {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.results-ribbon .container {
  padding-block: 0.85rem 1rem;
}

.results-ribbon p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 62rem;
}

.results-nav-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1.15rem 0 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.results-nav-strip__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.results-nav-strip__link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}

.results-section {
  padding-top: 2.75rem;
  padding-bottom: 2.5rem;
}

.results-section--band {
  background: linear-gradient(
    180deg,
    var(--bg-elevated) 0%,
    transparent 100%
  );
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.results-section__header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.results-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--cream);
}

.results-section__lead {
  margin: 0;
  max-width: 44rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.results-matrix {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
}

.results-matrix__head {
  display: none;
}

.results-matrix__row {
  padding: 1.35rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.results-matrix__row:last-child {
  border-bottom: none;
}

.results-matrix__cell p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.results-matrix__cell--matter p {
  color: var(--cream);
}

.results-matrix__cite {
  font-style: normal;
}

.results-matrix__cite a {
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
}

.results-matrix__cite a:hover {
  color: var(--gold);
}

.results-matrix__cite cite {
  font-style: normal;
}

.results-matrix__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.35rem;
}

@media (min-width: 900px) {
  .results-matrix__head {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem 1.25rem;
    padding: 0.85rem 1.25rem;
    background: var(--bg-elevated);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dim);
    border-bottom: 1px solid var(--border-subtle);
  }

  .results-matrix__row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem 1.25rem;
    align-items: start;
    padding: 1.35rem 1.25rem;
  }

  .results-matrix__label {
    display: none;
  }
}

.results-spotlights {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .results-spotlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.results-spotlight {
  padding: 1.65rem 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .results-spotlight {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.results-spotlight__tag {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
}

.results-spotlight__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
  line-height: 1.2;
}

.results-spotlight__title a {
  color: var(--cream);
  text-decoration: none;
}

.results-spotlight__title a:hover {
  color: var(--gold);
}

.results-spotlight__caption {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

.results-spotlight__outcome {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.results-spotlight__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.12rem;
}

.results-spotlight__link:hover {
  color: var(--cream);
  border-bottom-color: var(--gold);
}

.results-counsel-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .results-counsel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.results-counsel-card {
  padding: 1.5rem 1.45rem 1.55rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.results-counsel-card__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.results-counsel-card__name a {
  color: var(--cream);
  text-decoration: none;
}

.results-counsel-card__name a:hover {
  color: var(--gold);
}

.results-counsel-card__role {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.results-counsel-card__focus {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.results-counsel-card__arrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.results-counsel-card__arrow:hover {
  text-decoration: underline;
}

.results-footnote {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.results-footnote__inner {
  max-width: 44rem;
  padding: 2rem 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.results-footnote__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--cream);
}

.results-footnote__list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.results-footnote__list li {
  margin-bottom: 0.45rem;
}

.results-footnote__close {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.results-footnote__cta {
  margin: 0;
}

/* Media coverage newsroom layout */
.media-page .media-newsroom .section-head {
  margin-bottom: 2.25rem;
}

.media-feature {
  display: grid;
  gap: 1.15rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 1rem;
  margin-bottom: 1.35rem;
}

.media-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.media-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.35rem;
}

.media-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.media-feature__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  line-height: 1.15;
}

.media-feature__content p {
  margin: 0;
  color: var(--muted);
}

.media-feature__content .btn-primary {
  width: fit-content;
  margin-top: 0.4rem;
}

.media-embed-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.media-embed-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 1rem;
}

.media-embed-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.media-embed-card__video {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.media-embed-card__video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.media-columns {
  display: grid;
  gap: 1rem;
}

.media-column {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 1rem;
}

.media-column__head h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.media-column__head p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.media-card-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0.8rem;
}

.media-news-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--card-practice-bg);
  padding: 0.5rem;
  color: var(--cream);
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.media-news-card:hover {
  border-color: var(--card-practice-hover-border);
  transform: translateY(-2px);
}

.media-news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
}

.media-news-card span {
  font-size: 0.83rem;
  line-height: 1.4;
  font-weight: 600;
}

.media-page .media-column .notable-case-list li {
  padding: 0.65rem 0.75rem;
}

.media-page .media-column .notable-case-list__title {
  margin: 0;
  font-size: 0.84rem;
}

@media (min-width: 920px) {
  .media-feature {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: stretch;
    padding: 1.15rem;
  }

  .media-embed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Media hub page -- press room polish */
.media-hub-page .results-footnote {
  padding-bottom: 4.5rem;
}

.media-hub-masthead.results-masthead {
  position: relative;
  padding-bottom: 3rem;
}

.media-hub-masthead.results-masthead::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100% - 2rem, var(--max));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 105, 20, 0.35) 20%,
    rgba(139, 105, 20, 0.35) 80%,
    transparent
  );
}

html[data-theme="dark"] .media-hub-masthead.results-masthead::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35) 20%,
    rgba(212, 175, 55, 0.35) 80%,
    transparent
  );
}

.media-hub-masthead .results-masthead__primary {
  position: relative;
  padding-left: 1.35rem;
}

.media-hub-masthead .results-masthead__primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    var(--gold),
    rgba(139, 105, 20, 0.22)
  );
}

html[data-theme="dark"] .media-hub-masthead .results-masthead__primary::before {
  background: linear-gradient(
    180deg,
    var(--gold),
    rgba(212, 175, 55, 0.18)
  );
}

.media-hub-masthead .results-masthead__primary h1 {
  letter-spacing: -0.02em;
}

.media-hub-page .results-ribbon {
  background: linear-gradient(
    180deg,
    var(--lead-banner-shine) 0%,
    transparent 100%
  );
  border-top-color: transparent;
}

.media-hub-page .results-ribbon .container {
  padding-block: 1rem 1.15rem;
}

.media-hub-nav.results-nav-strip {
  gap: 0.6rem 0.65rem;
  padding: 1.35rem 0 1.5rem;
  border-bottom: none;
}

.media-hub-nav .results-nav-strip__link {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .media-hub-nav .results-nav-strip__link {
  box-shadow: none;
}

.media-hub-nav .results-nav-strip__link:hover {
  border-color: rgba(139, 105, 20, 0.42);
  color: var(--gold);
  background: var(--ghost-hover-bg);
}

html[data-theme="dark"] .media-hub-nav .results-nav-strip__link:hover {
  border-color: rgba(212, 175, 55, 0.38);
}

.media-hub-section-spotlights.results-section--band {
  background: linear-gradient(
    180deg,
    rgba(139, 105, 20, 0.055) 0%,
    transparent 42%
  );
}

html[data-theme="dark"] .media-hub-section-spotlights.results-section--band {
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 45%
  );
}

.media-hub-section-head.results-section__header {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 2.25rem;
}

.media-hub-page .results-section__title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.media-hub-page .results-section__title::before {
  content: "";
  width: 4px;
  height: 1.05em;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    var(--gold),
    var(--gold-gradient-end)
  );
  flex-shrink: 0;
}

.media-hub-page .results-section__lead {
  margin-left: calc(4px + 0.85rem);
  max-width: 38rem;
}

@media (max-width: 559px) {
  .media-hub-page .results-section__lead {
    margin-left: 0;
  }
}

.media-hub-spotlights {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.media-hub-feature {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid var(--border-subtle);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.08) 55%
    ),
    var(--bg-card);
  box-shadow:
    0 4px 24px rgba(22, 26, 34, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

html[data-theme="dark"] .media-hub-feature {
  background:
    linear-gradient(
      145deg,
      rgba(212, 175, 55, 0.06) 0%,
      rgba(18, 24, 32, 0.85) 40%
    ),
    var(--bg-card);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

@media (min-width: 880px) {
  .media-hub-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 3vw, 2.75rem);
    padding: 1.35rem 1.35rem 1.35rem 1.25rem;
  }
}

.media-hub-feature__media {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  outline: 1px solid var(--border-subtle);
  box-shadow: 0 18px 50px rgba(22, 26, 34, 0.14);
}

html[data-theme="dark"] .media-hub-feature__media {
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

.media-hub-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s var(--ease-out);
}

.media-hub-feature__media:hover img {
  transform: scale(1.06);
}

.media-hub-feature__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(10, 14, 20, 0.72) 100%
  );
  opacity: 0.85;
  transition: opacity 0.35s var(--ease-out);
}

.media-hub-feature__media:hover::before {
  opacity: 0.95;
}

.media-hub-feature__play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: clamp(3.35rem, 9vw, 4.25rem);
  height: clamp(3.35rem, 9vw, 4.25rem);
  margin-left: calc(clamp(3.35rem, 9vw, 4.25rem) / -2);
  margin-top: calc(clamp(3.35rem, 9vw, 4.25rem) / -2);
  border-radius: 50%;
  background: rgba(10, 14, 20, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.media-hub-feature__play::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.52em 0 0.52em 0.9em;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.media-hub-feature__media:hover .media-hub-feature__play {
  transform: scale(1.06);
  background: rgba(139, 105, 20, 0.58);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 36px rgba(139, 105, 20, 0.35);
}

html[data-theme="dark"] .media-hub-feature__media:hover .media-hub-feature__play {
  background: rgba(212, 175, 55, 0.42);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.22);
}

.media-hub-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.15rem 0.25rem 0.35rem;
}

.media-hub-feature__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
}

.media-hub-feature__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.media-hub-feature__title a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.media-hub-feature__title a:hover {
  color: var(--gold);
}

.media-hub-feature__meta {
  margin: 0;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--muted);
}

.media-hub-feature__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 38rem;
}

.media-hub-feature__cta {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-hub-feature__cta:hover {
  color: var(--cream);
}

.media-hub-feature__cta-arrow {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  position: relative;
  opacity: 0.85;
}

.media-hub-feature__cta-arrow::after {
  content: "";
  position: absolute;
  left: 44%;
  top: 50%;
  translate: -50% -50%;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.media-hub-section-broadcast {
  padding-top: 3.25rem;
}

.media-hub-video-grid {
  display: grid;
  gap: clamp(1.15rem, 2vw, 1.45rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .media-hub-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .media-hub-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.media-hub-video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
  color: var(--cream);
  text-decoration: none;
  transition:
    border-color 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
  box-shadow: 0 10px 32px rgba(22, 26, 34, 0.06);
}

html[data-theme="dark"] .media-hub-video-card {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.media-hub-video-card:hover {
  border-color: rgba(139, 105, 20, 0.42);
  box-shadow:
    0 18px 48px rgba(22, 26, 34, 0.11),
    0 0 0 1px rgba(139, 105, 20, 0.08);
  transform: translateY(-5px);
}

html[data-theme="dark"] .media-hub-video-card:hover {
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(212, 175, 55, 0.08);
}

.media-hub-video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  isolation: isolate;
}

.media-hub-video-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(10, 14, 20, 0.48) 100%
  );
  opacity: 0.65;
  transition: opacity 0.28s var(--ease-out);
}

.media-hub-video-card:hover .media-hub-video-card__thumb::before {
  opacity: 0.88;
}

.media-hub-video-card__thumb::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 2.65rem;
  height: 2.65rem;
  margin-left: -1.325rem;
  margin-top: -1.325rem;
  border-radius: 50%;
  background-color: rgba(10, 14, 20, 0.42);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-position: 54% center;
  background-size: 42%;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(5px);
  opacity: 0.78;
  transition:
    opacity 0.28s var(--ease-out),
    transform 0.28s var(--ease-out),
    background-color 0.28s var(--ease-out);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.media-hub-video-card:hover .media-hub-video-card__thumb::after {
  opacity: 1;
  transform: scale(1.08);
  background-color: rgba(139, 105, 20, 0.62);
}

html[data-theme="dark"] .media-hub-video-card:hover .media-hub-video-card__thumb::after {
  background-color: rgba(212, 175, 55, 0.48);
}

.media-hub-video-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.media-hub-video-card:hover .media-hub-video-card__thumb img {
  transform: scale(1.05);
}

.media-hub-video-card__thumb--nbc {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      ellipse 120% 80% at 50% 120%,
      rgba(139, 105, 20, 0.22),
      transparent 55%
    ),
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.06),
      transparent 42%
    ),
    linear-gradient(
      155deg,
      var(--bg-elevated) 0%,
      var(--bg-card) 50%,
      var(--bg-elevated) 100%
    );
}

.media-hub-video-card__thumb--nbc::before {
  opacity: 0.35;
}

.media-hub-video-card__thumb--nbc::after {
  opacity: 0.95;
  background-color: rgba(10, 14, 20, 0.38);
}

.media-hub-video-card:hover .media-hub-video-card__thumb--nbc::after {
  background-color: rgba(139, 105, 20, 0.55);
}

.media-hub-video-card__placeholder-label {
  position: relative;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 18px rgba(139, 105, 20, 0.35);
}

.media-hub-video-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(
    180deg,
    rgba(139, 105, 20, 0.03),
    transparent 65%
  );
}

html[data-theme="dark"] .media-hub-video-card__body {
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.05),
    transparent 70%
  );
}

.media-hub-video-card__tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.media-hub-video-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.1vw, 1.28rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--cream);
}

.media-hub-video-card:hover .media-hub-video-card__title {
  color: var(--gold);
}

.media-hub-video-card__meta {
  margin: 0;
  margin-top: auto;
  padding-top: 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px dashed rgba(74, 60, 28, 0.14);
}

html[data-theme="dark"] .media-hub-video-card__meta {
  border-top-color: rgba(212, 175, 55, 0.12);
}

.media-hub-matrix.results-matrix {
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow:
    0 18px 52px rgba(22, 26, 34, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

html[data-theme="dark"] .media-hub-matrix.results-matrix {
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.media-hub-matrix .results-matrix__row {
  transition: background 0.22s var(--ease-out);
}

.media-hub-matrix .results-matrix__row:hover {
  background: rgba(139, 105, 20, 0.045);
}

html[data-theme="dark"] .media-hub-matrix .results-matrix__row:hover {
  background: rgba(212, 175, 55, 0.06);
}

.media-hub-counsel-grid .media-hub-counsel-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(
      165deg,
      rgba(139, 105, 20, 0.06) 0%,
      transparent 55%
    ),
    var(--bg-card);
}

html[data-theme="dark"] .media-hub-counsel-grid .media-hub-counsel-card {
  background:
    linear-gradient(
      165deg,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 55%
    ),
    var(--bg-card);
}

.media-hub-counsel-grid .media-hub-counsel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    transparent 72%
  );
  opacity: 0.85;
}

.media-hub-section-counsel {
  padding-bottom: 3rem;
}

@media (min-width: 1100px) {
  .services-split__layout {
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    align-items: start;
    column-gap: 2.25rem;
  }

  .services-split__panel .grid-practice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-split__divider {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--border-subtle), transparent);
  }
}

/* Results */
.grid-results {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card-result {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--result-card-shine), transparent);
  border: 1px solid var(--border-subtle);
}

.card-result .tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card-result h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.card-result .case-name {
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-result .outcome {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

/* Media & notable victories */
.section-head--wide {
  max-width: 48rem;
}

.section-head--wide p {
  text-align: center;
}

.media-strip {
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.media-strip__label {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dim);
}

.media-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--cream);
}

.media-victories-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 1.75rem;
  color: var(--cream);
}

.media-victories-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3.5rem;
}

@media (min-width: 700px) {
  .media-victories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-media-victory {
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--result-card-shine), transparent 55%);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.card-media-victory:hover {
  border-color: var(--card-practice-hover-border);
  transform: translateY(-3px);
}

.card-media-victory__label {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.card-media-victory__headline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: var(--cream);
}

.card-media-victory__headline a {
  color: inherit;
}

.card-media-victory__headline a:hover {
  color: var(--gold);
}

.card-media-victory__case {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.card-media-victory__outcome {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold);
}

.media-more {
  max-width: 52rem;
  margin-inline: auto;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.media-more__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
  text-align: center;
  color: var(--cream);
}

.media-more__intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
  line-height: 1.55;
}

.media-more__list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.media-more__list li {
  margin-bottom: 1.25rem;
}

.media-more__list li:last-child {
  margin-bottom: 0;
}

.media-more__list strong {
  color: var(--cream);
  font-weight: 600;
}

.media-more__result {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.media-more__cta {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.disclaimer-small {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2rem;
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

/* How it works */
.steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Expert Team & Resources */
.section--experts .section-head--wide {
  max-width: 50rem;
}

.section--experts-grid .card-practice h3 {
  margin-bottom: 0.6rem;
}

/* Testimonials */
.grid-testimonials {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.quote-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--quote-bg);
}

.quote-card blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}

.quote-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-dim);
}

/* Attorney biography pages -- editorial layout */
.attorney-bio-page .bio-hero {
  position: relative;
  padding: 5.75rem 0 2.5rem;
  overflow: hidden;
}

@media (min-width: 900px) {
  .attorney-bio-page .bio-hero {
    padding: 6rem 0 3.25rem;
  }
}

.attorney-bio-page .bio-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dim),
    transparent
  );
  opacity: 0.45;
  pointer-events: none;
}

.bio-breadcrumb {
  font-size: 0.82rem;
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.bio-breadcrumb a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.bio-breadcrumb a:hover {
  text-decoration: underline;
}

.bio-breadcrumb span[aria-hidden="true"] {
  margin-inline: 0.35rem;
  opacity: 0.45;
}

.bio-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .bio-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 3rem 2.5rem;
  }
}

.bio-hero__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-hero__intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.85rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.bio-hero__tagline {
  margin: 0 0 1.35rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 36rem;
}

.bio-hero__meta {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.bio-hero__meta li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] .bio-hero__meta li {
  background: rgba(255, 255, 255, 0.65);
}

.bio-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.bio-hero__portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 400px);
}

@media (min-width: 900px) {
  .bio-hero__portrait {
    justify-self: end;
    width: 100%;
    max-width: 420px;
  }
}

.bio-hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 5px;
  background: linear-gradient(
    145deg,
    var(--gold) 0%,
    var(--gold-dim) 38%,
    rgba(212, 175, 55, 0.22) 65%,
    var(--border-subtle) 100%
  );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

html[data-theme="dark"] .bio-hero__frame {
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.bio-hero__frame-inner {
  border-radius: calc(var(--radius-lg) - 5px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--bg-deep);
}

html[data-theme="light"] .bio-hero__frame-inner {
  border-color: rgba(74, 60, 28, 0.12);
}

.bio-hero__frame-inner img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.bio-hero__initials {
  position: absolute;
  bottom: -0.35rem;
  right: -0.35rem;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-gold);
  background: linear-gradient(145deg, var(--gold), var(--gold-gradient-end));
  border: 3px solid var(--bg-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.bio-shell {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.bio-shell__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .bio-shell__grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 3rem 2.5rem;
  }
}

.bio-main {
  min-width: 0;
}

.bio-aside {
  position: relative;
}

@media (min-width: 1024px) {
  .bio-aside {
    position: sticky;
    top: 5.25rem;
  }
}

.bio-vcard {
  padding: 1.5rem 1.35rem 1.55rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
    165deg,
    var(--bg-card) 0%,
    var(--bg-elevated) 100%
  );
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] .bio-vcard {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.bio-vcard__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
}

.bio-vcard__role {
  margin: -0.65rem 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-vcard__dl {
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.bio-vcard__dl > div {
  margin: 0;
}

.bio-vcard__dl dt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.2rem;
}

.bio-vcard__dl dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bio-vcard__dl a {
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
}

.bio-vcard__dl a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.bio-vcard__toc {
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border-subtle);
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.bio-vcard__toc a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.bio-vcard__toc a:hover {
  color: var(--gold);
}

.bio-vcard__btn {
  margin-top: 1rem;
}

.bio-vcard__btn .btn-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.bio-block {
  margin-bottom: 3rem;
}

.bio-block:last-child {
  margin-bottom: 0;
}

.bio-block__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.bio-block__index {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(212, 175, 55, 0.35);
}

html[data-theme="light"] .bio-block__index {
  color: rgba(139, 105, 20, 0.35);
}

.bio-block__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--cream);
}

.bio-block__prose {
  max-width: 44rem;
}

.bio-block__prose p {
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.bio-block__prose p:last-child {
  margin-bottom: 0;
}

.bio-lede {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 1.35rem;
}

.bio-pullquote {
  margin: 2rem 0 2rem;
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(
    90deg,
    var(--mesh-1),
    transparent 55%
  );
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 2rem 0 2.25rem;
  max-width: 44rem;
}

@media (min-width: 560px) {
  .bio-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.bio-stat {
  text-align: center;
  padding: 1rem 0.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.bio-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.bio-stat span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.bio-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.bio-pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--muted);
  background: var(--bg-elevated);
}

.bio-subsection {
  margin-bottom: 2rem;
}

.bio-subsection:last-child {
  margin-bottom: 0;
}

.bio-subsection h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
}

.bio-subsection p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.bio-subsection p:last-child {
  margin-bottom: 0;
}

.bio-subsection cite {
  font-style: normal;
}

.bio-media-grid {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
}

.bio-media-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s var(--ease-out),
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.bio-media-link:hover {
  border-color: var(--card-practice-hover-border);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] .bio-media-link:hover {
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
}

.bio-media-link span {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
}

.bio-media-link svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.55;
  color: var(--gold);
}

.bio-media-link:hover svg {
  opacity: 1;
}

.bio-media-item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border-subtle);
  background: var(--bg-elevated);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.bio-membership {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.92rem;
  color: var(--muted);
}

.bio-membership strong {
  color: var(--cream);
}

.bio-highlight-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .bio-highlight-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bio-highlight-card {
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.bio-highlight-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
}

.bio-highlight-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.bio-highlight-card a {
  color: var(--gold);
  font-weight: 600;
}

.bio-intro-line {
  margin: 0 0 1.25rem;
  max-width: 44rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Team */
.team-block {
  display: grid;
  gap: 2rem;
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .team-block {
    grid-template-columns: 1fr 1.2fr;
  }
}

.team-highlight {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.team-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.team-highlight .role {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-highlight p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.team-highlight p:last-child {
  margin-bottom: 0;
}

/* FAQ */
.faq-list details {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Attorney profiles */
.attorney-profile {
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.attorney-profile__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.attorney-profile__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--cream);
}

.attorney-profile__role {
  margin: 0;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.attorney-profile__contact {
  font-style: normal;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  min-width: min(100%, 18rem);
}

.attorney-profile__contact p {
  margin: 0 0 0.4rem;
}

.attorney-profile__contact p:last-child {
  margin-bottom: 0;
}

.attorney-profile__portrait {
  width: clamp(160px, 24vw, 210px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  flex: 0 0 auto;
}

.attorney-profile__sep {
  opacity: 0.45;
  padding: 0 0.15rem;
}

.attorney-profile__layout {
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

@media (min-width: 960px) {
  .attorney-profile__layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, 1fr);
    align-items: start;
  }
}

.attorney-profile__main {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.attorney-profile__main p {
  margin: 0 0 1.15rem;
}

.attorney-profile__main p:last-child {
  margin-bottom: 0;
}

.attorney-profile__main strong {
  color: var(--cream);
  font-weight: 600;
}

.attorney-profile__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.attorney-sidebar-block {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--card-practice-bg);
}

.attorney-sidebar-block__title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.attorney-sidebar-block__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.attorney-sidebar-block__list--plain {
  list-style: none;
  padding-left: 0;
}

.attorney-sidebar-block__list li {
  margin-bottom: 0.35rem;
}

.attorney-sidebar-block__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.attorney-cases {
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.attorney-cases__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--cream);
}

.attorney-cases__note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.attorney-cases__scroll {
  max-height: 22rem;
  overflow-y: auto;
  padding: 0.5rem 1rem 0.5rem 0;
  margin-right: -0.5rem;
  scrollbar-gutter: stable;
}

.attorney-cases__scroll::-webkit-scrollbar {
  width: 6px;
}

.attorney-cases__scroll::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 999px;
}

.attorney-cases__list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.attorney-cases__list li {
  margin-bottom: 0.45rem;
}

.attorney-cases__list cite {
  font-style: normal;
  font-weight: 600;
  color: var(--cream);
}

.attorney-profile__external {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--muted);
}

.attorney-profile__placeholder {
  margin-top: 1rem;
}

.attorney-profile__placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

/* Attorney directory cards -> modal */
.attorney-cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 32rem;
  margin-inline: auto;
  justify-items: center;
}

.attorney-card {
  width: 100%;
  max-width: 420px;
  display: flex;
}

@media (min-width: 640px) {
  .attorney-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
    max-width: none;
    justify-content: center;
  }
}

.attorney-card__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 2rem 2rem 1.75rem;
  font-family: var(--font-ui);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  color: inherit;
  transition:
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.attorney-card__btn--placeholder {
  cursor: default;
  opacity: 0.88;
}

.attorney-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}

.attorney-card__btn:hover {
  border-color: var(--card-practice-hover-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

html[data-theme="dark"] .attorney-card__btn:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.attorney-card__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.attorney-card__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 0.35rem;
}

.attorney-card__role {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.attorney-card__meta {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.attorney-card__teaser {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.attorney-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.1rem;
}

/* Attorneys roster -- full-width panels */
.attorneys-roster {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.attorneys-roster__header {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 720px) {
  .attorneys-roster__header {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    align-items: end;
    gap: 2rem;
  }
}

.attorneys-roster__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 500;
  margin: 0;
  color: var(--cream);
}

.attorneys-roster__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 40rem;
}

.attorneys-roster__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .attorneys-roster__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.attorneys-panel {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

@media (min-width: 900px) {
  .attorneys-roster .attorneys-panel {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
}

html[data-theme="dark"] .attorneys-panel {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

.attorneys-panel:hover {
  border-color: var(--card-practice-hover-border);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .attorneys-panel:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
}

.attorneys-panel__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

@media (min-width: 768px) {
  .attorneys-panel__link {
    grid-template-columns: minmax(200px, 38%) minmax(0, 1fr);
    align-items: start;
  }
}

@media (min-width: 900px) {
  .attorneys-roster .attorneys-panel__link {
    flex: 1;
    align-items: stretch;
    min-height: 100%;
  }
}

.attorneys-panel__visual {
  position: relative;
  min-height: 220px;
  background: var(--bg-elevated);
}

@media (min-width: 768px) {
  .attorneys-panel__visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    align-self: start;
  }
}

@media (min-width: 900px) {
  .attorneys-roster .attorneys-panel__visual {
    aspect-ratio: unset;
    align-self: stretch;
    height: 100%;
    min-height: 280px;
  }
}

.attorneys-panel__visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-subtle);
  opacity: 0.9;
}

.attorneys-panel__visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 768px) {
  .attorneys-panel__visual img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
}

@media (min-width: 900px) {
  .attorneys-roster .attorneys-panel__visual img {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .attorneys-panel__visual::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.attorneys-panel__body {
  padding: 1.75rem 1.85rem 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.attorneys-panel__role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.attorneys-panel__name {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--cream);
  line-height: 1.15;
}

.attorneys-panel__meta {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.attorneys-panel__teaser {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.attorneys-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
}

.attorneys-panel__cta svg {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out);
}

.attorneys-panel__link:hover .attorneys-panel__cta svg {
  transform: translateX(4px);
}

.attorneys-panel__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Attorneys -- associate placeholders */
.attorneys-associates {
  padding-top: 2.25rem;
  padding-bottom: 0.5rem;
}

.attorneys-associates__header {
  margin-bottom: 1.75rem;
}

.attorneys-associates__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.1rem);
  font-weight: 500;
  margin: 0 0 0.65rem;
  color: var(--cream);
}

.attorneys-associates__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.attorneys-associates__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .attorneys-associates__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .attorneys-associates__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.attorneys-associate-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.attorneys-associate-card--placeholder {
  border-style: dashed;
  border-color: rgba(139, 105, 20, 0.35);
}

html[data-theme="dark"] .attorneys-associate-card--placeholder {
  border-color: rgba(212, 175, 55, 0.28);
}

.attorneys-associate-card__avatar {
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.attorneys-associate-card__body {
  min-width: 0;
}

.attorneys-associate-card__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.attorneys-associate-card__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--cream);
  line-height: 1.2;
}

.attorneys-associate-card__focus {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.attorneys-associate-card__note {
  margin: 0;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  opacity: 0.92;
}

/* Attorneys bottom band */
.attorneys-bottom {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.attorneys-bottom__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .attorneys-bottom__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 2rem;
    align-items: stretch;
  }
}

.attorneys-bottom__primary {
  padding: 2rem 2rem 2.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
    145deg,
    var(--bg-card) 0%,
    var(--bg-elevated) 100%
  );
}

.attorneys-bottom__primary h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  font-weight: 500;
  margin: 0 0 0.85rem;
  color: var(--cream);
}

.attorneys-bottom__primary p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
  max-width: 44rem;
}

.attorneys-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.attorneys-bottom__aside {
  padding: 1.65rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.attorneys-bottom__aside-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--cream);
}

.attorneys-bottom__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.attorneys-bottom__links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  transition:
    color 0.2s,
    border-color 0.2s,
    padding-left 0.2s var(--ease-out);
}

.attorneys-bottom__links li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}

.attorneys-bottom__links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
  padding-left: 0.25rem;
}

/* Native dialog */
.attorney-dialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 1rem;
  border: none;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.attorney-dialog:not([open]) {
  display: none;
}

.attorney-dialog[open] {
  display: flex;
}

.attorney-dialog::backdrop {
  background: rgba(10, 14, 20, 0.65);
  backdrop-filter: blur(6px);
}

.attorney-dialog__shell {
  position: relative;
  isolation: isolate;
  width: min(1120px, 100%);
  max-height: calc(100vh - 2rem);
  margin-block: auto;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-deep);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.attorney-dialog__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 30;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: border-color 0.2s, background 0.2s;
}

.attorney-dialog__close:hover {
  border-color: var(--gold);
}

.attorney-dialog__body {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
  padding: 2.5rem 1rem 2rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .attorney-dialog__body {
    padding: 3rem 1.5rem 2.5rem;
  }
}

.attorney-dialog__container {
  padding-bottom: 1rem;
}

.attorney-profile--modal {
  margin-bottom: 0;
}

.attorney-profile--modal .attorney-profile__intro {
  margin-top: 0.5rem;
}

.attorney-profile--modal .attorney-profile__external {
  margin-top: 1.75rem;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 3rem;
}

.site-footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--cream);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-link i {
  width: 1.35rem;
  text-align: center;
  font-size: 1.25rem;
  color: var(--gold);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover i {
  color: var(--cream);
  transform: scale(1.06);
}

.footer-social-link span {
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom p {
  margin: 0.5rem 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
