:root {
  --ink: #111111;
  --ink-soft: #191919;
  --paper: #f5f3ee;
  --white: #ffffff;
  --gold: #aa8c52;
  --gold-light: #d2bd8c;
  --line: rgba(170, 140, 82, 0.42);
  --muted: #6c6a65;
  --content: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 18px; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; transform: translateY(-160%); background: var(--white); color: var(--ink); padding: 12px 18px; font-weight: 800; }
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: 0.84rem; line-height: 1.25; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow.dark { color: #725b30; }
.display { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.75rem); font-weight: 700; line-height: 0.93; letter-spacing: -0.055em; }
h1, h2, h3 { text-wrap: balance; }
h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.3rem, 4.8vw, 4.4rem); line-height: 1.03; letter-spacing: -0.04em; }
h3 { margin: 0; font-size: 1.22rem; line-height: 1.25; }
p { margin: 0 0 1.2em; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.55; color: #dedbd4; max-width: 760px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid var(--gold); background: var(--gold); color: var(--ink); font: 900 0.88rem/1 var(--sans); letter-spacing: 0.055em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--white); }
.btn.ghost:hover { background: var(--white); color: var(--ink); }

.topline { background: #000000; color: #d8d2c6; border-bottom: 1px solid #27231b; }
.topline .container { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 0.82rem; font-weight: 700; }
.topline a { color: var(--gold-light); text-decoration: none; }
.ticker { position: relative; overflow: hidden; width: 100%; }
.ticker-track { --ticker-distance: 50%; --ticker-duration: 72s; display: flex; width: max-content; animation: ticker-left var(--ticker-duration) linear infinite; transform: translate3d(0,0,0); will-change: transform; }
.ticker-group { display: flex; flex: none; align-items: center; white-space: nowrap; }
.ticker:hover .ticker-track, .ticker:focus-within .ticker-track { animation-play-state: paused; }
.ticker-text { padding: 0 22px; font-size: 16px; font-weight: 750; line-height: 1.35; }
.ticker-dot { color: #96783d; font-size: 20px; line-height: 1; }
.awards-ticker { min-height: 54px; display: flex; align-items: center; background: #ffffff; color: #181818; border-bottom: 1px solid #dedbd4; }
.media-ticker { min-height: 64px; display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; background: #000000; color: #ffffff; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.media-label { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding: 0 24px; background: #000000; color: #ffffff; border-right: 1px solid #4e4026; font-size: 16px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.ticker-window { min-width: 0; overflow: hidden; }
.media-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 30px; color: #f7f5f1; font-size: 16px; font-weight: 850; text-transform: uppercase; }
.media-item img { width: 30px; height: 30px; object-fit: contain; }
.ticker-reverse { --ticker-duration: 48s; animation-name: ticker-right; }
@keyframes ticker-left { to { transform: translate3d(calc(var(--ticker-distance) * -1),0,0); } }
@keyframes ticker-right { from { transform: translate3d(calc(var(--ticker-distance) * -1),0,0); } to { transform: translate3d(0,0,0); } }

.site-header { position: sticky; top: 0; z-index: 50; background: #000000; color: var(--white); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-shell { width: min(calc(100% - 48px), 1520px); min-height: 108px; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; max-width: 206px; }
.brand img { width: 100%; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.35vw, 24px); }
.desktop-nav a { position: relative; color: #f3f1ec; font-size: 0.8rem; font-weight: 850; letter-spacing: .025em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--gold); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.header-call { white-space: nowrap; }
.menu-toggle { display: none; width: 50px; height: 50px; align-items: center; justify-content: center; border: 1px solid var(--line); background: transparent; color: var(--white); font-size: 1.45rem; }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 690px; overflow: hidden; background: var(--ink); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #111 0%, rgba(17,17,17,.97) 42%, rgba(17,17,17,.2) 76%, rgba(17,17,17,.78) 100%); z-index: 1; }
.hero .container { position: relative; min-height: inherit; display: grid; grid-template-columns: minmax(0, .95fr) minmax(380px, .72fr); align-items: end; z-index: 2; }
.hero-copy { position: relative; z-index: 2; padding: 112px 0 96px; }
.hero-copy .display { max-width: 850px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-portrait { align-self: stretch; display: flex; align-items: flex-end; justify-content: center; }
.hero-portrait img { width: min(100%, 610px); max-height: 640px; object-fit: contain; object-position: bottom center; }
.hero-mark { position: absolute; right: -1vw; top: 24%; z-index: 0; font: 800 clamp(7rem, 18vw, 17rem)/.8 var(--serif); letter-spacing: -.08em; color: transparent; -webkit-text-stroke: 1px rgba(210,189,140,.23); }
.trust-strip { background: #0b0b0b; color: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .container { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.65fr); gap: clamp(34px, 5vw, 72px); align-items: stretch; padding-block: 46px; }
.trust-heading { padding-right: clamp(24px, 4vw, 54px); border-right: 1px solid var(--line); }
.trust-label { margin: 0 0 16px; color: var(--gold-light); font-size: .92rem; line-height: 1.35; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.trust-heading h2 { max-width: 390px; color: var(--white); font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.02; }
.trust-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #312b20; border-left: 1px solid #312b20; }
.trust-item { min-height: 102px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 20px 24px; border-right: 1px solid #312b20; border-bottom: 1px solid #312b20; }
.trust-item strong { color: #f8f6f1; font-size: 1.08rem; line-height: 1.25; letter-spacing: .01em; }
.trust-item span { color: #bcb7ad; font-size: .9rem; line-height: 1.35; }

.urgent-section { background: #ebe6dc; }
.decision-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: 48px; border-top: 1px solid #bdb4a2; border-left: 1px solid #bdb4a2; }
.decision-card { min-height: 280px; padding: 30px; border-right: 1px solid #bdb4a2; border-bottom: 1px solid #bdb4a2; background: rgba(255,255,255,.34); }
.decision-card > span { display: block; margin-bottom: 62px; color: #715a31; font-weight: 900; }
.decision-card h3 { font-family: var(--serif); font-size: 1.55rem; }
.decision-card p { margin: 16px 0 0; color: #4e4b45; font-size: 1rem; line-height: 1.55; }
.service-directory { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: clamp(42px,7vw,92px); align-items: start; margin-top: 72px; padding-top: 54px; border-top: 1px solid #d2ccbf; }
.service-directory h2 { font-size: clamp(2rem,3.6vw,3.25rem); }
.service-directory p { margin-top: 22px; color: #57534c; }
.service-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid #cfc8bb; }
.service-links a { min-height: 62px; display: flex; align-items: center; padding: 13px 18px; border-bottom: 1px solid #cfc8bb; color: #28251f; font-weight: 800; line-height: 1.3; text-decoration: none; }
.service-links a:nth-child(odd) { border-right: 1px solid #cfc8bb; }
.service-links a:hover { background: var(--ink); color: var(--white); }
.court-section { background: #d8c49a; }
.court-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.65fr); gap: clamp(48px,8vw,110px); align-items: start; }
.court-section .section-intro { margin-top: 28px; color: #3f392f; }
.court-links { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; }
.court-links a { color: #241d12; font-weight: 900; text-underline-offset: 5px; }
.case-prep-card { padding: 34px; background: #0d0d0d; color: var(--white); border-top: 5px solid #8f713a; }
.case-prep-card ul { margin: 0; padding-left: 1.2em; color: #d6d1c7; }
.case-prep-card li { margin: .75em 0; }
.results-section { background: #0d0d0d; color: var(--white); }
.results-section .section-intro { color: #cec9c0; }
.outcome-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 52px; border-top: 1px solid #4b402b; border-left: 1px solid #4b402b; }
.outcome-grid article { min-height: 245px; padding: 30px; border-right: 1px solid #4b402b; border-bottom: 1px solid #4b402b; }
.outcome-grid strong { color: var(--gold-light); font-size: .88rem; letter-spacing: .13em; text-transform: uppercase; }
.outcome-grid h3 { margin-top: 34px; font-family: var(--serif); font-size: 1.75rem; }
.outcome-grid p { margin: 16px 0 0; color: #c9c4bb; font-size: 1rem; }
.result-note { margin: 24px 0 0; color: #a9a49b; font-size: .95rem; }
.faq-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(48px,8vw,110px); align-items: start; }
.faq-layout > div:first-child { position: sticky; top: 132px; }
.faq-list { border-top: 1px solid #cbc4b6; }
.faq-list details { border-bottom: 1px solid #cbc4b6; }
.faq-list summary { cursor: pointer; list-style: none; padding: 24px 52px 24px 0; font-size: 1.12rem; font-weight: 850; line-height: 1.35; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 18px; color: #765e31; font: 400 1.8rem/1 var(--serif); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 52px 24px 0; color: #54514b; }
.service-area-band { background: #1a1814; color: var(--white); border-top: 1px solid var(--line); }
.service-area-layout { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 60px; align-items: center; }
.service-area-layout h2 { max-width: 850px; font-size: clamp(2.2rem,4.5vw,4rem); }
.service-area-layout p { max-width: 850px; margin-top: 24px; color: #cec9c0; }
.service-area-layout .text-link { text-align: left; }

.section { padding: 100px 0; }
.section.dark { background: var(--ink-soft); color: var(--white); }
.section.white { background: var(--white); }
.split { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.section-intro { max-width: 720px; color: #4e4d49; font-size: 1.08rem; }
.dark .section-intro { color: #cfcbc2; }
.rule-title { padding-top: 22px; border-top: 2px solid var(--gold); }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border: 1px solid #d6d0c3; }
.practice-card { min-height: 330px; padding: 34px; background: var(--white); text-decoration: none; border-right: 1px solid #d6d0c3; transition: background .2s ease, color .2s ease; }
.practice-card:last-child { border-right: 0; }
.practice-card:hover { background: var(--ink); color: var(--white); }
.practice-number { display: block; color: #7c6538; font-weight: 900; margin-bottom: 72px; }
.practice-card h3 { font-family: var(--serif); font-size: 2rem; }
.practice-card p { margin-top: 18px; font-size: 1rem; line-height: 1.55; }
.arrow { display: block; margin-top: 28px; color: var(--gold); font-weight: 900; }
.steps { margin: 46px 0 0; padding: 0; list-style: none; border-top: 1px solid #49443a; }
.steps li { display: grid; grid-template-columns: 64px 230px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid #49443a; align-items: start; }
.steps .num { color: var(--gold-light); font-weight: 900; }
.steps p { color: #cbc7bf; margin: 0; }
.attorney-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 50px; }
.attorney { background: var(--ink); color: var(--white); }
.attorney-media { aspect-ratio: 4/4.5; overflow: hidden; background: #ddd7cb; }
.attorney-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.88) contrast(1.02); }
.attorney-copy { padding: 30px; }
.attorney-copy p { color: #cec9c0; }
.attorney-copy a { color: var(--gold-light); font-weight: 850; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 72px; align-items: start; }
.prose { max-width: 780px; }
.prose h2 { margin: 1.4em 0 .45em; font-size: clamp(2rem, 4vw, 3.4rem); }
.prose h3 { margin: 1.8em 0 .55em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin: .65em 0; }
.side-card { position: sticky; top: 126px; padding: 32px; background: var(--ink); color: var(--white); border-top: 5px solid var(--gold); }
.side-card h2 { font-size: 2rem; }
.side-card p { color: #cec9c0; }
.side-card .btn { width: 100%; margin-top: 10px; }
.breadcrumb { padding: 18px 0; background: #ebe7de; font-size: 1rem; font-weight: 750; }
.breadcrumb a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; list-style: none; margin: 0; padding: 0; }
.breadcrumb li { display: inline-flex; gap: 7px; align-items: center; }
.breadcrumb li + li::before { content: "/"; color: #7b756c; font-weight: 500; }
.breadcrumb [aria-current="page"] { color: #39352f; }
.page-hero { padding: 96px 0 88px; background: var(--ink); color: var(--white); border-bottom: 1px solid var(--gold); }
.page-hero .display { max-width: 920px; }
.page-hero .lead { margin-top: 28px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; list-style: none; }
.pill-list a { display: block; padding: 12px 16px; border: 1px solid #c8c1b3; background: var(--white); font-size: 1rem; font-weight: 800; text-decoration: none; }
.pill-list a:hover { border-color: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.contact-card { padding: 34px; background: var(--white); border-top: 4px solid var(--gold); }
.contact-card a { color: #6f5729; font-weight: 850; }
.text-link { display: block; margin-top: 18px; color: var(--gold-light); font-weight: 850; text-align: center; }
.profile-layout { display: grid; grid-template-columns: minmax(280px, 420px) minmax(0,1fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.profile-photo { background: #ded8cc; border-bottom: 7px solid var(--gold); }
.profile-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.result-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.result-card { padding: 34px; border: 1px solid #d6d0c3; border-top: 5px solid var(--gold); background: #f8f6f1; }
.result-card strong { color: #725b30; font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; }
.result-card h2 { margin: 12px 0 18px; font-size: clamp(1.65rem, 2.6vw, 2.35rem); }
.result-card p { margin: 0; }
.result-disclaimer { max-width: 880px; margin: 32px 0 0; color: #625f58; }
.resource-list { margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid #ccc5b7; }
.resource-list li { padding: 20px 0; border-bottom: 1px solid #ccc5b7; font-size: 1.05rem; font-weight: 750; }
.resource-list a { text-underline-offset: 5px; }

.site-footer { background: #000000; color: #d4d0c8; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 60px; padding: 72px 0 48px; }
.footer-brand img { width: 210px; margin-bottom: 24px; }
.footer-grid h2 { color: var(--white); font-family: var(--sans); font-size: 1rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; margin-top: 20px; }
.footer-links a { color: #d4d0c8; text-underline-offset: 4px; }
.legal { padding: 24px 0 34px; border-top: 1px solid #2c2923; color: #aaa69e; font-size: 1rem; }
.legal a { color: #d4d0c8; }
.mobile-cta { display: none; }

@media (max-width: 1040px) {
  .nav-shell { grid-template-columns: 190px 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .header-call { display: none; }
  .mobile-menu[data-open="true"] { display: grid; padding: 8px 24px 24px; gap: 4px; background: #000000; }
  .mobile-menu a { padding: 14px 0; border-bottom: 1px solid #2e2a23; color: var(--white); font-weight: 800; text-decoration: none; }
  .hero .container { grid-template-columns: 1.1fr .9fr; }
  .content-grid { grid-template-columns: 1fr 290px; gap: 42px; }
  .steps li { grid-template-columns: 50px 190px 1fr; }
  .decision-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-directory, .faq-layout { grid-template-columns: 1fr; }
  .faq-layout > div:first-child { position: static; }
}

@media (max-width: 1320px) and (min-width: 1041px) {
  .nav-shell { grid-template-columns: 170px 1fr auto; gap: 15px; }
  .desktop-nav { gap: 11px; }
  .desktop-nav a { font-size: 0.74rem; }
  .header-call { padding-inline: 14px; font-size: 1rem; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 32px), var(--content)); }
  .topline .container { justify-content: center; min-height: 46px; }
  .topline span { display: none; }
  .awards-ticker { min-height: 50px; }
  .ticker-text { padding-inline: 16px; font-size: 16px; }
  .media-ticker { min-height: 58px; grid-template-columns: auto minmax(0,1fr); }
  .media-label { padding-inline: 14px; font-size: 16px; letter-spacing: .1em; }
  .media-item { padding-inline: 20px; font-size: 16px; }
  .media-item img { width: 26px; height: 26px; }
  .nav-shell { min-height: 78px; grid-template-columns: 170px auto; }
  .hero { min-height: 720px; }
  .hero::before { background: linear-gradient(180deg, rgba(17,17,17,.96) 0%, rgba(17,17,17,.78) 55%, rgba(17,17,17,.2) 100%); }
  .hero .container { display: block; }
  .hero-copy { padding: 72px 0 360px; }
  .hero-portrait { position: absolute; inset: auto -40px 0 25%; height: 430px; z-index: -1; }
  .hero-portrait img { height: 100%; width: 100%; object-fit: contain; object-position: bottom right; }
  .hero-mark { top: auto; bottom: 4%; font-size: 9rem; }
  .trust-strip .container { grid-template-columns: 1fr; gap: 26px; padding-block: 40px; }
  .trust-heading { padding: 0 0 26px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-heading h2 { max-width: 520px; }
  .trust-list { grid-template-columns: 1fr; }
  .trust-item { min-height: 88px; padding: 18px 20px; }
  .decision-grid, .service-links, .outcome-grid { grid-template-columns: 1fr; }
  .decision-card { min-height: auto; padding: 24px 22px; }
  .decision-card > span { margin-bottom: 32px; }
  .service-directory { margin-top: 52px; padding-top: 42px; gap: 30px; }
  .service-links a:nth-child(odd) { border-right: 0; }
  .court-layout, .service-area-layout { grid-template-columns: 1fr; gap: 34px; }
  .outcome-grid article { min-height: auto; }
  .faq-list summary { padding-right: 42px; }
  .faq-list details p { padding-right: 0; }
  .section { padding: 72px 0; }
  .split, .content-grid, .contact-grid, .footer-grid, .profile-layout { grid-template-columns: 1fr; gap: 34px; }
  .practice-grid, .attorney-grid, .result-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: auto; border-right: 0; border-bottom: 1px solid #d6d0c3; }
  .practice-card:last-child { border-bottom: 0; }
  .practice-number { margin-bottom: 38px; }
  .steps li { grid-template-columns: 42px 1fr; gap: 18px; }
  .steps li p { grid-column: 2; }
  .side-card { position: static; }
  .page-hero { padding: 70px 0 62px; }
  .footer-grid { padding-top: 58px; }
  .mobile-cta { position: sticky; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; background: #090909; border-top: 1px solid var(--gold); }
  .mobile-cta a { min-height: 58px; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 900; text-decoration: none; text-transform: uppercase; }
  .mobile-cta a:first-child { background: var(--gold); color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .ticker { overflow: hidden; }
}
