/* ============================================================
   T. Kirk Truslow, P.A. — Myrtle Beach, SC
   ============================================================ */

:root {
  --clr-navy-900: #0a1526;
  --clr-navy-800: #0c1b30;
  --clr-navy-700: #0f2242;
  --clr-navy-500: #1b3762;
  --clr-navy-300: #3c5a8a;
  --clr-crimson-600: #7e1b2c;
  --clr-crimson-500: #9e2439;
  --clr-crimson-300: #c4485c;
  --clr-steel-400: #6f7c90;
  --clr-steel-200: #aeb8c6;
  --clr-paper: #edf0f4;
  --clr-paper-alt: #f6f8fa;
  --clr-white: #ffffff;
  --clr-ink: #141a22;

  --ff-primary: "Libre Caslon Display", "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --ff-secondary: "Jost", "Helvetica Neue", Arial, sans-serif;

  --fw-light: 300;
  --fw-base: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  --container-max: 1320px;
  --container-padding: clamp(20px, 3vw, 45px);
  --nav-breakpoint: 1200px;
  --site-chrome-height: 148px;

  --fs-nav: 16px;
  --fs-hero-phone: 24px;
  --fs-cta: 20px;
  --input-height: 40px;
  --textarea-height: 120px;

  --heading-1: clamp(2.25rem, 1.55rem + 2.4vw, 3.5rem);
  --heading-2: clamp(1.85rem, 1.42rem + 1.5vw, 2.6rem);
  --heading-3: clamp(1.15rem, 1.05rem + 0.35vw, 1.375rem);
  --section-padding-primary: 96px 0;
  --section-padding-secondary: 72px 0;
}

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

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

body {
  margin: 0;
  background: var(--clr-white);
  color: var(--clr-ink);
  font-family: var(--ff-secondary);
  font-weight: var(--fw-base);
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--ff-primary);
  font-weight: var(--fw-base);
  margin: 0;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.15em;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--ff-secondary);
  font-size: var(--fs-cta);
  font-weight: var(--fw-medium);
  line-height: 1.35;
  letter-spacing: 0.005em;
  white-space: nowrap;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  max-width: 100%;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--solid {
  background: var(--clr-crimson-500);
  color: var(--clr-white);
}

.btn--solid:hover {
  background: var(--clr-crimson-600);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn--ghost:hover {
  background: var(--clr-white);
  color: var(--clr-navy-700);
  border-color: var(--clr-white);
}

.btn--sm {
  font-size: var(--fs-nav);
  padding: 13px 26px;
}

/* ---------- Utility strip ---------- */

.utility {
  background: var(--clr-navy-900);
  color: var(--clr-steel-200);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
}

.utility__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.utility__item::after {
  content: "";
  width: 1px;
  height: 14px;
  background: rgba(174, 184, 198, 0.34);
}

.utility__item:last-child::after {
  display: none;
}

.utility a:hover {
  color: var(--clr-white);
}

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

.header {
  background: var(--clr-navy-700);
  position: relative;
  z-index: 40;
}

.header__overlay {
  display: none;
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.2vw, 40px);
  min-height: 104px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

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

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

.header__toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 4;
}

.header__toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  margin-left: -9px;
  background: var(--clr-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__toggle-bar:nth-child(1) {
  transform: translateY(-6px);
}

.header__toggle-bar:nth-child(2) {
  transform: translateY(0);
}

.header__toggle-bar:nth-child(3) {
  transform: translateY(6px);
}

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

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

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

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.header__nav-link {
  display: block;
  font-size: clamp(13px, 0.35vw + 11.5px, 16px);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding-block: 6px;
  position: relative;
  flex-shrink: 0;
}

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

.header__nav-link:hover::after,
.header__nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header__nav-link[aria-current="page"] {
  color: var(--clr-white);
}

.header__nav-extras {
  display: none;
}

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

.header__cta .btn {
  font-size: clamp(13px, 0.3vw + 11.8px, 16px);
  padding: clamp(10px, 0.6vw + 8px, 13px) clamp(16px, 1.2vw + 10px, 26px);
  white-space: nowrap;
}

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

.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 0;
  overflow: hidden;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
  background: var(--clr-navy-900) url("../assets/images/bg-hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 21, 38, 0.96) 0%,
    rgba(10, 21, 38, 0.88) 42%,
    rgba(12, 27, 48, 0.62) 72%,
    rgba(12, 27, 48, 0.5) 100%
  );
}

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

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  max-width: 55%;
  padding: clamp(16px, 3vw, 40px) clamp(8px, 2vw, 24px) 0 0;
}

.hero__title {
  color: var(--clr-white);
  font-size: var(--heading-1);
  margin-bottom: 22px;
}

.hero__text {
  color: rgba(237, 240, 244, 0.84);
  font-size: 17px;
  font-weight: var(--fw-light);
  margin-bottom: 30px;
  max-width: 52ch;
}

.hero__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-size: var(--fs-hero-phone);
  font-weight: var(--fw-medium);
  color: var(--clr-white);
  margin-bottom: 26px;
  letter-spacing: 0.01em;
}

.hero__phone-note {
  font-family: var(--ff-secondary);
  font-size: 15px;
  font-weight: var(--fw-light);
  color: var(--clr-steel-200);
  letter-spacing: 0.04em;
}

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

.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;
  opacity: 0;
  animation: rise 1.05s cubic-bezier(0.22, 0.7, 0.24, 1) 0.1s forwards;
}

.hero__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 62%,
    rgba(158, 36, 57, 0.34) 0%,
    rgba(27, 55, 98, 0.16) 46%,
    transparent 70%
  );
  pointer-events: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.9s cubic-bezier(0.22, 0.7, 0.24, 1) forwards;
}

.hero__content .reveal:nth-child(1) {
  animation-delay: 0.05s;
}

.hero__content .reveal:nth-child(2) {
  animation-delay: 0.16s;
}

.hero__content .reveal:nth-child(3) {
  animation-delay: 0.26s;
}

.hero__content .reveal:nth-child(4) {
  animation-delay: 0.36s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}

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

.accolades {
  background: var(--clr-navy-800);
  padding: 40px 0;
}

.accolades__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 3.4vw, 66px);
  flex-wrap: wrap;
}

.accolades__badge {
  flex: 0 0 auto;
  opacity: 0.9;
}

.accolades__badge--mdaf {
  height: 92px;
  width: 91px;
}

.accolades__badge--ntl {
  height: 98px;
  width: 190px;
}

.accolades__badge--sl {
  height: 61px;
  width: 256px;
}

.accolades__badge--aaj {
  height: 71px;
  width: 209px;
}

/* ---------- Shared section pieces ---------- */

.section-head {
  max-width: 60ch;
  margin-bottom: 52px;
}

.section-head__rule {
  width: 64px;
  height: 3px;
  background: var(--clr-crimson-500);
  margin-bottom: 26px;
}

.section-head__title {
  font-size: var(--heading-2);
  color: var(--clr-navy-700);
  margin-bottom: 14px;
}

.section-head__lead {
  color: var(--clr-steel-400);
  font-size: 18px;
  font-weight: var(--fw-light);
}

.section-head--light .section-head__title {
  color: var(--clr-white);
}

.section-head--light .section-head__lead {
  color: rgba(237, 240, 244, 0.72);
}

.about,
.practice,
.why,
.contact {
  padding: var(--section-padding-primary);
}

.practice,
.contact {
  background: var(--clr-paper-alt);
}

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

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

.about__media {
  position: relative;
}

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

.about__media::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 112px;
  height: 112px;
  border-right: 3px solid var(--clr-crimson-500);
  border-bottom: 3px solid var(--clr-crimson-500);
}

.about__title {
  font-size: var(--heading-2);
  color: var(--clr-navy-700);
  margin-bottom: 16px;
}

.about__subtitle {
  font-size: var(--heading-3);
  color: var(--clr-crimson-500);
  font-family: var(--ff-secondary);
  font-weight: var(--fw-medium);
  margin-bottom: 24px;
  line-height: 1.4;
}

.about__text {
  color: #3b4450;
}

.about__signature {
  margin-top: 34px;
  padding: 26px 30px;
  background: var(--clr-white);
  border-left: 4px solid var(--clr-crimson-500);
  box-shadow: 0 18px 44px rgba(15, 34, 66, 0.09);
}

.about__signature-text {
  font-family: var(--ff-primary);
  font-size: 21px;
  line-height: 1.5;
  color: var(--clr-navy-700);
  margin: 0;
}

.about__signature-link {
  color: var(--clr-crimson-500);
  border-bottom: 1px solid rgba(158, 36, 57, 0.35);
}

.about__signature-link:hover {
  color: var(--clr-crimson-600);
}

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

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

.practice__card {
  background: var(--clr-white);
  box-shadow: 0 16px 40px rgba(15, 34, 66, 0.08);
  display: flex;
  flex-direction: column;
}

.practice__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

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

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

.practice__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 21, 38, 0.55) 100%);
}

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

.practice__card-title {
  font-size: var(--heading-3);
  color: var(--clr-navy-700);
  margin-bottom: 12px;
}

.practice__card-text {
  font-size: 15.5px;
  color: var(--clr-steel-400);
  line-height: 1.66;
}

.practice__link {
  margin-top: auto;
  padding-top: 18px;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--clr-crimson-500);
}

.practice__link:hover {
  color: var(--clr-crimson-600);
}

/* ---------- Results ---------- */

.results {
  background: var(--clr-navy-900) url("../assets/images/bg-results.jpg") center / cover no-repeat;
  position: relative;
  padding: var(--section-padding-primary);
  color: var(--clr-white);
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 21, 38, 0.92), rgba(10, 21, 38, 0.86));
}

.results__inner {
  position: relative;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(174, 184, 198, 0.22);
}

.results__item {
  background: var(--clr-navy-900);
  padding: 42px 32px;
}

.results__mark {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--clr-crimson-500);
  margin-bottom: 22px;
}

.results__verdict {
  display: block;
  font-family: var(--ff-primary);
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 2.05rem);
  font-weight: var(--fw-base);
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.results__charge {
  display: block;
  font-size: 15.5px;
  font-weight: var(--fw-light);
  color: rgba(174, 184, 198, 0.92);
  line-height: 1.55;
}

/* ---------- Why ---------- */

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

.why__item {
  border-top: 2px solid var(--clr-navy-700);
  padding-top: 26px;
}

.why__title {
  font-size: var(--heading-3);
  color: var(--clr-navy-700);
  margin-bottom: 12px;
}

.why__text {
  font-size: 15.5px;
  color: var(--clr-steel-400);
}

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

.reviews {
  background: var(--clr-navy-700);
  color: var(--clr-white);
  padding: var(--section-padding-secondary);
}

.reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
}

.reviews__title {
  font-size: var(--heading-2);
  margin-bottom: 14px;
}

.reviews__sub {
  color: rgba(237, 240, 244, 0.74);
  font-weight: var(--fw-light);
}

.reviews__quote {
  margin: 0;
  font-family: var(--ff-primary);
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.9rem);
  line-height: 1.46;
  color: var(--clr-white);
  position: relative;
  padding-left: 38px;
}

.reviews__quote::before {
  content: "“";
  position: absolute;
  left: -6px;
  top: -14px;
  font-family: var(--ff-primary);
  font-size: 96px;
  line-height: 1;
  color: var(--clr-crimson-300);
  opacity: 0.55;
}

.reviews__cite {
  display: block;
  margin-top: 24px;
  padding-left: 38px;
  font-family: var(--ff-secondary);
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--clr-steel-200);
}

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

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

.contact__title {
  font-size: var(--heading-2);
  color: var(--clr-navy-700);
  margin-bottom: 16px;
}

.contact__text {
  color: var(--clr-steel-400);
  font-weight: var(--fw-light);
}

.contact__meta {
  margin-top: 32px;
  display: grid;
  gap: 22px;
}

.contact__meta-item {
  border-top: 1px solid rgba(111, 124, 144, 0.28);
  padding-top: 16px;
}

.contact__meta-label {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--clr-steel-400);
  margin-bottom: 6px;
}

.contact__meta-value {
  margin: 0;
  font-size: 18px;
  color: var(--clr-navy-700);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.form {
  background: var(--clr-white);
  padding: 44px;
  box-shadow: 0 22px 60px rgba(15, 34, 66, 0.11);
}

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

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form__label {
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  color: var(--clr-navy-700);
}

.form__input,
.form__select,
.form__textarea {
  height: var(--input-height);
  padding: 0 14px;
  width: 100%;
  font-family: var(--ff-secondary);
  font-size: 16px;
  color: var(--clr-ink);
  background: var(--clr-paper-alt);
  border: 1px solid rgba(111, 124, 144, 0.35);
  border-radius: 4px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form__textarea {
  height: var(--textarea-height);
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.6;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  background: var(--clr-white);
  border-color: var(--clr-navy-500);
  outline: none;
}

.form__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--clr-steel-400) 50%),
    linear-gradient(135deg, var(--clr-steel-400) 50%, transparent 50%);
  background-position: calc(100% - 20px) 18px, calc(100% - 15px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form__note {
  font-size: 13.5px;
  color: var(--clr-steel-400);
  margin-top: 18px;
  line-height: 1.6;
}

.form .btn {
  width: 100%;
}

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

.footer {
  background: var(--clr-navy-900);
  color: rgba(237, 240, 244, 0.72);
  padding: 70px 0 0;
  font-size: 15.5px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 24px;
}

.footer__heading {
  font-family: var(--ff-secondary);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  color: var(--clr-white);
  margin-bottom: 18px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer__link:hover,
.footer a:hover {
  color: var(--clr-white);
}

.footer__address {
  font-style: normal;
  line-height: 1.75;
}

.footer__phone {
  display: block;
  font-family: var(--ff-primary);
  font-size: 26px;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.footer__bar {
  border-top: 1px solid rgba(174, 184, 198, 0.18);
  padding: 24px 0;
  font-size: 13.5px;
  color: rgba(174, 184, 198, 0.6);
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================ Responsive ============================ */

@media (max-width: 1400px) {
  .about__grid {
    grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
    gap: 50px;
  }

  .about__image {
    height: 560px;
  }

  .header__nav-list {
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 21, 38, 0.58);
  }

  .header.is-open .header__overlay {
    display: block;
  }

  .header__toggle {
    display: block;
  }

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

  .header__cta {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    padding: 84px 28px 40px;
    z-index: 2;
    background: var(--clr-navy-700);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

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

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-link {
    font-size: 17px;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

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

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

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

@media (max-width: 1024px) {
  :root {
    --section-padding-primary: 72px 0;
  }

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

  .about__image {
    height: 420px;
  }

  .reviews__quote {
    padding-left: 26px;
  }

  .utility__list--addr {
    display: none;
  }
}

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

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

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

  .hero__content {
    max-width: 100%;
    width: 100%;
    padding: clamp(8px, 3vw, 24px) clamp(4px, 2vw, 16px) clamp(16px, 4vw, 28px);
  }

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

  .hero__image {
    height: min(70vw, 440px);
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__glow {
    width: 380px;
    height: 380px;
  }

  .hero__phone {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

@media (max-width: 720px) {
  :root {
    --container-padding: 22px;
    --fs-cta: 17px;
    --fs-hero-phone: 22px;
  }

  body {
    font-size: 16px;
  }

  .header__inner {
    min-height: 84px;
    gap: 16px;
  }

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

  .accolades__badge--mdaf {
    height: 66px;
    width: 66px;
  }

  .accolades__badge--ntl {
    height: 70px;
    width: 136px;
  }

  .accolades__badge--sl {
    height: 44px;
    width: 185px;
  }

  .accolades__badge--aaj {
    height: 51px;
    width: 150px;
  }

  .practice__grid,
  .results__grid,
  .why__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 26px;
  }

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

  .about__media::after {
    display: none;
  }

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

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

  .hero__actions .btn {
    width: 100%;
    white-space: normal;
    font-size: 16px;
    padding: 14px 22px;
  }
}
