@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/playfair-display-400.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/playfair-display-400-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/playfair-display-600.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/playfair-display-700.woff2") format("woff2");
}

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/hanken-grotesk-400.woff2") format("woff2");
}

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/hanken-grotesk-500.woff2") format("woff2");
}

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/hanken-grotesk-600.woff2") format("woff2");
}

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/hanken-grotesk-700.woff2") format("woff2");
}

:root {
  --ink-950: #050d18;
  --ink-900: #0a1728;
  --ink-850: #0d1e33;
  --ink-800: #12263d;
  --ink-line: #1e3a59;

  --brass: #c3974f;
  --brass-lt: #e0bc80;
  --brass-dp: #946e2c;
  --rust: #a8543c;

  --bone: #f7f4ee;
  --bone-2: #ebe4d7;
  --bone-line: #dcd3c2;

  --body: #3a4a5c;
  --body-lt: #b9c4d2;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 148px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.14;
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 3vw, 45px);
  padding-right: clamp(20px, 3vw, 45px);
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.eyebrow::after {
  content: "";
  height: 1px;
  width: 54px;
  background: linear-gradient(90deg, var(--brass), transparent);
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::before {
  content: "";
  height: 1px;
  width: 54px;
  background: linear-gradient(270deg, var(--brass), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  max-width: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(178deg, var(--brass-lt), var(--brass) 46%, var(--brass-dp));
  color: var(--ink-950);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.55);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(0, 0, 0, 0.6);
}

.btn--ghost {
  border-color: rgba(224, 188, 128, 0.5);
  color: var(--brass-lt);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(195, 151, 79, 0.12);
  border-color: var(--brass);
}

.btn--sm {
  font-size: 16px;
  padding: 14px 28px;
}

/* Utility bar */
.utility {
  background: var(--ink-950);
  color: #8fa2b8;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
}

.utility__phone:hover {
  color: var(--brass-lt);
}

.utility__right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
}

.utility__tag {
  color: var(--brass);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Header */
.header {
  background: var(--ink-900);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  z-index: 20;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 104px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 170px;
  height: auto;
  max-width: none;
  flex-shrink: 0;
}

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #e7edf4;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  flex-shrink: 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--brass);
  transition: right 0.28s ease;
}

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  right: 0;
}

.header__nav-link[aria-current] {
  color: #fff;
}

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: 20px;
  padding: 19px 38px;
}

.header__toggle {
  display: none;
  position: relative;
  z-index: 4;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #e7edf4;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.header.is-open .header__toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.header__overlay {
  display: none;
}

.header__phone {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.header__phone:hover {
  color: var(--brass-lt);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background-color: var(--ink-900);
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 42%;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(96deg, rgba(5, 13, 24, 0.96) 0%, rgba(8, 20, 35, 0.9) 38%, rgba(10, 23, 40, 0.42) 66%, rgba(10, 23, 40, 0.18) 100%),
    radial-gradient(120% 90% at 78% 100%, rgba(195, 151, 79, 0.12), transparent 60%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.hero__content {
  max-width: min(100%, 640px);
  padding-inline: clamp(0px, 1.2vw, 16px);
}

.hero__title {
  color: #fff;
  font-size: clamp(38px, 4.3vw, 62px);
  letter-spacing: -0.012em;
}

.hero__title em {
  font-style: normal;
  color: var(--brass-lt);
  display: block;
}

.hero__rule {
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), rgba(195, 151, 79, 0));
  margin: 26px 0 24px;
}

.hero__lede {
  color: #c7d3e0;
  font-size: 17.5px;
  max-width: 585px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__tel-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fa2b8;
}

.hero__tel-number {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero__tel-number:hover {
  color: var(--brass-lt);
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.hero__plinth {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(195, 151, 79, 0.02), rgba(195, 151, 79, 0.14));
  border-left: 1px solid rgba(195, 151, 79, 0.18);
  border-right: 1px solid rgba(195, 151, 79, 0.18);
}

.hero__plinth::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

.hero__image {
  position: relative;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Accolades */
.accolades {
  background: var(--ink-950);
  border-top: 1px solid rgba(195, 151, 79, 0.22);
  padding: 38px 0;
}

.accolades__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  flex-wrap: wrap;
}

.accolades__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7c8ea4;
  max-width: 170px;
  line-height: 1.6;
  border-left: 2px solid var(--brass);
  padding-left: 16px;
  margin: 0;
}

.accolades__items {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  max-width: 1080px;
}

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__image {
  max-width: 100%;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.accolades__item:hover .accolades__image {
  opacity: 1;
}

.accolades__image--advocates {
  width: 67px;
  height: 67px;
}

.accolades__image--trial-lawyers {
  width: 122px;
  height: 63px;
}

.accolades__image--super-lawyers {
  width: 204px;
  height: 49px;
}

.accolades__image--aaj {
  width: 159px;
  height: 54px;
}

/* Sections */
.section {
  padding: 104px 0;
}

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

.section--bone-alt {
  background: var(--bone-2);
}

.section--ink {
  background: var(--ink-900);
  color: var(--body-lt);
}

.section--ink .section__title,
.section--ink h3 {
  color: #fff;
}

.section__head {
  max-width: 760px;
}

.section__head--center {
  margin: 0 auto;
  text-align: center;
}

.section__title {
  font-size: clamp(30px, 3.1vw, 44px);
  letter-spacing: -0.01em;
}

.section__sub {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--brass-dp);
  margin-top: 16px;
  letter-spacing: 0.01em;
}

.section--ink .section__sub {
  color: var(--brass);
}

/* About split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: stretch;
}

.split__figure {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 560px;
}

.split__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.split__frame {
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid rgba(195, 151, 79, 0.85);
  z-index: 0;
  pointer-events: none;
}

.split__title {
  font-size: clamp(30px, 3.1vw, 42px);
}

.split__subtitle {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--brass-dp);
  line-height: 1.55;
  margin: 18px 0 26px;
}

.callout {
  margin-top: 34px;
  background: #fff;
  border: 1px solid var(--bone-line);
  border-left: 4px solid var(--rust);
  padding: 26px 30px;
  font-size: 17px;
  color: var(--ink-900);
}

.callout strong {
  font-weight: 600;
}

.callout a {
  color: var(--rust);
  font-weight: 600;
  border-bottom: 1px solid rgba(168, 84, 60, 0.35);
}

.callout a:hover {
  border-color: var(--rust);
}

/* Practice cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 58px;
}

.card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-900);
  aspect-ratio: 76 / 72;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.card:hover .card__image {
  transform: scale(1.05);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 24, 0.18) 0%, rgba(5, 13, 24, 0.62) 52%, rgba(5, 13, 24, 0.93) 100%);
}

.card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 26px;
  z-index: 2;
}

.card__rule {
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--brass), rgba(195, 151, 79, 0.15));
}

.card__title {
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
}

.card__more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7e0ea;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card:hover .card__more {
  opacity: 1;
  transform: none;
}

.card__more::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
}

.card__topline {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brass);
  z-index: 3;
  transition: width 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.card:hover .card__topline {
  width: 100%;
}

/* Case results */
.results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--ink-line);
  border-left: 1px solid var(--ink-line);
}

.result {
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 40px 34px 36px;
  position: relative;
  background: var(--ink-900);
  transition: background 0.35s ease;
}

.result:hover {
  background: var(--ink-850);
}

.result__outcome {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
}

.result__stamp {
  position: absolute;
  top: 34px;
  right: 30px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(168, 84, 60, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rust);
}

.result__stamp-icon {
  display: block;
}

.result__title {
  font-family: var(--serif);
  color: #fff;
  font-size: 27px;
  line-height: 1.24;
  margin: 18px 0 0;
  min-height: 2.48em;
}

.result__date {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-line);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c8ea4;
}

.results__note {
  margin-top: 34px;
  font-size: 13.5px;
  color: #7c8ea4;
  letter-spacing: 0.02em;
  max-width: 900px;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--bone-line);
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid var(--bone-line);
}

.value:nth-child(odd) {
  border-right: 1px solid var(--bone-line);
  padding-right: 56px;
}

.value:nth-child(even) {
  padding-left: 56px;
}

.value__mark {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  background: #fff;
  color: var(--brass);
}

.value__icon {
  display: block;
}

.value__title {
  font-size: 22px;
  line-height: 1.35;
  padding-top: 4px;
}

/* Testimonial */
.testimonial {
  position: relative;
  background-color: var(--ink-950);
  background-image: url("../assets/images/bg-testimonial.jpg");
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: #c7d3e0;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 24, 0.86), rgba(5, 13, 24, 0.94));
}

.testimonial__inner {
  position: relative;
  text-align: center;
}

.testimonial__mark {
  display: block;
  margin: 0 auto 26px;
}

.testimonial__mark img {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  opacity: 0.95;
}

.testimonial__quote {
  margin: 0 auto;
  max-width: 940px;
}

.testimonial__headline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.32;
  color: #fff;
  font-weight: 400;
}

.testimonial__body {
  margin-top: 26px;
  font-size: 17.5px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial__who {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-size: clamp(28px, 2.9vw, 40px);
}

.contact__lede {
  margin-top: 20px;
  max-width: 460px;
}

.contact__list {
  margin-top: 36px;
  border-top: 1px solid var(--bone-line);
}

.contact__row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bone-line);
  align-items: flex-start;
}

.contact__key {
  flex: 0 0 108px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dp);
  font-weight: 600;
  padding-top: 5px;
}

.contact__value {
  font-size: 17px;
  color: var(--ink-900);
  line-height: 1.6;
}

.contact__value strong {
  font-weight: 600;
}

.contact__value a:hover {
  color: var(--rust);
}

.form {
  background: #fff;
  border: 1px solid var(--bone-line);
  padding: 44px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6c7a8b;
}

.form__input,
.form__textarea {
  width: 100%;
  border: 1px solid var(--bone-line);
  background: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-900);
  border-radius: 0;
}

.form__input {
  height: 40px;
  padding: 0 14px;
}

.form__textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--brass);
  outline: none;
  background: #fff;
}

.form__submit {
  width: 100%;
  margin-top: 26px;
}

.form__fine {
  margin-top: 16px;
  font-size: 12.5px;
  color: #7a8798;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--ink-950);
  color: #8fa2b8;
  font-size: 15.5px;
  padding: 74px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  gap: 60px;
}

.footer__logo {
  width: 300px;
  height: auto;
  max-width: 100%;
}

.footer__blurb {
  margin-top: 22px;
  max-width: 400px;
  font-size: 15.5px;
}

.footer__heading {
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.footer__link:hover {
  color: var(--brass-lt);
}

.footer__tel {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  font-family: var(--sans);
}

.footer__tel:hover {
  color: var(--brass-lt);
}

.footer__cta {
  margin-top: 8px;
}

.footer__bar {
  margin-top: 60px;
  border-top: 1px solid #14243a;
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #63758c;
}

/* Progressive header scaling before hamburger */
@media (max-width: 1400px) {
  .header__inner {
    gap: 24px;
  }

  .header__nav-list {
    gap: 22px;
  }

  .header__nav-link {
    font-size: 15px;
  }

  .header__cta .btn {
    font-size: 17px;
    padding: 15px 27px;
  }
}

@media (max-width: 1280px) {
  .header__inner {
    gap: 18px;
  }

  .header__nav-list {
    gap: 14px;
  }

  .header__nav-link {
    font-size: 13.5px;
  }

  .header__cta .btn {
    font-size: 14px;
    padding: 13px 18px;
  }
}

/* Nav hamburger + overlay stacking */
@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(5, 13, 24, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header.is-open .header__overlay:not([hidden]) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__inner {
    position: relative;
    z-index: 2;
    gap: 16px;
    min-height: 88px;
  }

  .header__toggle {
    display: flex;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    background: var(--ink-900);
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin-left: 0;
    padding: 84px 28px 40px;
    background: var(--ink-900);
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .header.is-open .header__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-link {
    display: block;
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-line);
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--ink-line);
  }

  .split {
    gap: 48px;
  }

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

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

  .contact {
    gap: 52px;
  }
}

@media (max-width: 1100px) {
  .hero__content {
    max-width: min(50%, 520px);
  }

  .hero__visual {
    width: 48%;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    text-align: center;
    font-size: 18px;
    padding: 16px 26px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split__figure {
    max-width: 560px;
  }

  .split__frame {
    inset: 16px -16px -16px 16px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

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

  .value:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .value:nth-child(even) {
    padding-left: 0;
  }

  .accolades__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .accolades__label {
    max-width: none;
  }

  .accolades__items {
    justify-content: flex-start;
    gap: 28px 32px;
    max-width: none;
    width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: clamp(28px, 5vw, 40px) clamp(24px, 4vw, 32px) 0;
    height: auto;
  }

  .hero__content {
    max-width: 100%;
    padding-inline: clamp(4px, 2vw, 16px);
    padding-bottom: 28px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    right: auto;
    bottom: auto;
    min-height: 0;
  }

  .hero__plinth {
    left: 10%;
    right: 10%;
  }

  .hero__image {
    height: auto;
    max-height: 520px;
    margin: 0 auto;
    object-position: bottom center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 70px 0;
  }

  .utility__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .utility__right {
    gap: 16px;
  }

  .hero__actions {
    gap: 22px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
    font-size: 16px;
    padding: 14px 22px;
    line-height: 1.35;
  }

  .cards,
  .results {
    grid-template-columns: 1fr;
  }

  .result__title {
    min-height: 0;
  }

  .form {
    padding: 26px 22px;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .contact__row {
    flex-direction: column;
    gap: 6px;
  }

  .contact__key {
    flex: none;
  }

  .testimonial {
    padding: 76px 0;
  }

  .accolades__items {
    gap: 26px 22px;
  }

  .accolades__image--advocates {
    width: 55px;
    height: 55px;
  }

  .accolades__image--trial-lawyers {
    width: 100px;
    height: 52px;
  }

  .accolades__image--super-lawyers {
    width: 167px;
    height: 40px;
  }

  .accolades__image--aaj {
    width: 130px;
    height: 44px;
  }

  .eyebrow {
    font-size: 11.5px;
    letter-spacing: 0.15em;
  }

  .eyebrow::after,
  .eyebrow--center::before {
    width: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
