:root {
  --navy-900: #0A1424;
  --navy-800: #0D1B2E;
  --navy-700: #16283F;
  --navy-600: #20364F;
  --teal: #479A99;
  --teal-lt: #6FBAB9;
  --teal-dk: #2F6F6E;
  --ivory: #F6F4F0;
  --ivory-2: #EDEAE4;
  --ink: #16202E;
  --muted: #5C6878;
  --line: rgba(255, 255, 255, 0.14);
  --display: "Newsreader", Georgia, serif;
  --body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 102px;
}

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

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

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

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

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

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

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

/* ---------- eyebrow ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--teal);
  flex: none;
}

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

.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--teal);
  flex: none;
}

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

.eyebrow--light::before,
.eyebrow--light::after {
  background: var(--teal-lt);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.005em;
  padding: 19px 34px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  max-width: 100%;
  transition: background 0.24s, color 0.24s, border-color 0.24s, transform 0.24s;
}

.btn--primary {
  background: var(--teal);
  color: #08131F;
}

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

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

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

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

/* ---------- header ---------- */
.header {
  position: relative;
  z-index: 100;
  background: var(--navy-800);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 52px);
  padding-top: 22px;
  padding-bottom: 22px;
}

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

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

.header__nav-panel {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(16px, 2.4vw, 52px);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
}

.header__nav-link {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: #E8EDF2;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.22s;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

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

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

.header__nav-extras {
  display: none;
}

.header__phone {
  display: none;
}

.header__cta {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  padding: clamp(12px, 1.1vw, 15px) clamp(16px, 1.6vw, 28px);
}

.header__cta--desktop {
  margin-left: auto;
}

.header__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}

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

.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__overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 20, 36, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

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

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

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 620px at 22% 40%, rgba(22, 40, 63, 0.72) 0%, rgba(10, 20, 36, 0.94) 62%, rgba(10, 20, 36, 0.99) 100%),
    linear-gradient(90deg, rgba(10, 20, 36, 0.96) 0%, rgba(10, 20, 36, 0.72) 46%, rgba(10, 20, 36, 0.5) 100%);
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dk) 34%, transparent 34%);
  z-index: 3;
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(0px, 1vw, 8px);
  padding-right: clamp(0px, 1vw, 8px);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  min-width: 0;
  padding-bottom: 18px;
}

.hero__title {
  font-size: clamp(38px, 3.55vw, 55px);
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.11;
}

.hero__title em {
  font-style: italic;
  color: var(--teal-lt);
  font-weight: 300;
}

.hero__subtitle {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.66;
  color: rgba(232, 237, 242, 0.84);
  margin-top: 22px;
  max-width: 530px;
}

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

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

.hero__phone svg {
  flex: none;
  stroke: var(--teal);
}

.hero__phone span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 2px;
}

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

.hero__visual::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 92%;
  border-radius: 50% 50% 0 0 / 62% 62% 0 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(71, 154, 153, 0.34) 0%, rgba(71, 154, 153, 0) 68%);
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--ivory);
  border-bottom: 1px solid rgba(22, 32, 46, 0.1);
}

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

.accolades__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 168px;
  line-height: 1.5;
  flex: none;
  border-right: 1px solid rgba(22, 32, 46, 0.14);
  padding-right: 34px;
}

.accolades__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  place-items: center;
  gap: clamp(24px, 2.6vw, 44px);
  flex: 1 1 auto;
  min-width: 0;
}

.accolades__badge {
  max-width: 100%;
  flex: none;
  opacity: 0.92;
  transition: opacity 0.25s;
}

.accolades__badge:hover {
  opacity: 1;
}

/* ---------- about ---------- */
.about {
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--ivory);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(40px, 4.4vw, 78px);
  align-items: start;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -13px;
  bottom: -13px;
  width: 104px;
  height: 104px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
}

.about__badge {
  position: absolute;
  right: -1px;
  top: 34px;
  background: var(--navy-800);
  color: #fff;
  padding: 20px 26px;
  max-width: 214px;
}

.about__badge-value {
  display: block;
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--teal-lt);
  font-weight: 400;
}

.about__badge-text {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 9px;
  line-height: 1.45;
}

.about__title {
  font-size: clamp(32px, 2.7vw, 43px);
  color: var(--navy-800);
}

.about__pull {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.56;
  color: var(--navy-700);
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 24px;
  margin: 28px 0 30px;
}

.about__cite {
  display: block;
  font-style: normal;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

.about__body p {
  color: #3E4A5A;
}

.about__special {
  margin-top: 34px;
  background: #fff;
  border: 1px solid rgba(22, 32, 46, 0.1);
  border-left: 4px solid var(--teal);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.about__special p {
  font-size: 16px;
  color: var(--navy-700);
  margin: 0;
  flex: 1 1 320px;
  min-width: 0;
}

.about__special .btn {
  flex: none;
}

/* ---------- section head ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.section-head__title {
  font-size: clamp(32px, 2.7vw, 43px);
  color: var(--navy-800);
}

.section-head__text {
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

/* ---------- practice ---------- */
.practice {
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--ivory-2);
}

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

.practice-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: var(--navy-800);
  isolation: isolate;
}

.practice-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.practice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 20, 36, 0.08) 0%, rgba(10, 20, 36, 0.34) 34%, rgba(10, 20, 36, 0.84) 68%, rgba(10, 20, 36, 0.96) 100%);
}

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

.practice-card__num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--teal-lt);
  margin-bottom: auto;
}

.practice-card__title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}

.practice-card__text {
  font-size: 15px;
  line-height: 1.62;
  color: rgba(232, 237, 242, 0.76);
  margin: 0;
}

.practice-card__more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-top: 20px;
}

.practice-card__more::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--teal-lt);
  transition: width 0.3s;
}

.practice-card:hover .practice-card__more::after {
  width: 38px;
}

/* ---------- results ---------- */
.results {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--navy-900);
  overflow: hidden;
}

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

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 36, 0.9), rgba(10, 20, 36, 0.96));
}

.results__inner {
  position: relative;
}

.results__title {
  font-size: clamp(30px, 2.5vw, 40px);
  color: #fff;
  text-align: center;
}

.results__subtitle {
  display: block;
  font-size: 0.52em;
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--teal-lt);
  margin-top: 14px;
}

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

.results__item {
  padding: 44px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.results__item:first-child {
  border-left: 1px solid var(--line);
}

.results__amount {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 47px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.results__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-top: 16px;
}

/* ---------- values ---------- */
.values {
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--ivory);
}

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

.values__item {
  padding-top: 26px;
  border-top: 2px solid var(--navy-800);
}

.values__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  stroke: var(--teal-dk);
  fill: none;
  stroke-width: 1.4;
}

.values__title {
  font-size: 22px;
  color: var(--navy-800);
  margin-bottom: 11px;
}

.values__text {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0;
}

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
  overflow: hidden;
  background: var(--navy-800);
}

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

.testimonial__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.93), rgba(10, 20, 36, 0.96));
}

.testimonial__inner {
  position: relative;
}

.testimonial__box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__mark {
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.6;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

.testimonial__heading {
  font-size: 13px;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 30px;
}

.testimonial__lead {
  font-family: var(--display);
  font-size: clamp(24px, 2.1vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.42;
}

.testimonial__body {
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(232, 237, 242, 0.78);
  margin-top: 26px;
}

.testimonial__name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-top: 28px;
}

/* ---------- contact ---------- */
.contact {
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--ivory-2);
}

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

.contact__title {
  font-size: clamp(30px, 2.5vw, 40px);
  color: var(--navy-800);
}

.contact__text {
  color: var(--muted);
  font-size: 16px;
  margin-top: 20px;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.contact__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(22, 32, 46, 0.12);
  align-items: flex-start;
}

.contact__item:last-child {
  border-bottom: 1px solid rgba(22, 32, 46, 0.12);
}

.contact__item svg {
  flex: none;
  margin-top: 3px;
  stroke: var(--teal-dk);
  fill: none;
  stroke-width: 1.5;
}

.contact__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact__value {
  font-family: var(--display);
  font-size: 19px;
  color: var(--navy-800);
  line-height: 1.4;
}

.contact-form {
  background: #fff;
  padding: clamp(30px, 3vw, 44px);
  border: 1px solid rgba(22, 32, 46, 0.1);
}

.contact-form__title {
  font-size: 25px;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.contact-form__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

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

.contact-form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  background: #FAF9F7;
  border: 1px solid rgba(22, 32, 46, 0.18);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235C6878' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
}

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

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--teal);
  background: #fff;
  outline: none;
}

.contact-form__submit {
  width: 100%;
  margin-top: 22px;
}

.contact-form__fine {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 16px;
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(232, 237, 242, 0.72);
  padding-top: 74px;
  padding-bottom: 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 70px);
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.footer__logo {
  width: 262px;
  height: auto;
  max-width: none;
  flex-shrink: 0;
  margin-bottom: 24px;
}

.footer__text {
  font-size: 15px;
  line-height: 1.72;
}

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

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

.footer__list li {
  margin-bottom: 13px;
  font-size: 15px;
}

.footer__link:hover {
  color: var(--teal-lt);
}

.footer__address {
  font-family: var(--display);
  font-size: 18px;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 16px;
}

.footer__phone {
  display: inline-block;
  font-family: var(--display);
  font-size: 24px;
  color: var(--teal-lt);
  margin-bottom: 6px;
}

.footer__disclaimer {
  padding-top: 28px;
  font-size: 12.5px;
  line-height: 1.72;
  color: rgba(232, 237, 242, 0.5);
  display: flex;
  gap: 34px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__disclaimer p {
  max-width: 760px;
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 1400px) {
  .btn {
    padding: 17px 26px;
  }

  .header__cta {
    padding: clamp(12px, 1.1vw, 15px) clamp(16px, 1.6vw, 26px);
  }
}

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

  .header__toggle {
    display: flex;
  }

  .header__cta--desktop {
    display: none;
  }

  .header__nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 28px 28px 40px;
    background: var(--navy-800);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
    overflow-y: auto;
  }

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

  .header__nav-close {
    display: flex;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .header__nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .header__phone {
    display: inline-block;
    font-family: var(--display);
    font-size: 22px;
    color: var(--teal-lt);
  }

  .header__nav-extras .header__cta {
    width: 100%;
    font-size: 15px;
    padding: 15px 22px;
    white-space: normal;
    text-align: center;
  }

  .header__logo {
    width: 224px;
  }

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

  .results__item {
    border-left: 1px solid var(--line);
  }

  .results__item:nth-child(2),
  .results__item:nth-child(4) {
    border-left: none;
  }

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

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

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

  .accolades__badge {
    height: auto;
    justify-self: center;
  }

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

  .about__media {
    max-width: 520px;
  }

  .about__badge {
    right: auto;
    left: auto;
    position: static;
    margin-top: 18px;
    max-width: none;
    display: inline-block;
  }

  .about__media::after {
    display: none;
  }

  .hero__title {
    font-size: 38px;
  }
}

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

  body {
    font-size: 16px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: clamp(32px, 6vw, 48px) clamp(16px, 4vw, 24px) 0;
    display: flex;
    flex-direction: column;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 0;
  }

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

  .hero__image {
    height: 360px;
    max-width: 100%;
  }

  .hero__rule {
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dk) 52%, transparent 52%);
  }

  .hero__title {
    font-size: 31px;
  }

  .hero__subtitle {
    font-size: 16.5px;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero__phone {
    font-size: 22px;
  }

  .about,
  .practice,
  .values,
  .contact,
  .results,
  .testimonial {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .practice-card {
    min-height: 340px;
  }

  .results__item {
    border-left: 1px solid var(--line) !important;
  }

  .accolades__label {
    border-right: none;
    padding-right: 0;
    max-width: none;
    border-bottom: 1px solid rgba(22, 32, 46, 0.14);
    padding-bottom: 16px;
    width: 100%;
  }

  .accolades__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    place-items: center;
  }

  .accolades__badge {
    max-width: 100%;
    height: auto;
    justify-self: center;
  }

  .about__special {
    flex-direction: column;
    align-items: stretch;
  }

  .about__special p {
    flex: 0 1 auto;
  }

  .about__special .btn {
    width: 100%;
  }

  .footer__disclaimer {
    flex-direction: column;
    gap: 14px;
  }

  .testimonial__mark {
    font-size: 74px;
  }

  .header__logo {
    width: 210px;
  }
}

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

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

  .hero__phone {
    justify-content: center;
  }
}
