:root {
  --navy: #002858;
  --navy-deep: #001730;
  --navy-mid: #00305F;
  --graphite: #211A21;
  --brass: #C0913A;
  --brass-lt: #DCB86A;
  --paper: #F1F2F4;
  --paper-2: #E4E7EB;
  --line: #CFD5DC;
  --ink: #14181D;
  --ink-soft: #4A545F;
  --container-max: 1720px;
  --container-width: 95%;
  --pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 148px;
  --serif: "Literata", Georgia, serif;
  --sans: "Mulish", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

p {
  margin: 0 0 1.1em;
}

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

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

.container {
  width: var(--container-width);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.container > * {
  min-width: 0;
}

.contact__form-row > *,
.field,
.contact__form {
  min-width: 0;
}

/* ---------- bars (logo mark echo) ---------- */
.bars {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 20px;
}

.bars__bar {
  display: block;
  width: 9px;
  background: var(--brass);
}

.bars__bar:nth-child(1) {
  height: 13px;
}

.bars__bar:nth-child(2) {
  height: 20px;
  background: var(--navy);
}

.bars__bar:nth-child(3) {
  height: 13px;
}

.bars--on-dark .bars__bar:nth-child(2) {
  background: var(--brass-lt);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  padding: 19px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

.btn--brass {
  background: var(--brass);
  color: #160F02;
  border-color: var(--brass);
}

.btn--brass:hover {
  background: var(--brass-lt);
  border-color: var(--brass-lt);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: #fff;
  color: var(--navy-deep);
  border-color: #fff;
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

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

/* ---------- utility bar ---------- */
.utility {
  background: var(--graphite);
  color: #CBD2DA;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}

.utility__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.utility a:hover {
  color: #fff;
}

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

.utility__address svg {
  flex: none;
  opacity: 0.75;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 18px rgba(0, 23, 48, 0.06);
}

.header__overlay {
  display: none;
}

.header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__logo {
  flex: none;
  flex-shrink: 0;
}

.header__logo img {
  width: 244px;
  height: 81px;
  object-fit: contain;
  flex-shrink: 0;
  max-width: none;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3;
}

.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.header__nav {
  margin-left: auto;
}

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

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

.header__nav-link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-deep);
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  flex-shrink: 0;
}

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

.header__nav-link:hover::after,
.header__nav-link:focus-visible::after {
  right: 0;
}

.header__nav-extras {
  display: none;
}

.header__cta {
  flex: none;
  flex-shrink: 0;
}

.header__cta .btn {
  flex: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(0, 20, 42, 0.97) 0%,
    rgba(0, 25, 52, 0.92) 42%,
    rgba(0, 40, 88, 0.62) 66%,
    rgba(0, 48, 95, 0.35) 100%
  );
}

.hero__plate {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(180deg, rgba(0, 40, 88, 0.55), rgba(33, 26, 33, 0.75));
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__arc {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  border-radius: 50% 50% 0 0;
  border: 2px solid rgba(192, 145, 58, 0.5);
  border-bottom: none;
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__content {
  position: relative;
  z-index: 4;
  width: min(100%, 640px);
  max-width: 55%;
  padding: clamp(16px, 3vw, 40px) clamp(0px, 1vw, 12px);
}

.hero__title {
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 22px 0 20px;
}

.hero__eyebrow {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--brass-lt);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.hero__text {
  font-size: 18.5px;
  color: #D3DAE3;
  max-width: 57ch;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero__phone-num {
  display: block;
}

.hero__phone-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brass-lt);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.hero__phone svg {
  flex: none;
}

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

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

/* ---------- trust strip ---------- */
.trust {
  background: var(--graphite);
  color: #fff;
}

.trust__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.trust__accolades {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px clamp(38px, 5.5vw, 96px);
  padding: 36px 0 34px;
}

.trust__badge {
  flex: none;
  width: auto;
  opacity: 0.92;
}

.trust__badge--million {
  height: 74px;
}

.trust__badge--ntl {
  height: 62px;
}

.trust__badge--super {
  height: 34px;
}

.trust__badge--aaj {
  height: 48px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.trust__item {
  padding: 30px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.trust__item:first-child {
  border-left: none;
  padding-left: 0;
}

.trust__item-title {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.trust__item-text {
  font-size: 14.5px;
  color: #A9B4C0;
}

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

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

.section-head .bars {
  margin-bottom: 22px;
}

.section-head__title {
  font-size: clamp(30px, 2.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.022em;
}

.section-head__text {
  margin-top: 16px;
  font-size: 18.5px;
  color: var(--ink-soft);
}

/* ---------- about ---------- */
.about {
  background: var(--paper);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 76px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: 60% 40%;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -16px;
  bottom: -16px;
  width: 120px;
  height: 120px;
  border-left: 3px solid var(--brass);
  border-bottom: 3px solid var(--brass);
}

.about__title {
  font-size: clamp(30px, 2.7vw, 45px);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 20px 0 24px;
}

.about__copy p {
  color: #333B45;
  max-width: 66ch;
}

.about__callout {
  margin-top: 34px;
  background: #fff;
  border-left: 5px solid var(--brass);
  padding: 26px 30px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  color: var(--navy-deep);
}

.about__callout a {
  color: var(--navy);
  border-bottom: 2px solid var(--brass);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- practice ---------- */
.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.practice__card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--navy-deep);
  min-height: 340px;
}

.practice__card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.9;
}

.practice__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 20, 44, 0.15) 30%,
    rgba(0, 20, 44, 0.9) 100%
  );
}

.practice__card:hover .practice__card-image {
  transform: scale(1.045);
}

.practice__card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.practice__card-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.practice__card-rule {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--brass);
  margin-top: 16px;
}

/* ---------- cases ---------- */
.cases {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}

.cases__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.42;
}

.cases__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 17, 36, 0.9), rgba(0, 23, 48, 0.96));
}

.cases__inner {
  position: relative;
  z-index: 2;
}

.cases .section-head__title {
  color: #fff;
}

.cases .section-head__text {
  color: #C3CCD6;
  font-family: var(--serif);
  font-size: 21px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.cases__cell {
  background: rgba(0, 20, 42, 0.62);
  padding: 42px 34px 46px;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cases__cell-title {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  color: var(--brass-lt);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cases__cell-text {
  margin: 22px 0 0;
  font-size: 16.5px;
  color: #C9D2DC;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
}

/* ---------- why ---------- */
.why {
  background: #fff;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.why__item {
  padding: 38px 44px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.why__item:nth-child(1),
.why__item:nth-child(2) {
  border-top: 2px solid var(--navy);
}

.why__item:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid var(--line);
}

.why__item:nth-child(even) {
  padding-right: 0;
}

.why__item svg {
  flex: none;
  margin-top: 4px;
}

.why__item-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy-deep);
}

.why__item-text {
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* ---------- contact ---------- */
.contact {
  background: var(--navy);
  color: #fff;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.contact__title {
  font-size: clamp(30px, 2.6vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.022em;
  margin: 20px 0 20px;
}

.contact__lede {
  color: #CBD5E0;
  font-size: 18.5px;
  max-width: 48ch;
}

.contact__meta {
  margin-top: 38px;
  display: grid;
  gap: 24px;
}

.contact__row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact__row svg {
  flex: none;
  margin-top: 5px;
}

.contact__row-label {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 5px;
}

.contact__row p {
  margin: 0;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
}

.contact__row-phone {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--sans);
}

.contact__form {
  background: #fff;
  padding: 42px 44px;
  color: var(--ink);
}

.contact__form-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.contact__form-sub {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 7px;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23002858' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field__textarea {
  height: 120px;
  padding: 12px 14px;
  line-height: 1.5;
  resize: vertical;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--navy);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 40, 88, 0.12);
}

.contact__form .btn {
  width: 100%;
  margin-top: 8px;
}

.contact__form-fine {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- footer ---------- */
.footer {
  background: var(--graphite);
  color: #96A2AE;
  padding: 66px 0 34px;
  font-size: 15px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer__logo img {
  width: 220px;
  height: 73px;
  margin-bottom: 22px;
  max-width: none;
  flex-shrink: 0;
}

.footer__brand-text {
  max-width: 44ch;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

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

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  font-size: 13.5px;
  color: #7C8894;
}

.footer__bottom p {
  margin: 0;
  max-width: none;
}

/* ---------- progressive header scaling (before hamburger) ---------- */
@media (max-width: 1560px) {
  .header__nav-list {
    gap: 22px;
  }
}

@media (max-width: 1400px) {
  .header__nav-list {
    gap: 19px;
  }

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

  .header__cta .btn--sm {
    font-size: 15px;
    padding: 13px 22px;
  }

  .hero__content {
    max-width: 56%;
  }
}

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

  .header__nav-list {
    gap: 16px;
  }

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

  .header__cta .btn--sm {
    font-size: 14.5px;
    padding: 12px 18px;
  }
}

/* ---------- nav hamburger ≤1200px ---------- */
@media (max-width: 1200px) {
  :root {
    --pad: 32px;
  }

  .header__inner {
    min-height: 92px;
    gap: 20px;
  }

  .header__toggle {
    display: flex;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(0, 17, 36, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .header.is-open .header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin-left: 0;
    padding: 84px 28px 40px;
    background: #fff;
    z-index: 2;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 40px rgba(0, 17, 36, 0.18);
  }

  .header.is-open .header__nav {
    transform: translateX(0);
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }

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

  .header__nav-link {
    font-size: 18px;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .header__nav-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-deep);
  }

  .header__cta {
    display: none;
  }

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

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

  .about__inner {
    gap: 44px;
  }

  .hero__title {
    font-size: clamp(30px, 3.4vw, 44px);
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
  }

  .hero__actions .btn {
    font-size: 17px;
    padding: 16px 26px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 76px 0;
  }

  .hero__plate,
  .hero__arc {
    display: none;
  }

  .hero__bg::after {
    background: linear-gradient(180deg, rgba(0, 20, 42, 0.95), rgba(0, 32, 68, 0.86));
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about__image {
    height: 440px;
  }

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

  .trust__item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }

  .trust__item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

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

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

  .hero__inner {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 0;
  }

  .hero__content {
    max-width: 100%;
    padding: clamp(8px, 2vw, 20px) 0 clamp(20px, 3vw, 28px);
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    max-height: 520px;
    justify-content: center;
  }

  .hero__image {
    height: auto;
    max-height: 520px;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 22px;
    --container-width: 100%;
  }

  body {
    font-size: 16.5px;
  }

  .section {
    padding: 60px 0;
  }

  .utility__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }

  .utility__note {
    display: none;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero__text {
    font-size: 17px;
  }

  .practice__grid,
  .cases__grid,
  .why__grid {
    grid-template-columns: 1fr;
  }

  .cases__cell {
    padding: 32px 26px;
  }

  .why__item {
    padding: 30px 0 !important;
    border-right: none !important;
  }

  .why__item:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 32px 24px;
  }

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

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

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

  .trust__accolades {
    gap: 26px 40px;
    padding: 30px 0 28px;
  }

  .trust__badge--million {
    height: 60px;
  }

  .trust__badge--ntl {
    height: 50px;
  }

  .trust__badge--super {
    height: 28px;
  }

  .trust__badge--aaj {
    height: 39px;
  }

  .trust__item {
    padding: 22px 0;
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust__item:first-child {
    border-top: none;
  }
}

@media (max-width: 640px) {
  .hero__actions .btn {
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
  }
}

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