:root {
  --navy: #052958;
  --navy-d: #021a38;
  --navy-l: #0b3a76;
  --brass: #b08d4f;
  --brass-l: #d8bc85;
  --paper: #f4f6f9;
  --slate: #5a6b80;
  --line: rgba(5, 41, 88, 0.14);
  --ff-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --ff-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1620px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 156px;
}

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

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

body {
  margin: 0;
  font-family: var(--ff-body);
  color: #233;
  background: #fff;
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
}

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

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

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

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

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

/* ---------- layout ---------- */

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

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

.section__eyebrow {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
}

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

.section__title {
  font-family: var(--ff-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.06;
  text-transform: uppercase;
  font-size: clamp(28px, 2.6vw, 42px);
}

.section__rule {
  width: 64px;
  height: 3px;
  background: var(--brass);
  border: 0;
  margin: 22px 0 26px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.06;
  text-transform: uppercase;
}

p {
  margin: 0 0 18px;
  max-width: 72ch;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
  line-height: 1.35;
}

.btn--gold {
  background: var(--brass);
  color: #fff;
  font-size: 20px;
  padding: 15px 34px;
}

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

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  padding: 15px 32px;
}

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

.btn--navy {
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  padding: 15px 34px;
}

.btn--navy:hover {
  background: var(--brass);
}

.btn--sm {
  font-size: 15px;
  padding: 12px 26px;
  letter-spacing: 0.09em;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}

.phone-link svg {
  flex: 0 0 auto;
}

.phone-link small {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--brass-l);
  text-transform: uppercase;
}

.phone-link--navy {
  color: var(--navy);
  font-size: 20px;
}

/* ---------- utility bar ---------- */

.utility {
  background: var(--navy-d);
  color: #c9d6e8;
  font-size: 13.5px;
  letter-spacing: 0.06em;
}

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

.utility__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

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

/* ---------- header ---------- */

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 1px 0 rgba(5, 41, 88, 0.05);
}

.header__overlay {
  display: none;
}

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

.header__logo {
  flex-shrink: 0;
}

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

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

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

.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__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 34px;
  white-space: nowrap;
}

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

.header__nav-link {
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 0;
  position: relative;
  transition: color 0.2s;
}

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

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

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

.header__nav-extras {
  display: none;
}

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

.header__phone {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
}

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

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  min-height: calc(100vh - var(--site-chrome-height));
  min-height: calc(100dvh - var(--site-chrome-height));
  min-height: calc(100svh - var(--site-chrome-height));
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    var(--navy-d) 4%,
    rgba(5, 41, 88, 0.9) 46%,
    rgba(5, 41, 88, 0.3) 72%,
    rgba(2, 26, 56, 0.62) 100%
  );
}

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

.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: min(100%, 640px);
  max-width: 55%;
  color: #fff;
  padding: clamp(12px, 2vw, 36px) clamp(8px, 1.5vw, 20px) 0 0;
}

.hero__title {
  font-size: clamp(38px, 4.05vw, 62px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.03;
  color: #fff;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__title span + span {
  color: var(--brass-l);
}

.hero__subtitle {
  font-size: 19px;
  color: #cfdcee;
  max-width: 46ch;
  margin: 0 0 30px;
  line-height: 1.62;
}

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

.hero__stats {
  margin-top: 34px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
}

.hero__stat {
  color: #fff;
}

.hero__stat-value {
  display: block;
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: var(--brass-l);
  text-transform: none;
}

.hero__stat-label {
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #afc2da;
}

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

.hero__visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 70%);
  height: min(400px, 70%);
  border-radius: 50%;
  border: 2px solid rgba(216, 188, 133, 0.42);
}

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

/* ---------- accolades strip ---------- */

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

.accolades__inner {
  padding-top: 34px;
  padding-bottom: 34px;
}

.accolades__heading {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  margin-bottom: 20px;
}

.accolades__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
}

.accolades__item {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__image {
  width: auto;
  opacity: 0.92;
}

.accolades__item--forum .accolades__image {
  height: 78px;
}

.accolades__item--ntl .accolades__image {
  height: 62px;
}

.accolades__item--super .accolades__image {
  height: 40px;
}

.accolades__item--aaj .accolades__image {
  height: 50px;
}

/* ---------- about ---------- */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.about__media {
  position: relative;
}

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

.about__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--brass);
  z-index: -1;
}

.about__title {
  font-size: clamp(28px, 2.5vw, 40px);
  color: var(--navy);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.14;
}

.about__content p {
  color: #42505f;
  font-size: 16.5px;
}

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

/* ---------- practice ---------- */

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

.practice__title {
  color: #fff;
}

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

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

.practice__card {
  position: relative;
  overflow: hidden;
  background: var(--navy-d);
  border: 1px solid rgba(216, 188, 133, 0.24);
  display: flex;
  flex-direction: column;
}

.practice__image {
  width: 100%;
  height: 220px;
  flex: 0 0 auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.practice__card:hover .practice__image {
  transform: scale(1.05);
}

.practice__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.practice__card-title {
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.practice__text {
  font-size: 14.5px;
  color: #b9c9dd;
  margin: 0;
  line-height: 1.6;
}

.practice__link {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-l);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 14px;
  margin-top: auto;
}

.practice__card:hover .practice__link {
  color: #fff;
}

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

.results {
  background: #fff;
}

.results__title {
  color: var(--navy);
}

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

.results__cell {
  padding: 44px 38px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

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

.results__verdict {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.results__charge {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 10px 0 18px;
}

.results__text {
  font-size: 15.5px;
  color: #4c5a6b;
  margin: 0;
}

/* ---------- values ---------- */

.values {
  position: relative;
  background: var(--paper) url("../assets/images/bg-values.jpg") center / cover no-repeat;
}

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 246, 249, 0.8);
}

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

.values__title {
  color: var(--navy);
  text-align: center;
}

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

.values__card {
  background: #fff;
  padding: 36px 30px 30px;
  border-top: 3px solid var(--brass);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(5, 41, 88, 0.06);
}

.values__card-title {
  font-size: 19px;
  color: var(--navy);
  text-transform: none;
  letter-spacing: -0.005em;
  line-height: 1.26;
}

.values__link {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: auto;
}

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

.values__icon {
  width: 44px;
  height: 44px;
  color: var(--brass);
}

/* ---------- testimonials ---------- */

.testimonials {
  background: var(--navy-d);
  color: #fff;
  text-align: center;
}

.testimonials .container {
  max-width: 1060px;
}

.testimonials__title {
  font-size: 14px;
  letter-spacing: 0.26em;
  color: var(--brass-l);
  font-weight: 400;
}

.testimonials__quote {
  margin: 26px auto 0;
  font-family: var(--ff-body);
  font-size: 22px;
  line-height: 1.68;
  color: #e4ebf5;
  font-weight: 300;
  max-width: 70ch;
}

.testimonials__who {
  margin-top: 26px;
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-l);
}

.testimonials__stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--brass);
}

/* ---------- contact ---------- */

#about,
#practice,
#results,
#contact {
  scroll-margin-top: 112px;
}

.contact {
  background: #fff;
}

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

.contact__title {
  color: var(--navy);
}

.contact__intro {
  color: #4c5a6b;
  font-size: 16.5px;
}

.contact__row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact__row--last {
  border-bottom: 0;
}

.contact__row svg {
  flex: 0 0 auto;
  color: var(--brass);
  margin-top: 3px;
}

.contact__row b {
  display: block;
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 400;
}

.contact__row span {
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
}

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px;
}

.form__field {
  margin-bottom: 16px;
}

.form__field label {
  display: block;
  font-family: var(--ff-display);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 7px;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(5, 41, 88, 0.22);
  background: #fff;
  font-family: var(--ff-body);
  font-size: 15.5px;
  color: #233;
  border-radius: 2px;
}

.form__field textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.55;
}

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

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--brass);
  outline: none;
}

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

.form__disclaimer {
  font-size: 12.5px;
  color: var(--slate);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* ---------- footer ---------- */

.footer {
  background: var(--navy-d);
  color: #a9bcd4;
  font-size: 15px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr minmax(0, 1fr) minmax(0, 1fr) 1.1fr;
  gap: 44px;
  padding-top: 70px;
  padding-bottom: 52px;
}

.footer__heading {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 11px;
}

.footer a:hover {
  color: var(--brass-l);
}

.footer__logo {
  width: 270px;
  margin-bottom: 22px;
  max-width: none;
  filter: brightness(0) invert(1) opacity(0.94);
}

.footer__note {
  font-size: 14.5px;
  line-height: 1.7;
  color: #93a8c2;
}

.footer__cta {
  margin-top: 8px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7f94af;
}

/* ---------- header scale-down before hamburger ---------- */

@media (max-width: 1560px) {
  .header__inner {
    gap: 26px;
  }

  .header__nav-list {
    gap: 26px;
  }

  .header__nav-link {
    letter-spacing: 0.06em;
  }

  .header__cta .btn--sm {
    font-size: 14px;
    padding: 12px 22px;
    letter-spacing: 0.07em;
  }
}

@media (max-width: 1400px) {
  .header__inner {
    gap: 18px;
  }

  .header__nav-list {
    gap: 16px;
  }

  .header__nav-link {
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 8px 0;
  }

  .header__cta .btn--sm {
    font-size: 13px;
    padding: 10px 16px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 1280px) {
  .header__inner {
    gap: 14px;
    min-height: 96px;
  }

  .header__nav-list {
    gap: 12px;
  }

  .header__nav-link {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .header__cta .btn--sm {
    font-size: 12px;
    padding: 10px 14px;
    letter-spacing: 0.04em;
  }
}

/* ---------- nav breakpoint: 1200px ---------- */

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(2, 26, 56, 0.55);
  }

  .header__overlay[hidden] {
    display: none !important;
  }

  .header__inner {
    position: relative;
    z-index: 2;
    min-height: 96px;
    gap: 16px;
  }

  .header__toggle {
    display: flex;
    z-index: 4;
  }

  .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: #fff;
    z-index: 2;
    transform: translateX(100%);
    visibility: hidden;
    overflow-y: auto;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

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

  .header__nav-list {
    flex-direction: column;
    gap: 0;
    white-space: normal;
  }

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

  .header__nav-link {
    display: block;
    font-size: 16px;
    letter-spacing: 0.1em;
    padding: 15px 0;
  }

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

  .header__cta {
    display: none;
  }

  #about,
  #practice,
  #results,
  #contact {
    scroll-margin-top: 96px;
  }

  .about__grid {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 44px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (min-width: 1201px) {
  .header__overlay {
    display: none !important;
  }
}

/* ---------- content breakpoints ---------- */

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

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

  .accolades__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    row-gap: 6px;
  }

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

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

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

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    line-height: 1.35;
    font-size: 16px;
    padding: 12px 22px;
  }

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

  .hero__content {
    max-width: 46%;
    width: min(100%, 480px);
  }

  .hero__visual {
    width: 45%;
  }
}

@media (max-width: 900px) {
  .container {
    padding-left: 26px;
    padding-right: 26px;
  }

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

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

  .about__media::after {
    inset: 14px -14px -14px 14px;
  }

  .about__image {
    height: 420px;
  }

  .practice__head {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    display: block;
    padding: clamp(32px, 6vw, 48px) clamp(16px, 4vw, 28px) 0;
  }

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

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

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

  .hero__visual::before {
    width: 290px;
    height: 290px;
  }
}

@media (max-width: 640px) {
  .hero__actions .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header__inner {
    min-height: 78px;
  }

  .utility__inner {
    font-size: 12px;
    gap: 10px;
  }

  .utility__item--address {
    display: none;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .hero__visual {
    height: 360px;
  }

  .hero__visual::before {
    width: 230px;
    height: 230px;
  }

  .hero__stats {
    gap: 22px;
  }

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

  .accolades__item {
    height: 74px;
  }

  .accolades__item--forum .accolades__image {
    height: 64px;
  }

  .accolades__item--ntl .accolades__image {
    height: 52px;
  }

  .accolades__item--super .accolades__image {
    height: 34px;
  }

  .accolades__item--aaj .accolades__image {
    height: 42px;
  }

  .testimonials__quote {
    font-size: 18px;
  }

  .form {
    padding: 24px 20px;
  }

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

  .results__cell {
    padding: 32px 24px;
  }
}
