:root {
  --navy: #002969;
  --navy-d: #001a44;
  --navy-l: #0b3a84;
  --crim: #bf0a30;
  --crim-d: #9c0726;
  --ink: #0b1220;
  --slate: #4a5468;
  --line: #d8dce4;
  --paper: #ffffff;
  --shell: #f5f6f9;
  --disp: "Newsreader", Georgia, serif;
  --ui: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
  --header-pad-y: 20px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

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

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

p {
  margin: 0 0 1.05em;
}

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

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

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

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crim);
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--crim);
  flex: 0 0 auto;
}

.eyebrow--light {
  color: #fff;
}

.eyebrow--light::before {
  background: var(--crim);
}

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

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

.btn--primary {
  background: var(--crim);
  color: #fff;
}

.btn--primary:hover {
  background: var(--crim-d);
  transform: translateY(-2px);
}

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

.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px);
}

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

.btn--navy:hover {
  background: var(--navy-d);
  transform: translateY(-2px);
}

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

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

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  font-size: 13.5px;
  letter-spacing: 0.03em;
}

.utility__left {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.8);
}

.utility__right {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.8);
}

.utility__right b {
  color: #fff;
  font-weight: 600;
}

.utility svg {
  flex: 0 0 auto;
}

/* ---------- header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 40;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: var(--header-pad-y);
  padding-bottom: var(--header-pad-y);
}

.header__brand {
  flex-shrink: 0;
}

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

.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

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

.header__nav-link {
  font-family: var(--ui);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
}

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

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

.header__phone {
  font-family: var(--disp);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.header__cta {
  display: none;
}

.header__nav-close {
  display: none;
}

.header__nav-extras {
  display: none;
}

.header__overlay {
  display: none;
}

.header__burger {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 50;
}

.header__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  transition: transform 0.25s, opacity 0.25s;
}

body.is-menu-open .header__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.is-menu-open .header__burger-line:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .header__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Avoid stacking the animated burger X over the panel close control */
body.is-menu-open .header__burger {
  opacity: 0;
  pointer-events: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background: var(--navy);
  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 42%;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    97deg,
    rgba(0, 20, 54, 0.95) 0%,
    rgba(0, 26, 68, 0.9) 40%,
    rgba(0, 33, 82, 0.62) 66%,
    rgba(0, 36, 90, 0.34) 100%
  );
}

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

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 2vw, 40px) clamp(12px, 2vw, 44px) clamp(12px, 2vw, 40px) 0;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
}

.hero__title {
  font-size: clamp(38px, 3.65vw, 62px);
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.045;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #ffd9e0;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 60ch;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-top: 26px;
  width: fit-content;
}

.hero__phone svg {
  flex: 0 0 auto;
}

.hero__phone span {
  border-bottom: 2px solid var(--crim);
  padding-bottom: 2px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: nowrap;
}

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

.hero__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 112%;
  height: 78%;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(11, 58, 132, 0.85) 0%,
    rgba(0, 26, 68, 0) 68%
  );
  z-index: -1;
}

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

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--crim);
  z-index: 3;
}

/* ---------- accolades ---------- */
.accolades {
  background: #fff;
  background-image: url("../assets/images/bg-accolades.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.accolades__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

.accolades__label {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  max-width: 150px;
  line-height: 1.5;
}

.accolades__row {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: space-around;
}

.accolades__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  flex: 0 0 auto;
}

.accolades__badge img {
  width: auto;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.25s;
}

.accolades__badge:hover img {
  opacity: 1;
}

/* ---------- section base ---------- */
.section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section__head {
  max-width: 820px;
}

.section__title {
  font-size: clamp(31px, 2.55vw, 45px);
  color: var(--navy);
}

.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--crim);
}

.section__lead {
  color: var(--slate);
  font-size: 17.5px;
  margin-top: 16px;
}

.section--center {
  text-align: center;
}

.section--center .section__head {
  margin-left: auto;
  margin-right: auto;
}

.section--practice {
  background: var(--shell);
}

.section--cases {
  position: relative;
  background: var(--navy-d);
  color: #fff;
}

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

.section--cases .section__lead {
  color: rgba(255, 255, 255, 0.76);
}

.section--values {
  position: relative;
  color: #fff;
  background: var(--navy);
}

.section--values .section__title {
  color: #fff;
}

.section--testimonial {
  background: var(--shell);
}

.section--contact {
  background: #fff;
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 76px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
}

.about__media::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 118px;
  height: 118px;
  border-left: 4px solid var(--crim);
  border-top: 4px solid var(--crim);
}

.about__badge {
  position: absolute;
  right: -26px;
  bottom: 34px;
  background: var(--navy);
  color: #fff;
  padding: 24px 30px;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 20, 54, 0.24);
}

.about__badge-value {
  display: block;
  font-family: var(--disp);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.about__badge-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 7px;
}

.about__subtitle {
  font-family: var(--disp);
  font-size: 21px;
  font-weight: 500;
  font-style: italic;
  color: var(--crim);
  margin-top: 14px;
  letter-spacing: 0;
}

.about__body {
  color: var(--slate);
  margin-top: 20px;
  font-size: 17.5px;
}

.about__quote {
  margin-top: 26px;
  padding: 20px 26px;
  border-left: 4px solid var(--crim);
  background: var(--shell);
  font-family: var(--disp);
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
}

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

/* ---------- practice ---------- */
.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 48px;
  text-align: left;
}

.practice-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 20, 54, 0.14);
}

.practice-card__media {
  position: relative;
  height: 212px;
  overflow: hidden;
}

.practice-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 26, 68, 0) 42%,
    rgba(0, 26, 68, 0.72) 100%
  );
}

.practice-card__body {
  padding: 26px 26px 28px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.practice-card__title {
  font-size: 22px;
  color: var(--navy);
  line-height: 1.2;
}

.practice-card__text {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.68;
  margin-top: 11px;
}

.practice-card__link {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--crim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.practice-card:hover .practice-card__link {
  gap: 14px;
}

.practice-card__link span {
  transition: transform 0.25s;
}

/* ---------- case results ---------- */
.cases__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-cases.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.62;
}

.cases__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 54, 0.9), rgba(0, 10, 30, 0.94));
}

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

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cases__item {
  padding: 40px 30px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s;
}

.cases__item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.cases__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cases__amount {
  display: block;
  font-family: var(--disp);
  font-size: clamp(32px, 2.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}

.cases__rule {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--crim);
  margin: 18px 0;
}

.cases__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15.5px;
  line-height: 1.6;
}

.cases__link {
  margin-top: 16px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 3px;
}

.cases__link:hover {
  color: #ffb3c0;
  border-color: #ffb3c0;
}

/* ---------- values ---------- */
.values__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-values.jpg");
  background-size: cover;
  background-position: center 35%;
}

.values__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    rgba(0, 26, 68, 0.96) 0%,
    rgba(0, 26, 68, 0.9) 52%,
    rgba(0, 33, 82, 0.7) 100%
  );
}

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

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.values__item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 32px 28px 30px;
  backdrop-filter: blur(3px);
  transition: background 0.25s, transform 0.25s;
}

.values__item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.values__mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--crim);
  margin-bottom: 20px;
}

.values__title {
  font-size: 21px;
  color: #fff;
  line-height: 1.24;
}

.values__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.66;
  margin-top: 11px;
}

.values__link {
  margin-top: 15px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb3c0;
}

/* ---------- testimonial ---------- */
.testimonial {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__mark {
  font-family: var(--disp);
  font-size: 78px;
  line-height: 0.6;
  color: var(--crim);
  opacity: 0.28;
}

.testimonial__quote {
  font-family: var(--disp);
  font-size: clamp(20px, 1.62vw, 27px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  margin-top: 32px;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}

.testimonial__name {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 76px;
  align-items: start;
}

.contact__info .section__title {
  margin-bottom: 16px;
}

.contact__list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.contact__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 5px;
}

.contact__value {
  font-family: var(--disp);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  display: block;
}

.contact-form {
  background: var(--shell);
  border: 1px solid var(--line);
  border-top: 5px solid var(--crim);
  border-radius: 4px;
  padding: 44px;
}

.contact-form__title {
  font-size: 27px;
  color: var(--navy);
}

.contact-form__note {
  color: var(--slate);
  font-size: 15px;
  margin-top: 9px;
}

.contact-form__form {
  margin-top: 26px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form__field {
  margin-bottom: 18px;
}

.contact-form__field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.contact-form__field input,
.contact-form__field select {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font-family: var(--ui);
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.contact-form__field textarea {
  width: 100%;
  height: 120px;
  padding: 11px 14px;
  font-family: var(--ui);
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 41, 105, 0.12);
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%234a5468' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

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

.contact-form__fine {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #77808f;
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-d);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 74px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.05fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__logo {
  background: #fff;
  display: inline-block;
  padding: 16px 20px;
  border-radius: 4px;
}

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

.footer__blurb {
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 1.72;
  max-width: 42ch;
}

.footer__heading {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15.5px;
}

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

.footer__phone {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}

.footer__address {
  font-size: 15.5px;
  line-height: 1.7;
  font-style: normal;
}

.footer__bottom {
  padding: 26px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer__disclaimer {
  padding: 24px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 0;
}

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

  .header__right {
    gap: 18px;
  }
}

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

  .header__right {
    gap: 14px;
  }

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

  .header__phone {
    font-size: 16px;
  }
}

/* ---------- nav breakpoint: 1200px ---------- */
@media (max-width: 1200px) {
  .header__burger {
    display: block;
  }

  .header__phone--desktop {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 20, 54, 0.55);
    z-index: 45;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  body.is-menu-open .header__overlay {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 48;
    padding: 28px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 20, 54, 0.18);
  }

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

  .header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    background: none;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
  }

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

  .header__nav-link {
    font-size: 18px;
    padding: 14px 0;
    width: 100%;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .header__phone--mobile {
    font-family: var(--disp);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
  }

  .header__cta {
    display: inline-flex;
    width: 100%;
    font-size: 16px;
    padding: 14px 22px;
    white-space: normal;
  }

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

  .about {
    gap: 44px;
  }

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

@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about__image {
    height: 440px;
  }

  .about__badge {
    right: 16px;
  }

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

  .accolades__inner {
    justify-content: center;
  }

  .accolades__label {
    max-width: none;
    text-align: center;
    width: 100%;
  }
}

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

  .hero__actions {
    flex-wrap: wrap;
  }
}

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

  .hero__inner {
    height: auto;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 clamp(20px, 4vw, 32px);
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 320px;
    margin-top: 8px;
  }

  .hero__image {
    height: auto;
    max-height: 420px;
    width: auto;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 31px;
  }
}

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

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

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

  .utility__right {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__brand-img {
    width: 180px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .cases__item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .contact-form {
    padding: 26px;
  }

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

  .footer__logo-img {
    max-width: 300px;
  }

  .about__badge {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .accolades__row {
    gap: 26px;
  }

  .accolades__badge {
    height: auto;
  }
}

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