:root {
  --navy: #0b1f35;
  --navy-deep: #071426;
  --navy-mid: #122b47;
  --crimson: #c8102e;
  --crimson-lt: #e3213c;
  --cream: #f6f2ec;
  --paper: #ffffff;
  --steel: #8ca2ba;
  --ink: #1b2733;
  --ink-soft: #4c5a68;
  --rule: rgba(11, 31, 53, 0.12);
  --ff-head: "Bitter", Georgia, "Times New Roman", serif;
  --ff-body: "Karla", "Helvetica Neue", Arial, sans-serif;
  --pad: 45px;
  --shadow: 0 24px 60px rgba(7, 20, 38, 0.14);
  --container-max: 1680px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 153px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--ff-head);
  margin: 0;
  line-height: 1.14;
  letter-spacing: -0.015em;
  font-weight: 800;
}

p {
  margin: 0 0 18px;
}

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

/* ─── eyebrow ─── */

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

.eyebrow::after {
  content: "";
  height: 1px;
  width: 56px;
  background: linear-gradient(90deg, var(--crimson), transparent);
}

.eyebrow--light {
  color: #e9b4b9;
}

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

.eyebrow--center::before {
  content: "";
  height: 1px;
  width: 56px;
  background: linear-gradient(90deg, transparent, currentColor);
}

/* ─── buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  white-space: nowrap;
  transition: 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  max-width: 100%;
}

.btn--primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 14px 30px rgba(200, 16, 46, 0.34);
}

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

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

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

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

/* ─── utility bar ─── */

.util {
  background: var(--navy-deep);
  color: rgba(246, 242, 236, 0.72);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

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

.util__group {
  display: flex;
  align-items: center;
  gap: 26px;
}

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

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

.util__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.22);
}

/* ─── header ─── */

.header {
  background: var(--navy);
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--crimson) 0%,
    var(--crimson) 34%,
    rgba(200, 16, 46, 0) 34%
  );
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 104px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
}

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

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

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #efe9e1;
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: center;
}

.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;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.header__nav-link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #efe9e1;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-extras {
  display: none;
}

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

.header__phone {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__phone small {
  display: block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ─── hero ─── */

.hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) 0 0;
  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(
    96deg,
    rgba(7, 20, 38, 0.96) 0%,
    rgba(7, 20, 38, 0.9) 42%,
    rgba(11, 31, 53, 0.6) 68%,
    rgba(11, 31, 53, 0.42) 100%
  );
}

.hero__rule {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--crimson), rgba(200, 16, 46, 0));
}

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

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 720px);
  width: min(55%, 720px);
  padding: clamp(12px, 2.4vw, 34px) clamp(8px, 1.5vw, 20px) clamp(12px, 2.4vw, 34px) 0;
}

.hero__title {
  font-size: clamp(44px, 4.5vw, 74px);
  color: #fff;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  color: var(--crimson-lt);
  display: inline-block;
}

.hero__subtitle {
  font-family: var(--ff-body);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cbd8e6;
  margin-top: 20px;
  line-height: 1.6;
}

.hero__text {
  color: rgba(232, 239, 246, 0.82);
  font-size: 17px;
  margin: 20px 0 26px;
  max-width: 560px;
}

.hero__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

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

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

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

.hero__plate {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(200, 16, 46, 0.34),
    rgba(200, 16, 46, 0.05) 58%,
    transparent 72%
  );
}

.hero__plate--ring {
  bottom: 0;
  width: 430px;
  height: 430px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero__tag {
  position: absolute;
  z-index: 4;
  left: 4%;
  bottom: 74px;
  background: rgba(255, 255, 255, 0.97);
  border-left: 4px solid var(--crimson);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  max-width: 230px;
}

.hero__tag b {
  display: block;
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hero__tag small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── accolades ─── */

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

.accolades__inner {
  display: grid;
  grid-template-columns: 270px repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 34px;
  padding: 38px 0;
}

.accolades__lead {
  font-family: var(--ff-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  padding-right: 22px;
  border-right: 1px solid var(--rule);
}

.accolades__lead span {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 8px;
}

.accolades__badge {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 18px;
}

.accolades__badge + .accolades__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--rule);
}

.accolades__image {
  width: auto;
  height: 50px;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.accolades__image--forum {
  height: 94px;
}

.accolades__image--trial {
  height: 76px;
}

.accolades__badge:hover .accolades__image {
  opacity: 1;
}

/* ─── section frame ─── */

section {
  position: relative;
}

.section {
  padding: 104px 0;
}

.section__title {
  font-size: clamp(32px, 3vw, 48px);
  color: var(--navy);
}

.section__lead {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 760px;
}

/* ─── about ─── */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 76px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.about__media::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 150px;
  height: 150px;
  border-left: 5px solid var(--crimson);
  border-top: 5px solid var(--crimson);
}

.about__stat {
  position: absolute;
  right: -30px;
  bottom: -30px;
  background: var(--navy);
  color: #fff;
  padding: 28px 34px;
  box-shadow: var(--shadow);
}

.about__stat b {
  display: block;
  font-family: var(--ff-head);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about__stat small {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.about__title {
  font-size: clamp(30px, 2.9vw, 46px);
  color: var(--navy);
  margin-bottom: 22px;
}

.about__copy p {
  color: var(--ink-soft);
}

.about__callout {
  margin-top: 30px;
  padding: 26px 30px;
  background: var(--cream);
  border-left: 4px solid var(--crimson);
}

.about__callout p {
  margin: 0;
  font-family: var(--ff-head);
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

.about__sig {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.about__sig-name {
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}

.about__sig-name span {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── practice areas ─── */

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

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

.practice__lead {
  margin: 0;
  max-width: 520px;
}

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

.practice__card {
  background: #fff;
  box-shadow: 0 10px 34px rgba(7, 20, 38, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.practice__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(7, 20, 38, 0.16);
}

.practice__thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.practice__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.practice__card:hover .practice__thumb img {
  transform: scale(1.06);
}

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 38, 0) 40%, rgba(7, 20, 38, 0.72));
}

.practice__num {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--crimson);
  padding: 6px 12px;
}

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

.practice__body h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.practice__body p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.practice__link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice__link:hover {
  gap: 15px;
}

/* ─── case results ─── */

.results {
  background: var(--navy-deep);
  color: #fff;
  background-image: url("../assets/images/bg-results.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 38, 0.94), rgba(7, 20, 38, 0.88));
}

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

.results__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.results__title {
  color: #fff;
  font-size: clamp(32px, 3vw, 48px);
}

.results__head p {
  color: rgba(226, 235, 244, 0.72);
  margin-top: 18px;
}

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

.results__card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--crimson);
  padding: 34px 28px 30px;
  backdrop-filter: blur(2px);
  transition: 0.3s;
}

.results__card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-6px);
}

.results__amount {
  font-family: var(--ff-head);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
}

.results__type {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e9aeb6;
  margin: 14px 0 16px;
}

.results__card p {
  font-size: 15px;
  color: rgba(219, 229, 239, 0.78);
  margin: 0;
}

.results__note {
  text-align: center;
  margin-top: 44px;
  font-size: 13px;
  color: rgba(200, 214, 228, 0.56);
  letter-spacing: 0.02em;
}

/* ─── why choose us ─── */

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

.why__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.why__title {
  margin-bottom: 14px;
}

.why__list {
  display: grid;
  gap: 0;
}

.why__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
}

.why__item:first-of-type {
  border-top: 1px solid var(--rule);
}

.why__num {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--crimson);
  letter-spacing: 0.1em;
  padding-top: 6px;
}

.why__item h3 {
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 10px;
}

.why__item p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
}

/* ─── testimonial ─── */

.testimonial {
  background: var(--cream);
}

.testimonial__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__mark {
  font-family: var(--ff-head);
  font-size: 110px;
  font-weight: 800;
  color: var(--crimson);
  line-height: 0.6;
  opacity: 0.9;
}

.testimonial__lead {
  font-family: var(--ff-head);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  margin: 24px 0 26px;
}

.testimonial__body {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 30px;
}

.testimonial__stars {
  color: var(--crimson);
  letter-spacing: 0.32em;
  font-size: 19px;
  margin-bottom: 14px;
}

.testimonial__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ─── contact ─── */

.contact {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

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

.contact__info {
  padding: 96px 70px 96px 0;
}

.contact__title {
  color: #fff;
  font-size: clamp(30px, 2.9vw, 46px);
}

.contact__text {
  color: rgba(223, 233, 243, 0.76);
  margin-top: 20px;
  max-width: 520px;
}

.contact__facts {
  margin-top: 38px;
  display: grid;
  gap: 22px;
}

.contact__fact {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}

.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.16);
  border: 1px solid rgba(200, 16, 46, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3b9c0;
  font-size: 16px;
}

.contact__fact b {
  display: block;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 5px;
}

.contact__fact span {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
}

.contact__address {
  white-space: pre-line;
}

.contact__form {
  position: relative;
  padding: 96px 0 96px 70px;
}

.contact__form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.form {
  background: #fff;
  padding: 44px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

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

.form__intro {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.form__label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 15.5px;
  color: var(--ink);
  background: #f7f8fa;
  border: 1px solid #dce2e8;
  border-radius: 2px;
  padding: 0 14px;
  height: 40px;
  transition: 0.2s;
  appearance: none;
}

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

.form__select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 19px) 17px, calc(100% - 14px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--crimson);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

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

.form__note {
  font-size: 12px;
  color: #8a97a4;
  margin: 16px 0 0;
  text-align: center;
}

/* ─── footer ─── */

.footer {
  background: var(--navy-deep);
  color: rgba(226, 235, 244, 0.62);
  font-size: 15px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 52px;
  padding: 76px 0 56px;
}

.footer__logo {
  width: 230px;
  margin-bottom: 24px;
}

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

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

.footer__list a:hover {
  color: var(--crimson-lt);
}

.footer__phone {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.footer__address {
  white-space: pre-line;
  margin: 14px 0 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  font-size: 13px;
  color: rgba(200, 214, 228, 0.5);
  flex-wrap: wrap;
}

/* ─── header type scale before hamburger ─── */

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

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

  .header__phone {
    font-size: 17px;
  }

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

  .hero__visual {
    width: 46%;
  }

  .hero__tag {
    left: 2%;
    bottom: 56px;
  }
}

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

  .header__nav-list {
    gap: 14px;
  }

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

  .header__phone {
    font-size: 16px;
  }

  .header__cta {
    gap: 14px;
  }

  .header__cta .btn--sm {
    font-size: 13px;
    padding: 12px 18px;
  }
}

/* ─── hamburger / mobile nav (below 1200px) ─── */

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

  .header__overlay[hidden] {
    display: none;
  }

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

  .header__toggle {
    display: flex;
    margin-left: auto;
    position: relative;
    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: 0;
    padding: 84px 28px 40px;
    z-index: 2;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.28);
  }

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

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

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

  .header__cta {
    display: none;
  }

  .accolades__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .accolades__lead {
    grid-column: 1 / -1;
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 18px;
  }

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

  .about,
  .why {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image,
  .why__media img {
    height: 460px;
  }

  .about__stat {
    right: 20px;
  }

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

  .contact__info {
    padding: 80px 0 0;
  }

  .contact__form {
    padding: 44px 0 80px;
  }

  .contact__form::before {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 980px) {
  :root {
    --pad: 32px;
  }

  .btn {
    white-space: normal;
    font-size: 17px;
    padding: 16px 28px;
  }

  .hero__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .util {
    display: none;
  }

  .header__inner {
    min-height: 84px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: clamp(32px, 6vw, 48px) 0 0;
  }

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

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

  .hero__title {
    font-size: 38px;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: min(78vw, 480px);
    margin-top: 8px;
  }

  .hero__plate {
    width: 380px;
    height: 380px;
    bottom: -40px;
  }

  .hero__plate--ring {
    width: 320px;
    height: 320px;
    bottom: 0;
  }

  .hero__tag {
    left: 12px;
    bottom: 40px;
    max-width: 190px;
  }

  .section {
    padding: 70px 0;
  }

  .form {
    padding: 30px 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
  }

  body {
    font-size: 16px;
  }

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

  .hero__actions .btn,
  .form__submit {
    width: 100%;
    font-size: 18px;
    padding: 16px 28px;
  }

  .practice__grid,
  .results__grid,
  .form__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .accolades__inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .accolades__badge + .accolades__badge::before {
    display: none;
  }

  .about__stat {
    position: static;
    margin-top: 18px;
    right: auto;
    bottom: auto;
  }

  .about__media::before {
    display: none;
  }

  .why__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
