:root {
  --ink-900: #080f1c;
  --ink-850: #0b1425;
  --ink-800: #111d33;
  --ink-700: #1b2a45;
  --rule: rgba(173, 162, 131, 0.28);
  --gold: #ada283;
  --gold-hi: #cdc4a7;
  --paper: #f1f2f3;
  --paper-2: #e3e6e9;
  --body: #3a414d;
  --white: #fff;
  --serif: "Gilda Display", Georgia, "Times New Roman", serif;
  --sans: "Albert Sans", "Helvetica Neue", Arial, sans-serif;
  --pad: 45px;
  --container-max: 1824px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 144px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.004em;
}

p {
  margin: 0;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.rule {
  width: 74px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

.text-link {
  margin-top: auto;
  padding-top: 22px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #7e7449;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  border-bottom: 1px solid rgba(173, 162, 131, 0.5);
  padding-bottom: 4px;
}

.text-link:hover {
  color: var(--ink-850);
  border-bottom-color: var(--ink-850);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.005em;
  text-decoration: none;
  text-align: center;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #0b1425;
  max-width: 100%;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  background: var(--gold-hi);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-hi);
  color: var(--white);
}

.btn--sm {
  font-size: 20px;
  padding: 15px 32px;
}

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

.btn--dark:hover {
  background: var(--ink-700);
}

/* ---------- header ---------- */
.header {
  background: var(--ink-900);
  color: #eef0f3;
  position: relative;
  z-index: 20;
}

.header__overlay {
  display: none;
}

.header__utility {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

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

.header__utility-address {
  color: rgba(238, 240, 243, 0.62);
}

.header__utility-phone {
  color: rgba(238, 240, 243, 0.78);
  text-decoration: none;
  flex-shrink: 0;
}

.header__utility-phone:hover {
  color: var(--gold-hi);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 100px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

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

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.header__nav-link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #e7eaef;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

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

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

.header__nav-extras {
  display: none;
}

.header__cta {
  flex: 0 0 auto;
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 4;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.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);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink-850);
  color: #fff;
  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:
    radial-gradient(
      58% 78% at 78% 62%,
      rgba(173, 162, 131, 0.3) 0%,
      rgba(173, 162, 131, 0.1) 42%,
      rgba(173, 162, 131, 0) 70%
    ),
    linear-gradient(104deg, #080f1c 0%, #0d1729 44%, #16233c 74%, #1e2c47 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--rule);
}

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

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

.hero__eyebrow {
  font-size: 13.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero__eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 96px;
}

.hero__title {
  font-size: clamp(36px, 3.5vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.004em;
}

.hero__lede {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.74;
  color: rgba(232, 236, 242, 0.82);
  max-width: 52ch;
}

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

.hero__tel {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero__tel-label {
  color: var(--gold);
}

.hero__tel:hover {
  color: var(--gold-hi);
}

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

.hero__plinth {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
  border-top: 1px solid rgba(173, 162, 131, 0.26);
  background: radial-gradient(
    72% 82% at 62% 88%,
    rgba(176, 167, 140, 0.16) 0%,
    rgba(176, 167, 140, 0.05) 48%,
    transparent 78%
  );
}

.hero__plinth::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 56px;
  height: 1px;
  background: var(--gold);
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--ink-800);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
}

.accolades__inner {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.accolades__label {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.5;
  flex: 0 0 auto;
  white-space: nowrap;
}

.accolades__rail {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1 1 480px;
  flex-wrap: wrap;
}

.accolades__slot {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__slot img {
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.accolades__slot--forum img {
  height: 78px;
}

.accolades__slot--trial img {
  height: 60px;
}

.accolades__slot--super img {
  height: 44px;
}

.accolades__slot--aaj img {
  height: 51px;
}

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

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

.about__figure {
  position: relative;
  isolation: isolate;
}

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

.about__figure::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}

.about__kicker {
  font-size: 13.5px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #8c8258;
  margin-bottom: 20px;
}

.about__title {
  font-size: clamp(27px, 2.05vw, 36px);
  line-height: 1.24;
  color: var(--ink-850);
  letter-spacing: 0.012em;
}

.about__text p {
  max-width: 60ch;
}

.about__list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about__list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16.5px;
  color: var(--ink-800);
}

.about__list-item::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 11px;
  background: var(--gold);
  transform: rotate(45deg);
}

.about__actions {
  margin-top: 38px;
}

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

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

.practice__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(11, 20, 37, 0.14);
  margin-bottom: 52px;
}

.practice__title {
  font-size: clamp(30px, 2.6vw, 44px);
  color: var(--ink-850);
}

.practice__intro {
  max-width: 46ch;
  font-size: 16.5px;
}

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

.practice__card {
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.practice__media {
  margin: 0;
  overflow: hidden;
  position: relative;
}

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

.practice__card:hover .practice__media img {
  transform: scale(1.035);
}

.practice__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
}

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

.practice__card-title {
  font-size: 23px;
  color: var(--ink-850);
  margin-bottom: 14px;
}

.practice__card-text {
  font-size: 15.5px;
  line-height: 1.68;
  color: #4a515d;
}

/* ---------- case results ---------- */
.results {
  position: relative;
  background: var(--ink-900);
  color: #fff;
  background-image: url("../assets/images/bg-case-results.jpg");
  background-size: cover;
  background-position: center;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 15, 28, 0.92),
    rgba(8, 15, 28, 0.82) 45%,
    rgba(8, 15, 28, 0.95)
  );
}

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

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

.results__title {
  font-size: clamp(30px, 2.6vw, 44px);
}

.results__intro {
  margin-top: 20px;
  color: rgba(230, 234, 241, 0.74);
  font-size: 16.5px;
}

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

.results__item {
  padding: 0 34px;
  border-left: 1px solid rgba(173, 162, 131, 0.24);
  display: flex;
  flex-direction: column;
}

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

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

.results__tag {
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}

.results__amount {
  font-family: var(--serif);
  font-size: clamp(34px, 2.9vw, 46px);
  color: #fff;
  line-height: 1;
}

.results__desc {
  margin-top: 18px;
  font-size: 15.5px;
  color: rgba(226, 231, 238, 0.72);
  line-height: 1.66;
}

.results__link {
  margin-top: auto;
  padding-top: 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--gold-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(205, 196, 167, 0.4);
  padding-bottom: 3px;
  align-self: flex-start;
}

.results__link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.results__note {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
  color: rgba(214, 220, 229, 0.55);
  max-width: 88ch;
}

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

.values__inner {
  padding-top: 100px;
  padding-bottom: 104px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.values__aside .rule {
  margin: 26px 0 24px;
}

.values__title {
  font-size: clamp(30px, 2.6vw, 44px);
  color: var(--ink-850);
}

.values__lede {
  font-size: 16.5px;
  max-width: 34ch;
}

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

.values__cell {
  background: var(--paper);
  padding: 40px 38px;
}

.values__cell-title {
  font-size: 21px;
  color: var(--ink-850);
  line-height: 1.28;
  margin-bottom: 14px;
}

.values__cell-text {
  font-size: 15.5px;
  line-height: 1.68;
}

.values__cell .text-link {
  margin-top: 22px;
}

.values__mark {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--gold);
}

.values__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.testimonials__inner {
  padding-top: 96px;
  padding-bottom: 100px;
  max-width: 1180px;
}

.testimonials__content {
  text-align: center;
}

.testimonials__label {
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 34px;
}

.testimonials__quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.55;
  color: #f3f5f8;
  letter-spacing: 0.006em;
}

.testimonials__cite {
  margin-top: 36px;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(230, 234, 241, 0.66);
  font-style: normal;
  display: block;
}

.testimonials__stars {
  margin: 0 auto 30px;
  display: flex;
  gap: 8px;
  justify-content: center;
  color: var(--gold);
}

.testimonials__stars svg {
  width: 19px;
  height: 19px;
}

/* ---------- contact ---------- */
.contact {
  background: var(--ink-850);
  color: #fff;
  position: relative;
}

.contact__inner {
  padding-top: 100px;
  padding-bottom: 104px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

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

.contact__rule {
  width: 74px;
  height: 2px;
  background: var(--gold);
  margin: 26px 0;
}

.contact__lede {
  color: rgba(228, 233, 240, 0.78);
  font-size: 16.5px;
  max-width: 42ch;
}

.contact__meta {
  margin-top: 40px;
  display: grid;
  gap: 26px;
}

.contact__meta dt {
  font-size: 12.5px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact__meta dd {
  margin: 0;
  font-size: 17px;
  color: #eef1f5;
  line-height: 1.6;
}

.contact__meta a {
  text-decoration: none;
}

.contact__meta a:hover {
  color: var(--gold-hi);
}

.contact__form {
  background: #fff;
  padding: 44px 44px 48px;
  color: var(--body);
}

.contact__form-title {
  font-size: 24px;
  color: var(--ink-850);
  margin-bottom: 8px;
}

.contact__form-hint {
  font-size: 14.5px;
  margin-bottom: 28px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #5b6270;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink-850);
  background: #f4f5f6;
  border: 1px solid #d9dce0;
  border-radius: 2px;
  padding: 0 14px;
  height: 40px;
  width: 100%;
}

.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%, #7d8492 50%),
    linear-gradient(135deg, #7d8492 50%, transparent 50%);
  background-position: calc(100% - 19px) 17px, calc(100% - 13px) 17px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  outline: none;
}

.contact__submit {
  margin-top: 26px;
}

.contact__submit .btn {
  width: 100%;
}

.contact__disclaimer {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #767d8a;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink-900);
  color: rgba(224, 229, 236, 0.72);
  font-size: 15px;
}

.footer__top-inner {
  padding-top: 72px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.7fr));
  gap: 60px;
}

.footer__brand img {
  width: 212px;
  height: auto;
  max-width: none;
  margin-bottom: 26px;
}

.footer__brand p {
  max-width: 44ch;
  line-height: 1.72;
}

.footer__heading {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
}

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

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold-hi);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__bottom-inner {
  padding-top: 26px;
  padding-bottom: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(214, 220, 229, 0.5);
}

/* ---------- responsive ---------- */
@media (max-width: 1400px) {
  .header__nav-list {
    gap: 26px;
  }

  .header__inner {
    gap: 28px;
  }

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

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

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

  .header__utility {
    display: none;
  }

  .header__inner {
    min-height: 96px;
    gap: 20px;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(8, 15, 28, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 84px 28px 40px;
    background: var(--ink-800);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 2;
    overflow-y: auto;
  }

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

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

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

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

  .header__nav-extras {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding-top: 8px;
  }

  .header__nav-phone {
    color: rgba(238, 240, 243, 0.86);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .header__nav-phone:hover {
    color: var(--gold-hi);
  }

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

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

  .hero__visual {
    width: 48%;
  }

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

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

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

  .about__inner,
  .values__inner,
  .contact__inner {
    gap: 48px;
  }
}

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

  .btn--sm {
    font-size: 16px;
    padding: 13px 22px;
  }

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

  .about__figure {
    order: -1;
  }

  .about__image {
    height: 400px;
  }

  .values__lede {
    max-width: none;
  }

  .contact__form {
    padding: 36px 30px 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

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

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

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 360px;
    justify-content: flex-end;
  }

  .hero__plinth {
    left: 0;
    width: 100%;
    height: 80%;
  }

  .hero__image {
    height: 440px;
    max-width: 100%;
  }
}

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

  body {
    font-size: 16px;
  }

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

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__tel {
    font-size: 24px;
    justify-content: center;
  }

  .hero__image {
    height: 360px;
  }

  .accolades__inner {
    gap: 26px;
  }

  .accolades__rail {
    gap: 26px;
    justify-content: center;
  }

  .accolades__slot img {
    height: 58px;
  }

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

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

  .results__item {
    border-left: none;
    padding: 0;
  }

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

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

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

  .about__inner,
  .practice__inner,
  .results__inner,
  .values__inner,
  .testimonials__inner,
  .contact__inner {
    padding-top: 70px;
    padding-bottom: 74px;
  }
}

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

  .practice__card:hover .practice__media img {
    transform: none;
  }
}
