:root {
  --ink: #111111;
  --muted: #6f7479;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #ececec;
  --logo-bg: #ececec;
  --navy: #091d3e;
  --navy-2: #232629;
  --gold: #007f0a;
  --gold-2: #41a021;
  --sage: #007f0a;
  --shadow: 0 10px 35px rgba(9, 29, 62, 0.09);
  --radius: 2px;
  --font-body: "Open Sans", Arial, sans-serif;
  --font-display: "Cormorant", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 82px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(185, 139, 61, 0.45);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--gold);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

.topbar {
  background: var(--navy);
  color: #b3b4b5;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.topbar-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar a {
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--logo-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
  top: 0;
  box-shadow: 0 12px 34px rgba(9, 29, 62, 0.12);
}

.site-header .container {
  width: min(1540px, calc(100% - 72px));
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.brand-text {
  margin-left: -24px;
  color: #111111;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.brand img {
  width: 190px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  transform: translateY(-6px);
  transition: width 180ms ease, height 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 160px;
  height: 54px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: none;
  text-decoration: none;
  transition: color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
button.button:hover {
  color: var(--white);
  background: var(--gold-2);
  box-shadow: 0 12px 24px rgba(185, 139, 61, 0.22);
  transform: translateY(-1px);
}

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

.button-secondary:hover {
  color: var(--white);
  background: var(--gold);
}

.button-small {
  min-height: 40px;
  padding-inline: 20px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/images/law-library-scales-background.jpg") center center / cover no-repeat;
  filter: contrast(1.08) saturate(1.08);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 29, 62, 0.88) 0%, rgba(9, 29, 62, 0.64) 42%, rgba(9, 29, 62, 0.3) 100%),
    linear-gradient(180deg, rgba(9, 29, 62, 0.08), rgba(9, 29, 62, 0.18));
}

.hero-inner,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(240px, 1fr);
  align-items: center;
  gap: 56px;
  padding-block: 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  max-width: 780px;
  font-size: clamp(4.2rem, 7vw, 7.4rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  min-height: 260px;
  align-self: center;
  background: transparent;
}

.section {
  padding-block: 96px;
}

.section-alt {
  background: #f7f7f7;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.text-panel {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.text-panel p {
  margin: 18px 0 0;
}

.about-overview {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, #f7f7f7 54%, #f7f7f7 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 64px;
  align-items: stretch;
}

.about-grid-single {
  grid-template-columns: minmax(0, 860px);
}

.about-copy {
  padding-block: 18px;
}

.about-copy h2 {
  max-width: 640px;
}

.about-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-aside .eyebrow {
  color: var(--gold-2);
}

.about-aside h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.about-stat-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.about-stat-grid strong,
.about-stat-grid span {
  display: block;
}

.about-stat-grid strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.about-stat-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.about-practice-section {
  padding-top: 48px;
}

.keyword-grid,
.practice-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.keyword {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.practice-card,
.partner-card,
.contact-card {
  position: relative;
  min-height: 100%;
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(9, 29, 62, 0.05);
}

.team-feature-section {
  padding-block: 70px;
}

.practice-card::before {
  content: none;
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--gold);
}

.law-icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 127, 10, 0.18);
  background: rgba(0, 127, 10, 0.06);
  color: var(--gold);
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.law-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.practice-card p,
.partner-card p,
.contact-card p {
  color: var(--muted);
}

.practice-page-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 32%, #f7f7f7 32%, #f7f7f7 100%);
}

.practice-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.practice-page-intro h2 {
  max-width: 760px;
}

.practice-page-intro > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.08rem;
}

.practice-page-section .practice-grid .practice-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.cta-band {
  color: var(--white);
  background: var(--navy);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 112px;
  color: var(--white);
  background: var(--navy);
}

.breadcrumb {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.profile-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-image-wrap {
  background: #eeeeee;
}

.profile-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.profile-content {
  padding: 42px 48px;
}

.role {
  color: var(--gold);
  font-weight: 800;
}

.detail-list {
  padding-left: 20px;
}

.team-partners-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 44%, #f7f7f7 44%, #f7f7f7 100%);
}

.team-partners-section .section-head {
  max-width: 860px;
}

.partner-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.partner-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.partner-card::after {
  content: "";
  position: absolute;
  left: 210px;
  right: 36px;
  bottom: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.partner-card:hover,
.partner-card:focus-within {
  border-color: rgba(0, 127, 10, 0.42);
  box-shadow: 0 18px 42px rgba(9, 29, 62, 0.13);
  transform: translateY(-4px) scale(1.012);
}

.partner-card:focus {
  outline: 3px solid rgba(0, 127, 10, 0.22);
  outline-offset: 4px;
}

.partner-card:hover::after,
.partner-card:focus-within::after,
.partner-card:focus::after {
  transform: scaleX(1);
}

.partner-image-wrap {
  min-height: 100%;
  background: #eeeeee;
}

.partner-card img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  margin-bottom: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease, filter 220ms ease;
}

.partner-card:hover img,
.partner-card:focus-within img,
.partner-card:focus img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.partner-card img.partner-image-contain {
  object-fit: cover;
  object-position: center 18%;
  padding: 0;
}

.partner-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 36px;
}

.partner-card h3 {
  position: relative;
  width: fit-content;
  font-size: 1.95rem;
}

.partner-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.partner-card:hover h3::after,
.partner-card:focus h3::after,
.partner-card:focus-within h3::after {
  transform: scaleX(1);
}

.partner-link {
  display: inline-block;
  width: fit-content;
  margin: 8px 0 18px;
  color: var(--ink);
  font-weight: 600;
  text-decoration-color: var(--gold);
}

.partner-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.partner-card li + li {
  margin-top: 8px;
}

.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 34%, #f7f7f7 34%, #f7f7f7 100%);
}

.contact-lead {
  max-width: 850px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 96px;
  padding: 36px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.contact-aside .eyebrow,
.contact-aside a {
  color: var(--gold-2);
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-mini-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-mini-list p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
}

.mini-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.mini-icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.mini-icon-mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.mini-icon-location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

address {
  font-style: normal;
}

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

.contact-form-card {
  padding: 42px;
  box-shadow: 0 18px 42px rgba(9, 29, 62, 0.09);
}

.contact-form-card h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8d0c2;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(185, 139, 61, 0.22);
  border-color: var(--gold);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--muted);
}

.checkbox input {
  width: auto;
  margin-top: 6px;
}

.honeypot {
  display: none;
}

.form-status {
  min-height: 1.5em;
  color: var(--sage);
  font-weight: 800;
}

.site-footer {
  padding-block: 62px 24px;
  color: rgba(255, 255, 255, 0.82);
  background: #232629;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 36px;
}

.footer-logo {
  width: 150px;
  height: auto;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--logo-bg);
  margin-bottom: 18px;
}

.section-head h2 mark,
h2 mark {
  color: var(--gold);
  background: transparent;
}

.sub-title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.archive-image-placeholder {
  min-height: 580px;
  display: grid;
  place-items: end start;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(9, 29, 62, 0.02), rgba(9, 29, 62, 0.16)),
    url("/assets/images/homepage-consultation.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.archive-image-placeholder span {
  max-width: 360px;
  padding: 14px 16px;
  background: rgba(9, 29, 62, 0.78);
  font-size: 0.82rem;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
}

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

.site-footer a {
  color: inherit;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease var(--delay, 0ms), transform 420ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 960px) {
  .hero::before,
  .page-hero::before {
    background-size: cover;
    background-position: center;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 1px);
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--logo-bg);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    visibility: hidden;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .nav-link::after {
    bottom: -4px;
  }

  .hero-inner,
  .split,
  .about-grid,
  .practice-page-intro,
  .contact-grid,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .about-overview {
    background: #f7f7f7;
  }

  .contact-aside {
    position: static;
  }

  .profile-card {
    padding: 0;
  }

  .profile-content {
    padding: 34px;
  }

  .partner-card {
    grid-template-columns: 180px 1fr;
  }

  .partner-card::after {
    left: 180px;
  }

  .hero-inner {
    min-height: auto;
  }

  .keyword-grid,
  .practice-grid,
  .partner-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice-page-section .practice-grid .practice-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 64px;
    gap: 14px;
  }

  body {
    padding-top: 64px;
  }

  .site-header .container {
    width: calc(100% - 8px);
  }

  .brand img {
    width: 118px;
    height: 44px;
  }

  .brand-text {
    margin-left: -10px;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
  }

  .brand {
    margin-left: -12px;
    gap: 4px;
  }

  .site-header.is-scrolled .brand img {
    width: 108px;
    height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    border-radius: 0;
  }

  .menu-toggle span:not(.sr-only) {
    width: 26px;
    height: 2px;
    margin: 6px auto;
    transition: transform 180ms ease, opacity 180ms ease;
    transform-origin: center;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):first-child {
    transform: translateY(8px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .primary-nav {
    left: 12px;
    right: 12px;
    padding: 18px 16px;
    gap: 14px;
  }

  .primary-nav .button {
    width: 100%;
  }

  h1 {
    font-size: 2.85rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .section,
  .page-hero {
    padding-block: 44px;
  }

  .hero-inner {
    padding-block: 52px;
    gap: 20px;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  button.button {
    width: 100%;
    min-width: 0;
  }

  .cta-band .button {
    width: fit-content;
    min-width: 210px;
    padding-inline: 28px;
  }

  .hero-panel {
    display: none;
  }

  .page-hero {
    padding-block: 46px;
  }

  .breadcrumb {
    margin-top: 10px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head p {
    font-size: 0.98rem;
  }

  .keyword-grid,
  .practice-grid,
  .partner-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .text-panel,
  .about-aside,
  .profile-card,
  .practice-card,
  .partner-card,
  .contact-card {
    padding: 20px;
  }

  .practice-card {
    min-height: auto;
  }

  .law-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }

  .law-icon svg {
    width: 28px;
    height: 28px;
  }

  .practice-page-intro {
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
  }

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

  .contact-aside,
  .contact-form-card {
    padding: 22px;
  }

  .contact-mini-list p {
    gap: 12px;
  }

  .mini-icon {
    width: 34px;
    height: 34px;
    background-size: 16px 16px;
  }

  input,
  textarea {
    padding: 12px;
  }

  textarea {
    min-height: 130px;
  }

  .partner-card {
    grid-template-columns: 1fr;
    padding: 0;
    transform: none;
  }

  .partner-card:hover,
  .partner-card:focus-within {
    transform: translateY(-2px);
  }

  .partner-card::after {
    left: 0;
    right: 0;
  }

  .partner-card img {
    height: 220px;
    min-height: 0;
  }

  .partner-card-body {
    padding: 22px;
  }

  .profile-card {
    padding: 0;
  }

  .profile-card img {
    min-height: 280px;
  }

  .profile-content {
    padding: 24px;
  }

  .archive-image-placeholder {
    min-height: 340px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-logo {
    width: 130px;
  }

  .site-footer {
    padding-block: 28px;
  }

  .footer-grid {
    display: none;
  }

  .footer-bottom {
    margin-top: 0;
    padding-top: 22px;
    align-items: center;
    text-align: center;
  }
}
