/* ============ FONTS ============ */
@font-face {
  font-family: "Cormorant GD";
  src: url("../assets/fonts/cormorant-gd-variable.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow N";
  src: url("../assets/fonts/barlow-n-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow N";
  src: url("../assets/fonts/barlow-n-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Barlow N";
  src: url("../assets/fonts/barlow-n-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow N";
  src: url("../assets/fonts/barlow-n-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* ============ TOKENS ============ */
:root {
  --navy-900: #0a1222;
  --navy-800: #0f1b31;
  --navy: #152444;
  --navy-600: #1d3057;
  --brass: #b58a46;
  --brass-2: #d8b36c;
  --brass-soft: rgba(181, 138, 70, 0.16);
  --parchment: #f7f3ec;
  --parchment-2: #efe9de;
  --line: #e1d9cb;
  --ink: #161a22;
  --body: #59616f;
  --white: #fff;
  --serif: "Cormorant GD", Georgia, "Times New Roman", serif;
  --sans: "Barlow N", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1680px;
  --container-pad: 45px;
  --site-chrome-height: 148px;
  --nav-breakpoint: 1200px;
  --shadow-lg: 0 30px 70px -30px rgba(10, 18, 34, 0.45);
  --shadow-md: 0 18px 44px -22px rgba(10, 18, 34, 0.34);
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font: 400 17px/1.75 var(--sans);
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.008em;
  line-height: 1.1;
}

p {
  margin: 0 0 18px;
}

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

/* ============ SHARED ============ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

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

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

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

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

.rule--center {
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 19px;
  line-height: 1.7;
}

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

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head__title {
  font-size: clamp(30px, 2.9vw, 45px);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 12.5px/1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.link-more svg {
  transition: transform 0.3s;
}

.link-more:hover svg {
  transform: translateX(5px);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font: 600 20px/1.35 var(--sans);
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 20px 40px;
  border: 1.5px solid transparent;
  transition: 0.28s cubic-bezier(0.2, 0.7, 0.3, 1);
  cursor: pointer;
  max-width: 100%;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(180deg, var(--brass-2), var(--brass));
  color: #22180a;
  box-shadow: 0 14px 34px -14px rgba(181, 138, 70, 0.7);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -14px rgba(181, 138, 70, 0.85);
}

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

.btn--navy:hover {
  background: var(--navy-600);
  transform: translateY(-2px);
}

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

/* ============ UTILITY BAR ============ */
.util {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.62);
  font: 500 13px/1 var(--sans);
  letter-spacing: 0.04em;
}

.util__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.util__left,
.util__right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.util__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.util__item svg {
  opacity: 0.7;
  flex: 0 0 auto;
}

.util__highlight {
  color: var(--brass-2);
}

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

.header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__brand {
  flex: 0 0 auto;
  flex-shrink: 0;
  color: #fff;
  width: 159px;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.header__nav-link {
  font: 500 clamp(14px, 1.05vw, 16px)/1 var(--sans);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  flex-shrink: 0;
}

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

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

.header__nav-close {
  display: none;
}

.header__nav-extras {
  display: none;
}

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

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

.header__phone-label {
  font: 600 10.5px/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 5px;
}

.header__phone-number {
  font: 600 clamp(17px, 1.35vw, 21px)/1 var(--sans);
  color: #fff;
  letter-spacing: 0.01em;
}

.header__cta .btn {
  font-size: clamp(13px, 1.05vw, 16px);
  padding: clamp(11px, 1vw, 14px) clamp(18px, 1.6vw, 28px);
  flex-shrink: 0;
}

.header__burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 60;
}

.header__burger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 34, 0.55);
  z-index: 45;
  opacity: 0;
  transition: opacity 0.3s;
}

.header__overlay--visible {
  display: block;
  opacity: 1;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy-900);
  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__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.webp");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.5;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 130% at 78% 82%, rgba(181, 138, 70, 0.22) 0%, rgba(181, 138, 70, 0) 55%),
    linear-gradient(
      96deg,
      rgba(10, 18, 34, 0.97) 0%,
      rgba(10, 18, 34, 0.9) 38%,
      rgba(15, 27, 49, 0.62) 66%,
      rgba(15, 27, 49, 0.5) 100%
    );
}

.hero__glow {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 0;
  width: 640px;
  height: 420px;
  background: radial-gradient(60% 70% at 50% 100%, rgba(181, 138, 70, 0.34), rgba(181, 138, 70, 0) 70%);
  pointer-events: none;
}

.hero__hair {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-2) 42%, rgba(216, 179, 108, 0) 100%);
  z-index: 4;
}

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

.hero__content {
  position: relative;
  z-index: 5;
  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(38px, 3.9vw, 60px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.012em;
}

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

.hero__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17.5px;
  line-height: 1.72;
  max-width: 585px;
  margin: 0 0 32px;
}

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

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

.hero__phone-label {
  font: 600 10.5px/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 7px;
}

.hero__phone-number {
  font: 600 24px/1 var(--sans);
  color: #fff;
}

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

.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__image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* ============ ACCOLADES ============ */
.accolades {
  background: var(--navy-800);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 34px 0;
}

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

.accolades__label {
  font: 600 12px/1.5 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-2);
  max-width: 150px;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.accolades__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 6px 10px;
}

.accolades__image {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

.accolades__image--ntl {
  height: 82px;
}

.accolades__image--super {
  height: 41px;
}

.accolades__image--aaj {
  height: 58px;
}

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

/* ============ ABOUT ============ */
.about {
  padding: 110px 0 118px;
  background: var(--white);
  position: relative;
}

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

.about__media {
  position: relative;
}

.about__frame {
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--brass);
  z-index: 0;
}

.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about__stat {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: -26px;
  background: var(--navy);
  color: #fff;
  padding: 26px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 196px;
}

.about__stat-value {
  display: block;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: var(--brass-2);
}

.about__stat-label {
  display: block;
  margin-top: 9px;
  font: 600 11px/1.5 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.about__title {
  font-size: clamp(30px, 2.5vw, 40px);
}

.about__subtitle {
  font-size: 22px;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0;
  margin-bottom: 22px;
}

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

.about__checks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17px;
  color: var(--ink);
}

.about__checks svg {
  flex: 0 0 auto;
  margin-top: 5px;
}

.about__callout {
  background: var(--parchment);
  border-left: 3px solid var(--brass);
  padding: 22px 26px;
  margin: 0 0 32px;
  font-size: 17px;
  color: var(--ink);
}

.about__callout a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--brass);
}

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

/* ============ PRACTICE ============ */
.practice {
  padding: 112px 0 120px;
  position: relative;
  background: var(--parchment);
}

.practice::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-practice.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}

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

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

.practice-card {
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -26px rgba(10, 18, 34, 0.4);
}

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

.practice-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

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

.practice-card__num {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 18px;
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.18em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(10, 18, 34, 0.75);
}

.practice-card__body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.practice-card__title {
  font-size: 24px;
  line-height: 1.2;
}

.practice-card__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.66;
  flex: 1;
}

.practice-card__body .link-more {
  margin-top: 4px;
}

/* ============ CASES ============ */
.cases {
  position: relative;
  padding: 110px 0 116px;
  background: var(--navy-900);
  overflow: hidden;
}

.cases__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-cases.webp");
  background-size: cover;
  background-position: center 38%;
  opacity: 0.5;
}

.cases::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.88), rgba(10, 18, 34, 0.7));
}

.cases__inner {
  position: relative;
  z-index: 3;
}

.cases .section-head__title {
  color: #fff;
}

.cases .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

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

.case-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.35s;
  backdrop-filter: blur(2px);
}

.case-card:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(216, 179, 108, 0.5);
  transform: translateY(-6px);
}

.case-card__amount {
  font-family: var(--serif);
  font-size: clamp(32px, 2.6vw, 42px);
  font-weight: 600;
  color: var(--brass-2);
  line-height: 1;
}

.case-card__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.5px;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.case-card .link-more {
  color: var(--brass-2);
}

/* ============ VALUES ============ */
.values {
  padding: 112px 0 118px;
  background: var(--white);
}

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

.value-item {
  padding: 44px 34px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.35s;
  position: relative;
}

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

.value-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item:hover {
  background: var(--parchment);
}

.value-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brass-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item__title {
  font-size: 21px;
  line-height: 1.24;
}

.value-item__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.66;
  flex: 1;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  position: relative;
  padding: 106px 0 110px;
  background: var(--navy);
  overflow: hidden;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -90px;
  left: 4%;
  font-family: var(--serif);
  font-size: 420px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
}

.testimonial__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}

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

.testimonial__quote {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.62vw, 26px);
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.002em;
}

.testimonial__cite {
  display: block;
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-2);
  font-style: normal;
}

/* ============ CTA BAND ============ */
.band {
  position: relative;
  padding: 74px 0;
  background: var(--navy-800);
  overflow: hidden;
}

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

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 34, 0.94), rgba(10, 18, 34, 0.6));
}

.band__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.band__title {
  color: #fff;
  font-size: clamp(26px, 2.2vw, 36px);
  max-width: 760px;
}

.band__text {
  color: rgba(255, 255, 255, 0.72);
  margin: 12px 0 0;
  font-size: 16.5px;
}

/* ============ CONTACT ============ */
.contact {
  padding: 112px 0 118px;
  background: var(--parchment-2);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-practice.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  filter: saturate(0.35);
}

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

.contact__title {
  font-size: clamp(30px, 2.7vw, 42px);
}

.contact__info {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.contact__info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact__info-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info-label {
  display: block;
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 7px;
}

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

.contact__info-value a {
  color: var(--ink);
}

.contact__info-value a:hover {
  color: var(--brass);
}

.form-card {
  background: #fff;
  padding: 46px 44px 48px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--brass);
}

.form-card__title {
  font-size: 26px;
  margin-bottom: 8px;
}

.form-card__sub {
  font-size: 15.5px;
  margin-bottom: 28px;
}

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

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

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

.field__label {
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  font: 400 16px/1.5 var(--sans);
  color: var(--ink);
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 15px;
  height: 40px;
  transition: 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.field__textarea {
  height: 120px;
  padding: 11px 15px;
  resize: vertical;
  line-height: 1.6;
}

.field__select {
  background-image: url("../assets/images/icon-select.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
  cursor: pointer;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brass-soft);
}

.form-card__submit {
  width: 100%;
  margin-top: 26px;
}

.form-card__disc {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #7a8391;
  text-align: center;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.62);
  padding: 74px 0 0;
  font-size: 15.5px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 52px;
  padding-bottom: 56px;
}

.footer__brand {
  color: #fff;
  width: 290px;
  max-width: 100%;
  margin-bottom: 24px;
}

.footer__logo {
  width: 100%;
  height: auto;
  max-width: none;
}

.footer p {
  margin: 0 0 14px;
  line-height: 1.7;
}

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

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

.footer a:hover {
  color: var(--brass-2);
}

.footer__phone {
  font: 600 25px/1.2 var(--sans);
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

.footer__phone:hover {
  color: var(--brass-2);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1440px) {
  .header__nav {
    gap: clamp(18px, 1.8vw, 26px);
  }

  .header__inner {
    gap: 22px;
  }
}

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

  .header__burger {
    display: block;
    margin-left: 6px;
  }

  .header__cta {
    margin-left: auto;
  }

  .header__cta .header__phone,
  .header__cta .btn {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin-left: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 28px 36px;
    z-index: 55;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
    overflow-y: auto;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.35);
  }

  .header__nav--open {
    transform: translateX(0);
    z-index: 65;
  }

  .header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    padding: 0;
  }

  .header__nav-link {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

  .header__nav-extras .header__phone-number {
    font-size: 22px;
  }

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

  .hero__content {
    width: min(100%, 52%);
  }

  .hero__visual {
    width: 48%;
  }

  .about__inner {
    gap: 52px;
  }

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

  .values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .value-item:first-child {
    border-left: 0;
  }

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

  .accolades__label {
    grid-column: 1 / -1;
    max-width: none;
    padding-right: 0;
    border-right: 0;
    text-align: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

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

@media (max-width: 980px) {
  .util__left .util__item:nth-child(2) {
    display: none;
  }

  .btn {
    white-space: normal;
  }

  .hero__content {
    width: min(100%, 50%);
  }

  .hero__visual {
    width: 50%;
  }

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

  .about__media {
    margin-bottom: 42px;
    max-width: 560px;
  }

  .about__image {
    height: 460px;
  }

  .band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .container {
    width: 100%;
  }

  .util {
    display: none;
  }

  .header__inner {
    min-height: 76px;
  }

  .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));
    display: flex;
    flex-direction: column;
    padding: clamp(32px, 6vw, 48px) clamp(22px, 4vw, 28px) 0;
  }

  .hero__inner {
    flex: 0 0 auto;
    height: auto;
  }

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

  .hero__text {
    font-size: 16.5px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
    font-size: 18px;
    padding: 18px 26px;
    white-space: normal;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 12px;
  }

  .hero__image {
    height: 330px;
    max-height: 50vh;
  }

  .hero__glow {
    display: none;
  }

  .about,
  .practice,
  .cases,
  .values,
  .testimonial,
  .contact {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .band {
    padding: 52px 0;
  }

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

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

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

  .about__frame {
    inset: 16px -16px -16px 16px;
  }

  .about__stat {
    right: -10px;
    bottom: -18px;
    padding: 20px 24px;
    min-width: 160px;
  }

  .about__stat-value {
    font-size: 42px;
  }

  .form-card {
    padding: 32px 24px 34px;
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    padding-bottom: 42px;
  }

  .testimonial::before {
    font-size: 240px;
    top: -40px;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .about__actions {
    gap: 18px;
  }

  .about__actions .btn {
    width: 100%;
    font-size: 18px;
    padding: 18px 24px;
    white-space: normal;
  }

  .btn {
    font-size: 17px;
    padding: 16px 24px;
  }
}

@media (max-width: 560px) {
  .header__inner {
    gap: 12px;
  }

  .header__burger {
    padding: 6px;
    margin-left: 0;
  }

  .header__burger-line {
    width: 22px;
    margin: 4px 0;
  }

  .header__burger--open .header__burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .header__burger--open .header__burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero__title {
    font-size: clamp(31px, 8.4vw, 40px);
  }

  .hero__image {
    height: 288px;
  }

  .about__frame {
    inset: 12px -12px -12px 12px;
  }

  .about__stat {
    right: 0;
    bottom: -16px;
    min-width: 150px;
    padding: 18px 20px;
  }

  .testimonial__quote {
    font-size: 18.5px;
  }
}
