:root {
  --ink: #08111c;
  --navy: #0d1d2e;
  --navy-2: #13293f;
  --navy-3: #1b3a57;
  --brass: #c3a063;
  --brass-lt: #e3cb9a;
  --brass-dk: #8a6e3c;
  --paper: #f7f4ef;
  --paper-2: #ece6dc;
  --body: #3a4550;
  --serif: "Crimson Pro", Georgia, serif;
  --sans: "Red Hat Display", system-ui, -apple-system, sans-serif;
  --container-max: 1680px;
  --container-gutter: 45px;
  --site-chrome-height: 150px;
  --nav-breakpoint: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: #2b3541;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

.container {
  width: min(95%, var(--container-max));
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 19px 34px;
  border-radius: 999px;
  white-space: nowrap;
  transition: 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(180deg, var(--brass-lt), var(--brass));
  color: #1a1205;
  box-shadow: 0 10px 28px rgba(195, 160, 99, 0.28);
}

.btn--primary:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(227, 203, 154, 0.55);
  color: var(--brass-lt);
}

.btn--ghost:hover {
  background: rgba(227, 203, 154, 0.12);
  border-color: var(--brass-lt);
}

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

.btn--outline:hover {
  border-color: var(--brass);
  color: var(--brass-dk);
}

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

.utility {
  background: var(--ink);
  color: rgba(240, 236, 228, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

.utility__phone {
  color: var(--brass-lt);
  font-weight: 600;
}

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

.header {
  position: relative;
  z-index: 40;
  background: var(--navy);
  border-bottom: 1px solid rgba(195, 160, 99, 0.22);
}

.header__overlay[hidden] {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 36px);
  min-height: 104px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.header__logo-mark,
.footer__logo-mark {
  flex-shrink: 0;
  max-width: none;
  width: auto;
}

.header__logo-mark {
  height: 62px;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-left: 1px solid rgba(195, 160, 99, 0.3);
  padding-left: 18px;
}

.header__logo-kicker,
.footer__kicker {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  line-height: 1;
}

.header__logo-name {
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  margin-top: 7px;
  white-space: nowrap;
}

.header__toggle {
  display: none;
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.header__toggle-bar {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--brass-lt);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.header__toggle-bar:nth-child(1) {
  top: 14px;
}

.header__toggle-bar:nth-child(2) {
  top: 21px;
}

.header__toggle-bar:nth-child(3) {
  top: 28px;
}

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

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

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

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 34px);
  list-style: none;
}

.header__nav-link {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: rgba(246, 243, 238, 0.9);
  letter-spacing: 0.02em;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}

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

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

.header__nav-link--active {
  color: var(--brass-lt);
}

.header__nav-extras {
  display: none;
}

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

.header__nav-cta {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  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,
.hero__veil,
.hero__glow {
  position: absolute;
  pointer-events: none;
}

.hero__bg {
  inset: 0;
  background: url("../assets/images/bg-hero.jpg") center / cover no-repeat;
  opacity: 0.5;
}

.hero__veil {
  inset: 0;
  background: linear-gradient(100deg, var(--ink) 0%, rgba(8, 17, 28, 0.94) 38%, rgba(13, 29, 46, 0.72) 62%, rgba(13, 29, 46, 0.5) 100%);
}

.hero__glow {
  right: 6%;
  top: -14%;
  width: 780px;
  height: 780px;
  max-width: 120vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 160, 99, 0.2), transparent 62%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  width: min(95%, var(--container-max));
  padding-inline: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(50%, 680px);
  max-width: 100%;
  padding: clamp(8px, 1.5vw, 24px) clamp(12px, 2vw, 28px) 0 0;
}

.hero__title {
  font-size: clamp(40px, 3.9vw, 62px);
  color: #fff;
  margin-top: 16px;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--brass-lt);
}

.hero__lead {
  font-size: 19px;
  line-height: 1.62;
  color: rgba(240, 236, 228, 0.8);
  max-width: 560px;
  margin-top: 22px;
  font-weight: 300;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.hero__phone-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  border-right: 1px solid rgba(195, 160, 99, 0.4);
  padding-right: 12px;
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 30px;
}

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

.hero__visual::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 0;
  width: min(520px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(195, 160, 99, 0.26);
  z-index: 0;
}

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

.credentials {
  background: var(--ink);
  border-top: 1px solid rgba(195, 160, 99, 0.2);
  padding: 46px 0 50px;
}

.credentials__label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(195, 160, 99, 0.85);
  margin-bottom: 34px;
}

.credentials__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 5.4vw, 86px);
  flex-wrap: wrap;
}

.credentials__badge {
  width: auto;
  max-width: none;
  opacity: 0.92;
  transition: 0.3s;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.credentials__badge--million {
  height: 86px;
}

.credentials__badge--trial {
  height: 62px;
}

.credentials__badge--super {
  height: 37px;
}

.credentials__badge--aaj {
  height: 50px;
}

.overview {
  padding: 110px 0;
  background: var(--paper);
}

.overview__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 76px;
  align-items: center;
}

.overview__media {
  position: relative;
}

.overview__image {
  border-radius: 4px;
  width: 100%;
  height: 620px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.overview__frame {
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1px solid var(--brass);
  border-radius: 4px;
  z-index: 1;
}

.overview__tag {
  position: absolute;
  z-index: 3;
  left: -1px;
  bottom: 34px;
  background: var(--navy);
  color: #fff;
  padding: 24px 30px;
  border-left: 3px solid var(--brass);
  max-width: 330px;
}

.overview__tag-title {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--brass-lt);
  margin-bottom: 5px;
}

.overview__tag-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(240, 236, 228, 0.72);
}

.overview__title {
  font-size: clamp(31px, 2.55vw, 44px);
  color: var(--navy);
  line-height: 1.16;
}

.overview__content > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.82;
  color: #48525f;
  margin-top: 20px;
  font-weight: 300;
}

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

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-head__title {
  font-size: clamp(31px, 2.6vw, 46px);
}

.section-head__text {
  font-size: 16.5px;
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}

.practice {
  position: relative;
  padding: 112px 0;
  background: var(--navy);
}

.practice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 28, 0.55), transparent 40%);
  pointer-events: none;
}

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

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

.practice .section-head__text {
  color: rgba(240, 236, 228, 0.66);
}

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

.results__grid {
  gap: 24px;
}

.practice-card {
  background: var(--navy-2);
  border: 1px solid rgba(195, 160, 99, 0.18);
  border-radius: 4px;
  overflow: hidden;
  transition: 0.32s;
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  transform: translateY(-8px);
  border-color: var(--brass);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.4);
}

.practice-card__media {
  position: relative;
  height: 212px;
  overflow: hidden;
}

.practice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s;
}

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(13, 29, 46, 0.92));
}

.practice-card__number {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--brass-lt);
  letter-spacing: 0.16em;
}

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

.practice-card__title {
  font-size: 23px;
  color: #fff;
  line-height: 1.26;
  min-height: 58px;
}

.practice-card__rule {
  width: 34px;
  height: 2px;
  background: var(--brass);
  margin: 16px 0 14px;
}

.practice-card__text {
  font-size: 14.5px;
  line-height: 1.68;
  color: rgba(240, 236, 228, 0.62);
  font-weight: 300;
  flex: 1;
}

.practice-card__more,
.result-card__more,
.value-card__more {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.practice-card__more {
  color: var(--brass);
}

.practice-card:hover .practice-card__more {
  color: var(--brass-lt);
}

.results {
  padding: 112px 0;
  background: var(--paper-2);
}

.results .section-head__title {
  color: var(--navy);
}

.results .section-head__text {
  color: #5a6472;
}

.result-card {
  background: #fff;
  border-top: 3px solid var(--brass);
  border-radius: 3px;
  padding: 36px 30px 32px;
  box-shadow: 0 2px 18px rgba(13, 29, 46, 0.07);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(13, 29, 46, 0.14);
}

.result-card__title {
  font-family: var(--serif);
  font-size: 20.5px;
  line-height: 1.34;
  color: var(--navy);
  min-height: 82px;
}

.result-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #98a2ae;
  margin: 20px 0 8px;
}

.result-card__outcome {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--brass-dk);
  line-height: 1.18;
  flex: 1;
}

.result-card__more {
  margin-top: 22px;
  color: var(--navy);
  border-top: 1px solid #e2dbd0;
  padding-top: 18px;
}

.result-card:hover .result-card__more {
  color: var(--brass-dk);
}

.results__disclaimer {
  text-align: center;
  font-size: 12.5px;
  color: #7d8794;
  margin-top: 34px;
  font-style: italic;
}

.values {
  padding: 112px 0;
  background: var(--paper);
}

.values .section-head__title {
  color: var(--navy);
}

.value-card {
  padding: 38px 30px;
  border: 1px solid #ddd5c8;
  border-radius: 4px;
  background: #fff;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  border-color: var(--brass);
  background: #fffdf9;
}

.value-card__index {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--brass-dk);
  margin-bottom: 22px;
}

.value-card__title {
  font-size: 21.5px;
  color: var(--navy);
  line-height: 1.32;
  flex: 1;
}

.value-card__more {
  margin-top: 22px;
  color: var(--brass-dk);
}

.testimonial {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--ink);
}

.testimonial::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -160px;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 160, 99, 0.11), transparent 62%);
}

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

.testimonial__mark {
  font-family: var(--serif);
  font-size: 104px;
  color: var(--brass);
  line-height: 0.6;
  margin: 30px 0 8px;
  opacity: 0.7;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.72;
  color: rgba(247, 244, 239, 0.9);
  font-weight: 300;
  font-style: italic;
}

.testimonial__stars {
  color: var(--brass);
  letter-spacing: 6px;
  font-size: 17px;
  margin-top: 22px;
}

.testimonial__author {
  margin-top: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

.contact {
  padding: 112px 0;
  background: var(--navy-2);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 76px;
  align-items: start;
}

.contact__title {
  font-size: clamp(31px, 2.55vw, 44px);
  color: #fff;
}

.contact__lead {
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(240, 236, 228, 0.72);
  margin-top: 20px;
  font-weight: 300;
  max-width: 520px;
}

.contact__details {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__row {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(195, 160, 99, 0.2);
}

.contact__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.contact__value {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  line-height: 1.45;
}

.form {
  background: var(--paper);
  border-radius: 5px;
  padding: 44px 42px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.form__title {
  font-size: 26px;
  color: var(--navy);
}

.form__subtitle {
  font-size: 14px;
  color: #68727f;
  margin-top: 8px;
  font-weight: 300;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

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

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

.form__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d7784;
}

.form__field input,
.form__field select,
.form__field textarea {
  border: 1px solid #cfc7ba;
  border-radius: 3px;
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  color: #2b3541;
  width: 100%;
}

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

.form__field textarea {
  height: 120px;
  padding: 11px 13px;
  resize: vertical;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(195, 160, 99, 0.16);
}

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

.form__note {
  font-size: 11.5px;
  color: #89929e;
  line-height: 1.6;
  margin-top: 16px;
  text-align: center;
}

.footer {
  background: var(--ink);
  padding: 74px 0 0;
  color: rgba(240, 236, 228, 0.62);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(195, 160, 99, 0.18);
}

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

.footer__logo-mark {
  height: 88px;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
}

.footer__kicker {
  font-size: 11px;
  font-family: var(--sans);
}

.footer__name {
  font-family: var(--serif);
  font-size: 23px;
  color: #fff;
  line-height: 1.2;
  margin-top: 4px;
}

.footer__summary {
  font-size: 14.5px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 430px;
}

.footer__heading {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__list a,
.footer__list li {
  font-size: 15px;
  font-weight: 300;
  transition: 0.2s;
}

.footer__list a:hover {
  color: var(--brass-lt);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: 12.5px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  max-width: 820px;
  line-height: 1.65;
  font-weight: 300;
  opacity: 0.72;
}

.footer__location {
  font-weight: 300;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass-lt);
  outline-offset: 3px;
}

@media (max-width: 1400px) {
  .hero__content {
    width: min(44%, 560px);
  }

  .hero__visual {
    width: 40%;
  }
}

@media (max-width: 1500px) {
  .header__logo-name {
    font-size: 22px;
  }

  .header__nav-list {
    gap: 22px;
  }
}

@media (max-width: 1320px) {
  .header__inner {
    gap: 18px;
  }

  .header__logo-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .header__logo-name {
    font-size: 20px;
  }

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

  .header__nav-list {
    gap: 16px;
  }
}

@media (max-width: 1200px) {
  .header__toggle {
    display: block;
  }

  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    border: 0;
    background: rgba(8, 17, 28, 0.62);
    cursor: pointer;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 84px 28px 40px;
    background: var(--navy);
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    visibility: hidden;
  }

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

  .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;
    width: 100%;
  }

  .header__nav-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(195, 160, 99, 0.18);
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(195, 160, 99, 0.22);
  }

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

  .overview__inner,
  .contact__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .overview__image {
    height: 440px;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    line-height: 1.35;
    max-width: 100%;
    font-size: 17px;
    padding: 15px 22px;
  }

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

@media (max-width: 820px) {
  :root {
    --container-gutter: 22px;
  }

  .container {
    width: 100%;
  }

  .utility__inner {
    min-height: 0;
    padding-block: 10px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 12px;
  }

  .utility__meta {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__logo {
    gap: 12px;
  }

  .header__logo-text {
    padding-left: 12px;
  }

  .header__logo-kicker {
    font-size: 10px;
  }

  .header__logo-name {
    font-size: 18px;
  }

  .credentials__row {
    gap: 30px 38px;
  }

  .credentials__badge {
    transform: scale(0.82);
  }

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

  .footer__top {
    gap: 40px;
  }

  .overview,
  .practice,
  .results,
  .values,
  .testimonial,
  .contact {
    padding: 70px 0;
  }

  .form {
    padding: 32px 24px;
  }

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

  .overview__frame {
    display: none;
  }
}

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

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(4px, 1.5vw, 10px);
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 12px;
    justify-content: center;
  }

  .hero__image {
    height: auto;
    width: auto;
    max-width: min(100%, 420px);
    max-height: 460px;
    object-position: bottom center;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__phone {
    flex-wrap: wrap;
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .header__logo-name {
    white-space: normal;
    font-size: 16px;
  }

  .utility__meta {
    flex-direction: column;
    gap: 4px;
  }
}

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

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