@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Blacker Sans Pro";
  src: url("../fonts/blacker-sans-pro-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Blacker Sans Pro Display";
  src: url("../fonts/blacker-sans-pro-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "TikTok Sans";
  src: url("../fonts/tiktok-sans-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #101719;
  --muted: #657176;
  --dark: #061c24;
  --dark-2: #10333d;
  --gold: #d3a238;
  --gold-light: #efc65e;
  --paper: #fff;
  --soft: #f8f8f5;
  --line: #dce2df;
  --danger: #a83a32;
  --success: #247257;
  --radius-section: 24px;
  --radius-card: 16px;
  --shadow: 0 18px 54px rgba(6, 28, 36, 0.1);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, "Segoe UI", system-ui, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
}

body {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  flex: 1 0 auto;
}

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

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

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

button {
  cursor: pointer;
}

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

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

.shell {
  width: min(1240px, calc(100% - clamp(28px, 5vw, 72px)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-2);
  left: var(--space-2);
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  min-height: 66px;
  padding: 0 30px;
  color: var(--paper);
  transform: translateX(-50%);
}

body:not(:has(.hero)) .site-header {
  background: var(--dark);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  line-height: 1;
}

.site-header .brand {
  gap: 5px;
}

.brand-monogram {
  display: block;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 0.62;
  letter-spacing: -0.36em;
  transform: skewX(-10deg);
  transform-origin: left center;
}

.brand-monogram-image {
  display: block;
  width: 48px;
  height: auto;
  flex: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.brand small {
  color: #d4a43f;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header nav > a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  background: none;
  color: #f3f1eb;
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-header nav > a::after,
.nav-dropdown > button::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  opacity: 0;
}

.site-header nav > a:hover::after,
.site-header nav > a:focus-visible::after,
.site-header nav > a.is-active::after,
.nav-dropdown > button:hover::after,
.nav-dropdown > button:focus-visible::after,
.nav-dropdown > button.is-active::after {
  opacity: 1;
}

.site-header nav > a.is-active,
.nav-dropdown > button.is-active {
  color: var(--gold-light);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > div {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  display: none;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.nav-dropdown > button[aria-expanded="true"] + div {
  display: grid;
}

.nav-dropdown > div a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 10px;
}

.nav-dropdown > div a:hover,
.nav-dropdown > div a:focus-visible {
  background: var(--soft);
}

.menu-toggle,
.mobile-nav-actions,
.mobile-actions,
.service-scroll-controls,
.rail-controls {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-height: 48px;
  padding: 7px 8px 7px 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #07161b;
  font-weight: 700;
}

.button b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  font-size: 18px;
  font-weight: 500;
}

.button:hover,
.button:focus-visible {
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: var(--space-4);
  color: #80621f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: currentColor;
}

.inline-link {
  color: #80621f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--gold);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: end;
  min-height: min(780px, calc(100vh - 24px));
  min-height: min(780px, calc(100svh - 24px));
  padding: 132px 5.1% 26px;
  overflow: hidden;
  border: 1px solid rgba(212, 164, 63, 0.52);
  border-radius: 34px;
  background: #020c12;
  color: #f7f3ea;
}

.hero-media {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 10, 15, 0.99) 0, rgba(2, 10, 15, 0.96) 35%, rgba(2, 10, 15, 0.48) 56%, rgba(2, 10, 15, 0.08) 78%, rgba(2, 10, 15, 0.24) 100%);
  content: "";
}

.hero-themis {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
}

.hero-decoration {
  position: absolute;
  z-index: 0;
  top: 21%;
  right: 24%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(209, 157, 49, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(209, 157, 49, 0.055), 0 0 0 100px rgba(209, 157, 49, 0.03);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: min(49%, 650px);
  margin-bottom: clamp(48px, 7vh, 64px);
  padding: 0;
}

.hero h1 {
  display: grid;
  max-width: none;
  margin: 0;
  font-style: normal;
  line-height: 1;
}

.hero-title-intro {
  color: rgba(245, 242, 235, 0.88);
  font-family: Manrope, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 520;
  line-height: 1.4;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title-brand {
  display: block;
  margin-top: 10px;
  color: #d5a140;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(128px, 10.4vw, 178px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.055em;
}

.hero-editorial {
  display: grid;
  grid-template-columns: 2px minmax(0, 1fr);
  column-gap: clamp(22px, 2vw, 32px);
  max-width: 620px;
  margin-top: clamp(24px, 3.2vh, 32px);
}

.hero-editorial::before {
  grid-row: 1 / span 2;
  width: 2px;
  background: #d5a140;
  content: "";
}

.hero-values {
  display: grid;
  grid-column: 2;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 14px clamp(28px, 3vw, 48px);
  color: rgba(247, 244, 237, 0.94);
  font-family: Manrope, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-closing {
  grid-column: 2;
  margin: 20px 0 0;
  color: #d9a445;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 2.2vw, 35px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.hero-benefits {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(53%, 620px);
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
  padding: 0 16px;
  border-left: 1px solid rgba(215, 170, 81, 0.36);
}

.hero-benefits li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-benefits i {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: #d9a445;
  color: transparent;
  mask: center / contain no-repeat;
}

.hero-benefits i::after { content: none; }
.hero-benefits li:nth-child(1) i { mask-image: url("../images/icons/shield-check.svg"); }
.hero-benefits li:nth-child(2) i { mask-image: url("../images/icons/file-check.svg"); }
.hero-benefits li:nth-child(3) i { mask-image: url("../images/icons/scale.svg"); }

.hero-benefits span {
  display: grid;
  gap: var(--space-1);
  color: rgba(244, 240, 233, 0.72);
  font-size: 12px;
  line-height: 1.3;
}

.hero-benefits strong {
  color: #f2eee6;
  font-size: 12px;
  font-weight: 680;
}

.hero-signature {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: var(--space-3);
  color: rgba(224, 174, 76, 0.82);
}

.hero-signature > span {
  height: 1px;
  background: rgba(214, 164, 77, 0.45);
}

.hero-signature i {
  font-size: 22px;
}

.hero-signature small {
  color: rgba(243, 239, 231, 0.76);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.content-section {
  padding: var(--space-8) 5%;
}

.content-section h2,
.dark-section h2,
.page-hero h1 {
  margin: 0 0 var(--space-5);
  font-size: clamp(31px, 2.8vw, 43px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 104px);
  align-items: start;
}

.about p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.about-lead p {
  max-width: 30ch;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 650;
  line-height: 1.27;
  letter-spacing: -0.026em;
  text-wrap: balance;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 62ch;
  padding-top: 3px;
}

.about-copy p {
  line-height: 1.65;
}

.about .inline-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.about .inline-link:hover {
  text-decoration-color: var(--ink);
}

.dark-section {
  padding: 38px;
  border-radius: var(--radius-section);
  background: var(--dark);
  color: var(--paper);
}

.dark-section > header,
.attorneys > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-5);
}

.dark-section > header h2,
.attorneys > header h2 {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 768px) {
  .content-rail {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 1px 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-grid.content-rail,
  .attorney-grid.content-rail {
    display: flex;
    grid-template-columns: none;
  }

  .content-rail::-webkit-scrollbar {
    display: none;
  }

  .service-grid.content-rail > article {
    flex: 0 0 clamp(230px, 19vw, 290px);
    scroll-snap-align: start;
  }

  .attorney-grid.content-rail > article,
  .attorney-grid--full.content-rail > article {
    flex: 0 0 clamp(220px, 18vw, 280px);
    scroll-snap-align: start;
  }

  .rail-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
  }

  .rail-controls button {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
  }

  .dark-section .rail-controls button {
    color: var(--paper);
  }

  .rail-controls button:hover:not(:disabled),
  .rail-controls button:focus-visible:not(:disabled) {
    background: var(--gold);
    color: var(--ink);
  }

  .rail-controls button:disabled {
    cursor: default;
    opacity: 0.35;
  }

  .rail-controls svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }
}

.service-card {
  display: flex;
  min-width: 0;
  min-height: 278px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
}

.service-card.light {
  background: var(--soft);
  color: var(--ink);
}

.service-card.dark {
  background: var(--dark-2);
  color: var(--paper);
}

.service-card > div {
  padding: 16px 16px 5px;
}

.service-card h2,
.service-card h3 {
  margin: 5px 0 7px;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.service-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.82;
}

.service-image-link {
  display: block;
  margin-top: auto;
}

.service-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.article-card-grid.listing {
  padding-top: 0;
  padding-bottom: 80px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
}

.article-card-image {
  display: block;
  overflow: hidden;
  background: var(--dark);
}

.article-card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.article-card-grid.listing .article-card-image img {
  height: 290px;
}

.article-card > div {
  padding: 18px 20px 21px;
}

.article-card time {
  display: block;
  margin-bottom: 11px;
  color: #806621;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.article-card h2,
.article-card h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.attorneys.dark-section {
  margin-top: 20px;
}

.attorney-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.attorney-grid--full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding-top: 0;
  padding-bottom: 80px;
}

.attorney-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
}

.attorney-photo {
  display: block;
  overflow: hidden;
  background: var(--dark-2);
}

.attorney-photo img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center top;
}

.attorney-grid--full .attorney-photo img {
  height: 410px;
}

.attorney-card-copy,
.attorneys .attorney-card-copy {
  display: grid;
  grid-template-rows: minmax(52px, auto) 1fr;
  flex: 1;
  min-height: 0;
  padding: 19px 18px 17px;
}

.attorney-grid--full .attorney-card-copy {
  padding: 23px;
}

.attorney-card-copy h2,
.attorney-card-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.attorney-grid--full .attorney-card-copy h2 {
  font-size: 27px;
}

.attorney-card-copy h2 > a,
.attorney-card-copy h3 > a {
  display: grid;
}

.attorney-card-copy h2 > a span:first-child,
.attorney-card-copy h3 > a span:first-child {
  font-weight: 500;
}

.attorney-card-copy h2 > a span:last-child,
.attorney-card-copy h3 > a span:last-child {
  font-weight: 800;
}

.attorney-meta {
  display: flex;
  min-height: 0;
  flex-direction: column;
  margin: 0;
  padding-top: 10px;
  color: #536166;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.attorney-specializations {
  display: grid;
  gap: 4px;
}

.attorney-specializations > span {
  display: block;
  overflow-wrap: anywhere;
}

.attorney-experience {
  display: block;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #8c6c22;
}

.contacts {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7%;
  align-items: stretch;
  border-radius: 0;
  box-shadow: none;
}

.contacts p {
  max-width: 54ch;
  color: var(--muted);
}

.contacts > div > p a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.messenger-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--paper);
  font-size: 14px;
  font-weight: 650;
  transition: background-color 160ms ease, color 160ms ease;
}

.messengers i {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--paper);
  color: transparent;
  mask: center / contain no-repeat;
}

.messengers > :nth-child(1) i { mask-image: url("../images/icons/whatsapp.svg"); }
.messengers > :nth-child(2) i { mask-image: url("../images/icons/telegram.svg"); }
.messengers > :nth-child(3) i { mask-image: url("../images/icons/max-mark.svg"); }

.messengers a:hover,
.messengers a:focus-visible {
  background: var(--gold);
  color: var(--dark);
}

.messengers a:hover i,
.messengers a:focus-visible i {
  background: var(--dark);
}

.messenger-link.is-disabled {
  cursor: not-allowed;
  opacity: .55;
}

.map-placeholder {
  display: grid;
  min-height: 380px;
  place-items: center;
  align-content: center;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #e8edeb;
  text-align: center;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.map-placeholder:has(iframe) {
  position: relative;
  display: block;
}

.map-placeholder:has(iframe) iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.page-hero {
  padding: 92px 5% 24px;
}

.page-hero--contacts {
  padding-bottom: 16px;
}

.page-hero--contacts + .contacts {
  padding-top: 30px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(36px, 4.3vw, 58px);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.sitemap-hero {
  padding-bottom: 38px;
}

.sitemap-hero p {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
}

.sitemap-panel {
  padding: clamp(28px, 4vw, 56px);
}

.sitemap-primary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-bottom: clamp(30px, 4vw, 50px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.sitemap-primary a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.sitemap-primary span {
  color: #fff;
  font-size: 18px;
  transition: transform 160ms ease;
}

.sitemap-primary a:hover span,
.sitemap-primary a:focus-visible span {
  transform: translate(2px, -2px);
}

.sitemap-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(30px, 4vw, 50px);
}

.sitemap-groups h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(19px, 1.6vw, 24px);
}

.sitemap-groups ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-groups a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.sitemap-groups a:hover,
.sitemap-groups a:focus-visible {
  color: #fff;
  text-decoration-color: var(--gold);
}

.detail {
  padding: 92px 5% 80px;
}

.breadcrumbs {
  max-width: 75ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  text-decoration-color: currentColor;
}

.detail > header {
  max-width: 900px;
  margin-bottom: 56px;
}

.detail h1 {
  margin: 12px 0;
  font-size: clamp(46px, 5.5vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.detail > header > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 21px;
}

.detail-image {
  margin: 36px 0 0;
}

.detail-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.article-intro {
  max-width: 900px;
  margin-bottom: 56px;
}

.article-intro-copy > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 21px;
}

.article-meta {
  margin-top: 22px;
  color: var(--ink);
  font-size: 14px;
}

.article-category,
.article-meta-separator,
.article-toc {
  display: none;
}

.article-reading-layout {
  display: block;
}

@media (min-width: 1280px) {
  .article-detail {
    padding: 74px 42px 96px;
  }

  .article-detail .breadcrumbs {
    margin-bottom: 38px;
  }

  .article-detail > .article-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
    column-gap: clamp(56px, 5vw, 76px);
    align-items: start;
    max-width: none;
    margin-bottom: 0;
    padding-bottom: 42px;
    border-bottom: 1px solid var(--line);
  }

  .article-intro-copy {
    padding-top: 24px;
  }

  .article-detail h1 {
    margin: 0;
    font-size: clamp(40px, 3.1vw, 44px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: pretty;
  }

  .article-intro-copy > p {
    max-width: 34ch;
    margin: 28px 0 0;
    font-size: 20px;
    line-height: 1.55;
  }

  .article-meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
    padding-top: 32px;
  }

  .article-meta::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 68px;
    height: 2px;
    background: var(--gold);
    content: "";
  }

  .article-category,
  .article-meta-separator {
    display: block;
  }

  .article-category {
    color: #9a7420;
    font-size: 16px;
    font-weight: 700;
  }

  .article-meta-separator {
    width: 1px;
    height: 24px;
    background: var(--line);
  }

  .article-detail .article-detail-image {
    width: 100%;
    margin: 0;
  }

  .article-detail .article-detail-image img {
    max-height: 360px;
    aspect-ratio: 3 / 2;
  }

  .article-reading-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 760px);
    gap: 64px;
    align-items: start;
    margin-top: 48px;
  }

  .article-toc {
    position: sticky;
    top: 108px;
    display: block;
    padding-right: 38px;
    border-right: 1px solid var(--line);
  }

  .article-toc > strong {
    display: block;
    margin-bottom: 22px;
    font-size: 17px;
  }

  .article-toc nav {
    display: grid;
  }

  .article-toc a {
    position: relative;
    padding: 17px 0 17px 16px;
    border-top: 1px solid var(--line);
    color: #394449;
    font-size: 14px;
    line-height: 1.35;
  }

  .article-toc a:first-child {
    border-top: 0;
    color: #9a7420;
  }

  .article-toc a:first-child::before {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 0;
    width: 2px;
    background: var(--gold);
    content: "";
  }

  .article-toc a:hover,
  .article-toc a:focus-visible {
    color: #806116;
  }

  .article-content {
    max-width: 760px;
  }

  .article-content h2 {
    margin: 0 0 18px;
    font-size: clamp(29px, 2.3vw, 34px);
  }

  .article-content h2:not(:first-child) {
    margin-top: 38px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }

  .article-content p,
  .article-content li {
    font-size: 17px;
    line-height: 1.7;
  }
}

.rich-content {
  max-width: 72ch;
}

.rich-content h2 {
  margin: 56px 0 18px;
  font-size: clamp(29px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.rich-content p,
.rich-content li {
  color: #394449;
  font-size: 18px;
  line-height: 1.65;
}

.rich-content li + li {
  margin-top: var(--space-2);
}

.accordion {
  display: grid;
  gap: 16px;
}

.rich-content > .accordion + .accordion {
  margin-top: 16px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

.accordion summary {
  min-height: 52px;
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
}

.accordion details p {
  padding: 0 20px 18px;
  color: var(--muted);
}

.detail-cta {
  margin-top: 64px;
}

.attorney-detail {
  padding-top: 88px;
}

.attorney-layout {
  display: grid;
  grid-template-columns: minmax(310px, 420px) 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.attorney-profile-card {
  overflow: hidden;
  border-radius: var(--radius-section);
  background: var(--soft);
}

.attorney-profile-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center top;
  background: var(--soft);
}

.attorney-profile-info {
  padding: 28px;
}

.attorney-profile-info h1 {
  margin: 0;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.04;
}

.attorney-profile-info > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.attorney-facts {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
}

.attorney-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-4);
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.attorney-facts dt {
  color: #72581e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.attorney-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .attorney-profile-card img {
    height: min(250px, 32svh);
    aspect-ratio: auto;
  }

  .attorney-profile-info {
    padding: 20px 22px 22px;
  }

  .attorney-profile-info h1 {
    font-size: clamp(34px, 2.8vw, 38px);
  }

  .attorney-profile-info > p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .attorney-facts {
    gap: 0;
    margin-top: 18px;
  }

  .attorney-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .attorney-facts dt {
    font-size: 10px;
  }

  .attorney-facts dd {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .site-footer.shell {
    width: 100%;
    border-radius: 0;
  }

  body:not(:has(.hero)) .site-header {
    border-radius: 0;
  }
}

.attorney-biography {
  max-width: none;
  margin: 0;
  padding: 38px;
  border-left: 1px solid var(--gold);
  background: #fbfbf8;
}

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

.attorney-biography.rich-content h2 {
  font-size: clamp(24px, 2vw, 30px);
}

.attorney-biography.rich-content p,
.attorney-biography.rich-content li {
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr 1fr;
  width: min(1240px, calc(100% - clamp(28px, 5vw, 72px)));
  gap: 20px;
  padding: 22px 28px;
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  background: var(--dark);
  color: var(--paper);
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 18px;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  font-size: 11px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer p {
  align-self: end;
  margin: 0;
  color: #aebdc1;
  font-size: 10px;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: auto;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: fit-content;
  max-width: calc(100vw - 40px);
  min-height: 62px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(10, 29, 34, 0.97);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  flex: 0 1 auto;
  margin: 0;
  color: rgba(230, 235, 234, 0.62);
  font-size: 13.5px;
  line-height: 1.4;
  white-space: nowrap;
}

.cookie-banner strong {
  color: #f2f5f3;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.cookie-banner .button {
  flex: 0 0 auto;
  gap: 11px;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d7b564;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cookie-banner__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: #dcbd70;
}

.cookie-banner__icon svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-banner .button:hover,
.cookie-banner .button:focus-visible {
  background: transparent;
  color: #e5c778;
}

.cookie-banner .button:hover .cookie-banner__icon,
.cookie-banner .button:focus-visible .cookie-banner__icon {
  border-color: rgba(229, 199, 120, 0.48);
  background: rgba(229, 199, 120, 0.08);
}

@media (min-width: 1280px) {
  .hero.shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    margin: 0;
    padding: 140px clamp(72px, 12vw, 220px) 34px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .site-header {
    grid-template-columns: 220px 1fr 220px;
  }

  .site-header nav {
    grid-column: 2;
    justify-self: center;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .hero.shell {
    padding-bottom: 82px;
  }
}

@media (min-width: 1280px) {
  .attorney-profile-card,
  .attorney-profile-card img {
    background: transparent;
  }

  .attorney-grid--full {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: calc(100svh - 179px);
    min-height: 0;
    gap: 18px;
    padding-bottom: 0;
  }

  .attorney-grid--full article {
    min-height: 0;
  }

  .attorney-grid--full .attorney-photo img {
    height: clamp(150px, 24vh, 246px);
  }

  .attorney-grid--full .attorney-card-copy {
    padding: 15px;
  }

  .attorney-grid--full .attorney-card-copy h2 {
    font-size: clamp(18px, 1.35vw, 22px);
  }

  .attorneys.dark-section .attorney-grid.content-rail > article {
    flex-basis: calc((100% - 56px) / 5);
  }

  .attorneys.dark-section .attorney-grid.content-rail[data-rail-page-size="5"]::after {
    content: "";
    flex: 0 0 calc(60% + 12px);
  }

  .services.dark-section .service-grid.content-rail[data-rail-page-size="5"]::after {
    content: "";
    flex: 0 0 calc(60% - 4px);
  }

  .services.dark-section .service-grid.content-rail[data-rail-page-size="5"] > article {
    flex-basis: calc((100% - 64px) / 5);
  }
}

.not-found {
  min-height: 75vh;
  padding: 112px 5% 80px;
}

.not-found > p:first-child {
  margin: 0;
  color: var(--gold);
  font-size: 100px;
}

.not-found h1 {
  font-size: clamp(38px, 5vw, 52px);
  overflow-wrap: anywhere;
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 1279px) {
  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .site-header nav {
    gap: 19px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
  }

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

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

  .attorney-photo img,
  .attorney-grid--full .attorney-photo img {
    height: 340px;
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: min(720px, calc(100vh - 24px));
    min-height: min(720px, calc(100svh - 24px));
    padding: 122px 5% 24px;
  }

  .hero-copy {
    width: 56%;
    margin-bottom: clamp(28px, 5vh, 40px);
  }

  .hero-title-brand {
    font-size: clamp(104px, 12.5vw, 138px);
  }

  .hero-editorial {
    column-gap: 20px;
    max-width: 540px;
    margin-top: 22px;
  }

  .hero-values {
    gap: 12px 24px;
    font-size: clamp(16px, 1.9vw, 20px);
  }

  .hero-closing {
    font-size: clamp(25px, 3vw, 30px);
  }

  .hero-benefits {
    width: 70%;
    margin-top: 20px;
  }

  .hero-benefits li {
    gap: var(--space-2);
    padding-inline: 12px;
  }

  .hero-decoration {
    right: 18%;
    width: 55%;
  }

  .attorney-layout {
    grid-template-columns: minmax(250px, 34%) 1fr;
    gap: var(--space-7);
  }
}

@media (min-width: 768px) {
  .site-header.shell,
  .hero.shell {
    width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .site-header nav {
    grid-column: 2;
    justify-self: center;
  }

  .hero.shell {
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    margin: 0;
    border-radius: 0;
  }
}

@media (min-width: 768px) and (max-height: 700px) {
  .hero,
  .hero.shell {
    padding-top: clamp(96px, 16svh, 116px);
    padding-bottom: clamp(18px, 3svh, 26px);
  }

  .hero-title-intro {
    font-size: 12px;
  }

  .hero-copy {
    margin-bottom: 24px;
  }

  .hero-title-brand {
    font-size: clamp(104px, 9vw, 138px);
  }

  .hero-editorial {
    margin-top: 16px;
  }

  .hero-values {
    gap-block: 10px;
    font-size: clamp(16px, 1.35vw, 19px);
  }

  .hero-closing {
    margin-top: 14px;
    font-size: clamp(24px, 2vw, 29px);
  }

  .hero-benefits {
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding-inline: 24px;
  }

  .site-header nav {
    position: static;
    grid-column: 2;
    justify-self: center;
    display: flex;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header nav > a,
  .nav-dropdown > button {
    padding-inline: 0;
    color: #f3f1eb;
    font-size: 11px;
  }

  .menu-toggle {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1279px) and (orientation: portrait) {
  .article-detail .article-detail-image {
    width: min(620px, 68vw);
  }

  .site-header {
    min-height: 78px;
    padding-inline: clamp(28px, 6vw, 56px);
  }

  .site-header nav {
    gap: clamp(20px, 3vw, 34px);
    transform: translateX(clamp(40px, 6vw, 64px));
  }

  .site-header nav > a,
  .nav-dropdown > button {
    font-size: clamp(14px, 1.8vw, 17px);
  }

  .hero.shell {
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-height: clamp(620px, 72vw, 780px);
    height: clamp(620px, 72vw, 780px);
    align-content: stretch;
    padding: clamp(118px, 13svh, 176px) clamp(48px, 8vw, 90px) clamp(34px, 4svh, 60px);
  }

  .hero-copy {
    grid-row: 1;
    align-self: start;
    width: min(72%, 720px);
    margin-bottom: 0;
  }

  .hero-title-brand {
    font-size: clamp(132px, 15vw, 170px);
  }

  .hero-editorial {
    max-width: 680px;
    margin-top: 26px;
  }

  .hero-values {
    font-size: clamp(22px, 2.7vw, 30px);
  }

  .hero-closing {
    margin-top: 18px;
    font-size: clamp(31px, 3.5vw, 39px);
  }

  .hero-benefits {
    grid-row: 3;
    align-self: end;
    width: 100%;
    margin-top: 0;
  }

  .hero-benefits strong {
    font-size: clamp(14px, 1.8vw, 18px);
  }
}

@media (min-width: 768px) and (orientation: landscape) and (max-height: 720px) {
  .hero.shell {
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    padding: clamp(88px, 15svh, 108px) clamp(48px, 12vw, 160px) clamp(46px, 8svh, 60px);
  }

  .hero-copy {
    grid-row: 1;
    align-self: start;
    margin-bottom: 0;
    transform: none;
  }

  .hero-benefits {
    grid-row: 3;
    align-self: end;
    width: min(70%, 620px);
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .shell {
    width: calc(100% - 24px);
  }

  .site-header.shell,
  .hero.shell,
  .dark-section.shell,
  .site-footer.shell {
    width: 100%;
    border-radius: 0;
  }

  body:not(:has(.hero)) .site-header {
    border-radius: 0;
  }

  .site-header {
    top: 0;
    grid-template-columns: 1fr auto;
    min-height: 54px;
    padding: 0 20px;
  }

  .brand {
    gap: 9px;
  }

  .brand-monogram {
    font-size: 40px;
  }

  .brand-monogram-image {
    width: 42px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 8px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--paper);
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: currentColor;
  }

  .site-header nav {
    position: absolute;
    z-index: 30;
    top: 62px;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    gap: var(--space-1);
    padding: var(--space-3);
    border: 1px solid rgba(239, 198, 94, 0.34);
    border-radius: var(--radius-card);
    background: var(--dark);
    color: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header nav.open {
    display: grid;
  }

  .site-header nav > a,
  .nav-dropdown > button {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--paper);
    font-size: 13px;
    text-align: left;
  }

  .site-header nav > a::after,
  .nav-dropdown > button::after {
    right: 12px;
    left: 12px;
  }

  .nav-dropdown > div {
    position: static;
    min-width: 0;
    margin: 0 4px var(--space-2);
    border-color: rgba(255, 255, 255, 0.16);
    background: var(--dark-2);
    color: var(--paper);
    box-shadow: none;
  }

  .nav-dropdown > div a:hover,
  .nav-dropdown > div a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: var(--space-2);
    padding: 10px 4px 2px;
  }

  .mobile-nav-actions a {
    display: grid;
    min-height: 44px;
    place-items: center;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-nav-actions a:first-child {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--dark);
  }

  .hero {
    grid-template-rows: auto minmax(170px, 1fr) auto;
    min-height: 0;
    height: calc(100svh - 58px - env(safe-area-inset-bottom));
    padding: 86px 22px 14px;
    border: 0;
  }

  .hero-media {
    inset: 260px 0 0;
  }

  .hero-media::after {
    background: linear-gradient(180deg, #020c12 0, rgba(2, 12, 18, 0.38) 28%, rgba(2, 12, 18, 0.12) 58%, rgba(2, 12, 18, 0.9) 100%);
  }

  .hero-themis {
    object-position: 56% center;
  }

  .hero-decoration {
    top: 43%;
    right: 5%;
    width: 80%;
    box-shadow: 0 0 0 30px rgba(209, 157, 49, 0.045), 0 0 0 60px rgba(209, 157, 49, 0.02);
  }

  .hero-copy {
    grid-row: 1;
    width: 100%;
    margin-bottom: 0;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-title-intro {
    font-size: 10.5px;
    letter-spacing: 0.22em;
  }

  .hero-title-brand {
    margin-top: 6px;
    font-size: clamp(76px, 23vw, 92px);
  }

  .hero-editorial {
    grid-template-columns: 1px minmax(0, 1fr);
    column-gap: 14px;
    max-width: 320px;
    margin-top: 16px;
  }

  .hero-editorial::before {
    width: 1px;
  }

  .hero-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 14px;
    font-size: 13px;
  }

  .hero-closing {
    margin-top: 10px;
    font-size: 21px;
    white-space: normal;
  }

  .hero-benefits {
    grid-row: 3;
    grid-template-columns: 1fr;
    width: auto;
    margin: var(--space-2) 0 0;
    padding: 7px 14px;
    border-radius: 12px;
    background: rgba(2, 12, 18, 0.78);
  }

  .hero-benefits li {
    min-height: 34px;
    gap: 10px;
    padding: 4px 0;
    border-top: 1px solid rgba(215, 170, 81, 0.28);
    border-left: 0;
  }

  .hero-benefits li:first-child {
    border-top: 0;
  }

  .hero-benefits i {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .hero-benefits span {
    grid-template-columns: minmax(0, auto) 1fr;
    gap: 7px;
    font-size: 11px;
  }

  .hero-benefits strong {
    font-size: 12px;
  }

  .hero-signature {
    grid-row: 4;
    gap: var(--space-2);
    margin-top: var(--space-2);
  }

  .hero-signature i {
    font-size: 17px;
  }

  .hero-signature small {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .content-section {
    padding: 56px 16px;
  }

  .content-section h2,
  .dark-section h2 {
    font-size: 32px;
  }

  .about,
  .contacts {
    grid-template-columns: 1fr;
  }

  .about {
    gap: var(--space-5);
  }

  .about-lead p {
    max-width: 28ch;
    font-size: 23px;
  }

  .about-copy {
    gap: var(--space-4);
    padding-top: 0;
  }

  .dark-section {
    padding: 26px 20px;
  }

  .dark-section > header,
  .attorneys > header {
    align-items: flex-start;
    gap: var(--space-4);
  }

  .service-grid {
    display: flex;
    gap: var(--space-3);
    margin-inline: -8px;
    padding: 0 8px 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 min(210px, calc(100vw - 104px));
    scroll-snap-align: start;
  }

  .service-scroll-controls {
    display: none;
  }

  .article-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-card {
    display: grid;
    grid-template-columns: 128px 1fr;
  }

  .article-card-image img,
  .article-card-grid.listing .article-card-image img {
    height: 100%;
    min-height: 132px;
  }

  .article-card > div {
    padding: 15px;
  }

  .article-card h2,
  .article-card h3 {
    font-size: 18px;
  }

  .article-card time {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .attorney-grid,
  .attorney-grid--full {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .attorney-grid article,
  .attorney-grid--full article {
    display: grid;
    grid-template-columns: 142px 1fr;
  }

  .attorney-photo img,
  .attorney-grid--full .attorney-photo img {
    height: 100%;
    min-height: 225px;
  }

  .attorney-card-copy,
  .attorneys .attorney-card-copy,
  .attorney-grid--full .attorney-card-copy {
    grid-template-rows: minmax(45px, auto) 1fr;
    padding: 15px;
  }

  .attorney-card-copy h2,
  .attorney-card-copy h3,
  .attorney-grid--full .attorney-card-copy h2 {
    font-size: 20px;
  }

  .attorney-meta {
    grid-template-rows: minmax(47px, auto) minmax(31px, auto);
    padding-top: 7px;
  }

  .page-hero {
    padding: 74px 16px 18px;
  }

  .page-hero--contacts {
    padding-bottom: 8px;
  }

  .page-hero--contacts + .contacts {
    padding-top: 26px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .sitemap-hero {
    padding-bottom: 26px;
  }

  .sitemap-hero p {
    margin-top: 14px;
    font-size: 16px;
  }

  .sitemap-panel {
    padding: 28px 20px;
  }

  .sitemap-primary,
  .sitemap-groups {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sitemap-primary {
    padding-bottom: 18px;
  }

  .sitemap-primary a {
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sitemap-groups {
    padding-top: 10px;
  }

  .sitemap-groups section {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sitemap-groups section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .detail {
    padding: 76px 16px 60px;
  }

  .article-detail {
    padding-top: 72px;
  }

  .article-detail .breadcrumbs {
    margin-bottom: 16px;
  }

  .breadcrumbs {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .detail h1 {
    font-size: clamp(29px, 7.6vw, 34px);
  }

  .attorney-profile-info h1 {
    font-size: clamp(31px, 8.6vw, 38px);
  }

  .detail h1,
  .attorney-profile-info h1 {
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .detail > header > p {
    font-size: 19px;
    line-height: 1.55;
  }

  .article-intro-copy > p {
    font-size: 19px;
    line-height: 1.55;
  }

  .rich-content h2 {
    margin-top: 44px;
    font-size: 29px;
  }

  .rich-content p,
  .rich-content li {
    font-size: 16px;
  }

  .attorney-detail {
    padding-top: 84px;
  }

  .attorney-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .attorney-profile-info {
    padding: 24px 20px;
  }

  .attorney-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .attorney-biography {
    padding: 24px 20px;
  }

  .contacts {
    gap: var(--space-6);
    margin-inline: 12px;
    padding-inline: 20px;
  }

  .map-placeholder,
  .map-placeholder iframe {
    min-height: 330px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 28px 20px 24px;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    width: auto;
    min-height: 0;
    padding: 12px 14px;
    transform: none;
  }

  .cookie-banner strong {
    grid-column: 1 / -1;
  }

  .cookie-banner p {
    white-space: normal;
  }

  .mobile-actions {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--paper);
    box-shadow: 0 -8px 28px rgba(6, 28, 36, 0.15);
  }

  .mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    place-items: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 750;
    text-align: center;
  }

  .mobile-actions svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-actions a:first-child {
    background: var(--gold);
  }
}

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