@font-face {
  font-family: "Instrument Serif";
  src: url("../assets/fonts/instrument-serif.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../assets/fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Public Sans";
  src: url("../assets/fonts/public-sans.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #15171a;
  --ink-2: #1d2024;
  --ink-3: #282c31;
  --paper: #f6f4f1;
  --paper-2: #ebe7e2;
  --red: #e31b23;
  --red-deep: #702028;
  --red-dark: #a9151c;
  --graphite: #6d6e71;
  --hair: rgba(255, 255, 255, 0.14);
  --hair-d: rgba(21, 23, 26, 0.14);
  --ff-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --ff-text: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --pad: 45px;
  --container-max: 1780px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 144px;
}

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

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

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

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

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

.hero .container > *,
.about__grid > *,
.contact__grid > *,
.values__grid > *,
.footer__top > *,
.practice__grid > *,
.values__list > * {
  min-width: 0;
}

.section {
  padding: 104px 0;
}

.section__lede {
  font-size: 19px;
  line-height: 1.75;
  color: #3a3d42;
}

.section__eyebrow--light + .section__lede,
.testimonial .section__lede,
.results .section__lede {
  color: #c3c6cb;
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.section__eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.section__eyebrow::after {
  content: "";
  flex: 1 1 auto;
  max-width: 78px;
  height: 2px;
  background: var(--red);
  opacity: 0.5;
}

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

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

.section__eyebrow--light::after {
  background: var(--red);
  opacity: 0.85;
}

h1,
h2,
h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
}

.section__title {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.06;
}

h3 {
  font-size: 26px;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.005em;
  padding: 19px 36px;
  border-radius: 999px;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

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

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

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

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

.btn--dark:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn--sm {
  font-size: 15px;
  padding: 13px 26px;
}

.utility {
  background: var(--ink);
  color: #9ca0a6;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.utility__address {
  text-transform: uppercase;
}

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

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

.header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100px;
  position: relative;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

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

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

.header.is-open .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  margin-left: auto;
}

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

.header__nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #d8dade;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav-item {
  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;
}

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

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

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
}

.hero {
  position: relative;
  background: var(--ink);
  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(120% 90% at 78% 105%, rgba(109, 110, 113, 0.3) 0%, rgba(21, 23, 26, 0) 62%);
}

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

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

.hero__title {
  font-size: clamp(52px, 5.6vw, 90px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  color: #fff;
}

.hero__title em {
  font-style: normal;
  display: block;
  color: #fff;
}

.hero__rule {
  width: 88px;
  height: 3px;
  background: var(--red);
  margin: 26px 0 24px;
}

.hero__lede {
  font-size: 17.5px;
  line-height: 1.7;
  color: #bfc3c9;
  margin: 0 0 30px;
  max-width: 56ch;
}

.hero__phone {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 26px;
}

.hero__phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8d9198;
}

.hero__phone a {
  font-family: var(--ff-display);
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero__phone a:hover {
  color: var(--red);
}

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

.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__visual-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(560px, 96%);
  aspect-ratio: 1;
  transform: translate(-46%, -52%);
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 46%, rgba(132, 136, 142, 0.3) 0%, rgba(132, 136, 142, 0.13) 52%, rgba(21, 23, 26, 0) 74%);
}

.hero__visual-bar {
  position: absolute;
  left: 6%;
  top: 0;
  bottom: 0;
  width: 7px;
  background: var(--red);
  opacity: 0.92;
}

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

.creds {
  background: var(--ink-2);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.creds__item {
  padding: 36px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

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

.creds__key {
  font-family: var(--ff-display);
  font-size: 23px;
  line-height: 1.15;
  color: #fff;
}

.creds__value {
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8d9198;
  margin-top: 8px;
}

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

.about__grid {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 76px;
  align-items: center;
}

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

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

.about__shot::after {
  content: "";
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 158px;
  height: 158px;
  background: var(--red);
  z-index: 1;
}

.about__ring {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
  border: 2px solid var(--hair-d);
  border-radius: 50%;
  z-index: 1;
}

.about__title {
  margin-bottom: 26px;
}

.about__title small {
  display: block;
  font-size: 0.44em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--ff-text);
  font-weight: 700;
  margin-bottom: 12px;
}

.about__content p {
  margin: 0 0 20px;
  color: #3e4247;
}

.about__actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

.practice__lede {
  margin: 0;
  max-width: 44ch;
}

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

.practice-card {
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}

.practice-card:hover {
  transform: translateY(-6px);
}

.practice-card__thumb {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.practice-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 23, 26, 0) 42%, rgba(21, 23, 26, 0.78) 100%);
}

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

.practice-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 12px;
}

.practice-card__title {
  font-size: 25px;
  line-height: 1.16;
  margin-bottom: 12px;
  min-height: 58px;
}

.practice-card__text {
  font-size: 15px;
  line-height: 1.62;
  color: #a9adb4;
  margin: 0 0 20px;
}

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

.practice-card__more-icon {
  width: 20px;
  height: 2px;
  background: var(--red);
  transition: width 0.28s;
  display: inline-block;
}

.practice-card:hover .practice-card__more-icon {
  width: 34px;
}

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

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 23, 26, 0.93), rgba(21, 23, 26, 0.97));
}

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

.results__head {
  margin-bottom: 54px;
}

.results__title {
  color: #fff;
}

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

.result-card {
  padding: 44px 34px 40px;
  border-left: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.result-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.result-card__area {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8d9198;
  min-height: 3.1em;
  margin-bottom: 18px;
}

.result-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.result-card__value {
  font-family: var(--ff-display);
  font-size: 40px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 22px;
  min-height: 84px;
}

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

.result-card__more-icon {
  width: 20px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.result-card:hover .result-card__more {
  color: #fff;
}

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

.values__grid {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 70px;
  align-items: start;
}

.values__lede {
  margin-top: 24px;
}

.values__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair-d);
}

.value-card {
  background: var(--paper);
  padding: 38px 36px;
}

.value-card__num {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.value-card__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hair-d);
}

.value-card__title {
  font-size: 23px;
  line-height: 1.22;
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 15.5px;
  line-height: 1.66;
  color: #54585e;
  margin: 0 0 16px;
}

.value-card__more {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.value-card__more-icon {
  width: 18px;
  height: 2px;
  background: var(--red);
  display: inline-block;
  transition: width 0.28s;
}

.value-card:hover .value-card__more-icon {
  width: 30px;
}

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

.testimonial__ring {
  position: absolute;
  right: -140px;
  top: -140px;
  width: 460px;
  height: 460px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

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

.testimonial__inner {
  max-width: 1000px;
}

.testimonial__quote {
  margin: 0;
}

.testimonial__pull {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.24;
  color: #fff;
  margin: 0 0 26px;
}

.testimonial__body {
  font-size: 17.5px;
  line-height: 1.78;
  color: #b9bdc3;
  margin: 0 0 30px;
  max-width: 80ch;
}

.testimonial__who {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8d9198;
}

.testimonial__who::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--red);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: start;
}

.contact .section__title {
  margin-bottom: 22px;
}

.contact__info {
  margin-top: 38px;
  border-top: 1px solid var(--hair-d);
}

.contact__row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair-d);
}

.contact__key {
  flex: 0 0 132px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 5px;
}

.contact__value {
  font-size: 17px;
  line-height: 1.6;
  color: #2c2f34;
}

.contact__value a:hover {
  color: var(--red);
}

.form {
  background: #fff;
  padding: 44px;
  border: 1px solid var(--hair-d);
  box-shadow: 0 30px 70px -40px rgba(21, 23, 26, 0.5);
}

.form__field {
  margin-bottom: 18px;
}

.form__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6e74;
  margin-bottom: 8px;
}

.form__input,
.form__select {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #d3cfc9;
  background: #fbfaf9;
  border-radius: 4px;
  font-size: 16px;
}

.form__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6d6e71 50%),
    linear-gradient(135deg, #6d6e71 50%, transparent 50%);
  background-position: calc(100% - 20px) 18px, calc(100% - 14px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form__textarea {
  width: 100%;
  height: 120px;
  padding: 12px 14px;
  border: 1px solid #d3cfc9;
  background: #fbfaf9;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical;
  line-height: 1.55;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--red);
  background: #fff;
  outline: none;
}

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

.form__note {
  font-size: 12.5px;
  line-height: 1.55;
  color: #83878d;
  margin: 16px 0 0;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
  margin-bottom: 24px;
}

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

.footer__wordmark {
  display: block;
  line-height: 1.06;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 15px;
}

.footer__wordmark-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.13em;
}

.footer__wordmark-tag {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #8d9198;
  margin-top: 4px;
}

.footer__blurb {
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 46ch;
}

.footer__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin: 0 0 20px;
}

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

.footer__list a {
  font-size: 15.5px;
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: 13px;
  color: #71757b;
  flex-wrap: wrap;
}

.footer__mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__mark::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

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

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

  .header__inner {
    gap: 24px;
  }

  .about__grid {
    gap: 52px;
  }
}

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

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

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

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(21, 23, 26, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

  .header__overlay[hidden] {
    display: none;
  }

  .header.is-open .header__overlay[hidden] {
    display: block;
  }

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

  .header__toggle {
    display: flex;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    background: var(--ink);
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin-left: 0;
    padding: 84px 28px 40px;
    z-index: 2;
    background: var(--ink);
    transform: translateX(100%);
    visibility: hidden;
    overflow-y: auto;
    transition: transform 0.32s ease, visibility 0.32s ease;
  }

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

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

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

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

  .header__nav-phone {
    font-family: var(--ff-display);
    font-size: 22px;
    color: #fff;
    letter-spacing: 0.02em;
  }

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

  .header__cta {
    display: none;
  }

  .hero__visual {
    width: 48%;
  }

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

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

  .result-card:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

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

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

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

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

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

@media (max-width: 900px) {
  :root {
    --pad: 28px;
  }

  .section {
    padding: 76px 0;
  }

  .utility__address {
    display: none;
  }

  .utility__inner {
    justify-content: center;
  }

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

  .about__image {
    height: 440px;
  }

  .about__shot::after {
    width: 96px;
    height: 96px;
  }

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

  .practice__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

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

@media (max-width: 768px) {
  .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));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 28px) 0;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: clamp(12px, 3vw, 24px) 0 clamp(28px, 5vw, 44px);
  }

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

  .hero__image {
    height: 480px;
  }

  .hero__visual-ring {
    width: 400px;
    transform: translate(-52%, -50%);
  }

  .hero__visual-bar {
    left: 0;
  }
}

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

  body {
    font-size: 16px;
  }

  .header__inner {
    height: 80px;
    gap: 14px;
  }

  .footer__wordmark-name {
    font-size: 17px;
  }

  .utility {
    font-size: 12px;
  }

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

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__phone {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero__phone a {
    white-space: nowrap;
  }

  .section__eyebrow {
    align-items: flex-start;
  }

  .section__eyebrow::before {
    margin-top: 5px;
  }

  .section__eyebrow::after {
    margin-top: 8px;
  }

  .hero__image {
    height: 400px;
  }

  .hero__visual-ring {
    width: 310px;
  }

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

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

  .result-card,
  .result-card:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

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

  .creds__item {
    border-left: 0;
    padding-left: 0;
  }

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

  .form {
    padding: 28px;
  }

  .contact__row {
    flex-direction: column;
    gap: 6px;
  }
}

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