:root {
  --ink: #0a0c0f;
  --graphite: #12161b;
  --panel: #1a1f26;
  --line-dark: #2a313a;
  --platinum: #d9dde2;
  --brass: #b3853f;
  --brass-lt: #d6ac63;
  --paper: #f5f6f7;
  --paper-2: #eceef0;
  --slate: #616974;
  --ink-text: #171b20;
  --dark-text: #a6aeb9;
  --display: "Bodoni Moda", serif;
  --body: "Chivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 152px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

figure {
  margin: 0;
}

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

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

p {
  margin: 0;
}

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

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

.rule {
  height: 1px;
  width: 74px;
  background: linear-gradient(90deg, var(--platinum), var(--brass) 55%, rgba(179, 133, 63, 0));
}

.rule--dark {
  background: linear-gradient(90deg, #6a737e, var(--brass) 55%, rgba(179, 133, 63, 0));
}

.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  line-height: 1.4;
}

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

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

.btn--brass {
  background: linear-gradient(180deg, var(--brass-lt), var(--brass));
  color: #1b1305;
  box-shadow: 0 12px 30px -14px rgba(179, 133, 63, 0.7);
}

.btn--brass:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(179, 133, 63, 0.85);
}

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

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  border-bottom: 1px solid rgba(179, 133, 63, 0.28);
  color: var(--dark-text);
  font-size: 13.5px;
  letter-spacing: 0.03em;
}

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

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

.utility b {
  color: var(--platinum);
  font-weight: 500;
}

.utility__right {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--brass-lt);
  flex-shrink: 0;
}

/* ---------- header ---------- */
.header {
  background: var(--graphite);
  position: relative;
  z-index: 40;
}

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

.header__brand {
  flex-shrink: 0;
}

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

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  flex: 1;
  flex-wrap: nowrap;
}

.header__nav-link {
  flex-shrink: 0;
  min-width: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: var(--platinum);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
}

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

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

.header__cta {
  flex-shrink: 0;
  font-size: clamp(13px, 1.1vw, 16px);
  padding: clamp(11px, 1vw, 14px) clamp(18px, 1.8vw, 26px);
}

.header__nav-close,
.header__nav-extras,
.header__burger {
  display: none;
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 15, 0.62);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.header__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header__burger {
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 221, 226, 0.3);
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.header__burger-icon {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--platinum);
  position: relative;
  transition: background 0.25s ease;
}

.header__burger-icon::before,
.header__burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--platinum);
  transition: transform 0.25s ease, top 0.25s ease;
}

.header__burger-icon::before {
  top: -6px;
}

.header__burger-icon::after {
  top: 6px;
}

.header__burger.is-open .header__burger-icon {
  background: transparent;
}

.header__burger.is-open .header__burger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.header__burger.is-open .header__burger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 221, 226, 0.3);
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
}

.header__nav-close-icon {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
}

.header__nav-close-icon::before,
.header__nav-close-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--platinum);
}

.header__nav-close-icon::before {
  transform: rotate(45deg);
}

.header__nav-close-icon::after {
  transform: rotate(-45deg);
}

.header__nav-phone {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

/* ---------- 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 32%;
  opacity: 0.5;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(10, 12, 15, 0.96) 0%,
    rgba(10, 12, 15, 0.9) 34%,
    rgba(10, 12, 15, 0.62) 62%,
    rgba(10, 12, 15, 0.5) 100%
  );
}

.hero__glow {
  position: absolute;
  right: -6%;
  bottom: -24%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 133, 63, 0.2), rgba(179, 133, 63, 0) 66%);
}

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

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 640px);
  padding-inline: clamp(0px, 1.5vw, 16px);
  min-width: 0;
}

.hero__content .eyebrow {
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(40px, 4.5vw, 68px);
  color: #fff;
}

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

.hero__rule {
  margin: 22px 0 20px;
}

.hero__text {
  color: var(--dark-text);
  font-size: 16.5px;
  line-height: 1.72;
  max-width: 600px;
}

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

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

.hero__tel span {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

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

@media (max-width: 1400px) {
  .hero__visual {
    width: 46%;
  }
}

/* ---------- accolades ---------- */
.accolades {
  background: var(--panel);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

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

.accolades__label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.accolades__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 133, 63, 0.5), rgba(179, 133, 63, 0));
}

.accolades__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  border: 1px solid var(--line-dark);
  background: rgba(10, 12, 15, 0.34);
}

.accolades__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 126px;
  padding: 0 22px;
  border-left: 1px solid var(--line-dark);
}

.accolades__slot:first-child {
  border-left: 0;
}

.accolades__image {
  width: auto;
  max-width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

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

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

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

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

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

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

.about__inner {
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 70px;
  align-items: center;
}

.about__figure {
  position: relative;
}

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

.about__figure::after {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 58%;
  height: 54%;
  border: 1px solid var(--brass);
  z-index: 1;
}

.about__stat {
  position: absolute;
  right: -30px;
  bottom: 44px;
  z-index: 3;
  background: var(--ink);
  color: #fff;
  padding: 22px 28px;
  text-align: center;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.55);
}

.about__stat b {
  display: block;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--platinum) 60%, #8e97a2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__stat span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

.about__title {
  font-size: clamp(30px, 2.9vw, 46px);
  margin: 14px 0 0;
}

.about .rule {
  margin: 24px 0;
}

.about__body p {
  color: var(--slate);
  margin-bottom: 20px;
}

.about__call {
  margin-top: 32px;
  padding: 26px 30px;
  background: var(--ink);
  color: var(--platinum);
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  border-left: 3px solid var(--brass);
}

.about__call p {
  color: var(--platinum);
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.about__phone {
  color: #fff;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
}

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

.practice__inner {
  padding-top: 104px;
  padding-bottom: 110px;
}

.practice__head {
  max-width: 760px;
  margin-bottom: 52px;
}

.practice__title {
  font-size: clamp(30px, 2.9vw, 46px);
  color: #fff;
  margin: 14px 0 18px;
}

.practice__intro {
  color: var(--dark-text);
}

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

.card {
  background: var(--graphite);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(179, 133, 63, 0.55);
}

.card__figure {
  position: relative;
  height: 214px;
  overflow: hidden;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.34) contrast(1.04);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.card:hover .card__image {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.04);
}

.card__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 15, 0) 30%, rgba(10, 12, 15, 0.86));
}

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

.card__title {
  font-size: 23px;
  color: #fff;
  line-height: 1.18;
}

.card__body .rule {
  width: 44px;
  margin: 16px 0 14px;
}

.card__text {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--dark-text);
  flex: 1;
}

.card__link {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.card__link i {
  width: 18px;
  height: 1px;
  background: var(--brass-lt);
  display: block;
  transition: width 0.3s ease;
}

.card:hover .card__link i {
  width: 30px;
}

/* ---------- results ---------- */
.results {
  position: relative;
  background: var(--graphite);
  color: #fff;
  overflow: hidden;
}

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

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 22, 27, 0.9), rgba(10, 12, 15, 0.94));
}

.results__inner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 100px;
}

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

.results__title {
  font-size: clamp(30px, 3vw, 48px);
  color: #fff;
  margin: 14px 0 16px;
}

.results__subtitle {
  color: var(--dark-text);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.results__head .rule {
  margin: 26px auto 0;
  width: 90px;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-dark);
  background: rgba(10, 12, 15, 0.5);
}

.results__item {
  padding: 48px 34px;
  text-align: center;
  border-left: 1px solid var(--line-dark);
}

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

.results__amount {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff, var(--platinum) 52%, #7e8894);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.results__item .rule {
  width: 38px;
  margin: 20px auto;
}

.results__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

.results__note {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: #79818c;
  letter-spacing: 0.03em;
}

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

.values__inner {
  padding-top: 104px;
  padding-bottom: 104px;
}

.values__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.values__figure {
  position: relative;
  height: 600px;
}

.values__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(23, 27, 32, 0.12);
  filter: contrast(1.06) saturate(0.94);
}

.values__figure::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 54%;
  height: 44%;
  border: 1px solid var(--brass);
  z-index: 1;
}

.values__title {
  font-size: clamp(30px, 2.9vw, 46px);
  margin: 14px 0 0;
}

.values__lead {
  color: var(--slate);
  margin-top: 22px;
  max-width: 560px;
}

.values__list {
  margin-top: 34px;
  border-top: 1px solid rgba(23, 27, 32, 0.14);
}

.values__item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(23, 27, 32, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 24px;
  align-items: start;
}

.values__item-title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.24;
}

.values__item p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.66;
  margin-top: 9px;
  max-width: 520px;
}

.values__more {
  align-self: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.values__more i {
  width: 18px;
  height: 1px;
  background: var(--brass);
  display: block;
  transition: width 0.3s ease;
}

.values__item:hover .values__more i {
  width: 32px;
}

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

.testimonial::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 133, 63, 0), var(--brass), rgba(179, 133, 63, 0));
}

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

.testimonial__mark {
  font-family: var(--display);
  font-size: 150px;
  line-height: 0.6;
  color: rgba(179, 133, 63, 0.26);
  height: 70px;
}

.testimonial__title {
  font-size: clamp(15px, 1.2vw, 17px);
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 30px;
}

.testimonial__quote {
  margin: 0 auto;
  max-width: 940px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(25px, 2.9vw, 42px);
  line-height: 1.32;
  color: #fff;
}

.testimonial__by {
  margin-top: 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-text);
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--brass-lt);
}

/* ---------- contact ---------- */
.contact {
  background: var(--graphite);
  color: #fff;
}

.contact__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

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

.contact__lead {
  color: var(--dark-text);
  margin-top: 22px;
  max-width: 460px;
}

.contact__meta {
  margin-top: 38px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.contact__meta div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact__meta span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 7px;
}

.contact__meta b {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.contact__meta p {
  color: var(--platinum);
  font-size: 16px;
  line-height: 1.6;
}

.form {
  background: var(--ink);
  border: 1px solid var(--line-dark);
  padding: 44px;
}

.form__heading {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
}

.form__sub {
  font-size: 14.5px;
  color: var(--dark-text);
  margin-bottom: 28px;
}

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

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

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

.form__field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a929d;
}

.form__field input,
.form__field select {
  height: 40px;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line-dark);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  padding: 0 14px;
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form__field textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.6;
}

.form__field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8a929d 50%),
    linear-gradient(135deg, #8a929d 50%, transparent 50%);
  background-position: calc(100% - 19px) 18px, calc(100% - 14px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: #1e242c;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: #5c6570;
}

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

.form__fine {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #6e7681;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--dark-text);
  border-top: 1px solid var(--line-dark);
}

.footer__inner {
  padding-top: 74px;
  padding-bottom: 34px;
}

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

.footer__logo {
  width: 330px;
  height: auto;
  flex-shrink: 0;
  max-width: none;
}

.footer__brand p {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.75;
  max-width: 400px;
}

.footer__title {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 20px;
}

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

.footer__list a {
  font-size: 15px;
  color: var(--dark-text);
  transition: color 0.2s ease;
}

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

.footer__address {
  font-size: 15px;
  line-height: 1.8;
  color: var(--platinum);
}

.footer__tel {
  display: block;
  margin-top: 18px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  color: #fff;
}

.footer__bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #6b737d;
}

.footer__bottom a:hover {
  color: var(--platinum);
}

/* ---------- buttons: wrap / overflow ---------- */
@media (max-width: 980px) {
  .btn {
    white-space: normal;
    line-height: 1.35;
    font-size: 16px;
    padding: 16px 24px;
  }

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

/* ---------- header: hamburger at 1200px ---------- */
@media (max-width: 1200px) {
  :root {
    --pad: 32px;
  }

  .header__inner {
    min-height: 88px;
    justify-content: space-between;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: min(400px, 88vw);
    background: var(--graphite);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 88px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 60;
    overflow-y: auto;
    flex: none;
    box-shadow: -18px 0 40px -20px rgba(0, 0, 0, 0.6);
  }

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

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

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

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__nav-close {
    display: flex;
  }

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

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

  .about__stat {
    right: 14px;
  }

  .values__figure {
    height: 440px;
  }

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

  .footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
  }

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

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

  .accolades__slot {
    height: 104px;
  }

  .accolades__slot:nth-child(3) {
    border-left: 0;
  }

  .accolades__slot:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

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

  .results__item {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding: 38px 24px;
  }

  .results__item:first-child {
    border-top: 0;
  }

  .form {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: clamp(32px, 6vw, 52px) clamp(24px, 5vw, 40px) 0;
  }

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

  .hero__content {
    max-width: 100%;
    padding-inline: clamp(4px, 2vw, 16px);
    padding-bottom: 24px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
    pointer-events: none;
  }

  .hero__image {
    height: min(70vw, 430px);
    margin: 0 auto;
  }

  .hero__bg {
    background-position: center 20%;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(10, 12, 15, 0.94), rgba(10, 12, 15, 0.86));
  }
}

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

  .container {
    width: 100%;
  }

  .utility__inner {
    justify-content: center;
    text-align: center;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .utility__left {
    justify-content: center;
    gap: 14px;
    font-size: 12.5px;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__image {
    height: 340px;
  }

  .accolades__slot {
    height: 92px;
    padding: 0 14px;
  }

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

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

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

  .about__image {
    height: 330px;
  }

  .about__stat {
    position: static;
    margin-top: 18px;
    display: inline-block;
  }

  .about__call {
    padding: 22px;
  }

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

  .values__more {
    margin-top: 12px;
  }

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

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

  .footer__logo {
    width: min(250px, 100%);
    max-width: 100%;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

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

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