@font-face {
  font-family: "BodoniMd";
  src: url("../assets/fonts/bodoni-md.woff2") format("woff2");
  font-weight: 400 900;
  font-display: block;
}

@font-face {
  font-family: "JostV";
  src: url("../assets/fonts/jost.woff2") format("woff2");
  font-weight: 100 900;
  font-display: block;
}

:root {
  --ink: #181818;
  --ink-2: #202020;
  --ink-3: #2a2a2a;
  --salmon: #fdb08e;
  --salmon-mid: #f0906a;
  --salmon-deep: #b9531f;
  --cream: #f7f3ef;
  --cream-2: #efe8e1;
  --paper: #fff;
  --body-txt: #3b3733;
  --muted: #726b64;
  --hair: rgba(255, 255, 255, 0.14);
  --display: "BodoniMd", Georgia, "Times New Roman", serif;
  --sans: "JostV", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 142px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--body-txt);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

p {
  margin: 0 0 18px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 3vw, 45px);
  padding-right: clamp(20px, 3vw, 45px);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--salmon-deep);
  margin: 0 0 18px;
}

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

.rule {
  width: 64px;
  height: 2px;
  background: var(--salmon-mid);
  margin: 22px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 34px;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  max-width: 100%;
  line-height: 1.35;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn--primary {
  background: var(--salmon);
  color: #1a1a1a;
  box-shadow: 0 14px 34px rgba(253, 176, 142, 0.24);
}

.btn--primary:hover {
  background: #fff;
  color: #1a1a1a;
  transform: translateY(-2px);
}

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

.btn--ink:hover {
  background: var(--salmon-deep);
  transform: translateY(-2px);
}

.link-arrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--salmon-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.link-arrow span {
  transition: transform 0.25s ease;
}

.link-arrow:hover span {
  transform: translateX(6px);
}

/* ---------- utility bar ---------- */
.utility-bar {
  background: #111;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  letter-spacing: 0.05em;
}

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

.utility-bar b {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.utility-bar__meta {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-shrink: 0;
}

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

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  height: 98px;
  flex-wrap: nowrap;
}

.header__brand {
  flex-shrink: 0;
}

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

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

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

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

.header__nav-link {
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

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

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

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

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}

.header__phone-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salmon);
}

.header__phone-number {
  font-size: clamp(16px, 1.3vw, 20px);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header__cta-btn {
  font-size: clamp(13px, 1.05vw, 16px);
  padding: clamp(10px, 0.9vw, 13px) clamp(16px, 1.6vw, 26px);
  flex-shrink: 0;
}

.header__burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto;
  z-index: 81;
}

.header__burger-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.header__burger.is-active .header__burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger.is-active .header__burger-bar:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active .header__burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background: var(--ink);
  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;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 15, 15, 0.96) 0%,
    rgba(18, 18, 18, 0.9) 42%,
    rgba(24, 24, 24, 0.55) 68%,
    rgba(24, 24, 24, 0.35) 100%
  );
}

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

.hero__location {
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
}

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

.hero__title {
  font-size: clamp(34px, 3.5vw, 56px);
  color: #fff;
  font-weight: 500;
}

.hero__title em {
  font-style: normal;
  color: var(--salmon);
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 30px;
}

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

.hero__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero__phone-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.hero__phone-number {
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

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

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

.hero__visual::before {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 0;
  width: min(430px, 92%);
  height: 78%;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(253, 176, 142, 0.2),
    rgba(253, 176, 142, 0) 68%
  );
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
}

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

.accolades__label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 150px;
  line-height: 1.7;
  flex: 0 0 auto;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 44px;
}

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.accolades__badge {
  display: block;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  opacity: 0.88;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

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

.accolades__badge--advocates {
  height: 84px;
}

.accolades__badge--trial {
  height: 66px;
}

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

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

/* ---------- about ---------- */
.about {
  background: var(--paper);
}

.about__inner {
  padding-top: 104px;
  padding-bottom: 104px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 78px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 62%;
  height: 64%;
  border: 1px solid var(--salmon-mid);
  z-index: 1;
}

.about__badge {
  position: absolute;
  z-index: 3;
  right: -24px;
  top: 38px;
  background: var(--ink);
  color: #fff;
  padding: 22px 26px;
  max-width: 210px;
}

.about__badge-name {
  font-family: var(--display);
  font-size: 34px;
  color: var(--salmon);
  line-height: 1;
}

.about__badge-text {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  line-height: 1.6;
}

.about__title {
  font-size: clamp(28px, 2.5vw, 40px);
  color: var(--ink);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.chip {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--cream);
}

.signature {
  border-left: 2px solid var(--salmon-mid);
  padding-left: 20px;
  margin: 0 0 30px;
}

.signature__name {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink);
}

.signature__role {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

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

/* ---------- practice ---------- */
.practice {
  background: var(--cream);
}

.practice .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.section-head__title {
  font-size: clamp(28px, 2.6vw, 42px);
  color: var(--ink);
}

.section-head--dark .section-head__title {
  color: #fff;
}

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

.section-head--dark .section-head__text {
  color: rgba(255, 255, 255, 0.62);
}

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

.practice-card {
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.12);
}

.practice-card__thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.practice-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 40%, rgba(20, 20, 20, 0.62) 100%);
}

.practice-card__num {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 16px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--salmon);
}

.practice-card__body {
  padding: 28px 26px 30px;
}

.practice-card__title {
  font-size: 23px;
  color: var(--ink);
  margin-bottom: 14px;
  min-height: 52px;
}

.practice-card__body p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ---------- results ---------- */
.results {
  background: var(--ink);
  color: #fff;
}

.results .container {
  padding-top: 96px;
  padding-bottom: 96px;
}

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

.results__item {
  display: flex;
  flex-direction: column;
  padding: 44px 34px 40px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  transition: background 0.3s ease;
}

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

.results__item:last-child {
  border-right: 0;
  padding-right: 0;
}

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

.results__amount {
  font-family: var(--display);
  font-size: clamp(30px, 2.6vw, 42px);
  color: var(--salmon);
  line-height: 1;
  letter-spacing: -0.01em;
}

.results__label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin: 16px 0 22px;
  line-height: 1.6;
  flex: 1 1 auto;
}

.results__item .link-arrow {
  align-self: flex-start;
  color: #fff;
  font-size: 12px;
}

.results__item:hover .link-arrow {
  color: var(--salmon);
}

.results__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 30px 0 0;
  max-width: 760px;
}

/* ---------- values ---------- */
.values {
  background: var(--paper);
}

.values__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: start;
}

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

.values__item {
  background: var(--paper);
  padding: 38px 34px 34px;
}

.values__num {
  font-family: var(--display);
  font-size: 15px;
  color: var(--salmon-deep);
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.values__heading {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}

.values__item .link-arrow {
  font-size: 12px;
}

.values__title {
  font-size: clamp(28px, 2.6vw, 42px);
  color: var(--ink);
}

.values__intro p {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  background: var(--ink-2);
  color: #fff;
  overflow: hidden;
}

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

.testimonial__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.66));
}

.testimonial__inner {
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
  text-align: center;
}

.testimonial__stars {
  color: var(--salmon);
  letter-spacing: 0.34em;
  font-size: 17px;
  margin-bottom: 26px;
}

.testimonial__quote {
  margin: 0 auto;
  max-width: 1000px;
  font-family: var(--display);
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.62;
  color: #fff;
  font-weight: 400;
}

.testimonial__who {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--salmon);
}

/* ---------- contact ---------- */
.contact {
  background: var(--cream);
}

.contact__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 76px;
  align-items: start;
}

.contact__title {
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--ink);
}

.contact__copy p {
  color: var(--muted);
}

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

.contact__item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__key {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 104px;
  padding-top: 5px;
}

.contact__value {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.6;
}

.contact__value a:hover {
  color: var(--salmon-deep);
}

.form-card {
  background: var(--paper);
  padding: 44px 42px 46px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.form-card__title {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-card__fine {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.form-card__field--full {
  grid-column: 1 / -1;
}

.form-card__field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-card__field input,
.form-card__field select {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 0;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.form-card__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 17px,
    calc(100% - 13px) 17px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.form-card__field textarea {
  width: 100%;
  height: 120px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.14);
  resize: vertical;
  outline: none;
}

.form-card__field input:focus,
.form-card__field select:focus,
.form-card__field textarea:focus {
  border-color: var(--salmon-mid);
  background: #fff;
}

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

.form-card__disc {
  font-size: 12px;
  color: var(--muted);
  margin: 18px 0 0;
  line-height: 1.6;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.66);
}

.footer__top {
  padding-top: 78px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 60px;
}

.footer__logo {
  height: 70px;
  width: auto;
  max-width: none;
  margin-bottom: 26px;
}

.footer__top p {
  font-size: 15px;
  line-height: 1.8;
}

.footer__heading {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 22px;
}

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

.footer__links li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer__links a:hover {
  color: var(--salmon);
}

.footer__cta .btn {
  margin-top: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- header scale before hamburger ---------- */
@media (max-width: 1400px) {
  .header__nav-link {
    font-size: 14px;
    letter-spacing: 0.07em;
  }

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

  .header__phone-number {
    font-size: 18px;
  }
}

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

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

  .header__cta {
    gap: 14px;
  }

  .header__cta-btn {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* ---------- nav breakpoint: hamburger below 1200px ---------- */
@media (max-width: 1200px) {
  .header__inner {
    height: 80px;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(400px, 86vw);
    margin-left: 0;
    background: var(--ink-2);
    z-index: 80;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 40px 32px;
    overflow-y: auto;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.28);
  }

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

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header__nav-extras .btn {
    white-space: normal;
    text-align: center;
  }
}

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

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

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

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

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

  .about__image {
    height: 440px;
  }
}

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

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

  .footer__cta .btn {
    width: auto;
  }

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

  .accolades__label {
    border-right: 0;
    padding-right: 0;
    max-width: none;
  }

  .accolades__row {
    justify-content: flex-start;
    gap: 26px;
  }

  .about__badge {
    right: 0;
  }

  .utility-bar__note {
    display: none;
  }
}

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

  .header__cta-btn,
  .header__nav-extras .btn {
    font-size: 16px;
  }
}

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

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

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

  .hero__location {
    display: none;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: 420px;
    right: auto;
    bottom: auto;
  }

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

@media (max-width: 720px) {
  .utility-bar {
    display: none;
  }

  .hero__title {
    font-size: 31px;
  }

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

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

  .results__item {
    padding: 32px 0;
    border-right: 0;
  }

  .practice-card__title {
    min-height: 0;
  }

  .form-card {
    padding: 30px 22px 32px;
  }

  .footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    padding-top: 56px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 28px;
  }

  .about__inner,
  .practice .container,
  .results .container,
  .values__inner,
  .contact__inner,
  .testimonial__inner {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .about__badge {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 34px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
    font-size: 17px;
    padding: 14px 22px;
  }

  .hero__visual {
    height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
