:root {
  --navy-950: #061426;
  --navy-900: #091c34;
  --navy-800: #0d294b;
  --navy-700: #163a63;
  --ink: #12233a;
  --muted: #536276;
  --line: #d8dee6;
  --paper: #f8f7f3;
  --white: #ffffff;
  --gold: #b59a63;
  --shadow: 0 24px 70px rgba(6, 20, 38, 0.14);
  --firm-font: Georgia, "Times New Roman", serif;
  color-scheme: light;
  font-family: var(--firm-font);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

body.no-js-gate {
  min-height: 100vh;
}

section[id] {
  scroll-margin-top: 118px;
}

img,
svg {
  display: block;
}

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

a:hover {
  color: var(--navy-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 222, 230, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.topbar,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 96px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 78px;
  height: 64px;
  background: url("/assets/rl-mark.png") center / contain no-repeat;
  color: transparent;
  overflow: hidden;
  text-indent: -9999px;
  line-height: 1;
}

.brand-text {
  display: inline-block;
}

.brand-wordmark {
  display: block;
  flex: 0 0 auto;
  width: clamp(380px, 34vw, 460px);
  margin-left: 0;
  aspect-ratio: 488 / 62;
  background: url("/assets/rl-wordmark.svg?v=20260618-vector1") center / contain no-repeat;
  color: transparent;
  overflow: hidden;
  text-indent: -9999px;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav,
.language-switch {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy-900);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav {
  justify-content: center;
  font-size: 0.9rem;
}

.language-switch {
  gap: 10px;
  font-size: 0.83rem;
  justify-content: end;
  white-space: nowrap;
}

.language-switch [aria-current="true"] {
  border-bottom: 1px solid var(--navy-900);
  color: var(--navy-950);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 48;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.55rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--navy-700);
  outline: none;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: calc(100% + 104px);
  object-fit: cover;
  opacity: 0.62;
  transform: translate3d(0, var(--hero-parallax-y, -52px), 0);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    height: 100%;
    transform: none;
    will-change: auto;
  }
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 20, 38, 0.98) 0%, rgba(6, 20, 38, 0.8) 38%, rgba(6, 20, 38, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 20, 38, 0.05), rgba(6, 20, 38, 0.48));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 640px;
  padding: 72px 0 88px;
}

.hero-copy {
  width: min(680px, 100%);
}

.hero h1,
.page-hero h1,
.section-title,
.feature-title,
.practice-card h2,
.contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

.hero-rule,
.section-rule {
  display: block;
  width: 72px;
  height: 2px;
  margin: 30px 0;
  background: currentColor;
}

.hero .lead {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.jurisdictions {
  display: flex;
  flex-wrap: wrap;
  column-gap: 34px;
  row-gap: 10px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jurisdiction-link {
  color: inherit;
  text-decoration: none;
}

.jurisdiction-link:hover {
  color: inherit;
  text-decoration: none;
}

.jurisdiction-link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.74);
  outline-offset: 5px;
}

.action-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.action-card {
  display: grid;
  min-height: 174px;
  padding: 34px 38px;
  border-right: 1px solid var(--line);
  color: var(--navy-900);
  transition: background 180ms ease, color 180ms ease;
}

.action-card:first-child {
  border-left: 1px solid var(--line);
}

.action-card:hover,
.action-card:focus-visible {
  background: var(--navy-950);
  color: var(--white);
  outline: none;
}

.action-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.action-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
}

.action-card span {
  display: block;
  margin-top: 8px;
  color: currentColor;
  font-size: 0.89rem;
  opacity: 0.74;
}

.section {
  padding: 98px 0;
}

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

.section.tonal {
  background:
    linear-gradient(180deg, rgba(248, 247, 243, 0.96), rgba(232, 237, 243, 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.tonal .practice-card,
.section.tonal .contact-card {
  border-top: 3px solid var(--gold);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 74px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 26px;
  color: var(--navy-700);
  font-size: 0.76rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.dark .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.35rem, 4vw, 4.3rem);
}

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

.section-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.dark .section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--navy-950);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 30px;
}

.text-link-row .text-link {
  margin-top: 0;
}

.text-link.external {
  color: var(--navy-700);
}

.dark .text-link {
  color: var(--white);
}

.portrait-carousel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(216, 222, 230, 0.92);
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  background: #e7ecf1;
  box-shadow: var(--shadow);
}

.portrait-carousel--home {
  min-height: clamp(430px, 44vw, 560px);
}

.portrait-carousel--about {
  align-self: stretch;
  min-height: clamp(540px, 58vw, 720px);
}

.portrait-carousel--contact {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 0;
  aspect-ratio: auto;
  box-shadow: none;
}

.portrait-carousel::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    inset 0 -90px 120px rgba(6, 20, 38, 0.12);
  pointer-events: none;
}

.portrait-carousel--contact::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 -70px 110px rgba(6, 20, 38, 0.2);
}

.portrait-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--x, 50%) var(--y, 38%);
  opacity: 0;
  transform: scale(1.015);
  animation-duration: 27s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.portrait-carousel img:first-child {
  opacity: 1;
}

.portrait-carousel--three img:nth-child(1) {
  animation-name: portraitFadeThreeOne;
}

.portrait-carousel--three img:nth-child(2) {
  animation-name: portraitFadeThreeTwo;
}

.portrait-carousel--three img:nth-child(3) {
  animation-name: portraitFadeThreeThree;
}

.portrait-carousel--two img:nth-child(1) {
  animation-name: portraitFadeTwoOne;
  animation-duration: 20s;
}

.portrait-carousel--two img:nth-child(2) {
  animation-name: portraitFadeTwoTwo;
  animation-duration: 20s;
}

@keyframes portraitFadeThreeOne {
  0%,
  30%,
  100% {
    opacity: 1;
    transform: scale(1.015);
  }

  42%,
  88% {
    opacity: 0;
    transform: scale(1.045);
  }

  94% {
    opacity: 0;
    transform: scale(1.045);
  }
}

@keyframes portraitFadeThreeTwo {
  0%,
  30% {
    opacity: 0;
    transform: scale(1.045);
  }

  42%,
  63% {
    opacity: 1;
    transform: scale(1.015);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.045);
  }
}

@keyframes portraitFadeThreeThree {
  0%,
  63% {
    opacity: 0;
    transform: scale(1.045);
  }

  75%,
  88% {
    opacity: 1;
    transform: scale(1.015);
  }

  94%,
  100% {
    opacity: 0;
    transform: scale(1.045);
  }
}

@keyframes portraitFadeTwoOne {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: scale(1.015);
  }

  58%,
  92% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes portraitFadeTwoTwo {
  0%,
  42%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }

  58%,
  92% {
    opacity: 1;
    transform: scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portrait-carousel img {
    opacity: 0;
    transform: none;
    animation: none;
  }

  .portrait-carousel img:first-child {
    opacity: 1;
  }
}

.practice-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
}

.practice-grid.is-compact {
  margin-top: 0;
}

.practice-card,
.contact-card {
  min-height: 310px;
  padding: 44px;
  background: var(--white);
}

.contact-photo-card {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
}

.section.tonal .contact-photo-card {
  border-top: 0;
}

.practice-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border: 1px solid var(--navy-700);
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.practice-card h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

@media (min-width: 901px) {
  .practice-grid.is-compact .practice-card h2 {
    min-height: 2.1em;
  }
}

.practice-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 22px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(181, 154, 99, 0.55);
  border-bottom: 1px solid rgba(181, 154, 99, 0.34);
}

.practice-path span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(22, 58, 99, 0.2);
  background: linear-gradient(180deg, var(--white), rgba(248, 247, 243, 0.86));
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.practice-card p,
.contact-card p,
.body-copy p,
.body-copy li {
  color: var(--muted);
  font-size: 1.02rem;
}

.office-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.office-list h3 {
  margin: 0 0 6px;
  color: var(--navy-950);
  font-family: var(--firm-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.office-list address,
.footer-panel address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.contact-lines {
  margin-top: 22px;
}

.contact-lines strong {
  color: var(--navy-950);
}

.contact-lines a {
  color: var(--navy-950);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.email-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.body-copy {
  max-width: 860px;
}

.body-copy h2 {
  margin: 42px 0 12px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.body-copy ul {
  padding-left: 22px;
}

.page-hero {
  padding: 92px 0 78px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.page-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

body[data-page-id="practice"] .page-hero {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 58%, #102947 100%);
  border-bottom: 1px solid rgba(181, 154, 99, 0.42);
  color: var(--white);
}

body[data-page-id="practice"] .page-hero .section-kicker {
  color: #c7ad73;
}

body[data-page-id="practice"] .page-hero h1 {
  max-width: 850px;
  color: var(--white);
}

body[data-page-id="practice"] .page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

body[data-page-id="practice"] .page-hero .section-inner::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin-top: 34px;
  background: var(--gold);
}

body[data-page-id="practice"] .section.tonal {
  padding-top: 64px;
  background: linear-gradient(180deg, #dfe6ee 0%, #edf1f5 100%);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--navy-950);
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  color: var(--navy-950);
}

.button:hover,
.button:focus-visible {
  border-color: var(--navy-700);
  background: var(--navy-700);
  color: var(--white);
  outline: none;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 42px;
  padding: 58px 0 34px;
}

.footer-brand .brand-mark {
  background-image: url("/assets/rl-mark.png");
}

.footer-brand .brand-wordmark {
  width: 360px;
  background-image: url("/assets/rl-wordmark-white.svg?v=20260618-vector1");
}

.footer-meta,
.footer-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-panel h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-panel p {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.footer-panel address {
  margin: 0 0 12px -6px;
  padding: 2px 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  scroll-margin-top: 128px;
}

.footer-panel address:focus {
  outline: none;
}

.footer-panel address.office-highlight,
.footer-panel address:target {
  animation: office-attention 1800ms ease-out 1;
}

.footer-office-name,
.footer-panel strong {
  color: var(--white);
  font-weight: 700;
}

@keyframes office-attention {
  0% {
    background: rgba(181, 154, 99, 0);
    box-shadow: 0 0 0 0 rgba(181, 154, 99, 0);
  }

  18% {
    background: rgba(181, 154, 99, 0.22);
    box-shadow: 0 0 0 7px rgba(181, 154, 99, 0.18);
  }

  100% {
    background: rgba(181, 154, 99, 0);
    box-shadow: 0 0 0 0 rgba(181, 154, 99, 0);
  }
}

.footer-contact-lines a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
}

.consent-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: flex;
  width: min(520px, calc(100% - 32px));
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.consent-modal-open {
  overflow: hidden;
}

body.consent-modal-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(6, 20, 38, 0.56);
}

.consent-banner.is-recalled {
  flex-wrap: wrap;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(540px, calc(100% - 32px));
  padding: 14px;
  border-color: var(--gold);
  border-left-width: 5px;
  box-shadow: 0 0 0 3px rgba(181, 154, 99, 0.28), 0 28px 90px rgba(6, 20, 38, 0.36);
  transform: translate(-50%, -50%);
}

.consent-banner.is-recalled::before {
  content: "MANAGE PRIVACY PREFERENCES";
  flex: 0 0 100%;
  padding: 8px 10px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

html[lang^="fr"] .consent-banner.is-recalled::before {
  content: "G\00E9RER LES PR\00E9F\00E9RENCES";
}

.consent-banner.is-recalled p {
  font-size: 0.92rem;
}

.consent-banner.is-recalled .consent-actions {
  gap: 10px;
}

.consent-banner.is-recalled .consent-actions button {
  min-height: 38px;
  padding: 10px 14px;
}

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

.consent-banner p {
  flex: 1 1 auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.consent-banner strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.consent-banner a {
  color: var(--navy-950);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  gap: 8px;
}

.consent-actions button {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--navy-950);
  background: var(--navy-950);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-actions button.secondary {
  background: transparent;
  color: var(--navy-950);
}

.language-gate {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  background: var(--paper);
}

.language-gate-panel {
  width: min(620px, 100%);
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.language-gate-panel h1 {
  margin: 26px 0 18px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.legal-note {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    min-height: 86px;
    padding: 12px 0;
  }

  section[id] {
    scroll-margin-top: 110px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text,
  .brand-wordmark {
    min-width: 0;
    max-width: 100%;
  }

  .brand-wordmark {
    width: min(380px, calc(100vw - 180px));
  }

  .menu-toggle {
    display: inline-grid;
    align-content: center;
    justify-items: center;
    position: relative;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy-950);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .menu-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-panel {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: auto;
    z-index: 30;
    display: none;
    width: fit-content;
    min-width: 196px;
    max-width: calc(100vw - 28px);
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: grid;
    gap: 18px;
  }

  .main-nav {
    display: grid;
    justify-content: start;
    gap: 14px;
  }

  .language-switch {
    justify-content: start;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .action-grid,
  .split,
  .practice-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .action-card,
  .action-card:first-child {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .portrait-carousel--about {
    min-height: min(640px, 112vw);
  }

  .portrait-carousel--contact {
    min-height: 420px;
  }

  .footer-meta {
    display: grid;
  }

  .footer-brand .brand-wordmark {
    width: min(340px, calc(100vw - 180px));
  }
}

@media (max-width: 560px) {
  .topbar,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 52px;
    height: 43px;
  }

  .brand-wordmark {
    width: min(270px, calc(100vw - 128px));
    margin-left: 0;
  }

  .footer-brand .brand-wordmark {
    width: min(236px, calc(100vw - 150px));
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  .practice-card,
  .contact-card {
    padding: 30px;
  }

  .portrait-carousel {
    min-height: 330px;
    border-radius: 16px;
  }

  .portrait-carousel--about,
  .portrait-carousel--contact {
    min-height: 390px;
  }

  .consent-banner {
    right: 10px;
    left: 10px;
    bottom: 10px;
    width: auto;
    gap: 8px;
    padding: 8px;
  }

  .consent-banner.is-recalled::before {
    padding: 7px 8px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .consent-banner p {
    font-size: 0.72rem;
  }

  .consent-banner.is-recalled p {
    flex: 0 0 100%;
    font-size: 0.82rem;
  }

  .consent-actions {
    flex-wrap: nowrap;
  }

  .consent-banner.is-recalled .consent-actions {
    width: 100%;
  }

  .consent-actions button {
    min-height: 30px;
    padding: 6px 8px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .consent-banner.is-recalled .consent-actions button {
    flex: 1 1 0;
    min-height: 36px;
  }

  .back-to-top {
    right: 14px;
    bottom: 68px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}
