:root {
  --bg: #0d1117;
  --bg-2: #0a0e14;
  --panel: #111821;
  --panel-2: #161f2a;
  --ivory: #f3efe5;
  --paper: #f7f3eb;
  --muted: rgba(231, 227, 216, 0.68);
  --muted-dark: #697386;
  --ink: #111827;
  --line: rgba(255, 255, 255, 0.09);
  --line-dark: rgba(15, 23, 42, 0.12);
  --copper: #c98c4a;
  --copper-2: #e7b46a;
  --verdigris: #7bb9ad;
  --shadow: 0 32px 90px rgba(5, 9, 14, 0.34);
  --max: 1240px;
  --radius: 3px;
}

.fpi-embedded-site {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
  background: var(--bg);
  color: var(--ivory);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ivory);
  background: var(--bg);
  letter-spacing: 0;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.78; }
h1, h2, h3 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.01em; }
h1 { font-size: clamp(54px, 7.4vw, 108px); max-width: 860px; }
h2 { font-size: clamp(34px, 4.6vw, 62px); }
h3 { font-size: 22px; letter-spacing: -0.01em; }
.hero-subhead {
  margin-top: 12px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 850;
  color: rgba(243, 239, 229, 0.92);
  background: linear-gradient(105deg, #ffffff 0%, #f3efe5 30%, #0d1117 50%, #ffffff 72%, #f3efe5 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-subhead-gradient 5.8s ease-in-out infinite;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, .42));
  letter-spacing: -0.01em;
}

@keyframes hero-subhead-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-subhead {
    animation: none;
    background-position: 50% 50%;
  }
}

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow,
.small-label {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.topline {
  border-bottom: 1px solid var(--line);
  background: #090d12;
  color: rgba(231, 227, 216, 0.5);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.topline-inner {
  width: min(var(--max), calc(100% - 40px));
  height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topline-inner span:first-child { color: var(--copper); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(13, 17, 23, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) max-content;
  gap: 14px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: var(--cream);
}
.brand img {
  width: 64px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.brand-name {
  display: block;
  max-width: 172px;
  color: var(--cream);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.nav-links {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}
.nav-links > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 8px;
  color: rgba(231, 227, 216, 0.66);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}
.nav-trigger { background: transparent; }
.nav-links > a:hover,
.nav-links > a.active,
.nav-trigger:hover,
.nav-trigger.active { color: var(--ivory); background: rgba(255,255,255,.035); }
.nav-drop { position: relative; }
.nav-trigger span { color: var(--copper); font-size: 13px; }
.drop-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 330px;
  padding: 10px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  border: 1px solid var(--line);
  background: rgba(10, 14, 20, 0.98);
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop-panel a {
  display: block;
  padding: 12px 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(231, 227, 216, 0.72);
  font-size: 13px;
  transition: color 160ms ease, background 160ms ease, padding-left 160ms ease;
}
.drop-panel a:last-child { border-bottom: 0; }
.drop-panel a:hover {
  color: var(--ivory);
  background: rgba(201, 140, 74, .1);
  padding-left: 18px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.phone {
  color: var(--ivory);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(243, 239, 229, .16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  color: var(--ivory);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn-copper {
  background: linear-gradient(135deg, var(--copper), var(--copper-2));
  color: #0d1117;
  box-shadow: 0 18px 44px rgba(201, 140, 74, .18);
}
.btn-ghost {
  border: 1px solid rgba(243, 239, 229, .2);
  color: rgba(243, 239, 229, .86);
  background: rgba(255,255,255,.02);
}
.btn:hover { transform: translateY(-2px); }
.mobile-call { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,17,23,.93), rgba(13,17,23,.72) 46%, rgba(13,17,23,.18)),
    linear-gradient(180deg, rgba(13,17,23,0), rgba(13,17,23,.92)),
    url("assets/web/hero-noir.webp") center / cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(330px, .42fr);
  gap: 70px;
  align-items: center;
}
.hero-copy-block { min-width: 0; }
.hero h1 {
  margin-top: 24px;
  color: var(--ivory);
}
.hero h1::first-line { color: var(--ivory); }
.hero-copy {
  margin-top: 28px;
  max-width: 690px;
  color: rgba(231,227,216,.74);
  font-size: 17px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.firm-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 33, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.hero-side-logo {
  width: min(100%, 210px);
  max-height: 240px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, .45));
}
.firm-card ul { margin: 22px 0 0; padding: 0; list-style: none; }
.firm-card li {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.firm-card li:last-child { border-bottom: 0; }
.firm-card span {
  color: rgba(231,227,216,.45);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.firm-card b {
  max-width: 220px;
  color: var(--ivory);
  font-size: 13.5px;
  text-align: right;
}

.hero-intake-card {
  padding: 28px;
  border: 1px solid rgba(231, 227, 216, .14);
  background: rgba(17, 24, 33, .84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-intake-card h2 {
  margin-top: 18px;
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.12;
}

.hero-intake-card p {
  margin: 14px 0 18px;
  color: rgba(231, 227, 216, .7);
  font-size: 14px;
  line-height: 1.65;
}

.hero-intake-card form {
  display: grid;
  gap: 12px;
}

.hero-intake-card textarea {
  min-height: 92px;
}

.hero-intake-card .btn {
  width: 100%;
}

.hero-intake-card small {
  color: rgba(231, 227, 216, .58);
  font-size: 11px;
  font-weight: 800;
}

.form-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.form-trust-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(198, 121, 76, .16);
  color: var(--copper-2);
  font-size: 10px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.practice-strip { background: var(--bg); border-bottom: 1px solid var(--line); }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
.practice-grid article {
  min-height: 190px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}
.practice-grid article:hover { background: rgba(255,255,255,.035); }
.practice-grid span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}
.practice-grid h3 { margin-top: 20px; color: var(--ivory); }
.practice-grid p { margin-top: 10px; font-size: 13.5px; }

.section { padding: 94px 0; }
.section.pale { background: var(--paper); color: var(--ink); }
.section.pale p { color: var(--muted-dark); }
.split-head,
.mandate-head {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(320px, .56fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.services-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.ledger-card {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.ledger-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,140,74,.45);
  background: #141d27;
}
.ledger-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: grayscale(.18) contrast(1.02);
}
.ledger-card span,
.card-index {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}
.ledger-card h3 { color: var(--ivory); }
.ledger-card p { margin-top: 12px; font-size: 14.5px; }

.dark-ledger { background: var(--bg-2); border-block: 1px solid var(--line); }
.table-wrap { border: 1px solid var(--line); overflow-x: auto; }
.mandate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.mandate-table th,
.mandate-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: left;
  font-size: 14px;
}
.mandate-table th {
  color: rgba(231,227,216,.45);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
}
.mandate-table td:first-child {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}
.mandate-table tr:hover td { background: rgba(255,255,255,.025); }

.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(360px, .46fr);
  gap: 64px;
  align-items: start;
}
.partner-layout p { margin-top: 22px; }
.portrait-card {
  position: sticky;
  top: 118px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.portrait-card img { height: 330px; width: 100%; object-fit: cover; }
.portrait-card div { padding: 26px; }
.portrait-card span,
.case-card span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.portrait-card h3 { margin-top: 12px; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.case-card {
  padding: 32px;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: 0 24px 60px rgba(13, 17, 23, .08);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(13, 17, 23, .12);
}
.case-card h3 { margin-top: 16px; }
.case-card p { margin-top: 16px; font-size: 15px; }

.decision-guide {
  display: grid;
  grid-template-columns: minmax(0, .45fr) minmax(0, .9fr);
  gap: 56px;
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.guide-copy {
  columns: 2;
  column-gap: 38px;
}
.guide-copy p { margin-bottom: 18px; font-size: 14.5px; }

.faq-section { background: #101721; border-block: 1px solid var(--line); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, .95fr);
  gap: 50px;
}
.faq-grid > div:first-child p { margin-top: 20px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button {
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
}
.faq-button span { color: var(--copper); }
.faq-answer { display: none; padding-bottom: 22px; }
.faq-item.open .faq-answer { display: block; }

.intake-band {
  background:
    linear-gradient(90deg, rgba(13,17,23,.92), rgba(13,17,23,.76)),
    url("assets/web/fremont-east-bay-aerial.webp") center / cover no-repeat;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(340px, .52fr);
  gap: 28px;
}
.contact-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(13,17,23,.86);
  box-shadow: var(--shadow);
}
.contact-card h2 { margin-top: 14px; }
.contact-card p { margin: 18px 0 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: grid;
  gap: 8px;
  color: rgba(231,227,216,.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  color: var(--ivory);
  padding: 12px 13px;
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
option { color: var(--ink); }
.full { grid-column: 1 / -1; }
.map-card {
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(17,24,33,.72);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.map-card h2 { margin-top: 14px; }
.map-card p { margin-top: 18px; }

.page-hero {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(13,17,23,.96), rgba(13,17,23,.75)),
    url("assets/web/hero-noir.webp") center / cover no-repeat;
}
.page-hero h1 { margin-top: 18px; }
.page-hero p { max-width: 780px; margin-top: 22px; font-size: 17px; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(330px, .42fr);
  gap: 42px;
}
.content-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.content-card + .content-card { margin-top: 18px; }
.content-card p { margin-top: 14px; }
.list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.6;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--copper);
}
.side-card {
  position: sticky;
  top: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.side-card img { height: 245px; width: 100%; object-fit: cover; margin-bottom: 20px; }
.side-card p { margin: 14px 0 20px; }

.footer {
  padding: 58px 0 26px;
  background: #080c11;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .82fr .82fr .82fr;
  gap: 36px;
}
.footer img {
  width: 150px;
  max-height: 190px;
  object-fit: contain;
  margin-bottom: 18px;
}
.footer h3 {
  color: var(--copper);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer a,
.footer span,
.footer p { color: rgba(231,227,216,.62); font-size: 13px; }
.footer-links { display: grid; gap: 10px; }
.footer a:hover { color: var(--ivory); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(231,227,216,.36);
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: reveal 720ms ease forwards;
}
.delay-1 { animation-delay: 160ms; }
@keyframes reveal {
  from { opacity: .72; transform: translateY(12px); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 1080px) {
  .nav-inner { grid-template-columns: 220px 1fr; }
  .nav-actions { grid-column: 2; justify-self: end; }
  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .hero-inner,
  .split-head,
  .mandate-head,
  .partner-layout,
  .decision-guide,
  .faq-grid,
  .contact-grid,
  .content-grid { grid-template-columns: 1fr; }
  .services-ledger,
  .case-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portrait-card,
  .side-card { position: static; }
}

@media (max-width: 1240px) {
  .nav-inner { grid-template-columns: minmax(230px, 260px) minmax(0, 1fr) max-content; gap: 10px; }
  .brand img { width: 56px; max-height: 64px; }
  .brand-name { max-width: 154px; font-size: 14px; }
  .nav-links > a,
  .nav-trigger { padding: 0 7px; font-size: 10px; letter-spacing: .14em; }
  .phone { display: none; }
}

@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .topline { display: none; }
  .site-nav { position: sticky; }
  .nav-inner {
    width: min(100% - 24px, var(--max));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 12px;
    min-height: auto;
    padding: 12px 0;
  }
  .brand img { width: 54px; max-height: 60px; }
  .brand-name { max-width: min(62vw, 230px); font-size: 14px; }
  .nav-toggle { display: inline-flex; justify-self: end; align-self: center; }
  .site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-actions .btn,
  .phone { display: none; }
  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid rgba(255,255,255,.08);
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }
  .site-nav.nav-open .nav-links {
    max-height: 76vh;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    padding-top: 10px;
  }
  .nav-links > a,
  .nav-trigger {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-align: left;
  }
  .nav-drop { width: 100%; }
  .drop-panel {
    position: static;
    left: auto;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 14px;
    transform: none;
    opacity: 0;
    visibility: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: max-height 200ms ease, opacity 160ms ease, visibility 160ms ease;
  }
  .nav-drop:hover .drop-panel,
  .nav-drop:focus-within .drop-panel {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
  }
  .nav-drop.open .drop-panel {
    max-height: 560px;
    opacity: 1;
    visibility: visible;
  }
  .nav-drop.open .nav-trigger span { transform: rotate(45deg); }
  .drop-panel a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,.055);
    background: transparent;
  }
  .drop-panel a:hover { padding-left: 4px; }
  .mobile-call {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--copper), var(--copper-2));
    color: #0d1117;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 20px 50px rgba(0,0,0,.32);
  }
  .hero { min-height: auto; }
  .hero-inner { width: min(100% - 28px, var(--max)); padding: 54px 0 64px; gap: 34px; overflow: hidden; }
  h1 { font-size: 38px; line-height: 1.08; overflow-wrap: anywhere; }
  .hero-subhead { font-size: 21px; line-height: 1.18; }
  .hero-copy { margin-top: 22px; font-size: 15.5px; line-height: 1.62; }
  .hero-actions { margin-top: 24px; }
  .hero-intake-card { padding: 22px; }
  .hero-intake-card h2 { font-size: 24px; }
  .firm-card li { display: block; }
  .firm-card b { display: block; max-width: none; margin-top: 8px; text-align: left; }
  h2 { font-size: 34px; }
  .practice-grid,
  .services-ledger,
  .case-grid,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .ledger-card { grid-template-columns: 1fr; }
  .guide-copy { columns: 1; }
  .decision-guide,
  .contact-card,
  .case-card { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}
