:root {
  --navy-950: #06121f;
  --navy-900: #0a1a2d;
  --navy-800: #12293f;
  --navy-700: #1b3a55;
  --brass: #c0973f;
  --brass-lt: #ddbb6b;
  --paper: #f7f5f0;
  --paper-2: #efebe3;
  --ink: #2e3a47;
  --ink-soft: #5a6675;
  --line: #dcd6ca;
  --container-max: 1660px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 150px;
  --pad: 45px;
  --display: "Spectral", Georgia, serif;
  --body: "Be Vietnam Pro", "Helvetica Neue", Arial, sans-serif;
}

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

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

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

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

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

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

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

p {
  margin: 0 0 1.1em;
}

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

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

/* ---------- Buttons ---------- */

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

.btn--primary {
  background: var(--brass);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(192, 151, 63, 0.28);
}

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

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

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

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

/* ---------- Eyebrows ---------- */

.section__eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section__eyebrow::after {
  content: "";
  flex: 0 0 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

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

.section__eyebrow--center::before {
  content: "";
  flex: 0 0 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section__eyebrow--light {
  color: var(--brass-lt);
}

/* ---------- Utility bar ---------- */

.utility {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

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

.utility__address,
.utility__meta {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.utility em {
  font-style: normal;
  color: var(--brass-lt);
  font-weight: 500;
}

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

/* ---------- Header ---------- */

.header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 104px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__logo {
  flex: 0 0 auto;
  flex-shrink: 0;
  line-height: 0;
}

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

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

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

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

.header__nav-link {
  display: block;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header__nav-link:hover {
  color: #fff;
}

.header__nav-link:hover::after {
  transform: scaleX(1);
}

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

.header__tel {
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header__cta .btn {
  font-size: clamp(13px, 0.95vw, 16px);
  padding: clamp(10px, 0.9vw, 14px) clamp(18px, 1.6vw, 28px);
  flex-shrink: 0;
}

.header__nav-extras {
  display: none;
}

.header__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

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

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

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

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

.header__overlay {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
  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 42%;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(6, 18, 31, 0.95) 0%,
    rgba(8, 22, 38, 0.9) 40%,
    rgba(10, 26, 45, 0.5) 70%,
    rgba(10, 26, 45, 0.28) 100%
  );
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 800px);
  width: min(100%, 55%);
  padding-inline: clamp(0px, 1.2vw, 16px);
}

.hero__content h1 {
  font-size: clamp(38px, 3.35vw, 56px);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero__rule {
  display: block;
  width: 74px;
  height: 3px;
  background: var(--brass);
  margin: 26px 0 22px;
}

.hero__subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 530px;
  margin: 0 0 32px;
  line-height: 1.6;
}

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

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

.hero__tel small {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.hero__tel a {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.hero__tel a: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__image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
}

/* ---------- Accolades ---------- */

.accolades {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

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

.accolades__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 170px;
  line-height: 1.5;
  border-left: 2px solid var(--brass);
  padding-left: 16px;
}

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

.accolades__badge {
  width: auto;
  max-width: 100%;
  opacity: 0.88;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.accolades__badge--mdaf {
  height: 86px;
}

.accolades__badge--ntl {
  height: 68px;
}

.accolades__badge--sl {
  height: 46px;
}

.accolades__badge--aaj {
  height: 56px;
}

.accolades__badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ---------- Section base ---------- */

section[id] {
  scroll-margin-top: 120px;
}

.section {
  padding: 104px 0;
}

.section__header {
  max-width: 820px;
}

.section h2 {
  font-size: clamp(30px, 2.5vw, 44px);
}

.section__lead {
  font-size: 19px;
  color: var(--ink-soft);
  margin-top: 18px;
  line-height: 1.68;
}

/* ---------- About ---------- */

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

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

.about__figure {
  position: relative;
}

.about__figure img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about__figure::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--brass);
  z-index: 0;
}

.about__body h3 {
  font-size: clamp(28px, 2.15vw, 38px);
  margin-bottom: 14px;
}

.about__sub {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.5;
  margin-bottom: 26px;
}

.about__body p {
  color: var(--ink-soft);
}

.about__callout {
  margin-top: 32px;
  background: var(--navy-900);
  color: #fff;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.about__callout p {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0;
}

.about__callout strong {
  color: var(--brass-lt);
  font-weight: 600;
}

/* ---------- Practice ---------- */

.practice {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 56px;
}

.practice-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(10, 26, 45, 0.14);
  border-color: var(--brass);
}

.practice-card__thumb {
  position: relative;
  aspect-ratio: 385 / 244;
  overflow: hidden;
  background: var(--navy-900);
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 31, 0.05), rgba(6, 18, 31, 0.45));
}

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

.practice-card__body h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.practice-card__body p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.practice-card:hover .practice-card__link {
  color: var(--brass);
}

.practice-card__arrow {
  transition: transform 0.22s ease;
}

.practice-card:hover .practice-card__arrow {
  transform: translateX(5px);
}

/* ---------- Case results ---------- */

.results {
  position: relative;
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
}

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

.results__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 31, 0.86), rgba(6, 18, 31, 0.94));
}

.results .container {
  position: relative;
  z-index: 2;
}

.results h2 {
  color: #fff;
}

.results .section__lead {
  color: rgba(255, 255, 255, 0.62);
}

.results__ledger {
  margin-top: 58px;
  border-top: 1px solid rgba(192, 151, 63, 0.42);
}

.results__row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: baseline;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease;
}

.results__row:hover {
  background: rgba(192, 151, 63, 0.07);
}

.results__index {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(192, 151, 63, 0.85);
}

.results__amount {
  font-family: var(--display);
  font-size: clamp(38px, 3.9vw, 62px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.028em;
  line-height: 1;
}

.results__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-self: end;
  text-align: right;
}

.results__type {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
}

.results__disclaimer {
  margin-top: 36px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 900px;
}

/* ---------- Values ---------- */

.values {
  background: var(--paper);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.values__item {
  padding: 40px 34px 40px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.values__item:last-child {
  border-right: 0;
}

.values__item:not(:first-child) {
  padding-left: 34px;
}

.values__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  margin-bottom: 22px;
}

.values__item h4 {
  font-size: 21px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.values__item p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.66;
}

.values__more {
  margin-top: auto;
  padding-top: 18px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-700);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 3px;
}

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

/* ---------- Reviews ---------- */

.reviews {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
}

.reviews__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-testimonial.jpg");
  background-size: cover;
  background-position: center 38%;
}

.reviews__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 31, 0.9), rgba(6, 18, 31, 0.82));
}

.reviews .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.reviews h2 {
  color: #fff;
  margin-bottom: 36px;
}

.reviews__mark {
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.6;
  color: var(--brass);
  opacity: 0.55;
  margin-bottom: 6px;
}

.reviews__quote {
  margin: 0 auto;
  max-width: 1000px;
  font-family: var(--display);
  font-size: clamp(21px, 1.72vw, 29px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: #fff;
}

.reviews__full {
  margin-top: 26px;
  font-family: var(--body);
  font-style: normal;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

.reviews__by {
  margin-top: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reviews__stars {
  color: var(--brass);
  letter-spacing: 5px;
  font-size: 16px;
}

.reviews__by b {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #fff;
}

/* ---------- Contact ---------- */

.contact {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 76px;
  align-items: start;
}

.contact h2 {
  font-size: clamp(30px, 2.4vw, 42px);
}

.contact__list {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact__icon {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__item span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact__item b {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.45;
  display: block;
}

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px 42px;
  box-shadow: 0 26px 60px rgba(10, 26, 45, 0.1);
}

.contact__form h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.contact__form > p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

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

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

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

label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

input,
select,
textarea {
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0 15px;
  height: 40px;
  width: 100%;
  border-radius: 2px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  height: 120px;
  padding: 12px 15px;
  resize: vertical;
  line-height: 1.6;
}

select {
  appearance: none;
  background-image: url("../assets/images/icon-select-chevron.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(192, 151, 63, 0.16);
  background: #fff;
}

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

.form__disclaimer {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 78px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr) minmax(0, 0.85fr);
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  width: 300px;
  max-width: none;
  margin-bottom: 24px;
}

.footer__brand p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 430px;
}

.footer h5 {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin: 0 0 22px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 15.5px;
}

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

.footer__contact {
  font-size: 15.5px;
  line-height: 1.75;
}

.footer__contact a {
  display: block;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 0 34px;
  font-size: 13px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- Header / nav at 1200px ---------- */

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(6, 18, 31, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

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

  .header__inner {
    position: relative;
    z-index: 2;
    min-height: 82px;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: flex;
    margin-left: auto;
  }

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

  .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(--navy-800);
    z-index: 2;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

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

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

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__nav-link {
    font-size: 16px;
    padding: 16px 0;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
    width: 100%;
  }

  .header__nav-extras .btn {
    width: 100%;
  }
}

/* ---------- Layout breakpoints ---------- */

@media (max-width: 1240px) {
  .practice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .values__item {
    border-bottom: 1px solid var(--line);
  }

  .values__item:nth-child(2) {
    border-right: 0;
  }

  .values__item:nth-child(3) {
    padding-left: 0;
  }

  .values__item:nth-child(3),
  .values__item:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 1180px) {
  .accolades__badge {
    transform: scale(0.86);
    transform-origin: center;
  }

  .accolades__badge:hover {
    transform: scale(0.86) translateY(-2px);
  }

  .accolades__row {
    gap: 34px;
  }
}

@media (max-width: 1080px) {
  :root {
    --pad: 30px;
  }

  .container {
    width: 100%;
  }

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

  .accolades__label {
    max-width: 100%;
  }

  .accolades__row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 20px;
    place-items: center;
    flex: none;
  }

  .accolades__badge {
    height: auto;
    max-height: 58px;
    max-width: 100%;
    transform: none;
  }

  .accolades__badge:hover {
    transform: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__figure img {
    height: 420px;
  }

  .about__figure::before {
    display: none;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .section {
    padding: 68px 0;
  }

  section[id] {
    scroll-margin-top: 90px;
  }

  .hero {
    height: auto;
    min-height: 0;
    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 28px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
  }

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

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

  .utility__address,
  .utility__meta {
    gap: 16px;
    font-size: 12.5px;
  }

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

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

  .values__item {
    border-right: 0;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
  }

  .values__item:last-child {
    border-bottom: 0;
  }

  .results__row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .results__meta {
    justify-self: start;
    text-align: left;
  }

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

  .contact__form {
    padding: 32px 24px;
  }

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

  .hero__actions {
    gap: 16px;
  }

  .accolades__inner {
    gap: 26px;
  }

  .accolades__row {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }

  .accolades__badge {
    max-height: 46px;
  }

  .reviews__mark {
    font-size: 70px;
  }

  .header__inner {
    gap: 16px;
  }

  .footer__brand img {
    width: min(300px, 100%);
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}
