:root {
  --navy: #0f1b2d;
  --navy-soft: #172438;
  --ivory: #f4f0e8;
  --ink: #191919;
  --brass: #a98652;
  --stone: #d8d4cc;
  --stone-deep: #a9a39a;
  --white: #ffffff;
  --error: #9d2b2b;
  --success: #236248;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", Arial, sans-serif;
  --container: 1180px;
  --narrow: 760px;
  --radius: 4px;
  --header-height: 78px;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

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

::selection {
  background: var(--brass);
  color: var(--white);
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: 2.45rem;
}

h2 {
  max-width: 760px;
  font-size: 2rem;
}

h3 {
  font-size: 1.28rem;
}

p {
  max-width: 700px;
}

ul,
ol,
dl {
  margin-top: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container.narrow,
.narrow {
  max-width: var(--narrow);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--navy);
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--brass);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(216, 212, 204, 0.18);
  transition: background 160ms ease, border-color 160ms ease;
}

.header-inner {
  width: min(100% - 32px, var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: min-height 160ms ease;
}

.site-header.is-condensed .header-inner {
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 44px;
  color: inherit;
}

.brand__logo {
  width: clamp(164px, 18vw, 220px);
  max-height: 50px;
  padding: 0.26rem 0.42rem;
  border: 1px solid rgba(169, 134, 82, 0.36);
  border-radius: 2px;
  background: var(--ivory);
  object-fit: contain;
}

.brand__logo--dark {
  padding: 0;
  border: 0;
  background: transparent;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.brand__text {
  font-family: var(--serif);
  font-size: 1.18rem;
}

.desktop-nav {
  display: none;
  justify-content: center;
  gap: 1.25rem;
  align-items: center;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
  cursor: pointer;
  font-size: 0.96rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brass);
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  width: 260px;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--stone);
  padding: 0.55rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown.is-open,
.nav-group:focus-within .dropdown,
.nav-group:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--stone);
}

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

.dropdown a:hover,
.dropdown a:focus-visible {
  color: var(--navy);
  background: var(--ivory);
}

.header-contact {
  display: none;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.menu-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  padding: 0 0.85rem;
}

.menu-toggle__label {
  font-size: 0.95rem;
}

.menu-toggle__icon {
  display: grid;
  gap: 5px;
  width: 18px;
}

.menu-toggle__icon span {
  display: block;
  height: 1px;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(216, 212, 204, 0.18);
  padding: 1.25rem 1rem 2rem;
}

.mobile-panel nav,
.mobile-panel__group {
  display: grid;
  gap: 0.35rem;
}

.mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(216, 212, 204, 0.18);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.mobile-panel__group {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.mobile-panel__group a {
  font-family: var(--sans);
  font-size: 1.02rem;
}

.mobile-panel__contact {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.82);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 0.66rem 0.95rem;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary,
.button--header {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.button--header {
  min-height: 40px;
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  padding-inline: 0.8rem;
}

.button--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--stone-deep);
}

.button--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.button--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 0.24em;
  transition: color 160ms ease, gap 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 0.7rem;
  color: var(--brass);
}

.section,
.page-hero,
.article-page {
  padding: 4.25rem 0;
}

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

.section-light {
  background: var(--ivory);
}

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

.section-dark p,
.section-dark dt {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--brass);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.home-hero {
  padding: 4.8rem 0 3rem;
}

.home-hero__grid,
.page-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.home-hero__content p {
  font-size: 1.05rem;
}

.home-hero h1 {
  margin-bottom: 1.25rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0;
}

.trust-line {
  margin-bottom: 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(216, 212, 204, 0.26);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.home-hero__media {
  margin: 0;
}

.home-hero__image,
.page-hero__image,
.image-split__image,
.image-frame {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(216, 212, 204, 0.42);
  border-radius: var(--radius);
  background: var(--stone);
}

.home-hero__image {
  aspect-ratio: 5 / 4;
}

.page-hero__image,
.image-split__image {
  aspect-ratio: 4 / 5;
}

.home-hero__image img,
.page-hero__image img,
.image-split__image img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero figcaption {
  margin-top: 0.9rem;
  padding-left: 1rem;
  border-left: 2px solid var(--brass);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.editorial-split {
  display: grid;
  gap: 1.2rem;
}

.editorial-split aside {
  border-top: 2px solid var(--brass);
  padding-top: 0.85rem;
}

.ruled-list,
.values-list {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.ruled-list li,
.values-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--stone);
}

.values-list {
  grid-template-columns: 1fr;
}

.practice-index {
  border-bottom: 1px solid var(--stone);
}

.practice-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--stone);
}

.practice-row__number {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.practice-row h3 {
  margin-bottom: 0.35rem;
}

.practice-row p {
  margin-bottom: 0;
}

.stats-band {
  padding: 3.2rem 0;
}

.stats-band .container {
  display: grid;
  gap: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(216, 212, 204, 0.24);
}

.stats-grid div {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(216, 212, 204, 0.24);
}

.stats-grid dt {
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

.stats-grid dd {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.45rem;
  line-height: 1;
}

.image-split,
.two-column,
.contact-grid,
.service-layout {
  display: grid;
  gap: 2rem;
}

.attorney-grid {
  display: grid;
  gap: 1rem;
}

.attorney-card {
  display: grid;
  gap: 0;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.attorney-card__portrait {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy);
}

.attorney-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.7rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.portrait-placeholder span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.portrait-placeholder small {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.attorney-card__body {
  padding: 1.2rem;
}

.profile-list,
.article-meta,
.article-preview dl,
.contact-details dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.profile-list div,
.article-meta div,
.article-preview dl div,
.contact-details dl div {
  display: grid;
  gap: 0.2rem;
}

.profile-list dt,
.article-meta dt,
.article-preview dt,
.contact-details dt {
  color: var(--brass);
  font-weight: 700;
}

.profile-list dd,
.article-meta dd,
.article-preview dd,
.contact-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.insight-strip,
.article-grid {
  display: grid;
  gap: 1rem;
  margin: 1.3rem 0;
}

.article-preview {
  border-top: 1px solid var(--stone);
  padding-top: 1.2rem;
}

.article-preview h3 a {
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 0.22em;
}

.article-preview dl {
  grid-template-columns: 1fr;
  font-size: 0.94rem;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding-top: 3.6rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
  margin-bottom: 1.2rem;
}

.breadcrumbs {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: var(--brass);
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-color: rgba(169, 134, 82, 0.7);
  text-underline-offset: 0.2em;
}

.expertise-overview {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--stone);
}

.expertise-overview article {
  display: grid;
  gap: 1.3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--stone);
}

.service-sidebar {
  border-top: 2px solid var(--brass);
  padding-top: 1rem;
}

.service-body {
  display: grid;
  gap: 2rem;
}

.text-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone);
}

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  border-top: 1px solid var(--stone);
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone);
}

.process-list span {
  color: var(--brass);
  font-family: var(--serif);
}

.process-list p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--stone);
}

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

.faq-list summary {
  cursor: pointer;
  padding: 1.05rem 0;
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 1.2rem;
}

.cta-section {
  padding: 3.25rem 0;
}

.cta-section__inner {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.category-bar span {
  border-top: 1px solid var(--brass);
  padding: 0.45rem 0.65rem 0 0;
  color: var(--navy);
  font-weight: 700;
}

.article-page {
  background: var(--ivory);
}

.article-header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone);
}

.article-header h1 {
  color: var(--ink);
}

.article-header p {
  font-size: 1.08rem;
}

.article-meta {
  margin-top: 1.5rem;
}

.toc,
.legal-notice,
.article-cta {
  margin: 2rem 0;
  padding: 1.2rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
}

.toc h2,
.article-cta h2 {
  font-size: 1.35rem;
}

.article-body section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--stone);
}

.legal-notice,
.legal-small,
.field-help {
  font-size: 0.92rem;
  color: #57524c;
  overflow-wrap: anywhere;
}

.section-dark .legal-small,
.site-footer .legal-small {
  color: rgba(255, 255, 255, 0.68);
}

.contact-details {
  align-self: start;
}

.contact-details h2,
.contact-form h2 {
  font-size: 1.65rem;
}

.map-placeholder {
  min-height: 220px;
  margin-top: 1.5rem;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  padding: 1.2rem;
  border: 1px solid var(--stone);
  background: var(--ivory);
  text-align: center;
  color: #57524c;
}

.contact-form {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.15rem;
}

.form-notice {
  padding: 1rem;
  border-left: 2px solid var(--brass);
  background: var(--ivory);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

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

.field label {
  font-weight: 700;
}

.field label span {
  color: var(--brass);
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--stone-deep);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem 0.7rem;
}

.field textarea {
  resize: vertical;
}

.field-error {
  min-height: 1.25rem;
  margin: 0;
  color: var(--error);
  font-size: 0.92rem;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--error);
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
}

.consent-field input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.35rem;
}

.consent-field .field-error {
  grid-column: 2;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--success);
  border-radius: var(--radius);
  color: var(--success);
  background: #eef6f1;
}

.form-message.is-error {
  border-color: var(--error);
  color: var(--error);
  background: #fbefef;
}

.legal-page section {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--stone);
}

.legal-page h2 {
  font-size: 1.45rem;
}

.not-found {
  min-height: 58vh;
  display: grid;
  place-items: center;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  gap: 2.3rem;
}

.footer-statement {
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

.footer-statement p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(216, 212, 204, 0.2);
}

.footer-grid h2 {
  margin-bottom: 0.8rem;
  color: var(--brass);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid a {
  min-height: 32px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-base {
  display: grid;
  gap: 0.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(216, 212, 204, 0.2);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-base p {
  margin: 0;
}

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

@media (min-width: 700px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .container {
    width: min(100% - 48px, var(--container));
  }

  .section,
  .page-hero,
  .article-page {
    padding: 5.25rem 0;
  }

  .home-hero {
    padding: 5.6rem 0 4rem;
  }

  .practice-row {
    grid-template-columns: 76px 1fr auto;
    align-items: center;
    gap: 1.4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div {
    padding-right: 1.4rem;
  }

  .values-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

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

  .attorney-card {
    grid-template-rows: auto 1fr;
  }

  .article-preview dl,
  .article-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }

  .header-contact {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.9fr);
    gap: 3rem;
  }

  .home-hero h1 {
    font-size: 3.65rem;
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.58fr);
    gap: 3rem;
  }

  .page-hero:not(.page-hero--split) .page-hero__grid {
    grid-template-columns: minmax(0, 0.78fr);
  }

  .editorial-split,
  .two-column {
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .image-split {
    grid-template-columns: minmax(0, 0.82fr) minmax(330px, 0.58fr);
    gap: 3rem;
    align-items: center;
  }

  .stats-band .container {
    grid-template-columns: 0.42fr 1fr;
    align-items: start;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(216, 212, 204, 0.24);
  }

  .stats-grid div {
    border-bottom: 0;
    border-right: 1px solid rgba(216, 212, 204, 0.24);
    padding: 0.35rem 1.1rem 0.8rem;
  }

  .stats-grid div:last-child {
    border-right: 0;
  }

  .expertise-overview article {
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.64fr);
    gap: 3rem;
  }

  .service-layout {
    grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .service-sidebar {
    position: sticky;
    top: 96px;
  }

  .contact-grid {
    grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
    align-items: start;
    gap: 3rem;
  }

  .cta-section__inner {
    grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.56fr) auto;
  }

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

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

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

  .home-hero h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .attorney-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
