:root {
  --ink: #111923;
  --legal-blue: #0f223e;
  --legal-blue-deep: #081729;
  --legal-blue-soft: #16375e;
  --brass: #c8a24b;
  --brass-soft: #ead58a;
  --maroon: #7a1e1e;
  --stone: #f4f1ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(17, 25, 35, 0.14);
  --dark-line: rgba(255, 255, 255, 0.14);
  --muted-text: #5b6570;
  --dark-muted: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(8, 23, 41, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

main {
  overflow-x: clip;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid var(--brass-soft);
  outline-offset: 4px;
}

#about,
#forums,
#practice,
#partners,
#team,
#contact,
#top {
  scroll-margin-top: 118px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 96px;
  padding: 8px 56px 6px;
  border-bottom: 1px solid rgba(200, 162, 75, 0.22);
  background: rgba(8, 23, 41, 0.96);
  box-shadow: 0 12px 30px rgba(8, 23, 41, 0.18);
  backdrop-filter: blur(16px);
}

.brand-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 138px;
  height: 138px;
  min-height: 138px;
  margin: 8px 0 -54px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 22px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 116px;
  height: 116px;
  margin: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 12px rgba(8, 23, 41, 0.22));
}

.site-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-navigation a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-navigation a:hover,
.site-navigation a[aria-current="page"] {
  border-color: var(--brass);
  color: var(--white);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.header-action,
.primary-button,
.secondary-button,
.partner-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-action,
.primary-button {
  background: linear-gradient(180deg, #d8b75c, var(--brass));
  color: #111318;
}

.header-action:hover,
.primary-button:hover,
.partner-copy a:hover {
  transform: translateY(-1px);
}

.secondary-button {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.secondary-button:hover {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 150px);
  padding: 82px 58px 78px;
  overflow: hidden;
  background: var(--legal-blue-deep);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 23, 41, 0.99) 0%, rgba(8, 23, 41, 0.94) 36%, rgba(8, 23, 41, 0.68) 54%, rgba(8, 23, 41, 0.28) 76%, rgba(8, 23, 41, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 23, 41, 0.28), rgba(8, 23, 41, 0.74));
}

.hero-section::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 23, 41, 0) 72%, rgba(8, 23, 41, 0.58) 100%),
    linear-gradient(90deg, rgba(8, 23, 41, 0.72) 0%, rgba(8, 23, 41, 0.28) 34%, rgba(8, 23, 41, 0) 64%, rgba(8, 23, 41, 0.2) 100%);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 12%;
  z-index: -3;
  width: 88%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  opacity: 0.95;
}

.hero-copy,
.content-section,
.contact-section {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  max-width: 650px;
}

.hero-label,
.section-label {
  margin: 0 0 16px;
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brass-soft);
}

.hero-label::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--brass);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
}

h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: 5.55rem;
  overflow-wrap: break-word;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.decision-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(200, 162, 75, 0.24);
  border-bottom: 1px solid rgba(200, 162, 75, 0.24);
  background:
    linear-gradient(180deg, rgba(15, 34, 62, 0.98), rgba(8, 23, 41, 0.98)),
    var(--legal-blue-deep);
  color: var(--white);
}

.decision-band article {
  min-height: 168px;
  padding: 30px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.decision-band article:last-child {
  border-right: 0;
}

.decision-band span {
  display: block;
  margin-bottom: 14px;
  color: var(--brass-soft);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-band h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.8rem;
}

.decision-band p {
  margin-bottom: 0;
  color: var(--dark-muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.forum-strip {
  display: grid;
  gap: 32px;
  padding: 72px 54px;
  border-bottom: 1px solid rgba(200, 162, 75, 0.28);
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.98), rgba(255, 253, 248, 0.98)),
    var(--paper);
}

.forum-strip-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  gap: 42px;
  align-items: end;
}

.forum-strip-heading .section-label {
  margin: 0;
}

.forum-strip-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--legal-blue);
  font-size: 3.25rem;
  line-height: 1;
}

.forum-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 25, 35, 0.13);
  border-left: 1px solid rgba(17, 25, 35, 0.13);
}

.forum-items li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 16px;
  align-content: start;
  min-height: 156px;
  padding: 24px;
  border-right: 1px solid rgba(17, 25, 35, 0.13);
  border-bottom: 1px solid rgba(17, 25, 35, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(244, 241, 234, 0.78)),
    var(--paper);
}

.forum-items li:nth-child(3n) {
  border-right: 0;
}

.forum-glyph {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 1px solid rgba(200, 162, 75, 0.34);
  border-radius: 50%;
  background: rgba(200, 162, 75, 0.09);
  color: var(--brass);
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.forum-items span {
  display: block;
  color: var(--legal-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.forum-items p {
  max-width: 24rem;
  margin: 0;
  color: var(--muted-text);
  font-size: 0.91rem;
  line-height: 1.55;
}

.content-section {
  padding: 86px 54px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(210px, 0.3fr) minmax(0, 0.7fr);
  gap: 58px;
  align-items: start;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: 3.75rem;
}

.about-section {
  background: var(--stone);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  max-width: 1120px;
  color: #35424f;
  font-size: 1.08rem;
}

.practice-section {
  background: var(--paper);
}

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

.practice-card {
  display: flex;
  gap: 18px;
  min-height: 142px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
}

.practice-card-wide {
  grid-column: span 3;
  min-height: 118px;
}

.practice-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 162, 75, 0.62);
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 900;
}

.practice-card h3 {
  margin-bottom: 8px;
  color: var(--legal-blue);
  font-size: 1.36rem;
}

.practice-card p {
  margin-bottom: 0;
  color: var(--muted-text);
  font-size: 0.94rem;
  line-height: 1.58;
}

.partners-section {
  background: linear-gradient(180deg, var(--stone), #ffffff);
}

.partner-led-visual-section {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 72px 54px;
  overflow: hidden;
  background: var(--legal-blue-deep);
  color: var(--white);
}

.partner-led-visual-section::before,
.partner-led-visual-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.partner-led-visual-section::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 23, 41, 0.98) 0%, rgba(8, 23, 41, 0.68) 38%, rgba(8, 23, 41, 0.12) 72%, rgba(8, 23, 41, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 23, 41, 0.08), rgba(8, 23, 41, 0.7));
}

.partner-led-visual-section::after {
  z-index: 0;
  border-top: 1px solid rgba(200, 162, 75, 0.28);
  border-bottom: 1px solid rgba(200, 162, 75, 0.28);
}

.partner-led-image {
  position: absolute;
  inset: 0 0 0 34%;
  z-index: -2;
  width: 66%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 60% top;
  opacity: 0.98;
  filter: brightness(1.14) contrast(1.02);
}

.partner-led-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.partner-led-content h2 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4.2rem;
}

.partner-led-content p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.48;
}

.partners-list {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 25, 35, 0.12);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(17, 25, 35, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.partner-card[open] {
  grid-column: auto;
  border-color: rgba(200, 162, 75, 0.42);
  background:
    linear-gradient(140deg, rgba(15, 34, 62, 0.05), rgba(200, 162, 75, 0.09)),
    var(--paper);
  box-shadow: 0 22px 54px rgba(17, 25, 35, 0.12);
}

.partner-card summary,
.contact-card summary {
  cursor: pointer;
  list-style: none;
}

.partner-card summary::-webkit-details-marker,
.contact-card summary::-webkit-details-marker {
  display: none;
}

.partner-card summary {
  display: grid;
}

.partner-summary {
  display: grid;
  gap: 8px;
  padding: 18px 22px 22px;
}

.partner-summary span {
  color: var(--maroon);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partner-summary strong {
  color: var(--legal-blue);
  font-family: var(--serif);
  font-size: 1.74rem;
  line-height: 1;
}

.partner-card summary::after,
.contact-card summary::after {
  content: "+";
  color: var(--brass);
  font-family: var(--sans);
  font-weight: 900;
}

.partner-card summary::after {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(200, 162, 75, 0.48);
  border-radius: 999px;
  background: rgba(7, 15, 27, 0.62);
  color: var(--brass-soft);
  line-height: 1;
}

.partner-card[open] summary::after,
.contact-card[open] summary::after {
  content: "-";
}

.partner-card[open] .partner-summary {
  padding: 18px 58px 12px 22px;
}

.partner-card summary {
  position: relative;
}

.partner-portrait {
  position: relative;
  display: block;
  min-height: 214px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 34, 62, 0.94), rgba(15, 34, 62, 0.58)),
    var(--legal-blue);
}

.partner-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 15, 27, 0.1), rgba(7, 15, 27, 0.46)),
    linear-gradient(135deg, rgba(200, 162, 75, 0.22), rgba(15, 34, 62, 0));
  pointer-events: none;
}

.partner-portrait img {
  width: 100%;
  height: 100%;
  min-height: 214px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.partner-portrait-tanmay {
  object-position: center 58%;
}

.partner-card[open] .partner-portrait {
  display: none;
}

.partner-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 0 22px 24px;
  animation: partner-profile-reveal 180ms ease both;
}

.partner-copy span {
  display: block;
  margin-bottom: 2px;
  color: var(--maroon);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partner-copy h3 {
  margin-bottom: 12px;
  color: var(--legal-blue);
  font-size: 1.72rem;
}

.partner-copy p {
  margin-bottom: 0;
  color: var(--muted-text);
  font-size: 0.86rem;
  line-height: 1.58;
}

.partner-detail {
  padding: 12px 0 0 14px;
  border-top: 1px solid rgba(17, 25, 35, 0.1);
  border-left: 2px solid rgba(200, 162, 75, 0.46);
}

.partner-card-contact {
  display: grid;
  gap: 7px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 25, 35, 0.12);
}

.partner-copy a {
  min-height: 0;
  padding: 0;
  border: 0;
  color: var(--legal-blue);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.partner-copy a::after {
  content: none;
}

@keyframes partner-profile-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-link-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.team-link-card {
  position: relative;
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(200, 162, 75, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(244, 241, 234, 0.88)),
    var(--paper);
  box-shadow: 0 18px 44px rgba(17, 25, 35, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-link-card::after {
  content: "->";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--brass);
  font-weight: 900;
}

.team-link-card:hover {
  border-color: rgba(200, 162, 75, 0.72);
  box-shadow: 0 24px 54px rgba(17, 25, 35, 0.12);
  transform: translateY(-2px);
}

.team-link-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--maroon);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.team-link-card strong {
  display: block;
  max-width: 560px;
  margin-bottom: 12px;
  color: var(--legal-blue);
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1.08;
}

.team-link-card em {
  display: block;
  max-width: 560px;
  padding-right: 28px;
  color: var(--muted-text);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.58;
}

.team-link-card:only-child {
  grid-column: 1 / -1;
}

.team-link-card:only-child strong,
.team-link-card:only-child em {
  max-width: 780px;
}

.team-page-hero {
  display: grid;
  align-items: end;
  min-height: 420px;
  padding: 112px 54px 72px;
  background:
    linear-gradient(90deg, rgba(8, 23, 41, 0.98), rgba(15, 34, 62, 0.84)),
    var(--legal-blue-deep);
  color: var(--white);
}

.team-page-hero > div {
  max-width: 840px;
}

.team-page-hero .section-label {
  color: var(--brass-soft);
}

.team-page-hero h1 {
  margin-bottom: 18px;
  color: var(--white);
}

.team-page-hero p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--dark-muted);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.48;
}

.team-directory-section {
  background: linear-gradient(180deg, var(--stone), var(--paper));
}

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

.team-group {
  min-height: 184px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
}

.team-group-partners {
  min-height: 168px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(236, 229, 214, 0.58));
}

.team-directory-lower {
  display: grid;
  grid-template-areas:
    "senior associates"
    "junior associates"
    "junior clerks";
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
}

.team-group-senior {
  grid-area: senior;
}

.team-group-associates {
  grid-area: associates;
  min-height: 100%;
  background: rgba(255, 253, 248, 0.92);
}

.team-group-associates ul,
.team-group-partners ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.team-group-junior {
  grid-area: junior;
  background: rgba(250, 247, 240, 0.88);
}

.team-group-clerks {
  grid-area: clerks;
  min-height: 148px;
  background: rgba(250, 247, 240, 0.78);
}

.team-directory-relationships {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-group span {
  display: block;
  margin-bottom: 14px;
  color: var(--maroon);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.team-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-group li {
  color: var(--legal-blue);
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1.12;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 54px;
  align-items: start;
  padding: 64px 54px;
  background:
    linear-gradient(135deg, rgba(8, 23, 41, 0.98), rgba(17, 25, 35, 0.96)),
    var(--ink);
  color: var(--white);
}

.contact-section .section-label {
  color: var(--brass-soft);
}

.contact-section h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 3.4rem;
}

.contact-heading > p:not(.section-label) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--dark-muted);
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-email-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.04);
}

.contact-heading .contact-email-card {
  margin-top: 30px;
  gap: 6px;
  padding: 16px 18px;
}

.contact-email-card span,
.partner-direct-card span {
  color: var(--brass-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-email-card a {
  color: var(--white);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

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

.partner-direct-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 176px;
  padding: 26px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.partner-direct-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.38rem;
  line-height: 1.12;
}

.partner-direct-links {
  display: grid;
  gap: 8px;
  align-self: end;
}

.partner-direct-card a {
  align-self: end;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.025);
}

.contact-heading .contact-office-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 0;
  padding: 12px 16px;
  border-right: 1px solid var(--dark-line);
}

.contact-card:last-child {
  border-right: 0;
}

.contact-heading .contact-card {
  display: contents;
  border-right: 0;
}

.contact-heading .contact-card:last-child {
  grid-column: auto;
  border-bottom: 0;
}

.contact-heading .contact-card summary {
  min-height: 46px;
  padding: 12px 16px;
  border-right: 1px solid var(--dark-line);
}

.contact-heading .contact-card:nth-child(1) summary {
  grid-column: 1;
  grid-row: 1;
}

.contact-heading .contact-card:nth-child(2) summary {
  grid-column: 2;
  grid-row: 1;
}

.contact-heading .contact-card:nth-child(3) summary {
  grid-column: 3;
  grid-row: 1;
  border-right: 0;
}

.contact-heading .contact-card p {
  display: none;
  grid-column: 1 / -1;
  grid-row: 2;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--dark-line);
}

.contact-heading .contact-card[open] p {
  display: block;
}

.contact-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--brass-soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-section p,
.contact-section a {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.contact-card p:first-of-type,
.contact-card a:first-of-type {
  margin-top: 8px;
}

.contact-card p {
  font-size: 0.8rem;
  line-height: 1.48;
}

.contact-panel a:hover {
  color: var(--brass-soft);
}

@media (min-width: 1300px) {
  h1 {
    font-size: 6.35rem;
  }

  .hero-lede {
    font-size: 1.6rem;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    padding-right: 30px;
    padding-left: 30px;
  }

  .header-action {
    display: none;
  }

  .site-navigation {
    justify-content: end;
    gap: 4px 16px;
  }

  .hero-section {
    padding-right: 38px;
    padding-left: 38px;
  }

  .forum-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .forum-items li:nth-child(3n) {
    border-right: 1px solid rgba(17, 25, 35, 0.13);
  }

  .forum-items li:nth-child(2n) {
    border-right: 0;
  }

  .decision-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-band article:nth-child(2n) {
    border-right: 0;
  }

  .decision-band article:last-child {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .content-section,
  .contact-section,
  .forum-strip,
  .partner-led-visual-section {
    padding-right: 38px;
    padding-left: 38px;
  }

  .section-heading,
  .forum-strip-heading,
  .about-grid,
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .practice-grid,
  .partners-list,
  .team-link-panel,
  .partner-direct-grid,
  .contact-office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-direct-card:nth-child(2n),
  .contact-card {
    grid-column: auto;
  }

  .practice-card-wide {
    grid-column: span 2;
  }

  .team-page-hero {
    padding-right: 38px;
    padding-left: 38px;
  }

  .contact-card:nth-child(2) {
    border-right: 0;
  }

  .partner-direct-card:nth-child(2n) {
    border-right: 0;
  }

  .contact-card:last-child {
    grid-column: span 2;
    border-top: 1px solid var(--dark-line);
  }
}

@media (max-width: 760px) {
  #about,
  #forums,
  #practice,
  #partners,
  #team,
  #contact,
  #top {
    scroll-margin-top: 90px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
    min-height: 82px;
    padding: 8px 18px;
  }

  .brand-link {
    justify-content: center;
    width: 72px;
    height: 72px;
    min-height: 72px;
    margin: 0;
    border-radius: 16px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
    margin: 0;
  }

  .site-navigation {
    display: none;
  }

  .mobile-menu {
    position: relative;
    z-index: 4;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(200, 162, 75, 0.48);
    color: var(--brass-soft);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-navigation {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(78vw, 260px);
    padding: 10px;
    border: 1px solid rgba(200, 162, 75, 0.28);
    background: rgba(8, 23, 41, 0.98);
    box-shadow: 0 22px 44px rgba(8, 23, 41, 0.32);
  }

  .mobile-navigation a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-navigation a:last-child {
    border-bottom: 0;
  }

  .mobile-navigation a[aria-current="page"] {
    color: var(--brass-soft);
  }

  .hero-section {
    min-height: calc(100svh - 92px);
    padding: 72px 24px 62px;
  }

  .hero-copy {
    width: 100%;
    max-width: 520px;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    opacity: 0.38;
    object-position: 62% center;
  }

  .hero-section::before {
    background: linear-gradient(90deg, rgba(8, 23, 41, 0.96), rgba(8, 23, 41, 0.82));
  }

  h1 {
    font-size: 3rem;
  }

  .hero-lede {
    font-size: 1.22rem;
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .forum-strip {
    gap: 32px;
  }

  .forum-items {
    grid-template-columns: minmax(0, 1fr);
  }

  .forum-items li,
  .forum-items li:nth-child(2n),
  .forum-items li:nth-child(3n) {
    min-height: 0;
    padding: 22px;
    border-right: 0;
  }

  .content-section,
  .contact-section,
  .forum-strip,
  .partner-led-visual-section {
    padding: 64px 24px;
  }

  .partner-led-visual-section {
    min-height: 560px;
    align-items: center;
  }

  .partner-led-image {
    inset: 0;
    width: 100%;
    object-position: 62% center;
    opacity: 0.64;
  }

  .partner-led-content h2 {
    font-size: 2.64rem;
    line-height: 1.05;
  }

  .partner-led-content p:last-child {
    font-size: 1.12rem;
  }

  .decision-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .decision-band article,
  .decision-band article:nth-child(2n),
  .decision-band article:last-child {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
  }

  .decision-band article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 2.42rem;
    line-height: 1.06;
  }

  .about-grid,
  .practice-grid,
  .partners-list,
  .team-link-panel,
  .team-directory-grid,
  .partner-direct-grid,
  .contact-office-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .practice-card,
  .practice-card-wide,
  .partner-card[open],
  .team-group-wide,
  .team-group-large,
  .partner-direct-card,
  .contact-card:last-child {
    grid-column: auto;
  }

  .team-page-hero {
    min-height: 380px;
    padding: 78px 24px 58px;
  }

  .team-page-hero h1 {
    font-size: 3rem;
  }

  .team-page-hero p:last-child {
    font-size: 1.14rem;
  }

  .team-link-card strong {
    font-size: 1.42rem;
  }

  .team-group {
    min-height: auto;
  }

  .team-directory-lower,
  .team-directory-relationships,
  .team-group-associates ul,
  .team-group-partners ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-directory-lower {
    grid-template-areas:
      "senior"
      "associates"
      "junior"
      "clerks";
  }

  .practice-card {
    min-height: auto;
    padding: 22px;
  }

  .partner-copy p {
    min-height: auto;
  }

  .partner-direct-card,
  .partner-direct-card:nth-child(2n) {
    border-right: 0;
  }

  .contact-card,
  .contact-card:nth-child(2),
  .contact-card:last-child {
    border-right: 0;
    border-top: 1px solid var(--dark-line);
  }

  .contact-card:first-child {
    border-top: 0;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 1.1rem;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    width: 100%;
    max-width: 320px;
  }

  h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 1.1rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
