/*
  Assumptions: No standalone logo or office photography was supplied; the identity uses a typographic TMJ seal and verified portraits only.
  Open questions: Final form delivery, office hours, and formal logo remain unconfirmed and are intentionally absent.
  Direction: Courtroom classic — ink navy, charcoal, antique gold, warm paper, editorial serif type, asymmetric legal-document rhythm.
*/

:root {
  --ink: #0c2340;
  --ink-soft: #123156;
  --charcoal: #12263f;
  --charcoal-soft: #1c3a5c;
  --gold: #c7a969;
  --gold-bright: #dfc17e;
  --gold-dark: #8a6d37;
  --paper: #f2eee4;
  --paper-deep: #e6dfd0;
  --white: #fffdf8;
  --muted: #aeb5be;
  --ink-muted: #59616a;
  --line: rgba(199, 169, 105, 0.34);
  --display: Georgia, "Times New Roman", serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --content: 1240px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  animation: lineDraw 900ms 180ms both;
}

.eyebrow.light {
  color: var(--gold-bright);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.4rem, 7.2vw, 7.25rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}

h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.lede {
  max-width: 680px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.5;
}

.body-large {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(6px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  color: var(--white);
}

.button.ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.button.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.topline {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--charcoal);
  color: var(--white);
}

.topline-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topline-place {
  color: var(--muted);
}

.topline-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topline a {
  text-decoration: none;
}

.topline a:hover {
  color: var(--gold-bright);
}

.site-header {
  position: relative;
  z-index: 35;
  border-bottom: 1px solid rgba(199, 169, 105, 0.25);
  background: var(--ink);
  color: var(--white);
}

.site-header-inner {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  text-decoration: none;
}

.brand-seal {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  animation: crestReveal 700ms ease-out both;
}

.brand-seal::after {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(199, 169, 105, 0.35);
  content: "";
}

.brand-name,
.brand-office {
  display: block;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.015em;
}

.brand-office {
  margin-top: 2px;
  color: var(--gold-bright);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #e9e5dc;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .nav-call {
  padding: 13px 17px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
}

.desktop-nav .nav-call::after {
  display: none;
}

.desktop-nav .nav-call:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  inset: 0 42% 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 84px 84px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent);
}

.home-hero::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
  background: linear-gradient(transparent, var(--gold), transparent);
  content: "";
  animation: shimmerLine 4.8s ease-in-out infinite;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: stretch;
}

.home-hero-copy {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  padding: 128px 72px 132px 0;
  animation: riseIn 760ms 80ms ease-out both;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-hero h1 em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}

.home-hero .lede {
  max-width: 640px;
  color: #d9dce0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(199, 169, 105, 0.25);
}

.hero-proof span {
  max-width: 180px;
  color: #c7cbd1;
  font-family: var(--display);
  font-size: 0.98rem;
  line-height: 1.35;
}

.home-hero-portrait {
  position: relative;
  min-height: 760px;
  align-self: stretch;
  background:
    radial-gradient(circle at 56% 44%, rgba(199, 169, 105, 0.23), transparent 36%),
    var(--ink-soft);
}

.home-hero-portrait::before {
  position: absolute;
  top: 8%;
  right: -16%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199, 169, 105, 0.22);
  border-radius: 50%;
  content: "";
}

.home-hero-portrait img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(980px, 172%);
  max-width: 108%;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.28));
  animation: portraitFloat 7s ease-in-out infinite;
  /* Melt the bottom crop into the navy so the portrait reads as part of the scene. */
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 99%);
          mask-image: linear-gradient(to bottom, #000 80%, transparent 99%);
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 28px;
  width: 230px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(12px);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption strong {
  font-family: var(--display);
  font-size: 1.08rem;
}

.portrait-caption span {
  margin-top: 4px;
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--charcoal);
  color: var(--gold-bright);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 17px 0;
  animation: credentialMarquee 34s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--display);
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.marquee-track span::after {
  color: var(--gold-dark);
  content: "\00B7";
  font-size: 1.4rem;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section.white {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.42fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--ink-muted);
}

.dark .section-heading p,
.charcoal .section-heading p {
  color: #c2c8cf;
}

.practice-mosaic {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: 2px;
  background: var(--paper-deep);
}

.practice-panel {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}

.practice-panel:first-child {
  grid-row: 1 / 3;
}

.practice-panel::before,
.page-image::before {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1.01);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 400ms ease;
}

.practice-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.06) 18%, rgba(7, 17, 31, 0.94) 96%);
  content: "";
}

.practice-panel:hover::before {
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.055);
}

.image-personal::before {
  background-image: url("images/personal-injury.webp");
}

.image-auto::before {
  background-image: url("images/automobile-accidents.webp");
}

.image-truck::before {
  background-image: url("images/big-truck.webp");
}

.image-work::before {
  background-image: url("images/work-injury.webp");
}

.practice-panel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 4vw, 54px);
}

.practice-panel-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.practice-panel h3 {
  max-width: 580px;
  margin-bottom: 16px;
}

.practice-panel p {
  max-width: 520px;
  margin-bottom: 18px;
  color: #d0d4d9;
}

.practice-panel.compact p {
  display: none;
}

.credential-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: center;
}

.credential-portrait {
  position: relative;
  min-height: 640px;
  background: var(--paper-deep);
}

.credential-portrait::after {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 74%;
  height: 65%;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  content: "";
  pointer-events: none;
}

.credential-portrait img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.02);
}

.credential-copy h2 {
  max-width: 720px;
}

.credential-ledger {
  margin: 48px 0 0;
  border-top: 1px solid rgba(199, 169, 105, 0.25);
}

.credential-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(199, 169, 105, 0.25);
  align-items: baseline;
}

.credential-row span {
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.credential-row strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 400;
}

.quote-band {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.quote-mark {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 12rem);
  line-height: 0.7;
}

.quote-band blockquote {
  margin: 0;
  max-width: 980px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.quote-band cite {
  display: block;
  margin-top: 30px;
  color: var(--gold-bright);
  font-family: var(--body);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.time-docket {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  background: var(--white);
  box-shadow: var(--shadow);
}

.time-number {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(38px, 6vw, 76px);
  background: var(--ink);
  color: var(--white);
}

.time-number strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(7rem, 17vw, 13.5rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.68;
}

.time-number span {
  max-width: 260px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.6;
  text-transform: uppercase;
}

.time-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 86px);
}

.time-copy h2 {
  max-width: 680px;
  margin-bottom: 28px;
}

.time-copy p {
  max-width: 600px;
  color: var(--ink-muted);
}

.briefing-list {
  border-top: 1px solid var(--line);
}

.briefing-item {
  display: grid;
  min-height: 174px;
  grid-template-columns: 72px minmax(0, 1fr) 240px;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 220ms ease, background 220ms ease;
}

.briefing-item:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(199, 169, 105, 0.08);
}

.briefing-number {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.briefing-item h3 {
  margin-bottom: 10px;
}

.briefing-item p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.briefing-action {
  justify-self: end;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-stripe {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
}

.contact-stripe::after {
  position: absolute;
  top: -170px;
  right: -80px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(7, 17, 31, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-stripe-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: center;
  padding-block: 70px;
}

.contact-stripe h2 {
  max-width: 860px;
  margin-bottom: 16px;
}

.contact-stripe p {
  margin-bottom: 0;
  font-weight: 700;
}

.contact-stripe-actions {
  display: grid;
  min-width: 280px;
  gap: 10px;
}

.contact-stripe-actions a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.42);
  font-family: var(--display);
  font-size: 1.18rem;
  text-decoration: none;
}

.contact-stripe-actions a::after {
  content: "\2192";
}

.page-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.74fr);
}

.page-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 104px 70px 110px 0;
  animation: riseIn 720ms ease-out both;
}

.page-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 6vw, 6.3rem);
}

.page-hero h1 em,
.answer-hero h1 em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}

.page-hero .lede {
  color: #d8dce1;
}

.page-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.page-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(7, 17, 31, 0.32) 34%, rgba(7, 17, 31, 0.05));
  content: "";
}

.page-image.image-personal::before,
.page-image.image-auto::before,
.page-image.image-truck::before,
.page-image.image-work::before {
  filter: saturate(0.58) contrast(1.1);
}

.page-portrait::before {
  background-image: url("images/todd-hero-2.webp");
  background-position: 46% center;
}

.page-portrait-full::before {
  background-image: url("images/todd-headshot.webp");
  background-position: center top;
}

.hero-docket {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 48px));
  padding: 22px 24px;
  border-top: 2px solid var(--gold);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(12px);
}

.hero-docket span,
.hero-docket strong {
  display: block;
}

.hero-docket span {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-docket strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
}

.crumbs {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.crumbs ol {
  display: flex;
  min-height: 52px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crumbs li + li::before {
  margin-right: 8px;
  color: var(--gold-dark);
  content: "/";
}

.crumbs a {
  text-decoration: none;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 88px;
  align-items: start;
}

.prose {
  min-width: 0;
}

.prose > * {
  max-width: 790px;
}

.prose h2 {
  margin: 72px 0 26px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 46px 0 18px;
}

.prose p,
.prose li {
  font-size: 1.06rem;
  line-height: 1.78;
}

.prose p {
  margin-bottom: 24px;
}

.prose ul,
.prose ol {
  margin: 0 0 28px;
  padding-left: 1.25em;
}

.prose li {
  padding: 7px 0 7px 8px;
}

.prose-callout {
  margin: 54px 0;
  padding: 34px 38px;
  border-left: 3px solid var(--gold);
  background: var(--white);
}

.prose-callout strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.prose-callout p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.45;
}

.side-docket {
  position: sticky;
  top: 24px;
  border-top: 3px solid var(--gold);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.side-docket img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.7);
}

.side-docket-copy {
  padding: 30px;
}

.side-docket-copy h3 {
  margin-bottom: 13px;
}

.side-docket-copy p {
  color: #c7ccd2;
}

.side-docket-facts {
  margin: 26px 0;
  padding: 0;
  border-top: 1px solid rgba(199, 169, 105, 0.25);
  list-style: none;
}

.side-docket-facts li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(199, 169, 105, 0.25);
  color: var(--gold-bright);
  font-family: var(--display);
  line-height: 1.35;
}

.practice-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practice-index a {
  min-height: 210px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.practice-index a:hover {
  background: var(--ink);
  color: var(--white);
}

.practice-index span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.practice-index h3 {
  margin-bottom: 12px;
}

.practice-index p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.practice-index a:hover p {
  color: #c7ccd2;
}

.steps-ledger {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.step-row {
  display: grid;
  grid-template-columns: 72px 0.72fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.step-row > span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step-row h3 {
  margin: 0;
  font-size: 1.7rem;
}

.step-row p {
  margin: 0;
  color: var(--ink-muted);
}

.credential-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.credential-card {
  min-height: 360px;
  padding: clamp(30px, 4vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-card:nth-child(2) {
  background: var(--ink);
  color: var(--white);
  transform: translateY(34px);
}

.credential-card span {
  display: block;
  margin-bottom: 80px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.credential-card:nth-child(2) span {
  color: var(--gold-bright);
}

.credential-card h3 {
  margin-bottom: 20px;
}

.credential-card p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.credential-card:nth-child(2) p {
  color: #c7ccd2;
}

.answer-hero {
  position: relative;
  padding: 112px 0 105px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.answer-hero::after {
  position: absolute;
  top: -240px;
  right: -110px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(199, 169, 105, 0.2);
  border-radius: 50%;
  content: "";
}

.answer-hero .shell {
  position: relative;
  z-index: 2;
}

.answer-hero h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6.5vw, 6.6rem);
}

.answer-hero .lede {
  color: #d1d6dc;
}

.answer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 90px;
  align-items: start;
}

.direct-answer {
  margin-bottom: 60px;
  padding: 40px 44px;
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 20px 56px rgba(7, 17, 31, 0.1);
}

.direct-answer .kicker {
  margin-bottom: 18px;
}

.direct-answer p {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.7vw, 2.2rem);
  line-height: 1.42;
}

.answer-toc {
  position: sticky;
  top: 24px;
  padding: 30px;
  border-top: 3px solid var(--gold);
  background: var(--ink);
  color: var(--white);
}

.answer-toc strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.answer-toc a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(199, 169, 105, 0.24);
  color: #d7dbe0;
  font-family: var(--display);
  text-decoration: none;
}

.answer-toc a:hover {
  color: var(--gold-bright);
}

.legal-note {
  margin-top: 50px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 29px 62px 29px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--gold-dark);
  content: "+";
  font-family: var(--body);
  font-size: 1.35rem;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-width: 820px;
  padding: 0 60px 30px 0;
  color: var(--ink-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}

.contact-ledger {
  border-top: 3px solid var(--gold);
  background: var(--ink);
  color: var(--white);
}

.contact-ledger-header {
  padding: 38px;
  border-bottom: 1px solid rgba(199, 169, 105, 0.25);
}

.contact-ledger-header h2 {
  margin-bottom: 14px;
  font-size: 2.5rem;
}

.contact-ledger-header p {
  margin-bottom: 0;
  color: #c7ccd2;
}

.contact-line {
  display: block;
  padding: 25px 38px;
  border-bottom: 1px solid rgba(199, 169, 105, 0.25);
  text-decoration: none;
}

.contact-line span,
.contact-line strong {
  display: block;
}

.contact-line span {
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-line strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

a.contact-line:hover {
  background: rgba(199, 169, 105, 0.08);
}

.contact-form {
  min-width: 0;
}

.contact-form h2 {
  margin-bottom: 22px;
}

.contact-form > p {
  max-width: 680px;
  color: var(--ink-muted);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.field {
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #b7b0a2;
  border-radius: 0;
  background: var(--white);
  color: var(--charcoal);
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold-dark);
  outline: 2px solid rgba(199, 169, 105, 0.28);
}

.form-note {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.form-status {
  min-height: 26px;
  margin-top: 14px;
  color: var(--gold-dark);
  font-weight: 700;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(180px, 0.45fr));
  gap: 70px;
  padding: 82px 0 68px;
}

.footer-brand .brand {
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 460px;
  color: #adb4bc;
}

.footer-heading {
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: #d4d8dd;
  font-family: var(--display);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #969ea8;
  font-size: 0.7rem;
  line-height: 1.55;
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 660ms ease, transform 660ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes crestReveal {
  from {
    opacity: 0;
    transform: rotate(-8deg) scale(0.86);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes lineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portraitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmerLine {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.9; }
}

@keyframes credentialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 30;
    inset: 146px 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px 24px 80px;
    overflow-y: auto;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(199, 169, 105, 0.2);
    color: var(--white);
    font-family: var(--display);
    font-size: 1.2rem;
    text-decoration: none;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
  }

  .home-hero-copy {
    padding-right: 42px;
  }

  .content-split,
  .answer-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 50px;
  }

  .credential-stage,
  .contact-grid {
    gap: 54px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 36px), var(--content));
  }

  .topline-place {
    display: none;
  }

  .topline-inner {
    justify-content: flex-end;
  }

  .topline-links a:first-child {
    display: none;
  }

  .site-header-inner {
    min-height: 92px;
  }

  .mobile-nav {
    inset: 134px 0 0;
  }

  .home-hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy,
  .page-hero-copy {
    padding: 96px 0 76px;
  }

  .home-hero-portrait {
    min-height: 600px;
  }

  .home-hero-portrait img {
    right: 50%;
    width: min(1060px, 116vw);
    transform: translateX(50%);
    animation: none;
  }

  .home-hero::after {
    display: none;
  }

  .page-image {
    min-height: 440px;
  }

  .page-image::after {
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.6));
  }

  .section {
    padding: 84px 0;
  }

  .section-heading,
  .credential-stage,
  .content-split,
  .answer-layout,
  .contact-grid,
  .contact-stripe-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .practice-mosaic {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .practice-panel:first-child {
    grid-row: auto;
  }

  .practice-panel {
    min-height: 420px;
  }

  .practice-panel.compact p {
    display: block;
  }

  .credential-portrait,
  .credential-portrait img {
    min-height: 0;
    height: 680px;
  }

  .credential-portrait::after {
    right: 0;
    bottom: 0;
  }

  .time-docket {
    grid-template-columns: 1fr;
  }

  .time-number {
    min-height: 340px;
  }

  .briefing-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .briefing-action {
    display: none;
  }

  .quote-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quote-mark {
    height: 55px;
  }

  .side-docket,
  .answer-toc {
    position: relative;
    top: auto;
  }

  .credential-triptych {
    grid-template-columns: 1fr;
  }

  .credential-card:nth-child(2) {
    transform: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 30px), var(--content));
  }

  .topline-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .topline a {
    display: inline-flex;
    min-block-size: 44px;
    align-items: center;
  }

  .topline-links a:last-child {
    font-size: 0.6rem;
  }

  .brand-seal {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .brand-office {
    font-size: 0.51rem;
  }

  .nav-toggle {
    width: 46px;
  }

  .mobile-nav {
    inset: 134px 0 0;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .home-hero-copy,
  .page-hero-copy {
    padding: 76px 0 62px;
  }

  .home-hero-copy {
    min-height: 660px;
  }

  .home-hero-portrait {
    min-height: 500px;
  }

  .home-hero-portrait img {
    width: 130vw;
  }

  .portrait-caption {
    right: 15px;
    bottom: 18px;
    width: calc(100% - 30px);
  }

  .hero-proof {
    gap: 18px;
  }

  .hero-proof span {
    width: calc(50% - 10px);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .practice-panel {
    min-height: 390px;
  }

  .practice-panel-content {
    padding: 28px 24px;
  }

  .credential-portrait,
  .credential-portrait img {
    height: 520px;
  }

  .credential-row {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .time-number {
    min-height: 290px;
  }

  .time-number strong {
    font-size: 9rem;
  }

  .time-copy {
    padding: 42px 28px;
  }

  .briefing-item {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .briefing-item h3 {
    font-size: 1.5rem;
  }

  .contact-stripe-inner {
    gap: 34px;
    padding-block: 58px;
  }

  .contact-stripe-actions {
    min-width: 0;
  }

  .contact-stripe-actions a {
    overflow-wrap: anywhere;
  }

  .page-hero,
  .page-hero-grid {
    min-height: 0;
  }

  .page-hero h1,
  .answer-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }

  .page-image {
    min-height: 360px;
  }

  .hero-docket {
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
  }

  .practice-index {
    grid-template-columns: 1fr;
  }

  .practice-index a {
    min-height: 0;
    padding: 28px 24px;
  }

  .step-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .step-row p {
    grid-column: 2;
  }

  .prose-callout,
  .direct-answer {
    padding: 28px 24px;
  }

  .answer-hero {
    padding: 80px 0 72px;
  }

  .answer-toc {
    padding: 24px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .contact-ledger-header,
  .contact-line {
    padding-right: 26px;
    padding-left: 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 0 50px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* office location map — 2026-08-07 */
.todd-map{border-top:1px solid rgba(127,127,127,.22);}
.todd-map__inner{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1fr 1.5fr;align-items:stretch;}
.todd-map__meta{padding:2.75rem 1.5rem;display:flex;flex-direction:column;justify-content:center;gap:.35rem;}
.todd-map__eyebrow{text-transform:uppercase;letter-spacing:.12em;font-size:.72rem;opacity:.62;margin:0 0 .35rem;}
.todd-map__meta p{margin:0;line-height:1.55;}
.todd-map__name{font-weight:600;}
.todd-map__meta a{color:inherit;text-decoration:none;border-bottom:1px solid currentColor;padding-bottom:1px;}
.todd-map__frame{min-height:320px;}
.todd-map__frame iframe{width:100%;height:100%;min-height:320px;border:0;display:block;filter:grayscale(.12);}
@media (max-width:760px){
  .todd-map__inner{grid-template-columns:1fr;}
  .todd-map__meta{padding:2rem 1.25rem 1.25rem;}
  .todd-map__frame{min-height:260px;}
  .todd-map__frame iframe{min-height:260px;}
}


.brand-logo{width:54px;height:54px;object-fit:contain;display:block}


/* Back-to-top button */
.back-to-top{position:fixed;right:20px;bottom:20px;width:46px;height:46px;display:inline-flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid var(--gold);background:var(--ink);color:var(--gold);cursor:pointer;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .18s ease,transform .18s ease,background .18s ease,color .18s ease;z-index:60;box-shadow:0 2px 8px rgba(0,0,0,.18)}
.back-to-top.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:var(--gold);color:var(--ink)}
.back-to-top:focus-visible{outline:3px solid var(--gold-bright);outline-offset:2px}
@media (max-width:640px){.back-to-top{right:14px;bottom:14px;width:42px;height:42px}}
