:root {
  --ink: #0a2439;
  --ink-2: #123c5c;
  --brand: #1689c7;
  --brand-deep: #0e6e9e;
  --silver: #c3cfde;
  --paper: #f2f6f9;
  --white: #ffffff;
  --line: rgba(10, 36, 57, 0.14);
  --display: "Spectral", Georgia, serif;
  --body: "Jost", -apple-system, "Segoe UI", sans-serif;
  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 150px;
}

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

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

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

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

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

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

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}

.section__eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 14px;
}

.section__eyebrow::after {
  content: "";
  height: 1px;
  flex: 0 0 46px;
  background: var(--brand);
  opacity: 0.55;
}

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

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

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

.section__eyebrow--light::after,
.section__eyebrow--light::before {
  background: var(--silver);
  opacity: 0.5;
}

.section__title {
  font-size: clamp(32px, 3.1vw, 50px);
  line-height: 1.12;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border: 1.5px solid transparent;
  cursor: pointer;
  max-width: 100%;
  line-height: 1.35;
  text-align: center;
}

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

.btn--primary:hover {
  background: var(--brand-deep);
}

.btn--ink {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

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

.btn--header {
  font-size: 15px;
  padding: 14px 28px;
}

.btn--cta {
  font-size: 20px;
  padding: 17px 40px;
}

/* ---------- Utility bar ---------- */
.utility {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

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

.utility__dot {
  color: var(--brand);
  margin: 0 9px;
}

.utility__phone:hover {
  color: #fff;
}

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

.utility__est {
  font-family: var(--display);
  font-style: italic;
  color: var(--silver);
}

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

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 104px;
}

.header__logo {
  flex-shrink: 0;
  display: block;
}

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

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

.header__nav-link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--ink);
  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: 2px;
  background: var(--brand);
  transition: right 0.3s ease;
}

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

.header__cta {
  flex-shrink: 0;
}

.header__nav-extras {
  display: none;
}

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

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s 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-close {
  display: none;
}

.header__nav-overlay {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  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));
  min-height: 520px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    96deg,
    rgba(6, 22, 36, 0.96) 0%,
    rgba(8, 28, 45, 0.9) 34%,
    rgba(10, 36, 57, 0.52) 60%,
    rgba(10, 36, 57, 0.3) 100%
  );
}

.hero__amp {
  position: absolute;
  z-index: -1;
  left: -3.4vw;
  top: -9%;
  font-family: var(--display);
  font-weight: 300;
  font-size: min(41vw, 620px);
  line-height: 0.78;
  color: rgba(195, 207, 222, 0.075);
  pointer-events: none;
  user-select: none;
}

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

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 600px);
  width: min(100%, 50%);
  padding: clamp(12px, 2vw, 24px) clamp(12px, 2vw, 28px) 0 0;
}

.hero__title {
  font-size: clamp(46px, 4.7vw, 74px);
  line-height: 1.02;
  color: #fff;
  font-weight: 400;
  margin: 20px 0 0;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: normal;
  color: var(--silver);
  font-weight: 300;
}

.hero__subtitle {
  font-family: var(--body);
  font-size: 19.5px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--silver);
  margin: 20px 0 0;
  max-width: 520px;
}

.hero__rule {
  width: 58px;
  height: 2px;
  background: var(--brand);
  margin: 26px 0;
}

.hero__intro {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16.5px;
  line-height: 1.78;
  margin: 0;
  max-width: 530px;
}

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

.hero__phone {
  font-size: 24px;
  font-family: var(--display);
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.hero__phone svg {
  flex: 0 0 auto;
  stroke: var(--brand);
}

.hero__phone:hover {
  color: var(--silver);
}

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

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

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

.accolades__inner {
  padding-top: 38px;
  padding-bottom: 38px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.accolades__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5c7488;
  font-weight: 500;
  flex: 0 0 152px;
  line-height: 1.6;
  border-right: 1px solid var(--line);
  padding-right: 26px;
}

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

.accolades__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
}

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

.accolades__badge:hover img {
  opacity: 1;
}

.accolades__badge--mdaf img {
  width: 87px;
  height: 88px;
}

.accolades__badge--ntl img {
  width: 139px;
  height: 72px;
}

.accolades__badge--super img {
  width: 150px;
  height: 36px;
}

.accolades__badge--aaj img {
  width: 183px;
  height: 62px;
}

/* ---------- About ---------- */
.about {
  padding: 104px 0 108px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) 1.2fr;
  gap: 76px;
  align-items: stretch;
}

.about__figure {
  position: relative;
  display: flex;
}

.about__image {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 2px;
}

.about__frame {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--brand);
  z-index: -1;
  border-radius: 2px;
}

.about__chip {
  position: absolute;
  left: -26px;
  bottom: 38px;
  background: var(--ink);
  color: #fff;
  padding: 22px 26px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 18px 34px rgba(10, 36, 57, 0.22);
}

.about__chip strong {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}

.about__chip span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

.about__content .section__title {
  margin-top: 22px;
}

.about__body {
  margin-top: 26px;
  color: #42596d;
  font-size: 16.5px;
  line-height: 1.85;
}

.about__body p {
  margin: 0 0 18px;
}

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

.about__split {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about__split-item {
  padding: 24px 30px 24px 0;
}

.about__split-item + .about__split-item {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.about__split-title {
  font-size: 20px;
  font-weight: 500;
}

.about__split-text {
  margin: 8px 0 0;
  font-size: 15px;
  color: #5c7488;
  line-height: 1.7;
}

.about__cta {
  margin-top: 34px;
}

/* ---------- Practice ---------- */
.practice {
  background: var(--paper);
  padding: 100px 0 106px;
}

.practice__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 52px;
}

.practice__intro .section__title {
  margin-top: 20px;
  max-width: 620px;
}

.practice__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(10, 36, 57, 0.14);
}

.practice-card__thumb {
  position: relative;
  aspect-ratio: 77 / 58;
  overflow: hidden;
  background: var(--ink);
}

.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(10, 36, 57, 0.05), rgba(10, 36, 57, 0.42));
}

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

.practice-card__title {
  font-size: 23px;
  line-height: 1.25;
  font-weight: 500;
}

.practice-card__text {
  margin: 12px 0 22px;
  font-size: 15px;
  color: #5c7488;
  line-height: 1.72;
  flex: 1;
}

.practice-card__more {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card__more span {
  transition: transform 0.25s ease;
  display: inline-block;
}

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

/* ---------- Cases ---------- */
.cases {
  position: relative;
  padding: 100px 0 104px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.cases__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cases__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 26, 42, 0.9), rgba(7, 26, 42, 0.95));
}

.cases__title {
  color: #fff;
  margin-top: 20px;
  text-align: center;
}

.cases__head {
  text-align: center;
  margin-bottom: 60px;
}

.cases__lede {
  color: rgba(255, 255, 255, 0.66);
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 16px;
}

.cases__results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(195, 207, 222, 0.24);
}

.cases__result {
  padding: 40px 34px 42px;
  border-bottom: 1px solid rgba(195, 207, 222, 0.24);
}

.cases__result + .cases__result {
  border-left: 1px solid rgba(195, 207, 222, 0.24);
}

.cases__fig {
  font-family: var(--display);
  font-size: clamp(32px, 2.7vw, 42px);
  line-height: 1;
  font-weight: 400;
  color: #fff;
}

.cases__bar {
  width: 34px;
  height: 2px;
  background: var(--brand);
  margin: 18px 0 16px;
}

.cases__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.cases__link {
  margin-top: 20px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
}

.cases__link:hover {
  color: #fff;
}

.cases__disclaimer {
  margin: 38px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 760px;
  line-height: 1.7;
}

/* ---------- Values ---------- */
.values {
  padding: 104px 0 108px;
}

.values__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 74px;
  align-items: start;
}

.values__intro .section__title {
  margin-top: 20px;
}

.values__sub {
  margin-top: 22px;
  color: #5c7488;
  font-size: 16.5px;
  line-height: 1.8;
}

.values__cta {
  margin-top: 30px;
}

.values__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.values__item {
  padding: 34px 36px 36px;
  border-top: 1px solid var(--line);
  position: relative;
}

.values__item:nth-child(even) {
  border-left: 1px solid var(--line);
}

.values__item:nth-child(3),
.values__item:nth-child(4) {
  border-bottom: 1px solid var(--line);
}

.values__item-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  margin-top: 0;
}

.values__item-text {
  margin: 12px 0 18px;
  color: #5c7488;
  font-size: 15.5px;
  line-height: 1.72;
}

.values__item-link {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.values__item-link span {
  transition: transform 0.25s ease;
  display: inline-block;
}

.values__item-link:hover span {
  transform: translateX(5px);
}

/* ---------- Testimonial ---------- */
.testimonial {
  position: relative;
  padding: 96px 0 100px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.testimonial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6, 22, 36, 0.82);
}

.testimonial__mark {
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.6;
  color: var(--brand);
  opacity: 0.55;
  display: block;
  margin-top: 34px;
}

.testimonial__quote {
  margin: 26px auto 0;
  max-width: 960px;
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 1.72vw, 27px);
  line-height: 1.62;
  color: #fff;
}

.testimonial__who {
  margin-top: 32px;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

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

/* ---------- Contact ---------- */
.contact {
  padding: 104px 0 110px;
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 74px;
  align-items: start;
}

.contact__intro .section__title {
  margin-top: 20px;
}

.contact__sub {
  margin-top: 20px;
  color: #5c7488;
  font-size: 16.5px;
  line-height: 1.8;
}

.contact__info {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

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

.contact__icon {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__key {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b90a2;
  font-weight: 500;
}

.contact__value {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin-top: 3px;
}

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 44px 46px 46px;
}

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

.contact__field {
  display: flex;
  flex-direction: column;
}

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

.contact__label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7b90a2;
  font-weight: 500;
  margin-bottom: 9px;
}

.contact__input {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d5dee7;
  border-radius: 2px;
  padding: 0 14px;
  height: 40px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__textarea {
  height: 120px;
  padding: 11px 14px;
  resize: vertical;
  line-height: 1.6;
}

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

.contact__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(22, 137, 199, 0.13);
}

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

.contact__fine {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: #8497a6;
  line-height: 1.65;
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  padding: 74px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 214px;
  height: auto;
  margin-bottom: 24px;
}

.footer__blurb {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
}

.footer__heading {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 22px;
  font-family: var(--body);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

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

.footer__nav-link:hover,
.footer__cta:hover {
  color: #fff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15.5px;
  line-height: 1.7;
}

.footer__phone {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
}

.footer__bar {
  border-top: 1px solid rgba(195, 207, 222, 0.18);
  padding: 26px 0 34px;
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.46);
}

.footer__disclaimer {
  padding: 0 0 40px;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  max-width: 1080px;
}

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

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

  .btn--header {
    font-size: 14px;
    padding: 13px 22px;
  }

  .header__inner {
    gap: 24px;
  }
}

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

  .header__nav-link {
    font-size: 13.5px;
    letter-spacing: 0.035em;
  }

  .btn--header {
    font-size: 13px;
    padding: 12px 18px;
  }

  .header__inner {
    gap: 18px;
  }
}

/* ---------- Nav breakpoint: hamburger below 1200px ---------- */
@media (max-width: 1200px) {
  .header__toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 36, 57, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 45;
  }

  .header.is-open .header__nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin-left: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 50;
    overflow-y: auto;
    box-shadow: -18px 0 40px rgba(10, 36, 57, 0.18);
  }

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

  .header__nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: var(--ink);
  }

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

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

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

  .header__nav-phone {
    font-family: var(--display);
    font-size: 24px;
    color: var(--ink);
    font-weight: 500;
  }

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

  .header__inner {
    height: 88px;
  }
}

@media (max-width: 1320px) {
  :root {
    --pad: 34px;
  }

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

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

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

  .cases__result:nth-child(3) {
    border-left: none;
  }

  .about__grid,
  .values__grid,
  .contact__grid {
    gap: 50px;
  }
}

@media (max-width: 1080px) {
  .hero__content {
    width: min(100%, 58%);
  }

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

  .about__figure {
    max-width: 540px;
  }

  .about__chip {
    left: auto;
    right: 26px;
  }

  .about__frame {
    inset: 18px -18px -18px 18px;
  }

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

  .accolades__label {
    flex: none;
    border-right: none;
    padding-right: 0;
    text-align: center;
  }

  .practice__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .btn--cta {
    font-size: 18px;
    padding: 15px 28px;
  }

  .hero__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: clamp(36px, 6vw, 48px) clamp(16px, 4vw, 24px) 0;
  }

  .hero__inner {
    height: auto;
    display: block;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 24px;
  }

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

  .hero__image {
    height: auto;
    width: min(100%, 620px);
    max-height: none;
  }

  .hero__amp {
    font-size: 52vw;
    top: auto;
    bottom: -6%;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .btn--cta {
    font-size: 17px;
    padding: 14px 22px;
  }

  .btn--header {
    padding: 13px 20px;
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 22px;
  }

  body {
    font-size: 16px;
  }

  .utility__inner {
    height: auto;
    padding-top: 11px;
    padding-bottom: 11px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    font-size: 12.5px;
  }

  .utility__right {
    gap: 14px;
  }

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

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

  .cases__result + .cases__result {
    border-left: none;
  }

  .cases__result:nth-child(3) {
    border-left: none;
  }

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

  .values__item:nth-child(even) {
    border-left: none;
  }

  .values__item:nth-child(3) {
    border-bottom: none;
  }

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

  .about__split-item + .about__split-item {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .contact__form {
    padding: 30px 24px 32px;
  }

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

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

  .accolades__badges {
    gap: 26px;
  }

  .section__eyebrow::after,
  .section__eyebrow::before {
    display: none;
  }

  .section__eyebrow {
    gap: 0;
  }

  .about,
  .practice,
  .cases,
  .values,
  .testimonial,
  .contact {
    padding-top: 66px;
    padding-bottom: 70px;
  }
}
