:root {
  --ink: #08190e;
  --green: #143b1e;
  --green-mid: #1e5230;
  --green-deep: #0c2714;
  --brass: #b9924f;
  --brass-lt: #e0c793;
  --limestone: #efeee7;
  --limestone-2: #e5e4da;
  --paper: #ffffff;
  --body: #2a342d;
  --body-soft: #5a6660;
  --container-max: 1560px;
  --container-width: 95%;
  --pad: 45px;
  --serif: "Old Standard TT", Georgia, "Times New Roman", serif;
  --sans: "Commissioner", "Helvetica Neue", Arial, sans-serif;
  --site-chrome-height: 146px;
  --nav-breakpoint: 1200px;
}

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

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

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

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

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

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

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

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

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

p {
  margin: 0;
}

/* ---------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  border: 0;
  max-width: 100%;
  line-height: 1.35;
}

.btn--primary {
  background: var(--brass);
  color: #231704;
  padding: 14px 30px;
  font-size: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn--primary:hover {
  background: var(--brass-lt);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 11px 24px;
  font-size: 15px;
}

.btn--ghost {
  border: 1.5px solid rgba(224, 199, 147, 0.55);
  color: var(--brass-lt);
  padding: 12px 26px;
  font-size: 15px;
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--brass-lt);
  background: rgba(224, 199, 147, 0.1);
}

/* ---------------------------------------------------------- topbar */
.topbar {
  background: var(--green-deep);
  color: var(--brass-lt);
  font-size: 13.5px;
  letter-spacing: 0.06em;
}

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

.topbar__item {
  opacity: 0.9;
}

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

/* ---------------------------------------------------------- header */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--limestone-2);
  position: relative;
  z-index: 50;
}

.header__overlay {
  display: none;
}

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

.header__logo {
  flex-shrink: 0;
}

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

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

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

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

.header__nav-link {
  display: inline-block;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 450;
  color: #1b2b21;
  line-height: 1.2;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.header__nav-link:hover {
  color: var(--green);
  border-bottom-color: var(--brass);
}

.header__nav-extras {
  display: none;
}

.header__nav-phone {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green);
  display: inline-block;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(13px, 0.95vw, 15px);
  padding: clamp(9px, 0.7vw, 11px) clamp(16px, 1.4vw, 24px);
}

/* ---------------------------------------------------------- hero */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background: var(--ink);
  color: #f3f2ea;
  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: url("../assets/images/bg-hero.jpg") center 38% / cover no-repeat;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 25, 14, 0.96) 0%,
      rgba(8, 25, 14, 0.88) 42%,
      rgba(12, 39, 20, 0.56) 68%,
      rgba(12, 39, 20, 0.42) 100%
    ),
    radial-gradient(120% 90% at 78% 100%, rgba(185, 146, 79, 0.18), transparent 60%);
}

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

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

.hero__kicker {
  font-size: 18px;
  font-weight: 500;
  color: var(--brass-lt);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__kicker::before {
  content: "";
  width: 44px;
  height: 1.5px;
  background: var(--brass);
  flex: 0 0 auto;
}

.hero__title {
  font-size: 60px;
  line-height: 1.1;
  color: #fbfaf4;
  margin-bottom: 22px;
}

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

.hero__subtitle {
  max-width: 520px;
  color: rgba(243, 242, 234, 0.82);
  font-size: 17.5px;
  margin-bottom: 30px;
}

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

.hero__phone {
  font-family: var(--serif);
  font-size: 24px;
  color: #fbfaf4;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(224, 199, 147, 0.45);
  padding-bottom: 6px;
}

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

.hero__phone-icon {
  flex: 0 0 auto;
}

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

.hero__plate {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: 560px;
  height: 548px;
  z-index: 1;
  border: 1px solid rgba(224, 199, 147, 0.28);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(30, 82, 48, 0.35), rgba(8, 25, 14, 0) 78%);
}

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

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brass) 0%,
    rgba(185, 146, 79, 0.15) 55%,
    rgba(185, 146, 79, 0) 100%
  );
  z-index: 4;
}

/* ---------------------------------------------------------- accolades */
.accolades {
  background: var(--limestone);
  border-bottom: 1px solid var(--limestone-2);
}

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

.accolades__label {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green);
  letter-spacing: 0.01em;
  flex: 0 0 auto;
  max-width: 190px;
  line-height: 1.35;
}

.accolades__row {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1 1 auto;
}

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

.accolades__img {
  width: auto;
  object-fit: contain;
  opacity: 0.82;
}

.accolades__img--lg {
  height: 76px;
}

.accolades__img--md {
  height: 66px;
}

.accolades__img--sm {
  height: 36px;
}

.accolades__img--aaj {
  height: 48px;
}

.accolades__img:hover {
  opacity: 1;
}

/* ---------------------------------------------------------- sections */
.section {
  padding: 104px 0;
}

.section--tight {
  padding: 80px 0;
}

.section__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--brass);
  margin-bottom: 14px;
}

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

.section__title {
  font-size: 44px;
  line-height: 1.16;
  color: var(--green);
}

.section__lede {
  font-size: 17.5px;
  color: var(--body-soft);
}

.section__lede--narrow {
  max-width: 430px;
}

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

.about__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 76px;
  align-items: center;
}

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

.about__copy p {
  margin-bottom: 28px;
}

.about__figure {
  position: relative;
}

.about__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about__figure::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 62%;
  height: 62%;
  border: 1px solid var(--brass);
  z-index: -1;
}

.about__badge {
  position: absolute;
  left: -30px;
  top: 44px;
  background: var(--green);
  color: #f3f2ea;
  padding: 22px 26px;
  max-width: 216px;
}

.about__badge-title {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--brass-lt);
  margin-bottom: 8px;
}

.about__badge-text {
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(243, 242, 234, 0.82);
}

.about__meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--limestone-2);
}

.about__meta-item {
  max-width: 210px;
}

.about__meta-term {
  font-family: var(--serif);
  font-size: 16.5px;
  color: var(--green);
  margin-bottom: 4px;
}

.about__meta-desc {
  margin: 0;
  font-size: 15px;
  color: var(--body-soft);
  line-height: 1.55;
}

/* ---------------------------------------------------------- practice */
.practice {
  background: var(--limestone);
}

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

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

.practice-card {
  background: var(--paper);
  border: 1px solid var(--limestone-2);
  display: flex;
  flex-direction: column;
}

.practice-card__figure {
  margin: 0;
  overflow: hidden;
  height: 208px;
}

.practice-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.practice-card:hover .practice-card__img {
  transform: scale(1.045);
}

.practice-card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.practice-card__title {
  font-size: 24px;
  color: var(--green);
  line-height: 1.2;
}

.practice-card__text {
  font-size: 15.5px;
  color: var(--body-soft);
  line-height: 1.6;
  flex: 1 1 auto;
}

.practice-card__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brass);
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}

.practice-card:hover .practice-card__link {
  border-bottom-color: var(--brass);
}

.practice__more {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

/* ---------------------------------------------------------- results */
.results {
  position: relative;
  background: var(--ink);
  color: #f3f2ea;
  padding: 96px 0;
}

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

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 14, 0.88), rgba(12, 39, 20, 0.94));
}

.results__inner {
  position: relative;
}

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

.results__title {
  color: #fbfaf4;
  font-size: 44px;
}

.results__intro {
  color: rgba(243, 242, 234, 0.76);
  margin-top: 14px;
}

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

.results__cell {
  padding: 6px 30px;
  border-left: 1px solid rgba(224, 199, 147, 0.26);
  text-align: center;
}

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

.results__amount {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.05;
  color: var(--brass-lt);
  display: block;
}

.results__kind {
  display: block;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 242, 234, 0.62);
  margin-top: 12px;
}

.results__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: #fbfaf4;
  border-bottom: 1px solid rgba(224, 199, 147, 0.5);
  padding-bottom: 3px;
}

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

.results__note {
  margin-top: 52px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(243, 242, 234, 0.5);
}

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

.values__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: center;
}

.values__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.values__list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.values__item {
  padding: 22px 0;
  border-top: 1px solid var(--limestone-2);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.values__item:last-child {
  border-bottom: 1px solid var(--limestone-2);
}

.values__item-title {
  font-size: 20.5px;
  line-height: 1.45;
  color: var(--green);
  font-family: var(--serif);
}

.values__mark {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.values__mark svg {
  width: 15px;
  height: 15px;
}

/* ---------------------------------------------------------- testimonial */
.testimonial {
  position: relative;
  background: var(--green-deep);
  color: #f3f2ea;
  padding: 98px 0;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-testimonial.jpg") center / cover no-repeat;
  opacity: 0.55;
}

.testimonial__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 39, 20, 0.94), rgba(8, 25, 14, 0.86));
}

.testimonial__inner {
  position: relative;
  max-width: 1020px;
  text-align: center;
}

.testimonial__quote {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.62;
  color: #fbfaf4;
}

.testimonial__mark {
  display: block;
  font-family: var(--serif);
  font-size: 74px;
  line-height: 0.6;
  color: var(--brass);
  margin-bottom: 10px;
}

.testimonial__cite {
  display: block;
  margin-top: 26px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

.testimonial__stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
}

.testimonial__stars svg {
  width: 17px;
  height: 17px;
}

/* ---------------------------------------------------------- contact */
.contact {
  background: var(--limestone);
  padding: 100px 0;
}

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

.contact__copy .section__title {
  margin-bottom: 20px;
}

.contact__copy p {
  color: var(--body-soft);
  margin-bottom: 30px;
  max-width: 420px;
}

.contact__lines {
  display: grid;
  gap: 22px;
  margin-top: 6px;
}

.contact__line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__line svg {
  flex: 0 0 auto;
  margin-top: 4px;
}

.contact__term {
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-soft);
  margin-bottom: 5px;
}

.contact__desc {
  margin: 0;
  font-family: var(--serif);
  font-size: 19.5px;
  color: var(--green);
  line-height: 1.45;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--limestone-2);
  padding: 40px;
}

.form-card__title {
  font-size: 26px;
  color: var(--green);
  margin-bottom: 8px;
}

.form-card__intro {
  font-size: 15px;
  color: var(--body-soft);
  margin-bottom: 26px;
}

.form-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

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

.form-card__label {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-soft);
}

.form-card__input,
.form-card__select {
  height: 40px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--body);
  background: var(--paper);
  border: 1px solid #cfcec4;
  border-radius: 2px;
  width: 100%;
}

.form-card__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 19px) 17px, calc(100% - 14px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-card__textarea {
  height: 120px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--body);
  background: var(--paper);
  border: 1px solid #cfcec4;
  border-radius: 2px;
  width: 100%;
  resize: vertical;
  line-height: 1.55;
}

.form-card__input:focus,
.form-card__select:focus,
.form-card__textarea:focus {
  border-color: var(--brass);
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 146, 79, 0.16);
}

.form-card__actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-card__note {
  font-size: 13px;
  color: var(--body-soft);
  max-width: 300px;
  line-height: 1.5;
}

/* ---------------------------------------------------------- footer */
.footer {
  background: var(--ink);
  color: rgba(243, 242, 234, 0.74);
  padding: 74px 0 0;
  font-size: 15px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.1fr;
  gap: 48px;
}

.footer__logo {
  width: 212px;
  margin-bottom: 22px;
  max-width: none;
}

.footer__brand-text {
  max-width: 300px;
  line-height: 1.65;
}

.footer__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: #fbfaf4;
  margin: 0 0 18px;
}

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

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

.footer__contact {
  display: grid;
  gap: 14px;
}

.footer__phone {
  font-family: var(--serif);
  font-size: 20px;
  color: #fbfaf4;
}

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

.footer__bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(224, 199, 147, 0.18);
  padding: 22px 0 26px;
  font-size: 13px;
  color: rgba(243, 242, 234, 0.5);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

/* ---------------------------------------------------------- motion */
@media (prefers-reduced-motion: no-preference) {
  .hero__content > * {
    animation: rise 0.8s cubic-bezier(0.22, 0.7, 0.3, 1) both;
  }

  .hero__content > *:nth-child(2) {
    animation-delay: 0.09s;
  }

  .hero__content > *:nth-child(3) {
    animation-delay: 0.16s;
  }

  .hero__content > *:nth-child(4) {
    animation-delay: 0.23s;
  }

  .hero__image {
    animation: fadein 1.1s ease 0.12s both;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* ---------------------------------------------------------- responsive */
@media (max-width: 1400px) {
  .hero__title {
    font-size: 54px;
  }

  .hero__plate {
    width: 460px;
    height: 500px;
  }

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

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

  .header__inner {
    gap: 22px;
    min-height: 92px;
  }

  .header__toggle {
    display: flex;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(8, 25, 14, 0.55);
  }

  .header__overlay[hidden] {
    display: none;
  }

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

  .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: flex-start;
    gap: 0;
  }

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid var(--limestone-2);
  }

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

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

  .header__cta {
    display: none;
  }

  .hero__title {
    font-size: 46px;
  }

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

  .hero__plate {
    display: none;
  }

  .about__grid,
  .values__grid,
  .contact__grid {
    gap: 46px;
  }

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

  .results__amount {
    font-size: 34px;
  }

  .results__cell {
    padding: 6px 18px;
  }

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

@media (max-width: 980px) {
  .btn {
    white-space: normal;
  }

  .btn--primary {
    font-size: 18px;
    padding: 13px 24px;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 8px;
  }

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

  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .hero__content {
    max-width: none;
    width: 100%;
    padding-top: clamp(40px, 8vw, 64px);
  }

  .hero__title {
    font-size: 40px;
  }

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

  .hero__image {
    height: 420px;
    margin: 0 auto;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(8, 25, 14, 0.95), rgba(12, 39, 20, 0.8));
  }

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

  .about__figure::after,
  .about__badge {
    display: none;
  }

  .about__img {
    height: 420px;
  }

  .values__img {
    height: 400px;
  }

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

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

  .section {
    padding: 74px 0;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 28px) 0;
  }

  .hero__content {
    max-width: 100%;
    padding-left: clamp(4px, 2vw, 12px);
    padding-right: clamp(4px, 2vw, 12px);
  }
}

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

  .hero__title {
    font-size: 32px;
  }

  .hero__kicker {
    font-size: 16px;
  }

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

  .hero__actions .btn--primary {
    width: 100%;
  }

  .hero__phone {
    font-size: 22px;
    justify-content: center;
  }

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

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

  .results__cell {
    border-left: 0;
    border-top: 1px solid rgba(224, 199, 147, 0.22);
    padding: 24px 0;
  }

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

  .section__title,
  .results__title {
    font-size: 32px;
  }

  .form-card {
    padding: 26px 20px;
  }

  .form-card__grid {
    grid-template-columns: 1fr;
  }

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

  .accolades__row {
    gap: 26px;
  }

  .accolades__slot {
    height: 58px;
  }

  .accolades__img {
    transform: scale(0.78);
    transform-origin: center;
  }
}
