:root {
  --navy-950: #071a28;
  --navy-900: #0a2233;
  --navy-800: #123347;
  --navy-700: #24495d;
  --ink: #121a1f;
  --slate: #53616a;
  --ivory: #f4f1e9;
  --paper: #fbfaf7;
  --stone: #d8d1c4;
  --stone-dark: #aaa092;
  --gold: #b99652;
  --gold-light: #d8bd83;
  --white: #ffffff;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1320px;
  --page: clamp(1.25rem, 4vw, 4.5rem);
  --section-y: clamp(5.5rem, 10vw, 9rem);
  --border: rgba(18, 26, 31, 0.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  color: var(--white);
  background: rgba(7, 26, 40, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(7, 26, 40, 0.97);
  box-shadow: 0 10px 30px rgba(2, 12, 19, 0.14);
}

.header-shell {
  width: min(100%, var(--max));
  min-height: 86px;
  margin: 0 auto;
  padding: 0 var(--page);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--gold-light);
  border: 1px solid rgba(216, 189, 131, 0.75);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong,
.footer-brand strong {
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 650;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.8rem, 1.65vw, 1.75rem);
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  line-height: 1;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.65rem;
  height: 1px;
  background: var(--gold-light);
  transition: right 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  right: 0;
}

.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav a[aria-current="page"]::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta svg,
.text-link svg,
.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.header-cta:hover svg,
.text-link:hover svg,
.button:hover svg {
  transform: translateX(0.25rem);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.45rem;
  height: 1px;
  margin: 0.42rem auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  color: var(--white);
  background: var(--navy-950);
}

.hero-copy {
  min-height: 820px;
  padding: clamp(10rem, 16vh, 12rem) var(--page) 3.5rem max(var(--page), calc((100vw - var(--max)) / 2 + var(--page)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(36, 73, 93, 0.46), transparent 33%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.eyebrow,
.section-kicker {
  margin: 0 0 2rem;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow span {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section h2,
.assurance blockquote {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.5rem, 6.2vw, 6.6rem);
  line-height: 0.96;
}

.hero-lead {
  max-width: 620px;
  margin: 2.3rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.button {
  min-height: 3.4rem;
  padding: 0.95rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-gold:hover {
  background: #e2cb99;
  border-color: #e2cb99;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-trust {
  max-width: 700px;
  margin-top: auto;
  padding-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust div {
  display: grid;
  gap: 0.15rem;
}

.hero-trust strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 820px;
  background-image:
    linear-gradient(180deg, rgba(7, 26, 40, 0.2), rgba(7, 26, 40, 0.4)),
    url("assets/legal-architecture.png");
  background-position: 53% center;
  background-size: cover;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 40, 0.36), transparent 28%);
  pointer-events: none;
}

.hero-visual-top {
  position: absolute;
  top: 7.35rem;
  right: var(--page);
  padding: 0.65rem 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(7, 26, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-note {
  position: absolute;
  right: var(--page);
  bottom: 3.5rem;
  width: min(360px, calc(100% - 2 * var(--page)));
  padding: 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: rgba(7, 26, 40, 0.86);
  border-left: 2px solid var(--gold);
  backdrop-filter: blur(12px);
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--serif);
  line-height: 1.5;
}

.hero-note-index {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.page-hero {
  min-height: 650px;
  padding: 86px var(--page) 0;
  display: flex;
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(7, 26, 40, 0.97) 0 58%, rgba(7, 26, 40, 0.72) 100%),
    url("assets/legal-architecture.png") center 54% / cover;
}

.page-hero-inner {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 9rem) 0 clamp(5rem, 9vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.page-index {
  position: absolute;
  top: 3.25rem;
  left: 0;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.page-hero-inner > p:last-child {
  max-width: 460px;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section {
  padding: var(--section-y) var(--page);
}

.page-shell {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.intro {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-kicker {
  color: var(--navy-700);
}

.section-kicker.light {
  color: var(--gold-light);
}

.intro-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.intro h2,
.section-heading h2,
.process-intro h2,
.contact-info h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  line-height: 1.02;
}

.intro-copy {
  padding-bottom: 0.6rem;
}

.intro-copy p,
.process-intro > p,
.contact-info > p {
  margin: 0;
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.8;
}

.underlined-link {
  display: inline-block;
  margin-top: 1.75rem;
  padding-bottom: 0.3rem;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.about-story-grid h2,
.services-page-intro h2,
.contact-expectations h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.about-story-copy p {
  margin: 0;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.82;
}

.about-story-copy p + p {
  margin-top: 1.35rem;
}

.principles {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.principles article {
  min-height: 270px;
  padding: 2.1rem clamp(1.3rem, 3vw, 2.8rem) 2.4rem 0;
}

.principles article + article {
  padding-left: clamp(1.3rem, 3vw, 2.8rem);
  border-left: 1px solid var(--border);
}

.principles article span,
.assurance-grid article span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.principles h3,
.assurance-grid h3 {
  margin: 2.5rem 0 0.9rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
}

.principles p,
.assurance-grid p {
  max-width: 340px;
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.75;
}

.practices {
  color: var(--white);
  background: var(--navy-900);
}

.section-heading,
.practice-list {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: end;
}

.section-heading p {
  max-width: 430px;
  margin: 0 0 0.4rem auto;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.practice-list {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.practice-item {
  position: relative;
  min-height: 230px;
  padding: 2.25rem 3rem 2.5rem 0;
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 220ms ease, padding 220ms ease;
}

.practice-item:nth-child(even) {
  padding-left: 3rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.practice-item:hover {
  background: rgba(255, 255, 255, 0.045);
}

.practice-number {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.practice-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.practice-item p {
  max-width: 430px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.9rem;
  line-height: 1.75;
}

.practice-arrow {
  color: var(--gold-light);
  font-size: 1.3rem;
  transform: translateY(-0.1rem);
}

.team-preview {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.team-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.team-preview-heading h2,
.contact-banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.team-preview-heading > div:last-child > p:first-child {
  margin: 0;
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.8;
}

.team-preview-grid {
  margin-top: clamp(4rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
}

.team-preview-card figure {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0 0 1.5rem;
  overflow: hidden;
  background: var(--stone);
}

.team-preview-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(7, 26, 40, 0.1);
  pointer-events: none;
}

.team-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 450ms ease, filter 300ms ease;
}

.team-preview-card:hover img {
  transform: scale(1.018);
  filter: saturate(0.98) contrast(1.02);
}

.team-preview-card > p {
  margin: 0;
  color: var(--navy-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-preview-card h3 {
  margin: 0.65rem 0 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.team-preview-card > span {
  color: var(--slate);
  font-size: 0.85rem;
}

.team-preview-note {
  max-width: 650px;
  margin-top: 2.5rem;
}

.team {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.team-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.team-heading-copy > p:first-child {
  margin: 0;
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.8;
}

.team-demo-note {
  margin: 1.5rem 0 0;
  padding: 0.25rem 0 0.25rem 1rem;
  color: #77736c;
  border-left: 2px solid var(--gold);
  font-size: 0.82rem;
  line-height: 1.55;
}

.team-list {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border);
}

.team-member {
  padding: 2.6rem 0;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(210px, 0.86fr) minmax(190px, 0.9fr) minmax(270px, 1.28fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
  border-top: 1px solid var(--border);
  scroll-margin-top: 110px;
}

.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(7, 26, 40, 0.09);
  pointer-events: none;
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 500ms ease, filter 300ms ease;
}

.team-member:hover .team-photo img {
  transform: scale(1.018);
  filter: saturate(0.98) contrast(1.02);
}

.member-role,
.member-label {
  margin: 0;
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-core h3 {
  margin: 1.15rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.member-experience {
  margin: 2.2rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.35;
}

.member-experience strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.member-focus {
  margin: 1.3rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.65;
}

.member-education,
.member-cases {
  padding-top: 0.15rem;
}

.member-education ul,
.member-cases ol {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.member-education li,
.member-cases li {
  position: relative;
  padding: 0.85rem 0;
  color: #4f5a61;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.6;
}

.member-cases ol {
  counter-reset: selected-case;
}

.member-cases li {
  padding-left: 2rem;
  counter-increment: selected-case;
}

.member-cases li::before {
  content: "0" counter(selected-case);
  position: absolute;
  top: 0.92rem;
  left: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.services-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.6rem clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.services-page-intro .section-kicker {
  grid-column: 1 / -1;
}

.services-page-intro > p {
  margin: 0 0 0.5rem;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.8;
}

.service-detail-list {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border);
}

.service-detail {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--border);
  scroll-margin-top: 110px;
}

.service-detail header {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0 1.5rem;
}

.service-detail header > span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.88rem;
}

.service-detail h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 400;
  line-height: 1.08;
}

.service-detail header p {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: var(--slate);
  line-height: 1.75;
}

.service-detail ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 0.7rem 0 0.7rem 1.2rem;
  color: #4f5a61;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-detail li::before {
  content: "—";
  margin-left: -1.2rem;
  margin-right: 0.5rem;
  color: var(--gold);
}

.process {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.process-intro {
  position: sticky;
  top: 8.5rem;
  align-self: start;
}

.process-intro > p {
  max-width: 460px;
  margin-top: 2rem;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.timeline li {
  min-height: 180px;
  padding: 2.1rem 0;
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.timeline-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.timeline h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 400;
}

.timeline p {
  max-width: 520px;
  margin: 0.75rem 0 0;
  color: var(--slate);
  line-height: 1.75;
}

.assurance {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  color: var(--white);
  background: var(--navy-950);
}

.assurance-quote {
  min-height: 650px;
  padding: var(--section-y) var(--page);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(7, 26, 40, 0.78), rgba(7, 26, 40, 0.92)),
    url("assets/legal-architecture.png") 14% center / cover;
}

.quote-mark {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
}

.assurance blockquote {
  max-width: 610px;
  margin: 2rem 0;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1.12;
}

.assurance-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.assurance-grid article {
  min-height: 325px;
  padding: clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.assurance-grid h3 {
  color: var(--white);
}

.assurance-grid p {
  color: rgba(255, 255, 255, 0.56);
}

.contact {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(4rem, 10vw, 10rem);
  color: var(--white);
  background: var(--navy-800);
}

.contact-info {
  padding-left: max(0px, calc((100vw - var(--max)) / 2));
}

.contact-info > p {
  max-width: 470px;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.62);
}

.contact-info dl {
  margin: 3.2rem 0 0;
  display: grid;
  gap: 1.5rem;
}

.contact-info dl div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
}

.contact-info dt {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-info dd a:hover {
  color: var(--gold-light);
}

.contact-info .demo-note {
  margin-top: 2.8rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.77rem;
}

.contact-banner {
  padding: clamp(5rem, 10vw, 9rem) var(--page);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(7, 26, 40, 0.97), rgba(18, 51, 71, 0.9)),
    url("assets/legal-architecture.png") center 62% / cover;
}

.contact-banner-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-banner h2 {
  max-width: 900px;
}

.contact-banner-inner > p {
  max-width: 570px;
  margin: 1.8rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1.02rem;
  line-height: 1.75;
}

.contact-page-section {
  scroll-margin-top: 70px;
}

.contact-expectations h2 {
  max-width: 800px;
}

.expectations-grid {
  margin-top: clamp(4rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.expectations-grid article {
  min-height: 260px;
  padding: 2rem clamp(1.3rem, 3vw, 2.8rem) 2.4rem 0;
}

.expectations-grid article + article {
  padding-left: clamp(1.3rem, 3vw, 2.8rem);
  border-left: 1px solid var(--border);
}

.expectations-grid article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.expectations-grid h3 {
  margin: 2rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.expectations-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.72;
}

.contact-form {
  align-self: start;
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--ink);
  background: var(--ivory);
}

.form-heading {
  margin-bottom: 2.8rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--navy-700);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-form label:not(.consent) {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.65rem;
}

.contact-form label > span:first-child {
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-form input[type="text"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--stone-dark);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8d8b;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy-800);
}

.field-error {
  display: none;
  color: #9e352e;
  font-size: 0.75rem;
}

.contact-form label.invalid .field-error {
  display: block;
}

.contact-form label.invalid input,
.contact-form label.invalid select,
.contact-form label.invalid textarea {
  border-color: #9e352e;
}

.consent {
  margin: 0.4rem 0 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--slate);
  font-size: 0.78rem;
  cursor: pointer;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin: 0.22rem 0 0;
  accent-color: var(--navy-800);
}

.consent a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.file-field small {
  color: var(--slate);
  font-size: 0.72rem;
}

.file-field input[type="file"] {
  width: 100%;
  color: var(--slate);
  font-size: 0.78rem;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy-700) 50%), linear-gradient(135deg, var(--navy-700) 50%, transparent 50%);
  background-position: calc(100% - 0.85rem) calc(50% - 0.1rem), calc(100% - 0.55rem) calc(50% - 0.1rem);
  background-size: 0.3rem 0.3rem, 0.3rem 0.3rem;
  background-repeat: no-repeat;
}

.content-hub {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.hub-intro {
  max-width: 760px;
}

.hub-intro h2 {
  margin: 1rem 0 1.4rem;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5.2vw, 5.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hub-intro > p {
  max-width: 600px;
  margin: 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}

.filter-bar {
  margin: 3rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-button {
  padding: 0.65rem 0.9rem;
  color: var(--navy-700);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.case-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.case-card,
.article-card {
  min-height: 430px;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--border);
}

.case-card.is-hidden,
.article-card.is-hidden {
  display: none;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--navy-700);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card h3,
.article-card h3 {
  margin: 2rem 0 1rem;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.case-card > p,
.article-card > p {
  margin: 0;
  color: var(--slate);
  font-size: 0.91rem;
  line-height: 1.65;
}

.case-card dl {
  margin: auto 0 1.35rem;
  padding-top: 1.25rem;
  display: grid;
  gap: 0.7rem;
  border-top: 1px solid var(--border);
}

.case-card dl div {
  display: grid;
  gap: 0.15rem;
}

.case-card dt {
  color: var(--navy-700);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.81rem;
  line-height: 1.45;
}

.article-card .text-link,
.case-card .text-link {
  margin-top: auto;
}

.content-disclaimer {
  max-width: 800px;
  margin: 2rem 0 0;
  padding: 1rem 1.2rem;
  color: var(--slate);
  background: rgba(216, 189, 131, 0.13);
  border-left: 2px solid var(--gold);
  font-size: 0.82rem;
  line-height: 1.65;
}

.detail-hero {
  min-height: 560px;
  padding-top: 10rem;
  padding-bottom: 5rem;
  color: var(--white);
  background: linear-gradient(122deg, rgba(4, 19, 29, 0.97), rgba(10, 34, 51, 0.87)), url("assets/legal-architecture.png") center 55% / cover;
}

.detail-hero h1,
.article-detail h1 {
  max-width: 940px;
  margin: 1.4rem 0 1.5rem;
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.back-link {
  display: inline-flex;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.back-link:hover {
  color: var(--gold-light);
}

.detail-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.72;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 9rem);
}

.detail-facts {
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.detail-facts div {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.detail-facts span {
  color: var(--navy-700);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-facts strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.detail-body,
.article-prose {
  max-width: 760px;
}

.detail-body h2,
.article-prose h2,
.legal-document h2 {
  margin: 0 0 0.8rem;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.detail-body h2:not(:first-child),
.article-prose h2,
.legal-document h2:not(:first-of-type) {
  margin-top: 2.7rem;
}

.detail-body p,
.article-prose p,
.legal-document p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.78;
}

.detail-body ol {
  margin: 1.4rem 0 0;
  padding-left: 1.25rem;
  color: var(--slate);
}

.detail-body li {
  padding-left: 0.45rem;
  font-size: 1rem;
  line-height: 1.7;
}

.detail-body .button,
.article-detail .button {
  margin-top: 2rem;
}

.article-detail {
  max-width: 940px;
  padding-top: 10rem;
}

.article-detail .back-link {
  color: var(--navy-700);
}

.article-detail h1 {
  color: var(--navy-900);
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.article-detail > .detail-lead {
  color: var(--slate);
}

.article-detail .article-prose {
  margin-top: 3rem;
}

.compact-hero {
  min-height: 460px;
}

.legal-document {
  max-width: 900px;
}

.faq-page {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.faq-list {
  max-width: 980px;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  font: 400 clamp(1.45rem, 2.4vw, 2.2rem) / 1.1 var(--serif);
  letter-spacing: -0.03em;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 700px;
  padding: 0 3.5rem 1.7rem 0;
}

.faq-answer p {
  margin: 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}

.faq-inline {
  margin: 2rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.faq-inline a {
  color: var(--navy-700);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.consent.invalid {
  color: #9e352e;
}

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

.button-dark:hover {
  background: var(--navy-700);
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--navy-700);
  font-size: 0.82rem;
}

.form-status.success {
  color: #2f6448;
}

.site-footer {
  padding: 4rem var(--page) 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: #04131d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 360px;
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.83rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  gap: 0.75rem 3.5rem;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
}

.footer-meta p {
  margin: 0;
}

@media (max-width: 1120px) {
  .header-shell {
    grid-template-columns: auto auto 1fr;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  }

  .hero-copy {
    padding-right: 3rem;
  }

  .contact {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 4rem;
  }

  .team-member {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 2rem 3rem;
  }

  .team-photo {
    grid-row: 1 / 4;
  }

  .member-core,
  .member-education,
  .member-cases {
    grid-column: 2;
  }

  .member-experience {
    margin-top: 1.5rem;
  }

  .team-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
  }

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

  .detail-layout {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-shell {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

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

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

  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    max-height: 0;
    padding: 0 var(--page);
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    background: rgba(7, 26, 40, 0.99);
    transition: max-height 240ms ease, padding 240ms ease;
  }

  .main-nav.open {
    max-height: calc(100vh - 76px);
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .main-nav a {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 700px;
    padding: 9.5rem var(--page) 3rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual-top {
    top: 2rem;
  }

  .page-hero {
    min-height: 620px;
    padding-top: 76px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-content: end;
  }

  .page-hero-inner > p:last-child {
    max-width: 620px;
  }

  .intro-main,
  .section-heading,
  .team-heading,
  .team-preview-heading,
  .about-story-grid,
  .services-page-intro,
  .service-detail,
  .process,
  .assurance,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-main,
  .section-heading,
  .team-heading,
  .team-preview-heading,
  .about-story-grid,
  .services-page-intro,
  .service-detail,
  .process,
  .contact {
    gap: 3rem;
  }

  .intro-copy,
  .section-heading p,
  .team-heading-copy,
  .team-preview-heading > div:last-child,
  .services-page-intro > p {
    max-width: 620px;
    margin-left: 0;
  }

  .services-page-intro .section-kicker {
    grid-column: auto;
  }

  .process-intro {
    position: static;
  }

  .assurance-quote {
    min-height: 520px;
  }

  .contact-info {
    padding-left: 0;
  }

  .contact-form {
    margin: 0 calc(var(--page) * -0.25);
  }

  .case-grid,
  .article-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .case-card,
  .article-card {
    min-height: 0;
  }

  .detail-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 680px) {
  :root {
    --section-y: 5rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero-inner {
    padding-top: 7rem;
    padding-bottom: 4.5rem;
  }

  .page-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.4rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-trust div {
    grid-template-columns: 2.1rem 1fr;
    align-items: baseline;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-note {
    left: var(--page);
    right: var(--page);
    width: auto;
  }

  .intro h2,
  .section-heading h2,
  .team-heading h2,
  .team-preview-heading h2,
  .about-story-grid h2,
  .services-page-intro h2,
  .contact-expectations h2,
  .contact-banner h2,
  .process-intro h2,
  .contact-info h2 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .principles,
  .practice-list,
  .assurance-grid,
  .expectations-grid {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: 0;
    padding: 2rem 0;
  }

  .principles article + article {
    padding-left: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .principles h3 {
    margin-top: 1.25rem;
  }

  .expectations-grid article {
    min-height: 0;
    padding: 2rem 0;
  }

  .expectations-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .practice-item,
  .practice-item:nth-child(even) {
    min-height: 0;
    padding: 1.9rem 0 2.1rem;
    grid-template-columns: 2.5rem 1fr auto;
    border-left: 0;
  }

  .team-member {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .team-photo {
    grid-row: auto;
    width: min(100%, 420px);
  }

  .hub-intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .detail-hero {
    min-height: 500px;
    padding-top: 8rem;
    padding-bottom: 3.5rem;
  }

  .detail-hero h1,
  .article-detail h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .article-detail {
    padding-top: 8rem;
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    margin-top: 2rem;
  }

  .detail-body h2,
  .article-prose h2,
  .legal-document h2 {
    font-size: 1.9rem;
  }

  .faq-answer {
    padding-right: 0;
  }

  .member-core,
  .member-education,
  .member-cases {
    grid-column: 1;
  }

  .member-core h3 br {
    display: none;
  }

  .service-detail header {
    grid-template-columns: 2.5rem 1fr;
    gap: 0 1rem;
  }

  .timeline li {
    grid-template-columns: 2.8rem 1fr;
  }

  .assurance-grid article {
    min-height: 240px;
    border-left: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    margin: 0;
    padding: 1.5rem;
  }

  .contact-info dl div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .footer-links {
    justify-content: start;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .team-preview-grid {
    grid-template-columns: 1fr;
  }

  .team-preview-card figure {
    max-width: 420px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
