:root {
  --ink: #0a1826;
  --navy: #12304c;
  --navy-2: #1b4166;
  --red: #9a1c21;
  --red-dk: #7a1418;
  --blue: #207abf;
  --paper: #f1f4f7;
  --paper-2: #e4eaf1;
  --white: #fff;
  --body: #41505f;
  --line: #d6dee7;
  --container-max: 1320px;
  --pad: 45px;
  --site-chrome-height: 148px;
  --nav-breakpoint: 1200px;
  --ff-d: "Bodoni Moda", Georgia, serif;
  --ff-b: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--ff-b);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  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,
h4 {
  font-family: var(--ff-d);
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

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

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

.section {
  padding: 104px 0;
}

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

.section__eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--red);
  flex: none;
}

.section__eyebrow--light {
  color: #e4b9bb;
}

.section__eyebrow--light::before {
  background: var(--red);
}

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

.section__rule {
  width: 74px;
  height: 3px;
  background: var(--red);
  margin: 26px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-b);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  padding: 19px 40px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  max-width: 100%;
  text-align: center;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(154, 28, 33, 0.75);
}

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

.btn--outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

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

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

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

.utility {
  background: var(--ink);
  color: #9fb3c6;
  font-size: 13.5px;
  letter-spacing: 0.06em;
}

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

.utility__location {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  font-weight: 500;
}

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

.utility__meta b {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.utility svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  flex: none;
}

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

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 40;
}

body.is-nav-open .header {
  z-index: 60;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 40px);
  min-height: 104px;
}

.header__brand {
  flex-shrink: 0;
  width: 204px;
}

.header__logo {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  max-width: none;
}

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  flex-wrap: nowrap;
}

.header__nav-link {
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  flex-shrink: 0;
}

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

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

.header__cta {
  flex-shrink: 0;
  font-size: clamp(14px, 1.15vw, 20px);
  padding: clamp(10px, 0.9vw, 14px) clamp(16px, 1.6vw, 30px);
}

.header__nav-extras {
  display: none;
}

.header__nav-close {
  display: none;
}

.header__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.header__burger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

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

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

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

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 38, 0.55);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

.hero {
  position: relative;
  background: var(--ink) url("../assets/images/bg-hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 24, 38, 0.95) 0%,
    rgba(10, 24, 38, 0.88) 34%,
    rgba(10, 24, 38, 0.52) 58%,
    rgba(10, 24, 38, 0.35) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 42%, var(--blue) 42% 100%);
  z-index: 4;
}

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

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

.hero__title {
  color: #fff;
  font-size: clamp(34px, 3.55vw, 56px);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  color: #bfd6ea;
  font-weight: 500;
}

.hero__subtitle {
  color: #c6d5e3;
  font-size: 18.5px;
  max-width: 34em;
  margin-bottom: 34px;
}

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

.hero__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  font-family: var(--ff-b);
}

.hero__phone svg {
  width: 22px;
  height: 22px;
  fill: var(--blue);
  flex: none;
}

.hero__phone > div {
  line-height: 1;
}

.hero__phone span {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fa9c0;
  line-height: 1;
  margin-bottom: 6px;
}

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

.hero__glow {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 660px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(32, 122, 191, 0.34), rgba(32, 122, 191, 0) 68%);
}

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

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

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

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

.accolades__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.accolades__head .section__eyebrow {
  margin-bottom: 0;
}

.accolades__head p {
  font-size: 14.5px;
  color: #6b7c8d;
}

.accolades__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.accolades__plate {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 22px 24px;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accolades__plate:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(10, 24, 38, 0.4);
}

.accolades__badge-img {
  width: auto;
  max-width: 100%;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.accolades__plate:hover .accolades__badge-img {
  opacity: 1;
}

.accolades__badge-img--lg {
  height: 88px;
}

.accolades__badge-img--md {
  height: 78px;
}

.accolades__badge-img--sm {
  height: 50px;
}

.accolades__badge-img--base {
  height: 59px;
}

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

.about {
  background: #fff;
}

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

.about__media {
  position: relative;
  min-width: 0;
}

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

.about__media::after {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 150px;
  height: 150px;
  border-left: 4px solid var(--red);
  border-top: 4px solid var(--red);
}

.about__badge {
  position: absolute;
  right: -26px;
  bottom: 38px;
  background: var(--navy);
  color: #fff;
  padding: 24px 30px;
  max-width: 250px;
}

.about__badge b {
  display: block;
  font-family: var(--ff-d);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about__badge span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ebbd4;
  margin-top: 9px;
}

.about__title {
  font-size: clamp(32px, 3.1vw, 48px);
}

.about__copy {
  min-width: 0;
}

.about__copy > p {
  font-size: 18px;
  margin-bottom: 30px;
}

.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.about__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.about__list svg {
  width: 19px;
  height: 19px;
  fill: var(--red);
  flex: none;
  margin-top: 3px;
}

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

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

.practice__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.practice__title {
  font-size: clamp(32px, 3.1vw, 48px);
}

.practice__head p {
  font-size: 18px;
  margin-top: 20px;
}

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

.practice-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(10, 24, 38, 0.5);
}

.practice-card__img {
  position: relative;
  aspect-ratio: 76 / 52;
  overflow: hidden;
}

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

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

.practice-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 38, 0) 40%, rgba(10, 24, 38, 0.62));
}

.practice-card__body {
  padding: 28px 26px 30px;
  border-top: 3px solid var(--red);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.practice-card h3 {
  font-size: 23px;
  line-height: 1.22;
  margin-bottom: 12px;
}

.practice-card p {
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}

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

.practice-card__more svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.practice-card:hover .practice-card__more svg {
  transform: translateX(5px);
}

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

.results {
  position: relative;
  background: var(--ink) url("../assets/images/bg-cases.jpg") center / cover no-repeat;
  color: #fff;
}

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

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

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

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

.results__head p {
  color: #b4c6d6;
  font-size: 17px;
  max-width: 44ch;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.results__case {
  background: rgba(10, 24, 38, 0.55);
  padding: 42px 32px 38px;
  backdrop-filter: blur(2px);
  transition: background 0.3s ease;
}

.results__case:hover {
  background: rgba(27, 65, 102, 0.72);
}

.results__case b {
  display: block;
  font-family: var(--ff-d);
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
}

.results__case i {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8fb4d2;
  margin: 16px 0 22px;
}

.results__more {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.results__more svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.results__case:hover .results__more svg {
  transform: translateX(5px);
}

.results__note {
  margin-top: 34px;
  font-size: 13.5px;
  color: #7e93a6;
  line-height: 1.6;
}

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

.values {
  position: relative;
  background: var(--navy);
}

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-values.jpg") center / cover no-repeat;
  opacity: 0.2;
}

.values::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 48, 76, 0.86), rgba(10, 24, 38, 0.94));
}

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

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

.values__head {
  max-width: 700px;
  margin-bottom: 56px;
}

.values__head p {
  color: #b4c6d6;
  font-size: 17.5px;
  margin-top: 22px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 60px;
}

.values__item {
  display: flex;
  gap: 22px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.values__mark {
  flex: none;
  width: 46px;
  height: 46px;
  background: var(--red);
  display: grid;
  place-items: center;
}

.values__mark svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

.values__item h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.values__item p {
  color: #afc2d3;
  font-size: 16px;
}

/* ---------- testimonial ---------- */

.testimonial {
  background: var(--paper);
  text-align: center;
}

.testimonial__inner {
  max-width: 1060px;
}

.testimonial__title {
  font-size: clamp(30px, 2.9vw, 44px);
  margin-bottom: 14px;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 30px 0 26px;
}

.testimonial__stars svg {
  width: 23px;
  height: 23px;
  fill: #e0a83b;
}

.testimonial__quote {
  font-family: var(--ff-d);
  font-size: clamp(18px, 1.55vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink);
  letter-spacing: 0;
}

.testimonial__name {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

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

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

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(10, 24, 38, 0.96) 0 46%, rgba(18, 48, 76, 0.82) 100%);
}

.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 72px;
  align-items: start;
}

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

.contact__copy {
  min-width: 0;
}

.contact__copy > p {
  color: #b7c8d8;
  font-size: 17.5px;
  margin-bottom: 34px;
}

.contact__facts {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.contact__fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #dce6ef;
}

.contact__fact svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
  flex: none;
  margin-top: 4px;
}

.contact__fact b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7e9ab3;
  margin-bottom: 5px;
}

.contact__fact span {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  white-space: pre-line;
}

.contact__fact a {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.contact-form {
  background: #fff;
  padding: 40px 38px 38px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
  min-width: 0;
}

.contact-form h3 {
  font-size: 27px;
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 15px;
  margin-bottom: 26px;
}

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

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--ff-b);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 15px;
  height: 40px;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form__field textarea {
  height: 120px;
  padding: 11px 15px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2341505F'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 36px;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  outline: none;
}

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

.contact-form__note {
  font-size: 12.5px;
  line-height: 1.6;
  color: #79899a;
  margin-top: 16px;
}

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

.footer {
  background: var(--ink);
  color: #93a7ba;
  padding: 76px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.7fr) minmax(0, 0.9fr);
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer__logo {
  width: 300px;
  background: #fff;
  padding: 16px 20px;
  margin-bottom: 26px;
}

.footer p {
  font-size: 15.5px;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  font-family: var(--ff-b);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

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

.footer__links a {
  font-size: 15.5px;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact {
  display: grid;
  gap: 18px;
}

.footer__contact span {
  display: block;
  font-size: 15.5px;
  white-space: pre-line;
  line-height: 1.7;
}

.footer__tel {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: var(--ff-b);
}

.footer__bottom {
  padding: 30px 0 40px;
  display: flex;
  gap: 26px;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6e8298;
}

.footer__disclaimer {
  padding: 26px 0 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: #6e8298;
  max-width: none;
}

.footer__disclaimer b {
  color: #93a7ba;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ---------- responsive ---------- */

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

  .header__cta {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__inner {
    min-height: 88px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 72px 28px 40px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.32s ease, visibility 0.32s ease;
    box-shadow: -20px 0 50px -30px rgba(10, 24, 38, 0.55);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }

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

  .header__nav-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--paper);
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .header__nav-link {
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .header__nav-phone {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
  }

  .section {
    padding: 80px 0;
  }

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

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

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

  .about__inner {
    gap: 48px;
  }

  .contact__inner {
    gap: 48px;
  }
}

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

  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    flex-direction: column;
    align-items: stretch;
    padding: clamp(28px, 5vw, 48px) clamp(16px, 3vw, 28px) 0;
  }

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

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

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

  .hero__glow {
    display: none;
  }

  .hero__image {
    height: 100%;
    margin: 0 auto;
  }

  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .about__media {
    max-width: 520px;
  }

  .about__badge {
    right: auto;
    left: 24px;
    bottom: -26px;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .utility__location {
    display: none;
  }

  .utility__inner {
    justify-content: center;
  }
}

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

  .hero__content {
    max-width: 100%;
  }

  .hero__visual {
    height: min(68vw, 380px);
  }
}

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

  body {
    font-size: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .utility__meta span {
    display: none;
  }

  .utility__meta b {
    white-space: nowrap;
    letter-spacing: 0.08em;
  }

  .hero__title {
    font-size: 31px;
  }

  .hero__actions {
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__phone {
    font-size: 22px;
  }

  .hero__visual {
    height: 340px;
  }

  .about__badge b {
    font-size: 32px;
  }

  .accolades__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .accolades__plate {
    padding: 16px 12px;
    min-height: 104px;
  }

  .accolades__badge-img {
    max-height: 66px;
    object-fit: contain;
  }

  .accolades__badge-img--lg,
  .accolades__badge-img--md,
  .accolades__badge-img--sm,
  .accolades__badge-img--base {
    height: auto;
  }

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

  .about__media::after {
    display: none;
  }

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

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

  .contact-form__fields {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 22px 28px;
  }

  .footer__logo {
    width: 100%;
    max-width: 280px;
  }

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

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