body {
  animation: pageFade 420ms var(--ease-out) both;
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(167, 173, 179, 0.35);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--steel);
}

.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  padding: 200px 0 120px;
}
.page-hero .hero-bg,
.page-hero .hero-grain {
  position: absolute;
  inset: 0;
}
.page-hero .hero-bg {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-soft) 100%);
  z-index: 0;
}
.page-hero .hero-grain {
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(167, 173, 179, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 173, 179, 0.08) 1px, transparent 1px);
  background-size: 128px 128px;
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0 0 28px;
}
.page-hero-sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
  color: rgba(243, 241, 234, 0.72);
  max-width: 700px;
  margin: 0;
}
.page-hero-actions {
  margin-top: 44px;
}

.section {
  padding: 104px 0;
  border-bottom: 1px solid var(--rule);
}
.section.paper { background: var(--paper); }
.section.stone { background: var(--stone); }
.section.navy {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--rule-dark);
}
.section.navy h2,
.section.navy h3,
.section.navy p { color: var(--paper); }
.centered { text-align: center; }
.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 96px;
  align-items: start;
}
.prose {
  display: grid;
  gap: 24px;
}
.prose p,
.container-narrow.prose p {
  font-size: 17px;
  line-height: 1.82;
}
.section-head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { margin-top: 18px; }
.section-head p {
  margin: 28px auto 0;
  max-width: 720px;
}
.section-head.light h2,
.section-head.light p { color: var(--paper); }

.spine-grid,
.stat-grid,
.service-grid,
.asset-grid,
.case-grid,
.fee-grid,
.principal-grid-simple {
  display: grid;
  gap: 24px;
}
.spine-grid { grid-template-columns: repeat(5, 1fr); }
.stat-grid,
.service-grid,
.asset-grid { grid-template-columns: repeat(3, 1fr); }
.fee-grid,
.principal-grid-simple { grid-template-columns: repeat(2, 1fr); }
.case-grid { grid-template-columns: repeat(2, 1fr); }

.index-card,
.stat-card,
.service-cell,
.asset-card,
.case-card,
.fee-panel,
.principal-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px 36px;
}
.index-card,
.service-cell,
.asset-card,
.principal-card {
  border-top-color: rgba(178, 154, 91, 0.42);
}
.section.navy .service-cell {
  background: transparent;
  border-color: var(--rule-dark);
  border-top-color: rgba(178, 154, 91, 0.42);
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: space-between;
}
.card-num {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  margin-bottom: 20px;
}
.index-card h3,
.service-cell h3,
.asset-card h3,
.case-card h3,
.fee-panel h3,
.principal-card h3,
.record-row h3 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(50px, 5vw, 76px);
  line-height: 1;
  color: var(--gold);
}
.service-cell .svc-icon,
.asset-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 28px;
}

.asset-card {
  display: flex;
  flex-direction: column;
}
.asset-visual {
  height: 4px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(167, 173, 179, 0.14));
  border: 0;
  margin-bottom: 28px;
}

.record-block {
  background: var(--paper);
  padding: 104px 0;
  border-bottom: 1px solid var(--rule);
}
.record-block:nth-of-type(even) { background: var(--stone); }
.record-list {
  display: grid;
  gap: 18px;
}
.record-row {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.record-row p { margin: 0; }

.case-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-row {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.case-row span,
.rate-list dt,
.contact-form label span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
  margin-bottom: 8px;
}
.case-row p { margin: 0; font-size: 14px; }
.case-card .text-link { display: none; }

.fee-panel p + p { margin-top: 16px; }
.rate-list {
  margin: 24px 0;
  display: grid;
  gap: 16px;
}
.rate-list div {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.rate-list dd {
  margin: 0;
  color: var(--charcoal);
}

.principal-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}
.principal-role {
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--gold-soft);
}
.principal-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--stone);
}
.principal-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-facts {
  display: grid;
  gap: 24px;
}
.contact-facts article,
.contact-facts p {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.contact-facts a {
  border-bottom: 1px solid var(--gold);
}
.contact-form-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 64px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-form label.full,
.quick-select {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 14px 16px;
  color: var(--charcoal);
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--gold-soft);
  border-color: var(--gold-soft);
}
.quick-select {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-select button {
  border: 1px solid var(--rule);
  padding: 11px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: rgba(243, 241, 234, 0.38);
}
.quick-select button.selected {
  border-color: var(--gold-soft);
  color: var(--navy);
  background: rgba(178, 154, 91, 0.1);
}

.service-schedule-list,
.coverage-matrix,
.principal-directory,
.contact-directory-grid {
  position: relative;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.hero-proof-item {
  padding: 24px 28px 26px 0;
  border-right: 1px solid var(--rule-dark);
}
.hero-proof-item:last-child {
  border-right: 0;
  padding-right: 0;
  padding-left: 28px;
}
.hero-proof-item + .hero-proof-item {
  padding-left: 28px;
}
.hero-proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1;
  color: var(--paper);
  margin-bottom: 12px;
}
.hero-proof-item span {
  display: block;
  max-width: 330px;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 241, 234, 0.62);
}

.track-overview {
  padding: 72px 0;
}
.track-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 96px;
  align-items: start;
}
.track-overview h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}
.track-overview-links {
  border-top: 1px solid rgba(8, 10, 12, 0.78);
}
.track-overview-link {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 32px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.track-overview-link span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
}
.track-overview-link strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: var(--navy);
}

@media (min-width: 1025px) {
  .section {
    padding: 124px 0;
  }

  .subpage .page-hero {
    padding: 176px 0 92px;
  }

  .subpage .page-hero-inner {
    max-width: 860px;
  }

  .subpage .page-hero h1 {
    max-width: 820px;
    font-size: clamp(48px, 4.8vw, 68px);
  }

  .subpage .page-hero-sub {
    max-width: 680px;
    font-size: clamp(19px, 1.7vw, 23px);
  }

  .home-page .page-hero {
    min-height: 820px;
    display: flex;
    align-items: center;
    padding: 168px 0 92px;
  }

  .home-page .page-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 84px;
    background: linear-gradient(to bottom, transparent, var(--steel));
    opacity: 0.42;
    z-index: 2;
  }

  .home-page .page-hero .hero-bg {
    background:
      linear-gradient(90deg, rgba(8, 10, 12, 0.98) 0%, rgba(27, 30, 34, 0.94) 100%),
      var(--navy);
  }

  .home-page .page-hero .hero-grain {
    opacity: 0.2;
    background-size: 120px 120px;
  }

  .home-page .page-hero-inner {
    max-width: 1080px;
  }

  .home-page .page-hero h1 {
    max-width: 920px;
    font-size: clamp(64px, 6.4vw, 94px);
    line-height: 1;
    margin-bottom: 34px;
  }

  .home-page .page-hero-sub {
    max-width: 650px;
    font-size: 21px;
  }

  .home-page .page-hero-actions {
    margin-top: 36px;
  }

  .home-page .page-hero + .section.paper {
    padding-top: 112px;
  }

  .home-page .page-hero + .section.paper .split {
    grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
    gap: 92px;
  }

  .section-head {
    margin-bottom: 64px;
  }

  .section-head.editorial {
    max-width: 760px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .section-head.editorial h2 {
    max-width: 720px;
  }

  .home-page .spine-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .home-page .operating-framework {
    padding-top: 112px;
  }

  .home-page .index-card {
    border: 0;
    border-right: 1px solid var(--rule);
    background: transparent;
    padding: 32px 28px 36px;
  }

  .home-page .index-card:last-child {
    border-right: 0;
  }

  .home-page .index-card h3 {
    font-size: 22px;
  }

  .home-page .stat-grid {
    grid-template-columns: 0.92fr 0.88fr 1.2fr;
    gap: 0;
    border-top: 1px solid rgba(8, 10, 12, 0.18);
    border-bottom: 1px solid rgba(8, 10, 12, 0.18);
  }

  .home-page .stat-card {
    border: 0;
    border-right: 1px solid rgba(8, 10, 12, 0.14);
    background: transparent;
    padding: 42px 42px 46px;
  }

  .home-page .stat-card:last-child {
    border-right: 0;
  }

  .home-page .stat-card p {
    max-width: 360px;
  }

  .service-grid {
    gap: 0;
    border-top: 1px solid var(--rule-dark);
    border-left: 1px solid var(--rule-dark);
  }

  .section.navy .service-cell {
    border-top: 0;
    border-left: 0;
    border-right: 1px solid var(--rule-dark);
    border-bottom: 1px solid var(--rule-dark);
    min-height: 150px;
    padding: 34px 32px;
  }

  .services-page .services-brief .container-narrow {
    max-width: 1000px;
    text-align: left;
  }

  .services-page .services-brief .prose {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
  }

  .services-page .services-brief .prose p {
    margin: 0;
  }

  .services-page .services-schedule {
    background: var(--navy-soft);
  }

  .services-page .services-schedule .section-head {
    max-width: 740px;
    margin-left: 0;
    text-align: left;
  }

  .services-page .services-schedule .section-head span[style],
  .team-page .principals-section .section-head span[style] {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .services-page .service-schedule-list {
    display: grid;
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid rgba(243, 241, 234, 0.26);
  }

  .services-page .section.navy .service-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: baseline;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
    background: transparent;
  }

  .services-page .service-row .card-num {
    margin: 0;
  }

  .services-page .service-row h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--paper);
  }

  .principal-card,
  .contact-form-panel {
    box-shadow: none;
  }

  .asset-index {
    border-top: 1px solid rgba(8, 10, 12, 0.78);
  }

  .asset-classes-page .asset-taxonomy .section-head {
    max-width: 780px;
    margin-left: 0;
  }

  .asset-classes-page .coverage-matrix {
    margin-top: 56px;
  }

  .asset-row {
    display: grid;
    grid-template-columns: 76px minmax(210px, 0.34fr) minmax(0, 1fr);
    gap: 36px;
    align-items: baseline;
    padding: 30px 0;
    border-bottom: 1px solid var(--rule);
  }

  .asset-row .card-num {
    margin: 0;
  }

  .asset-row h3 {
    font-size: 23px;
    line-height: 1.2;
    margin: 0;
  }

  .asset-row p {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.75;
  }

  .ruled-section,
  .stat-band,
  .editorial-rows,
  .case-index,
  .quiet-table {
    border-top: 1px solid rgba(8, 10, 12, 0.18);
    border-bottom: 1px solid var(--rule);
  }

  .editorial-row,
  .case-index-row,
  .quiet-table-row {
    display: grid;
    grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
    gap: 48px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
  }

  .editorial-row:last-child,
  .case-index-row:last-child,
  .quiet-table-row:last-child {
    border-bottom: 0;
  }

  .track-record-page .record-block {
    padding: 96px 0;
  }

  .track-record-page #experience-ledger {
    border-top: 1px solid rgba(8, 10, 12, 0.18);
  }

  .track-record-page .record-block .split {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 108px;
  }

  .track-record-page .record-list {
    gap: 0;
    border-top: 1px solid var(--rule);
  }

  .track-record-page .record-row {
    display: grid;
    grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
    gap: 32px;
    border-top: 0;
    border-bottom: 1px solid var(--rule);
    padding: 22px 0;
  }

  .track-record-page .record-row h3 {
    font-size: 21px;
    margin: 0;
  }

  .track-record-page .record-row p {
    font-size: 14.5px;
    line-height: 1.68;
  }

  .track-record-page #completed-assignments .section-head {
    max-width: 760px;
    margin-left: 0;
    text-align: left;
  }

  .track-record-page #completed-assignments .section-head span[style] {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .track-record-page .case-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(8, 10, 12, 0.78);
  }

  .track-record-page .case-card {
    display: grid;
    grid-template-columns: 92px minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 0 44px;
    align-items: start;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--rule);
    padding: 38px 0 40px;
  }

  .track-record-page .case-card .card-num {
    grid-column: 1;
    margin: 3px 0 0;
  }

  .track-record-page .case-card h3 {
    grid-column: 2;
    grid-row: 1 / span 3;
    font-size: 26px;
    line-height: 1.18;
    margin: 0;
    padding-right: 10px;
  }

  .track-record-page .case-row {
    grid-column: 3;
    border-top: 0;
    border-bottom: 1px solid var(--rule);
    padding: 0 0 18px;
    margin-bottom: 18px;
  }

  .track-record-page .case-row:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .track-record-page .case-row span {
    margin-bottom: 6px;
  }

  .track-record-page .case-row p {
    font-size: 14.5px;
    line-height: 1.68;
  }

  .track-record-page .representative-transactions .section-head {
    max-width: 760px;
    margin-left: 0;
    text-align: left;
  }

  .track-record-page .transaction-grid {
    margin-top: 54px;
  }

  .track-record-page .completed-index {
    padding-top: 116px;
  }

  .team-page .principal-grid-simple {
    gap: 0;
    border-top: 1px solid var(--rule);
  }

  .team-page .principal-card {
    border: 0;
    border-bottom: 1px solid var(--rule);
    background: transparent;
    padding: 44px 48px 44px 0;
  }

  .team-page .principal-card + .principal-card {
    border-left: 1px solid var(--rule);
    padding-left: 48px;
  }

  .team-page .principals-section .section-head {
    max-width: 760px;
    margin-left: 0;
    text-align: left;
  }

  .team-page .principal-directory {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .team-page .principal-profile {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
    gap: 64px;
    padding: 38px 0;
    border-left: 0;
  }

  .team-page .principal-profile-with-photo {
    grid-template-columns: minmax(220px, 0.28fr) minmax(220px, 0.28fr) minmax(0, 1fr);
    align-items: start;
  }

  .team-page .principal-photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: var(--stone);
  }

  .team-page .principal-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
  }

  .team-page .principal-profile + .principal-profile {
    border-left: 0;
    padding-left: 0;
  }

  .team-page .principal-heading h3 {
    margin: 0 0 12px;
    font-size: 29px;
    line-height: 1.15;
  }

  .team-page .principal-role {
    max-width: 300px;
    margin: 0;
    color: var(--charcoal-mute);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
  }

  .team-page .principal-bio {
    max-width: 760px;
    border-left: 1px solid var(--rule);
    padding-left: 44px;
  }

  .team-page .principal-bio p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
  }

  .contact-page .contact-directory-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
    gap: 104px;
    align-items: start;
  }

  .contact-page .contact-facts article,
  .contact-page .contact-facts p {
    padding-top: 24px;
  }

  .contact-page .contact-principals {
    gap: 0;
    border-top: 1px solid rgba(8, 10, 12, 0.78);
  }

  .contact-page .contact-principals .eyebrow {
    margin: 0 0 28px;
  }

  .contact-page .contact-principals article {
    display: grid;
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
    gap: 18px 40px;
    padding: 28px 0;
    border-top: 0;
    border-bottom: 1px solid var(--rule);
  }

  .contact-page .contact-facts article h3 {
    font-size: 29px;
  }

  .contact-page .contact-principals article h3 {
    grid-row: 1 / span 4;
    margin: 0;
  }

  .contact-page .contact-principals article p {
    margin: 0;
    border-top: 0;
    padding-top: 0;
  }

  .contact-page .contact-principal-photo {
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
    margin: 32px 0 0;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: var(--stone);
  }

  .contact-page .contact-principal-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 14%;
  }

  .contact-page .contact-office-block {
    border-top: 1px solid var(--rule);
    padding-top: 28px;
  }

  .contact-page .contact-office-block h2 {
    font-size: clamp(28px, 2.6vw, 42px);
  }

  .contact-page .contact-form-panel {
    grid-template-columns: 0.62fr 1.38fr;
    gap: 72px;
    padding: 56px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(8, 10, 12, 0.78);
  }

  .contact-page .contact-form-panel > div {
    padding-right: 24px;
  }

  .contact-page .contact-form-panel > div p {
    max-width: 360px;
    margin: 22px 0 28px;
  }

  .contact-page .contact-form {
    border-left: 1px solid var(--rule);
    padding-left: 48px;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form textarea {
    background: rgba(243, 241, 234, 0.58);
    border-color: rgba(8, 10, 12, 0.18);
  }

  .contact-page .quick-select {
    gap: 8px;
  }

  .contact-page .quick-select button {
    background: transparent;
    border-color: rgba(8, 10, 12, 0.2);
    color: var(--charcoal);
    letter-spacing: 0.06em;
  }
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid var(--rule-dark);
    padding: 24px 32px 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .split,
  .contact-form-panel { grid-template-columns: 1fr; gap: 48px; }
  .spine-grid,
  .stat-grid,
  .service-grid,
  .asset-grid,
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container,
  .container-narrow {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    overflow-x: hidden;
  }
  .page-hero { padding: 148px 0 80px; }
  .page-hero-inner { width: 100%; max-width: 100%; }
  .page-hero h1 {
    width: 100%;
    max-width: 320px !important;
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.08;
    text-wrap: wrap !important;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  .page-hero-sub {
    width: 100%;
    max-width: 320px !important;
    font-size: 18px;
    text-wrap: wrap !important;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  .page-hero-actions { margin-top: 32px; gap: 18px; }
  .page-hero-actions .text-link { display: inline-flex; width: fit-content; max-width: 100%; }
  .section-head h2,
  .track-overview h2 {
    width: 100%;
    max-width: 320px !important;
    text-wrap: wrap !important;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  .hero-proof { grid-template-columns: 1fr; margin-top: 52px; }
  .hero-proof-item,
  .hero-proof-item:last-child,
  .hero-proof-item + .hero-proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
    padding: 22px 0;
  }
  .hero-proof-item:last-child { border-bottom: 0; }
  .section,
  .record-block { padding: 72px 0; }
  .spine-grid,
  .stat-grid,
  .service-grid,
  .asset-grid,
  .case-grid,
  .fee-grid,
  .principal-grid-simple,
  .contact-form { grid-template-columns: 1fr; }
  .team-page .principal-profile-with-photo { grid-template-columns: 1fr; gap: 28px; }
  .contact-page .contact-principal-photo { width: 100%; }
  .contact-form-panel,
  .index-card,
  .stat-card,
  .service-cell,
  .asset-card,
  .case-card,
  .fee-panel,
  .principal-card { padding: 32px 24px; }
  .wordmark-text { font-size: 13px; }
  .wordmark-llc { font-size: 8px; letter-spacing: 0.22em; }
  .text-link { font-size: 11px; letter-spacing: 0.14em; }
  .quick-select button { width: 100%; text-align: left; }
}
