:root {
  --ink: #0a1728;
  --navy: #12263f;
  --navy-2: #1b3556;
  --navy-3: #26456b;
  --steel: #7c9ab8;
  --pale: #d9e4ef;
  --burgundy: #7c2438;
  --burgundy-lt: #9b2e44;
  --paper: #f4f7f9;
  --paper-2: #e8eef4;
  --white: #fff;
  --body: #3e4c5c;
  --ff-display: "Frank Ruhl Libre", Georgia, "Times New Roman", serif;
  --ff-body: "Karla", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --ff-mark: "Cormorant", Georgia, serif;
  --pad: 45px;
  --container-max: 1320px;
  --hdr: 96px;
  --site-chrome-height: 96px;
  --nav-breakpoint: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ---------- shell ---------- */
.container {
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 11px;
  flex: none;
  border: 1.5px solid var(--burgundy);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.eyebrow--light {
  color: var(--steel);
}

.eyebrow--light::before {
  border-color: var(--steel);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  color: var(--navy);
  margin: 0;
  line-height: 1.12;
  font-weight: 700;
}

.heading--xl {
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.heading--lg {
  font-size: clamp(28px, 2.9vw, 44px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section-head {
  margin-bottom: 56px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 100%;
  line-height: 1.35;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.btn--primary {
  background: var(--burgundy);
  color: #fff;
  font-size: 20px;
  padding: 17px 38px;
  box-shadow: 0 14px 30px -14px rgba(124, 36, 56, 0.75);
}

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

.btn--sm {
  font-size: clamp(14px, 1.15vw, 16px);
  padding: 12px 26px;
  background: var(--burgundy);
  color: #fff;
  flex-shrink: 0;
}

.btn--sm:hover {
  background: var(--burgundy-lt);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(18, 38, 63, 0.28);
  font-size: 16px;
  padding: 15px 32px;
}

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

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

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  height: var(--hdr);
  position: relative;
}

.header__brand {
  display: block;
  flex: none;
  flex-shrink: 0;
  line-height: 1;
  color: #fff;
  padding: 4px 0;
  max-width: none;
}

.header__brand-name {
  font-family: var(--ff-mark);
  font-weight: 300;
  font-size: 34px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: block;
}

.header__brand-name i {
  font-style: normal;
  color: var(--steel);
  padding: 0 0.12em;
  font-size: 0.7em;
  vertical-align: 0.18em;
}

.header__brand-tag {
  display: block;
  margin-top: 5px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--steel);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  margin-left: auto;
}

.header__nav-link {
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  flex-shrink: 0;
  transition: color 0.2s;
}

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

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

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

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

.header__nav-link--active::after {
  right: 0;
  background: var(--steel);
}

.header__nav-extras {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  flex-shrink: 0;
}

.header__tel {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex: none;
  flex-shrink: 0;
  padding-left: clamp(14px, 1.6vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.header__tel-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}

.header__tel-number {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.header__burger {
  display: none;
  flex: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  z-index: 70;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__overlay {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  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 .container {
  padding-left: 0;
  padding-right: 0;
}

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

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--ink) 0 34%,
    rgba(10, 23, 40, 0.86) 52%,
    rgba(18, 38, 63, 0.5) 100%
  );
}

.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%, 640px);
  width: min(100%, 55%);
  padding: clamp(8px, 2vw, 24px) clamp(0px, 1vw, 12px) 0 0;
}

.hero__content .heading--xl {
  color: #fff;
  max-width: 15em;
}

.hero__lede {
  color: var(--pale);
  max-width: 34em;
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.7;
}

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

.hero__tel {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero__tel-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero__tel-number {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

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

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

.hero__arch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 100%);
  height: 92%;
  border-radius: 280px 280px 0 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 0 1px,
      transparent 1px 22px
    ),
    linear-gradient(180deg, rgba(124, 154, 184, 0.2), rgba(124, 154, 184, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
}

.hero__arch::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  top: 26px;
  border-radius: 258px 258px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.accolades__label {
  flex: none;
  max-width: 190px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.7;
  margin: 0;
}

.accolades__row {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1;
  max-width: 1000px;
  margin-left: auto;
}

.accolades__badge {
  flex: none;
  width: auto;
  opacity: 0.85;
  transition:
    opacity 0.35s,
    transform 0.35s;
}

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

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

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

.accolades__badge--super {
  height: 38px;
}

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

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

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 3px;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 62%;
  height: 52%;
  border: 1px solid rgba(18, 38, 63, 0.22);
  border-right: 0;
  border-top: 0;
  border-radius: 0 0 0 3px;
}

.about__copy .heading--lg span {
  display: block;
}

.about__sub {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--burgundy);
  margin: 20px 0 26px;
  line-height: 1.5;
}

.about__sub a {
  border-bottom: 1px solid rgba(124, 36, 56, 0.35);
}

.about__copy p {
  margin: 0 0 20px;
}

.about__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ---------- practice ---------- */
.practice {
  background: var(--white);
  padding: 110px 0;
}

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

.practice-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: transform 0.35s;
}

.practice-card:hover {
  transform: translateY(-6px);
}

.practice-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 170px 170px 4px 4px;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(10, 23, 40, 0.28), rgba(10, 23, 40, 0) 55%);
}

.practice-card__body {
  padding: 26px 4px 0;
}

.practice-card__title {
  font-size: 22px;
  margin-bottom: 10px;
}

.practice-card__text {
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.practice-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.practice-card__link i {
  font-style: normal;
  transition: transform 0.3s;
}

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

/* ---------- case results ---------- */
.results {
  position: relative;
  background: var(--navy);
  padding: 104px 0;
  overflow: hidden;
}

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

.results__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 40, 0.72), rgba(18, 38, 63, 0.9));
}

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

.results__title {
  color: #fff;
}

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

.results__item {
  padding: 34px 34px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.35s;
}

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

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

.results__amount {
  display: block;
  font-family: var(--ff-display);
  font-weight: 900;
  color: #fff;
  font-size: clamp(30px, 2.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.results__kind {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.results__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 3px;
}

.results__more:hover {
  color: var(--steel);
  border-color: var(--steel);
}

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

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

.value {
  background: var(--white);
  padding: 40px 34px 36px;
  border-top: 3px solid var(--burgundy);
  position: relative;
}

.value__icon {
  width: 34px;
  height: 34px;
  color: var(--navy);
  margin-bottom: 22px;
}

.value__title {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.value__text {
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- testimonial ---------- */
.testimonial {
  background: var(--white);
  padding: 104px 0;
}

.testimonial__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.66fr);
  gap: 70px;
  align-items: center;
}

.testimonial__quote {
  font-family: var(--ff-display);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.65;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
  position: relative;
  padding-left: 34px;
}

.testimonial__quote::before {
  content: "\201C";
  position: absolute;
  left: -6px;
  top: -0.12em;
  font-size: 88px;
  line-height: 1;
  color: rgba(124, 36, 56, 0.22);
}

.testimonial__name {
  display: block;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.testimonial__media {
  position: relative;
}

.testimonial__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 3px;
}

.testimonial__media::after {
  content: "";
  position: absolute;
  inset: auto -16px -16px auto;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(18, 38, 63, 0.18);
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 3px 0;
}

/* ---------- contact ---------- */
.contact {
  background: var(--navy);
  position: relative;
  padding: 100px 0;
}

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

.contact__title {
  color: #fff;
}

.contact__lede {
  color: var(--pale);
  margin: 22px 0 0;
  max-width: 36em;
}

.contact__meta {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact__meta-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__meta-item svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--steel);
  margin-top: 4px;
}

.contact__meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 4px;
}

.contact__meta-text {
  margin: 0;
  color: #fff;
  font-size: 16.5px;
  line-height: 1.6;
}

.contact__form {
  background: #fff;
  padding: 42px 40px 40px;
  border-top: 3px solid var(--burgundy);
}

.form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.form__field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.form__field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form__field input,
.form__field select {
  height: 40px;
  padding: 0 14px;
}

.form__field textarea {
  height: 120px;
  padding: 11px 14px;
  resize: vertical;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid rgba(18, 38, 63, 0.16);
  border-radius: 3px;
  font-size: 15.5px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background: #fff;
}

.form__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 d='M1 1l5 5 5-5' stroke='%2312263F' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact__submit {
  width: 100%;
  margin-top: 24px;
}

.form__note {
  font-size: 12.5px;
  line-height: 1.6;
  color: #6b7a8a;
  margin: 16px 0 0;
  text-align: center;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--pale);
  padding: 74px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr)) minmax(0, 0.9fr);
  gap: 48px;
}

.footer .header__brand {
  margin-bottom: 24px;
}

.footer__blurb {
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
  color: rgba(217, 228, 239, 0.72);
  max-width: 32em;
}

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

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list a {
  font-size: 15.5px;
  color: rgba(217, 228, 239, 0.8);
}

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

.footer__addr {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(217, 228, 239, 0.8);
  margin: 0 0 18px;
}

.footer__tel {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.footer__bar {
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(217, 228, 239, 0.55);
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

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

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

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

  .btn--sm {
    font-size: 14px;
    padding: 11px 20px;
  }

  .header__tel-number {
    font-size: 17px;
  }
}

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

  .accolades__row {
    gap: 38px;
  }

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

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

  .accolades__badge--super {
    height: 32px;
  }

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

  .about__inner {
    gap: 48px;
  }

  .about__image {
    height: 520px;
  }

  .hero__visual {
    width: 48%;
  }
}

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

  .header__actions {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 23, 40, 0.55);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s,
      visibility 0.3s;
    z-index: 55;
  }

  .header__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    position: fixed;
    top: var(--hdr);
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy-2);
    padding: 20px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 65;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .header__nav[aria-hidden="true"] {
    visibility: hidden;
  }

  .header__nav.is-open[aria-hidden="false"] {
    visibility: visible;
  }

  .header__nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 17px;
  }

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

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

  .header__nav-extras .header__tel {
    padding-left: 0;
    border-left: 0;
  }

  .header__nav-extras .header__tel-number {
    font-size: 22px;
  }

  .header__nav-extras .header__cta {
    width: 100%;
    text-align: center;
  }
}

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

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

  .results__item {
    border-left: 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .results__item:nth-child(2) {
    padding-left: 0;
  }

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

  .contact__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

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

@media (max-width: 900px) {
  :root {
    --pad: 26px;
    --hdr: 78px;
  }

  .header__brand-name {
    font-size: 27px;
  }

  .header__brand-tag {
    font-size: 9px;
    letter-spacing: 0.34em;
  }

  .accolades__inner {
    justify-content: center;
    gap: 26px;
  }

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

  .accolades__row {
    justify-content: center;
    gap: 32px;
    margin-left: 0;
  }

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

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

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

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

  .about,
  .practice,
  .values {
    padding: 76px 0;
  }

  .results,
  .testimonial,
  .contact {
    padding: 76px 0;
  }

  .about__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .about__media {
    order: 2;
  }

  .about__image {
    height: 400px;
  }

  .about__media::after {
    display: none;
  }

  .testimonial__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .testimonial__image {
    height: 320px;
  }

  .testimonial__media::after {
    display: none;
  }

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

  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(32px, 6vw, 48px) clamp(20px, 5vw, 28px) 0;
    display: flex;
    flex-direction: column;
  }

  .hero__inner {
    height: auto;
    flex: none;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 clamp(24px, 5vw, 40px);
  }

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

  .hero__arch {
    height: 400px;
    width: min(360px, 86%);
  }

  .hero__actions {
    gap: 24px;
    margin-top: 30px;
  }
}

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

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

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

  .hero__visual {
    height: 360px;
  }

  .hero__arch {
    height: 340px;
    width: min(300px, 90%);
  }

  .btn--primary {
    font-size: 17px;
    padding: 14px 24px;
  }

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