:root {
  --ink: #141b07;
  --olive: #3b4c19;
  --olive-2: #4e6322;
  --olive-deep: #1e2810;
  --brass: #be9a4e;
  --brass-lt: #d9be80;
  --bone: #f6f4eb;
  --sand: #e6e4d6;
  --body: #33352c;
  --container-max: 1320px;
  --pad: 45px;
  --site-chrome-height: 148px;
  --nav-breakpoint: 1200px;
  --display: "Bodoni Moda", Georgia, serif;
  --sans: "Jost", -apple-system, "Segoe UI", sans-serif;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  margin: 0;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

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

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

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
  flex: none;
}

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

.eyebrow--center {
  justify-content: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 34px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  max-width: 100%;
  line-height: 1.35;
  text-align: center;
}

.btn--brass {
  background: var(--brass);
  color: var(--ink);
}

.btn--brass:hover {
  background: var(--brass-lt);
}

.btn--olive {
  background: var(--olive);
  color: #fff;
}

.btn--olive:hover {
  background: var(--olive-2);
}

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

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

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

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  color: rgba(246, 244, 235, 0.72);
  font-size: 13px;
  letter-spacing: 0.06em;
}

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

.utility__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.utility__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
  flex: none;
}

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

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__logo {
  width: 250px;
  flex-shrink: 0;
  display: block;
}

.header__logo-img {
  width: 100%;
  height: auto;
  max-width: none;
  flex-shrink: 0;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  margin-left: auto;
}

.header__nav-link {
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__cta {
  flex-shrink: 0;
  font-size: clamp(13px, 1.1vw, 16px);
  padding: clamp(10px, 1vw, 12px) clamp(16px, 1.6vw, 26px);
  white-space: nowrap;
}

.header__toggle {
  display: none;
  margin-left: auto;
  background: var(--bone);
  border: 1px solid var(--sand);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 60;
  align-items: center;
  justify-content: center;
}

.header__toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.header__toggle-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
  transform-origin: center;
}

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

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

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

.header__toggle--open {
  border-color: rgba(20, 27, 7, 0.2);
}

.header__toggle--open .header__toggle-bar {
  background: var(--ink);
}

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

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

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

.header__nav-extras {
  display: none;
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 27, 7, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 40;
}

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--olive-deep);
  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__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.3;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 27, 7, 0.96) 0%,
    rgba(20, 27, 7, 0.88) 38%,
    rgba(30, 40, 16, 0.62) 66%,
    rgba(30, 40, 16, 0.34) 100%
  );
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brass) 0%,
    var(--brass) 14%,
    rgba(190, 154, 78, 0.22) 14%,
    rgba(190, 154, 78, 0.22) 100%
  );
  z-index: 3;
}

.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(8px, 2vw, 24px) clamp(0px, 1vw, 12px) clamp(16px, 3vw, 40px);
}

.hero__title {
  font-size: clamp(38px, 3.5vw, 58px);
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(246, 244, 235, 0.82);
  line-height: 1.55;
  margin: 0 0 34px;
  max-width: 31em;
}

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

.hero__phone {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero__phone-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-lt);
  display: block;
  line-height: 1;
  margin-bottom: 7px;
}

.hero__phone-number {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.hero__phone-icon {
  width: 17px;
  height: 17px;
  fill: var(--brass);
  flex: none;
}

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

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--sand);
  border-bottom: 1px solid rgba(59, 76, 25, 0.14);
}

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

.accolades__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  max-width: 150px;
  line-height: 1.7;
  flex: none;
}

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

.accolades__badge {
  display: block;
  flex: none;
  width: auto;
  opacity: 0.92;
  transition: opacity 0.3s;
}

.accolades__badge:hover {
  opacity: 1;
}

.accolades__badge--mdaf {
  height: 78px;
}

.accolades__badge--ntl {
  height: 56px;
}

.accolades__badge--super {
  height: 38px;
}

.accolades__badge--aaj {
  height: 46px;
}

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

.section__title {
  font-size: clamp(30px, 2.5vw, 42px);
}

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

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

.about__figure {
  position: relative;
  margin: 0;
}

.about__image {
  width: 100%;
  height: auto;
}

.about__figure::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 118px;
  height: 118px;
  border-left: 3px solid var(--brass);
  border-bottom: 3px solid var(--brass);
}

.about__heading {
  margin-bottom: 26px;
}

.about__text p {
  color: var(--body);
}

.about__meta {
  margin-top: 38px;
  display: flex;
  gap: 46px;
  flex-wrap: wrap;
  border-top: 1px solid var(--sand);
  padding-top: 28px;
}

.about__meta-item {
  min-width: 0;
}

.about__meta-value {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
}

.about__meta-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6e7264;
  margin-top: 8px;
}

/* ---------- practice areas ---------- */
.practice {
  background: var(--olive-deep);
  color: rgba(246, 244, 235, 0.78);
}

.practice h2,
.practice h3 {
  color: #fff;
}

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

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

.practice-card {
  background: rgba(246, 244, 235, 0.045);
  border: 1px solid rgba(190, 154, 78, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.practice-card:hover {
  border-color: var(--brass);
  transform: translateY(-5px);
  background: rgba(246, 244, 235, 0.075);
}

.practice-card__thumb {
  position: relative;
  aspect-ratio: 770 / 620;
  overflow: hidden;
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 27, 7, 0) 40%,
    rgba(20, 27, 7, 0.72) 100%
  );
}

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

.practice-card__body h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.practice-card__body p {
  font-size: 15px;
  line-height: 1.68;
  color: rgba(246, 244, 235, 0.66);
}

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

.practice-card__more::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s;
}

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

/* ---------- case results ---------- */
.results {
  background: var(--bone);
}

.results__head {
  text-align: center;
  margin-bottom: 14px;
}

.results__list {
  margin-top: 52px;
  border-top: 1px solid var(--sand);
}

.results__row {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  padding: 34px 4px;
  border-bottom: 1px solid var(--sand);
  transition: background 0.3s;
}

.results__row:hover {
  background: rgba(59, 76, 25, 0.035);
}

.results__amount {
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.results__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.results__text {
  font-size: 15.5px;
  color: #5c6053;
  line-height: 1.66;
}

.results__note {
  margin-top: 26px;
  font-size: 13px;
  color: #7b7f71;
  letter-spacing: 0.02em;
}

/* ---------- values ---------- */
.values {
  background: var(--olive);
  color: rgba(246, 244, 235, 0.82);
}

.values h2 {
  color: #fff;
}

.values__head {
  margin-bottom: 52px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  background: rgba(246, 244, 235, 0.16);
}

.values__cell {
  background: var(--olive);
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  min-height: 236px;
  transition: background 0.3s;
}

.values__cell:hover {
  background: var(--olive-2);
}

.values__num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brass-lt);
  margin-bottom: auto;
}

.values__cell h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.24;
  margin: 28px 0 18px;
}

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

.values__link::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s;
}

.values__cell:hover .values__link::after {
  width: 36px;
}

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

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

.testimonial__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 27, 7, 0.88), rgba(20, 27, 7, 0.94));
}

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

.testimonial h2 {
  color: #fff;
  margin-bottom: 40px;
}

.testimonial__quote {
  font-family: var(--display);
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.93);
  max-width: 44em;
  margin: 0 auto;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 0 0 30px;
}

.testimonial__star {
  width: 19px;
  height: 19px;
  fill: var(--brass);
}

.testimonial__name {
  margin-top: 34px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

.testimonial__name::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 20px;
}

/* ---------- contact ---------- */
.contact {
  background: var(--sand);
}

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

.contact__intro-title {
  margin-bottom: 22px;
}

.contact__intro-text {
  max-width: 34em;
  color: #5c6053;
}

.contact__figure {
  margin: 34px 0 0;
}

.contact__figure-img {
  width: 100%;
  height: auto;
}

.contact__info {
  margin-top: 34px;
  display: grid;
  gap: 22px;
}

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

.contact__info-icon {
  width: 18px;
  height: 18px;
  fill: var(--olive);
  flex: none;
  margin-top: 5px;
}

.contact__info-key {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6e7264;
  margin-bottom: 4px;
}

.contact__info-value {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.contact__form {
  background: var(--bone);
  padding: 46px 44px;
  border: 1px solid rgba(59, 76, 25, 0.16);
}

.contact__form-title {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact__form-sub {
  font-size: 15px;
  color: #6e7264;
  margin-bottom: 30px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.form-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e7264;
  margin-bottom: 8px;
}

.form-field input,
.form-field select {
  height: 40px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(59, 76, 25, 0.24);
  border-radius: 2px;
  padding: 0 14px;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.form-field textarea {
  height: 120px;
  padding: 11px 14px;
  resize: vertical;
  line-height: 1.6;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%233B4C19' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 38px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(59, 76, 25, 0.12);
}

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

.contact__form-fine {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #7b7f71;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(246, 244, 235, 0.62);
  font-size: 15px;
}

.footer__top {
  padding: 74px 0 52px;
}

.footer__top-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 60px;
}

.footer__logo {
  width: 250px;
  margin-bottom: 24px;
  max-width: none;
  flex-shrink: 0;
}

.footer__blurb {
  max-width: 34em;
}

.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 22px;
}

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

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

.footer__phone {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer__address {
  font-style: normal;
  line-height: 1.8;
}

.footer__bar {
  border-top: 1px solid rgba(246, 244, 235, 0.14);
  padding: 26px 0 34px;
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(246, 244, 235, 0.46);
}

.footer__disclaimer {
  padding-bottom: 38px;
}

.footer__disclaimer-text {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(246, 244, 235, 0.42);
  max-width: 96ch;
  margin: 0;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- progressive header scaling before hamburger ---------- */
@media (max-width: 1380px) {
  .header__logo {
    width: 224px;
  }

  .header__nav {
    gap: 22px;
  }
}

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

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

  .header__cta {
    font-size: 13px;
    padding: 10px 16px;
  }
}

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

  .header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header__cta--bar {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 86vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: calc(var(--site-chrome-height) + 24px) 32px 40px;
    background: var(--olive-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    z-index: 45;
    overflow-y: auto;
  }

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

  .header__nav-link {
    font-size: 18px;
    color: #fff;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(246, 244, 235, 0.12);
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
    width: 100%;
  }

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

  .header__nav-phone-label {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass-lt);
    margin-bottom: 8px;
  }

  .header__cta--panel {
    width: 100%;
    white-space: normal;
  }

  .accolades__inner {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .accolades__label {
    max-width: none;
    text-align: center;
  }

  .accolades__row {
    gap: 44px;
  }

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

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

  .about__inner {
    gap: 48px;
  }

  .contact__inner {
    gap: 48px;
  }

  .results__row {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 28px;
  }

  .results__text {
    grid-column: 2;
  }
}

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

  .hero__actions .btn {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 74px 0;
  }

  .hero__visual {
    width: 52%;
  }

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

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

  .about__figure {
    order: -1;
  }

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

@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(22px, 4vw, 32px) 0;
  }

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

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

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

  .hero__image {
    height: auto;
    width: min(88%, 420px);
    margin: 0 auto;
  }
}

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

  body {
    font-size: 16px;
  }

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

  .utility__item--hide-sm {
    display: none;
  }

  .header__inner {
    min-height: 80px;
  }

  .header__logo {
    width: 190px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

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

  .hero__actions .btn {
    width: 100%;
    font-size: 18px;
    padding: 14px 28px;
  }

  .btn {
    font-size: 18px;
    padding: 14px 28px;
  }

  .hero__phone {
    font-size: 22px;
  }

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

  .accolades__label {
    max-width: none;
  }

  .accolades__row {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 26px 30px;
    justify-content: center;
    justify-items: center;
    align-items: center;
  }

  .accolades__badge--mdaf {
    height: calc(78px * 0.74);
  }

  .accolades__badge--ntl {
    height: calc(56px * 0.74);
  }

  .accolades__badge--super {
    height: calc(38px * 0.74);
  }

  .accolades__badge--aaj {
    height: calc(46px * 0.74);
  }

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

  .results__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 26px 0;
  }

  .results__text {
    grid-column: 1;
  }

  .contact__form {
    padding: 32px 24px;
  }

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

  .footer__top-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .about__meta {
    gap: 28px;
  }
}
