:root {
  --ink: #0a1821;
  --ink-soft: #132832;
  --paper: #f3f0e9;
  --paper-deep: #e7e1d6;
  --white: #fffdf8;
  --copper: #b8794c;
  --copper-light: #d8a47c;
  --line: #0a182129;
  --line-light: #fffdf82e;
  --muted: #59666d;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizelegibility;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: -0.035em;
  font-weight: 400;
  line-height: 1.08;
}
h1 {
  font-size: clamp(3.2rem, 7.6vw, 7.3rem);
}
h2 {
  font-size: clamp(2.3rem, 4.2vw, 4.35rem);
}
h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}
p {
  color: var(--muted);
}
.shell {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}
.skip-link {
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.eyebrow {
  color: var(--copper);
  font-family: var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
}
.button {
  border: 1px solid var(--copper);
  background: var(--copper);
  min-height: 52px;
  color: var(--white);
  cursor: pointer;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  font-size: 0.73rem;
  font-weight: 700;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s,
    transform 0.18s;
  display: inline-flex;
}
.button:hover,
.button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}
.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.64rem;
}
.button-dark {
  border-color: var(--ink);
  background: var(--ink);
}
.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
}
.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}
.button-light:hover,
.button-light:focus-visible {
  border-color: var(--copper-light);
  background: var(--copper-light);
  color: var(--ink);
}
.button-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  display: flex;
}
.text-link {
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid;
  align-items: center;
  gap: 12px;
  padding-bottom: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
}
.text-link-light {
  color: var(--white);
}
.utility-bar {
  border-bottom: 1px solid var(--line-light);
  color: #fffdf8bf;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #061119;
  font-size: 0.69rem;
}
.utility-inner {
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  display: flex;
}
.utility-inner div {
  gap: 28px;
  display: flex;
}
.utility-inner a:hover {
  color: var(--white);
}
.site-header {
  z-index: 20;
  background: var(--white);
  color: var(--ink);
  position: relative;
}
.header-inner {
  justify-content: space-between;
  align-items: center;
  min-height: 184px;
  display: flex;
}
.brand {
  align-items: center;
  display: inline-flex;
}
.brand-logo-link {
  flex: none;
}
.brand-logo-crop {
  width: 260px;
  height: 168px;
  display: block;
  position: relative;
  overflow: hidden;
}
.brand-logo-crop img {
  width: 420px;
  max-width: none;
  height: auto;
  display: block;
  position: absolute;
  top: -49px;
  left: -82px;
}
.desktop-nav {
  letter-spacing: 0.11em;
  text-transform: uppercase;
  align-items: center;
  gap: 34px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
}
.desktop-nav > a:not(.button),
.nav-dropdown > span {
  padding-block: 12px;
}
.desktop-nav > a:not(.button):hover,
.nav-dropdown:hover > span {
  color: var(--copper-light);
}
.nav-dropdown {
  cursor: default;
  position: relative;
}
.nav-dropdown-menu {
  background: var(--white);
  width: 240px;
  color: var(--ink);
  padding: 14px;
  display: none;
  position: absolute;
  top: 100%;
  left: -24px;
  box-shadow: 0 22px 60px #0000003d;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}
.nav-dropdown-menu a {
  border-bottom: 1px solid var(--line);
  padding: 11px 10px;
}
.nav-dropdown-menu a:last-child {
  border-bottom: 0;
}
.nav-dropdown-menu a:hover {
  color: var(--copper);
}
.mobile-nav {
  display: none;
  position: relative;
}
.mobile-nav summary {
  cursor: pointer;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-nav nav {
  background: var(--white);
  min-width: 280px;
  color: var(--ink);
  gap: 0;
  padding: 16px;
  display: grid;
  position: absolute;
  top: 44px;
  right: 0;
  box-shadow: 0 20px 50px #0000004d;
}
.mobile-nav nav > a:not(.button),
.mobile-nav .nav-dropdown > span,
.mobile-nav .nav-dropdown-menu a {
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  display: block;
}
.mobile-nav .nav-dropdown-menu {
  width: auto;
  box-shadow: none;
  padding: 0 0 8px 12px;
  display: grid;
  position: static;
}
.mobile-nav .button {
  margin-top: 14px;
}
.hero {
  background: var(--ink);
  min-height: 740px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, #0000 49.85%, #ffffff29 50%, #0000 50.15%),
    linear-gradient(#0000 49.85%, #ffffff17 50%, #0000 50.15%);
  background-size: 180px 180px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(270deg, #000, #0000 72%);
  mask-image: linear-gradient(270deg, #000, #0000 72%);
}
.hero:after {
  content: "";
  border: 1px solid #b8794c61;
  border-radius: 50%;
  width: 760px;
  height: 760px;
  position: absolute;
  bottom: -380px;
  right: -220px;
  box-shadow:
    0 0 0 88px #b8794c08,
    0 0 0 176px #b8794c06;
}
.hero-grid {
  z-index: 1;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 9vw;
  min-height: 640px;
  padding-block: 74px 58px;
  display: grid;
  position: relative;
}
.hero-copy {
  max-width: 760px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 30px;
}
.hero h1 em {
  color: var(--copper-light);
  font-weight: 400;
}
.hero-lede {
  color: #fffdf8b8;
  max-width: 620px;
  margin-bottom: 38px;
  font-size: 1.12rem;
}
.hero-panel {
  border: 1px solid var(--line-light);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #ffffff09;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: 42px;
  display: flex;
  position: relative;
}
.hero-panel-line {
  background: var(--copper);
  width: 1px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 42px;
}
.hero-panel > p {
  color: var(--copper-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}
.hero-panel h2 {
  color: var(--white);
  margin-bottom: 50px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.hero-panel-bottom {
  border-top: 1px solid var(--line-light);
  color: #fffdf899;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  font-size: 0.6rem;
  display: flex;
}
.hero-footer {
  z-index: 2;
  border-top: 1px solid var(--line-light);
  color: #fffdf873;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  font-size: 0.62rem;
  display: flex;
  position: relative;
}
.hero-scroll {
  color: var(--copper-light);
}
.section {
  padding-block: 120px;
}
.section-light {
  background: var(--paper);
}
.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.split-heading {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 9vw;
  max-width: none;
  display: grid;
}
.split-heading > p {
  margin-bottom: 8px;
}
.practice-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}
.practice-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: 34px;
  transition:
    background 0.22s,
    color 0.22s;
  display: flex;
  position: relative;
}
.practice-card:hover,
.practice-card:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}
.practice-card:hover p,
.practice-card:focus-visible p {
  color: #fffdf8ab;
}
.card-number {
  color: var(--copper);
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
}
.practice-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}
.practice-card p {
  max-width: 450px;
  margin-bottom: 0;
}
.card-arrow {
  font-size: 1.15rem;
  position: absolute;
  top: 32px;
  right: 34px;
}
.firm-section {
  background: var(--white);
}
.firm-grid {
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 9vw;
  display: grid;
}
.firm-monogram {
  border: 1px solid var(--line);
  background: var(--ink);
  min-height: 610px;
  color: var(--copper-light);
  place-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
}
.firm-monogram:before,
.firm-monogram:after {
  content: "";
  aspect-ratio: 1;
  border: 1px solid #d8a47c61;
  border-radius: 50%;
  width: 78%;
  position: absolute;
}
.firm-monogram:after {
  width: 54%;
}
.firm-monogram span {
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(8rem, 15vw, 13rem);
  line-height: 1;
  position: absolute;
}
.firm-monogram span:first-child {
  transform: translate(-18%, -8%);
}
.firm-monogram span:last-child {
  color: #fffdf81f;
  transform: translate(18%, 18%);
}
.firm-copy h2 {
  margin-bottom: 30px;
}
.large-copy {
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.45;
}
.firm-copy > p:not(.eyebrow) {
  max-width: 670px;
}
.fact-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  margin-block: 46px;
  display: grid;
}
.fact-row div {
  border-right: 1px solid var(--line);
  padding: 25px 18px 25px 0;
}
.fact-row div:not(:first-child) {
  padding-left: 18px;
}
.fact-row div:last-child {
  border-right: 0;
}
.fact-row strong,
.fact-row span {
  display: block;
}
.fact-row strong {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}
.fact-row span {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.58rem;
}
.approach-section {
  background: var(--paper-deep);
}
.approach-grid {
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: grid;
}
.approach-grid article {
  border-right: 1px solid var(--line);
  min-height: 290px;
  padding: 34px 26px 20px;
}
.approach-grid article:last-child {
  border-right: 0;
}
.approach-grid article > span {
  color: var(--copper);
  letter-spacing: 0.15em;
  font-size: 0.67rem;
  font-weight: 700;
}
.approach-grid h3 {
  margin-top: 90px;
  margin-bottom: 18px;
  font-size: 1.7rem;
}
.approach-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}
.contact-band {
  background: var(--copper);
  color: var(--white);
  padding-block: 86px;
}
.contact-band .eyebrow {
  color: var(--ink);
}
.contact-band h2 {
  color: var(--white);
  margin-bottom: 0;
}
.contact-band p {
  color: #fffdf8d1;
}
.contact-band-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 9vw;
  display: grid;
}
.phone-link {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
}
.page-intro {
  background: var(--ink);
  color: var(--white);
  padding-block: 88px;
}
.page-intro-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 8vw;
  display: grid;
}
.page-intro h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6.5vw, 6.35rem);
}
.page-intro-copy > p {
  color: #fffdf8ab;
}
.breadcrumbs {
  color: #fffdf870;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 10px;
  font-size: 0.62rem;
  display: flex;
}
.breadcrumbs a {
  color: var(--copper-light);
}
.bio-grid {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 8vw;
  display: grid;
}
.attorney-card {
  align-self: start;
}
.portrait-placeholder {
  border: 1px solid var(--line);
  background: var(--ink);
  min-height: 500px;
  color: var(--copper-light);
  align-content: center;
  place-items: center;
  margin-bottom: 30px;
  display: grid;
}
.portrait-placeholder span {
  font-family: var(--serif);
  letter-spacing: -0.07em;
  font-size: 7rem;
}
.portrait-placeholder small {
  color: #fffdf873;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 16px;
  font-size: 0.6rem;
}
.attorney-card h2 {
  margin-bottom: 10px;
  font-size: 2.35rem;
}
.attorney-card a {
  color: var(--copper);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}
.bio-copy h2 {
  margin-bottom: 36px;
}
.credentials-list {
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.credentials-list div {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 180px 1fr;
  padding-block: 18px;
  display: grid;
}
.credentials-list dt {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 700;
}
.credentials-list dd {
  font-family: var(--serif);
  margin: 0;
  font-size: 1.1rem;
}
.values-section,
.practice-approach {
  background: var(--white);
}
.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 9vw;
  display: grid;
}
.two-column h2 {
  max-width: 580px;
}
.stacked-values {
  border-top: 1px solid var(--line);
}
.stacked-values article {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding-block: 28px;
  display: grid;
}
.stacked-values article > span {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
}
.stacked-values h3 {
  margin-bottom: 10px;
}
.stacked-values p {
  margin-bottom: 0;
}
.inline-cta {
  background: var(--copper);
  color: var(--white);
  padding-block: 60px;
}
.inline-cta .shell {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  display: flex;
}
.inline-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.practice-detail-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 9vw;
  display: grid;
}
.practice-statement {
  padding-left: 72px;
  position: relative;
}
.statement-number {
  color: var(--copper);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 0;
}
.practice-statement h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.8rem);
  line-height: 1.2;
}
.service-list {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  grid-template-columns: 34px 1fr;
  padding-block: 22px;
  font-size: 1.18rem;
  display: grid;
}
.service-list span {
  color: var(--copper);
}
.practice-approach .button {
  margin-top: 24px;
}
.related-section {
  background: var(--paper-deep);
}
.related-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
}
.related-grid a {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 28px;
  transition:
    background 0.18s,
    color 0.18s;
  display: flex;
}
.related-grid a:hover {
  background: var(--ink);
  color: var(--white);
}
.related-grid a > span:first-child {
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 700;
}
.related-grid a > span:last-child {
  align-self: flex-end;
}
.related-grid h3 {
  margin-bottom: 0;
}
.contact-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: 9vw;
  display: grid;
}
.contact-grid > div > h2 {
  margin-bottom: 22px;
}
.contact-form {
  margin-top: 44px;
}
.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  display: grid;
}
.contact-form label:not(.consent-field) {
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.66rem;
  font-weight: 700;
  display: grid;
}
.contact-form input,
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  width: 100%;
  color: var(--ink);
  background: 0 0;
  border-radius: 0;
  outline: none;
  padding: 12px 2px;
}
.contact-form textarea {
  border: 1px solid var(--line);
  resize: vertical;
  padding: 14px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
}
.consent-field {
  color: var(--muted);
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  margin-block: 8px 28px;
  font-size: 0.75rem;
  line-height: 1.5;
  display: grid;
}
.consent-field input {
  width: 16px;
  height: 16px;
  accent-color: var(--copper);
  margin-top: 3px;
}
.form-note {
  margin-top: 15px;
  font-size: 0.72rem;
}
.contact-sidebar {
  border-top: 1px solid var(--line);
  align-self: start;
}
.contact-sidebar > div {
  border-bottom: 1px solid var(--line);
  gap: 4px;
  padding-block: 24px;
  display: grid;
}
.contact-sidebar a,
.contact-sidebar address {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: normal;
}
.contact-sidebar .text-link {
  width: fit-content;
  font-family: var(--sans);
  margin-top: 10px;
  font-size: 0.65rem;
}
.contact-label {
  color: var(--copper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 700;
}
.contact-sidebar .contact-notice {
  background: var(--ink);
  color: var(--white);
  border: 0;
  margin-top: 24px;
  padding: 28px;
}
.contact-notice h3 {
  font-size: 1.5rem;
}
.contact-notice p {
  color: #fffdf8a8;
  margin-bottom: 0;
  font-size: 0.83rem;
}
.legal-copy {
  max-width: 850px;
}
.legal-copy section {
  border-bottom: 1px solid var(--line);
  padding-block: 26px;
}
.legal-copy h2 {
  font-size: 2rem;
}
.site-footer {
  color: var(--white);
  background: #061119;
  padding-top: 80px;
}
.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 6vw;
  padding-bottom: 70px;
  display: grid;
}
.footer-brand p {
  max-width: 310px;
  margin-top: 28px;
}
.site-footer .footer-logo-panel {
  width: fit-content;
  margin-bottom: 26px;
  display: block;
}
.site-footer .brand-logo-crop {
  width: 230px;
  height: 148px;
}
.site-footer .brand-logo-crop img {
  width: 372px;
  top: -43px;
  left: -73px;
}
.site-footer h2 {
  color: var(--copper-light);
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-size: 0.64rem;
  font-weight: 700;
}
.site-footer p,
.site-footer address,
.site-footer a {
  color: #fffdf899;
  font-size: 0.82rem;
  font-style: normal;
}
.site-footer a {
  margin-bottom: 10px;
  display: block;
}
.site-footer a:hover {
  color: var(--white);
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-bottom {
  border-top: 1px solid var(--line-light);
  color: #fffdf859;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  font-size: 0.58rem;
  display: flex;
}
@media (width<=1000px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .hero-grid,
  .page-intro-grid,
  .bio-grid,
  .practice-detail-grid,
  .contact-grid,
  .firm-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding-bottom: 40px;
  }
  .hero-panel {
    min-height: 320px;
  }
  .firm-monogram {
    min-height: 440px;
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid article:nth-child(2) {
    border-right: 0;
  }
  .approach-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<=720px) {
  .shell {
    width: min(100% - 30px, 1200px);
  }
  .utility-inner > span,
  .utility-inner a[href^="mailto"] {
    display: none;
  }
  .utility-inner {
    justify-content: flex-end;
  }
  .header-inner {
    min-height: 164px;
  }
  .brand-logo-crop {
    width: 230px;
    height: 148px;
  }
  .brand-logo-crop img {
    width: 372px;
    top: -43px;
    left: -73px;
  }
  .mobile-nav nav {
    min-width: min(290px, 100vw - 30px);
    right: -2px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    gap: 50px;
    min-height: auto;
    padding-block: 68px 44px;
  }
  .hero-panel {
    padding: 28px;
  }
  .hero-panel-line {
    height: 80px;
    left: 28px;
  }
  .hero-footer {
    min-height: 58px;
  }
  .section,
  .page-intro {
    padding-block: 78px;
  }
  .split-heading,
  .contact-band-grid,
  .two-column {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .practice-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .practice-card {
    min-height: 260px;
  }
  .fact-row {
    grid-template-columns: 1fr;
  }
  .fact-row div,
  .fact-row div:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }
  .fact-row div:last-child {
    border-bottom: 0;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid article,
  .approach-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 240px;
  }
  .approach-grid h3 {
    margin-top: 55px;
  }
  .contact-band {
    padding-block: 68px;
  }
  .inline-cta .shell,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .practice-statement {
    padding-top: 44px;
    padding-left: 0;
  }
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .portrait-placeholder {
    min-height: 380px;
  }
  .credentials-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .footer-bottom {
    padding-block: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  :before,
  :after {
    transition-duration: 0.01ms !important;
  }
}

/* Updated D Mallett Law brand artwork */
.firm-monogram {
  aspect-ratio: 3 / 2;
  min-height: 0;
  background-color: #656769;
  background-image: url("/d-mallett-law-logo-v3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 24px 64px #0a18211f;
}
.firm-monogram:before,
.firm-monogram:after,
.firm-monogram span {
  display: none;
}

/* Remove the former homepage firm-information block. */
.firm-section {
  display: none;
}

/* Expanded litigation content. */
.litigation-expanded {
  background: var(--white);
}
.litigation-expanded-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 9vw;
  align-items: start;
}
.litigation-expanded-intro h2 {
  max-width: 620px;
  margin-bottom: 0;
}
.litigation-expanded-intro > div:last-child p:last-child {
  margin-bottom: 0;
}
.litigation-services-block {
  margin-top: 92px;
}
.litigation-services-heading {
  max-width: 830px;
  margin-bottom: 44px;
}
.litigation-services-heading h2 {
  margin-bottom: 24px;
}
.litigation-services-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.litigation-service-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 250px;
  padding: 32px;
}
.litigation-service-card .service-index {
  color: var(--copper);
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 54px;
}
.litigation-service-card h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  margin-bottom: 14px;
}
.litigation-service-card p {
  margin-bottom: 0;
}
.litigation-detail-grid {
  background: var(--line);
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 72px;
}
.litigation-detail-grid article {
  background: var(--paper);
  padding: 42px;
}
.litigation-detail-grid h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 24px;
}
.litigation-detail-grid .button {
  margin-top: 18px;
}
.litigation-disclaimer {
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  margin: 38px 0 0;
  padding-top: 24px;
}
@media (width <= 1000px) {
  .litigation-expanded-intro {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
@media (width <= 720px) {
  .litigation-services-block {
    margin-top: 68px;
  }
  .litigation-services-grid,
  .litigation-detail-grid {
    grid-template-columns: 1fr;
  }
  .litigation-service-card {
    min-height: 0;
    padding: 28px;
  }
  .litigation-service-card .service-index {
    margin-bottom: 34px;
  }
  .litigation-detail-grid article {
    padding: 30px;
  }
}

/* About page: editorial layout, image treatment, and scroll reveals. */
.about-hero-v3 {
  min-height: 610px;
  padding: 138px 0 88px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.about-hero-media,
.about-hero-overlay {
  position: absolute;
  inset: 0;
}
.about-hero-media {
  z-index: -3;
  background-image: url("/about-skyline.jpg");
  background-position: center 62%;
  background-size: cover;
  animation: about-hero-scale 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.about-hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 82% 18%, #b8794c2b, transparent 36%),
    linear-gradient(105deg, #071721f2 5%, #0a1821db 53%, #0a1821a8 100%);
}
.about-hero-v3:after {
  content: "";
  z-index: -1;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 118px,
    #fffdf808 118px,
    #fffdf808 119px
  );
  position: absolute;
  inset: 0;
}
.about-hero-content {
  position: relative;
}
.about-hero-content .eyebrow {
  color: var(--copper-light);
}
.about-hero-content h1 {
  color: var(--white);
  max-width: 890px;
  margin: 0 0 26px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}
.about-hero-content h1 em {
  color: var(--copper-light);
  font-weight: 400;
}
.about-hero-lede {
  color: #fffdf8c7;
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
}
.about-hero-breadcrumbs,
.about-hero-breadcrumbs a,
.about-hero-breadcrumbs span {
  color: #fffdf8a6;
}
.about-hero-breadcrumbs a:hover {
  color: var(--copper-light);
}
.about-fade-in {
  opacity: 0;
  animation: about-fade-up 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.about-delay-1 {
  animation-delay: 0.14s;
  transition-delay: 0.1s !important;
}
.about-delay-2 {
  animation-delay: 0.28s;
  transition-delay: 0.2s !important;
}
.about-delay-3 {
  animation-delay: 0.42s;
  transition-delay: 0.3s !important;
}
@keyframes about-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes about-hero-scale {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.about-overview-v3 {
  background: var(--white);
}
.about-content-grid-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 74px;
  align-items: start;
}
.about-main-copy-v3 {
  min-width: 0;
}
.about-copy-block {
  border-bottom: 1px solid var(--line);
  margin-bottom: 54px;
  padding-bottom: 54px;
}
.about-copy-block h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(2.65rem, 4.6vw, 4.8rem);
}
.about-copy-block h3 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}
.about-copy-block p:not(.eyebrow) {
  max-width: 790px;
}
.about-principles-v3 {
  border-top: 1px solid var(--line);
}
.about-principles-v3 article {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
}
.about-principles-v3 article > span {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding-top: 5px;
}
.about-principles-v3 h3 {
  margin-bottom: 8px;
}
.about-principles-v3 p {
  margin-bottom: 0;
}
.about-sidebar-v3 {
  position: sticky;
  top: 28px;
}
.about-sidebar-card,
.about-profile-card,
.about-sidebar-cta {
  border: 1px solid var(--line);
  margin-bottom: 28px;
  padding: 30px;
}
.about-sidebar-card,
.about-profile-card {
  background: var(--paper);
}
.about-sidebar-card h2,
.about-sidebar-cta h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.about-sidebar-card nav a {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  transition: color 0.25s ease, padding 0.25s ease;
}
.about-sidebar-card nav a:hover,
.about-sidebar-card nav a:focus-visible {
  color: var(--copper);
  padding-left: 7px;
}
.about-sidebar-card nav a span {
  color: var(--copper);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}
.about-sidebar-card nav a b {
  font-weight: 400;
}
.about-profile-card dl {
  margin: 0;
}
.about-profile-card dl div {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.about-profile-card dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-profile-card dd {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 1.12rem;
}
.about-sidebar-cta {
  color: var(--white);
  background: var(--ink);
}
.about-sidebar-cta .eyebrow {
  color: var(--copper-light);
}
.about-sidebar-cta p:not(.eyebrow) {
  color: #fffdf8ad;
}
.about-sidebar-cta .button {
  margin-top: 10px;
}
.about-brand-section-v3 {
  background: var(--paper);
  overflow: hidden;
}
.about-brand-grid-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 8vw;
  align-items: center;
}
.about-brand-visual-v3 {
  min-height: 520px;
  background: linear-gradient(145deg, #dedbd5, #f3f0e9);
  box-shadow: 0 26px 70px #0a18211f;
  padding: 54px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-42px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.about-brand-visual-v3.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.about-brand-visual-v3:after {
  content: "";
  background: radial-gradient(circle at 50% 48%, #0b224329, transparent 56%);
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.about-brand-visual-v3 img {
  z-index: 1;
  width: 135%;
  max-width: none;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.about-brand-visual-v3:hover img {
  transform: scale(1.035);
}
.about-brand-visual-v3 > p {
  z-index: 2;
  color: var(--ink);
  margin: 0;
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-brand-accent {
  width: 132px;
  height: 132px;
  border: 2px solid var(--copper);
  opacity: 0.24;
  position: absolute;
  top: -28px;
  right: -28px;
}
.about-brand-copy-v3 h2 {
  margin-bottom: 28px;
}
.about-cta-v3 {
  background: var(--paper-deep);
  padding: 82px 0;
}
.about-cta-inner-v3 {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 0%, #b8794c2e, transparent 38%),
    linear-gradient(135deg, var(--ink) 0%, #102a36 100%);
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.about-cta-inner-v3 h2 {
  margin-bottom: 0;
}
.about-cta-inner-v3 .eyebrow {
  color: var(--copper-light);
}
.about-cta-inner-v3 p:not(.eyebrow) {
  color: #fffdf8ad;
}
.js-reveal,
.js-image-reveal {
  will-change: opacity, transform;
}
.js-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (width <= 1000px) {
  .about-content-grid-v3,
  .about-brand-grid-v3,
  .about-cta-inner-v3 {
    grid-template-columns: 1fr;
  }
  .about-sidebar-v3 {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .about-sidebar-v3 > * {
    margin-bottom: 0;
  }
  .about-brand-visual-v3 {
    min-height: 470px;
  }
}
@media (width <= 720px) {
  .about-hero-v3 {
    min-height: 540px;
    padding: 108px 0 62px;
  }
  .about-hero-media {
    background-position: 36% center;
  }
  .about-hero-content h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }
  .about-content-grid-v3 {
    gap: 52px;
  }
  .about-copy-block {
    margin-bottom: 42px;
    padding-bottom: 42px;
  }
  .about-sidebar-v3 {
    grid-template-columns: 1fr;
  }
  .about-sidebar-cta {
    grid-column: auto;
  }
  .about-brand-visual-v3 {
    min-height: 360px;
    padding: 24px;
  }
  .about-brand-visual-v3 img {
    width: 170%;
  }
  .about-cta-v3 {
    padding: 54px 0;
  }
  .about-cta-inner-v3 {
    gap: 34px;
    padding: 34px 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero-media,
  .about-fade-in,
  .js-reveal,
  .js-image-reveal {
    opacity: 1;
    animation: none;
    transform: none;
    transition: none;
    clip-path: none;
  }
}

/* Practice areas v6: photographic heroes, editorial content, and scroll reveals. */
.practice-hero-v6 {
  min-height: 620px;
  padding: 132px 0 78px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.practice-hero-media-v6,
.practice-hero-overlay-v6 {
  position: absolute;
  inset: 0;
}
.practice-hero-media-v6 {
  z-index: -3;
  background-image: var(--practice-hero-image);
  background-position: var(--practice-hero-position, center);
  background-size: cover;
  animation: practice-hero-settle-v6 1.85s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.practice-hero-overlay-v6 {
  z-index: -2;
  background:
    radial-gradient(circle at 82% 13%, #b8794c2e, transparent 34%),
    linear-gradient(102deg, #071721f5 4%, #0a1821e3 50%, #071721a8 100%);
}
.practice-hero-v6:after {
  content: "";
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent, transparent 118px, #fffdf808 118px, #fffdf808 119px);
  position: absolute;
  inset: 0;
}
.practice-hero-content-v6 {
  position: relative;
}
.practice-hero-content-v6 > .eyebrow {
  color: var(--copper-light);
}
.practice-hero-content-v6 > .eyebrow span {
  color: #fffdf86b;
  margin-inline: 7px;
}
.practice-hero-content-v6 h1 {
  max-width: 920px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(3.5rem, 6.7vw, 6.7rem);
}
.practice-hero-lede-v6 {
  max-width: 710px;
  margin-bottom: 30px;
  color: #fffdf8c9;
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
}
.practice-hero-breadcrumbs-v6,
.practice-hero-breadcrumbs-v6 a,
.practice-hero-breadcrumbs-v6 span {
  color: #fffdf8a3;
}
.practice-hero-breadcrumbs-v6 a:hover,
.practice-hero-breadcrumbs-v6 a:focus-visible {
  color: var(--copper-light);
}
.practice-fade-v6 {
  opacity: 0;
  animation: practice-fade-up-v6 0.82s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.practice-delay-1 {
  animation-delay: 0.14s;
  transition-delay: 0.1s !important;
}
.practice-delay-2 {
  animation-delay: 0.28s;
  transition-delay: 0.2s !important;
}
.practice-delay-3 {
  animation-delay: 0.42s;
  transition-delay: 0.3s !important;
}
@keyframes practice-fade-up-v6 {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes practice-hero-settle-v6 {
  from { transform: scale(1.075); }
  to { transform: scale(1); }
}

.practice-content-v6 {
  background: var(--white);
}
.practice-content-grid-v6 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 344px;
  gap: 74px;
  align-items: start;
}
.practice-main-v6 {
  min-width: 0;
}
.practice-intro-v6 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 56px;
}
.practice-intro-v6 h2,
.practice-section-heading-v6 h2 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 4.7vw, 4.75rem);
}
.practice-intro-v6 > p:not(.eyebrow),
.practice-section-heading-v6 > p:not(.eyebrow) {
  max-width: 800px;
}
.practice-intro-v6 blockquote {
  max-width: 810px;
  border-left: 3px solid var(--copper);
  margin: 40px 0 0;
  padding: 5px 0 5px 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
}
.practice-overview-v6 {
  padding: 46px 0 62px;
}
.practice-overview-v6 ul {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.practice-overview-v6 li {
  border-bottom: 1px solid var(--line);
  padding: 21px 20px 21px 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
}
.practice-overview-v6 li:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.practice-overview-v6 li:nth-child(even) {
  padding-left: 22px;
}
.practice-overview-v6 li span {
  color: var(--copper);
}
.practice-services-v6 {
  border-top: 1px solid var(--line);
  padding-top: 62px;
}
.practice-section-heading-v6 {
  max-width: 810px;
  margin-bottom: 46px;
}
.practice-services-grid-v6 {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.practice-service-card-v6 {
  min-height: 325px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px;
  background: var(--white);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.28s ease,
    box-shadow 0.28s ease;
}
.practice-service-card-v6:hover {
  background: var(--paper);
  box-shadow: inset 4px 0 0 var(--copper);
}
.practice-service-index-v6 {
  color: var(--copper);
  display: block;
  margin-bottom: 54px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.practice-service-card-v6 h3 {
  margin-bottom: 15px;
  font-size: 1.62rem;
}
.practice-service-card-v6 p {
  margin-bottom: 0;
  font-size: 0.93rem;
}
.practice-feature-v6 {
  padding: 76px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 56px;
  align-items: center;
}
.practice-image-panel-v6 {
  min-height: 510px;
  margin: 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.practice-image-panel-v6.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.practice-image-panel-v6:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, #071721d4 100%);
  position: absolute;
  inset: 0;
}
.practice-image-panel-v6 img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.practice-image-panel-v6:hover img {
  transform: scale(1.045);
}
.practice-hero-real-estate-law .practice-image-panel-v6 img {
  object-position: center 62%;
}
.practice-image-panel-v6 figcaption {
  z-index: 1;
  color: var(--white);
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.practice-feature-copy-v6 h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 3.7vw, 3.8rem);
}
.practice-closing-v6 {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 48px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
}
.practice-closing-number-v6 {
  color: var(--copper);
  padding-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.practice-closing-v6 h2 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4vw, 4rem);
}
.practice-closing-v6 .button {
  margin-top: 12px;
}
.practice-disclaimer-v6 {
  margin: 24px 0 0;
  color: #59666db8;
  font-size: 0.73rem;
}
.practice-sidebar-v6 {
  position: sticky;
  top: 26px;
}
.practice-sidebar-card-v6,
.practice-sidebar-cta-v6 {
  border: 1px solid var(--line);
  margin-bottom: 28px;
  padding: 30px;
}
.practice-sidebar-card-v6 {
  background: var(--paper);
}
.practice-sidebar-card-v6 h2,
.practice-sidebar-cta-v6 h2 {
  margin-bottom: 23px;
  font-size: 2rem;
}
.practice-sidebar-card-v6 nav a {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 9px;
  align-items: center;
  font-size: 0.88rem;
  transition: color 0.25s ease, padding 0.25s ease;
}
.practice-sidebar-card-v6 nav a:hover,
.practice-sidebar-card-v6 nav a:focus-visible,
.practice-sidebar-card-v6 nav a.is-current {
  color: var(--copper);
  padding-left: 7px;
}
.practice-sidebar-card-v6 nav a > span:first-child {
  color: var(--copper);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
}
.practice-sidebar-card-v6 nav a b {
  font-weight: 400;
}
.practice-sidebar-cta-v6 {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, #b8794c33, transparent 44%),
    var(--ink);
}
.practice-sidebar-cta-v6 .eyebrow {
  color: var(--copper-light);
}
.practice-sidebar-cta-v6 p:not(.eyebrow) {
  color: #fffdf8ad;
}
.practice-sidebar-cta-v6 .button {
  width: 100%;
  margin-top: 8px;
}
.practice-cta-v6 {
  background: var(--paper-deep);
  padding: 80px 0;
}
.practice-cta-inner-v6 {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 0%, #b8794c2e, transparent 37%),
    linear-gradient(135deg, var(--ink), #102b38);
  padding: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 72px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.practice-cta-inner-v6 .eyebrow {
  color: var(--copper-light);
}
.practice-cta-inner-v6 h2 {
  margin-bottom: 0;
}
.practice-cta-inner-v6 p:not(.eyebrow) {
  color: #fffdf8b0;
}
.related-grid a.js-reveal {
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.22s ease,
    color 0.22s ease;
}

@media (width <= 1000px) {
  .practice-content-grid-v6,
  .practice-cta-inner-v6 {
    grid-template-columns: 1fr;
  }
  .practice-sidebar-v6 {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .practice-sidebar-v6 > * {
    margin-bottom: 0;
  }
  .practice-feature-v6 {
    grid-template-columns: 1fr;
  }
  .practice-feature-copy-v6 {
    max-width: 720px;
  }
}
@media (width <= 720px) {
  .practice-hero-v6 {
    min-height: 540px;
    padding: 105px 0 62px;
  }
  .practice-hero-content-v6 h1 {
    font-size: clamp(3rem, 14.8vw, 4.65rem);
  }
  .practice-hero-business-law .practice-hero-media-v6 {
    background-position: 58% center;
  }
  .practice-hero-real-estate-law .practice-hero-media-v6 {
    background-position: 49% 66%;
  }
  .practice-content-grid-v6 {
    gap: 52px;
  }
  .practice-overview-v6 ul,
  .practice-services-grid-v6,
  .practice-sidebar-v6 {
    grid-template-columns: 1fr;
  }
  .practice-overview-v6 li:nth-child(odd) {
    border-right: 0;
  }
  .practice-overview-v6 li:nth-child(even) {
    padding-left: 0;
  }
  .practice-service-card-v6 {
    min-height: 0;
    padding: 28px;
  }
  .practice-service-index-v6 {
    margin-bottom: 34px;
  }
  .practice-feature-v6 {
    padding: 58px 0;
    gap: 36px;
  }
  .practice-image-panel-v6,
  .practice-image-panel-v6 img {
    min-height: 390px;
    height: 390px;
  }
  .practice-image-panel-v6 figcaption {
    flex-direction: column;
    gap: 4px;
  }
  .practice-closing-v6 {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 34px 28px;
  }
  .practice-cta-v6 {
    padding: 54px 0;
  }
  .practice-cta-inner-v6 {
    gap: 34px;
    padding: 34px 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .practice-hero-media-v6,
  .practice-fade-v6,
  .practice-image-panel-v6,
  .practice-service-card-v6,
  .related-grid a.js-reveal {
    opacity: 1;
    animation: none;
    transform: none;
    transition: none;
  }
}
