:root {
  --ink: #170708;
  --ink-2: #250d0f;
  --oxblood: #3a1013;
  --maroon: #7b2a2c;
  --maroon-lift: #98393b;
  --gold: #c88f39;
  --gold-lt: #deb476;
  --gold-dk: #a8722a;
  --bone: #f5efe6;
  --stone: #e7ddd0;
  --paper: #ffffff;
  --body: #413734;
  --muted: #6f6260;
  --container-max: 1680px;
  --container-pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 162px;
  --serif: "Alegreya", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
}

*,
*::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: 400 17px / 1.75 var(--sans);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 1.05em;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

/* ---------- section eyebrow ---------- */
.section__eyebrow {
  font: 600 13px / 1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.section__eyebrow::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 70px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

.section__eyebrow--center::before {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 70px;
  background: linear-gradient(270deg, var(--gold), transparent);
}

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 600 20px / 1.35 var(--sans);
  letter-spacing: 0.005em;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.btn--gold {
  background: linear-gradient(105deg, var(--gold-lt), var(--gold) 48%, var(--gold-dk));
  color: #2a1204;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.75);
}

.btn--gold:hover {
  background: linear-gradient(105deg, #ecc894, var(--gold-lt) 52%, var(--gold));
}

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

.btn--maroon:hover {
  background: var(--maroon-lift);
}

.btn--ghost {
  border-color: rgba(222, 180, 118, 0.55);
  color: var(--gold-lt);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold-lt);
  background: rgba(222, 180, 118, 0.1);
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  border-bottom: 1px solid rgba(200, 143, 57, 0.22);
}

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

.utility__address,
.utility__meta,
.utility__link {
  font: 500 13px / 1.4 var(--sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #cbb9b2;
}

.utility__link:hover {
  color: var(--gold-lt);
}

.utility__dot {
  color: var(--maroon-lift);
  margin: 0 10px;
}

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

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  min-height: 118px;
  position: relative;
  z-index: 2;
}

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

.header__logo-image {
  width: 156px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  max-width: none;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 34px);
}

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

.header__nav-link {
  display: block;
  font: 500 clamp(13px, 1.05vw, 16px) / 1 var(--sans);
  color: #2f2321;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  right: 0;
}

.header__nav-extras {
  display: none;
}

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

.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding-left: clamp(12px, 1.5vw, 30px);
  margin-left: clamp(4px, 1vw, 26px);
  border-left: 1px solid var(--stone);
  flex-shrink: 0;
}

.header__phone-label {
  font: 600 clamp(10px, 0.85vw, 11px) / 1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.header__phone-number {
  font: 700 clamp(16px, 1.35vw, 20px) / 1.3 var(--sans);
  color: var(--maroon);
  white-space: nowrap;
}

.header__phone-number:hover {
  color: var(--maroon-lift);
}

.header__toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.header__toggle-bar {
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transform: translateX(-50%);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    top 0.28s ease;
}

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

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

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

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

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

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background-color: var(--ink);
  background-image:
    linear-gradient(
      96deg,
      rgba(20, 7, 8, 0.97) 0%,
      rgba(20, 7, 8, 0.92) 40%,
      rgba(45, 14, 17, 0.78) 64%,
      rgba(20, 7, 8, 0.95) 100%
    ),
    url("../assets/images/bg-hero.jpg");
  background-size: cover, cover;
  background-position: center, center;
  border-bottom: 3px solid var(--gold);
  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;
  pointer-events: none;
  background: radial-gradient(52% 78% at 70% 56%, rgba(200, 143, 57, 0.13), transparent 64%);
}

.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: 3;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  padding: clamp(12px, 2vw, 28px) clamp(8px, 1.5vw, 20px) clamp(12px, 2vw, 28px) 0;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__eyebrow::after {
  content: "";
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__title {
  color: #fff;
  font-weight: 500;
  font-size: clamp(2.5rem, 3.9vw, 3.7rem);
  line-height: 1.045;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  text-wrap: balance;
}

.hero__title-accent {
  font-style: normal;
  display: block;
  color: var(--gold-lt);
}

.hero__subtitle {
  color: #e3d5d0;
  font-size: 18px;
  line-height: 1.72;
  max-width: 57ch;
  margin: 0 0 32px;
}

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

.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.hero__phone-label {
  font: 600 11px / 1 var(--sans);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #b79b93;
}

.hero__phone-number {
  font: 700 24px / 1.25 var(--sans);
  color: #fff;
}

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

.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__visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 96%);
  height: 78%;
  border-radius: 50% 50% 0 0 / 62% 62% 0 0;
  background: radial-gradient(closest-side, rgba(200, 143, 57, 0.26), transparent 78%);
  z-index: 0;
}

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

/* ---------- accolades ---------- */
.accolades {
  background: #100405;
  border-bottom: 1px solid rgba(200, 143, 57, 0.22);
}

.accolades__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.4vw, 72px);
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
}

.accolades__label {
  font: 600 12px / 1.5 var(--sans);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #8f7a72;
  text-align: right;
  max-width: 150px;
  padding-right: clamp(4px, 1.4vw, 22px);
  border-right: 1px solid rgba(200, 143, 57, 0.28);
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
}

.accolades__badge {
  flex: 0 0 auto;
  display: block;
  opacity: 0.93;
  width: auto;
}

.accolades__badge:hover {
  opacity: 1;
}

.accolades__badge--mda {
  height: 84px;
}

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

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

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

/* ---------- about ---------- */
.about {
  padding: clamp(64px, 7vw, 104px) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: clamp(420px, 44vw, 600px);
  object-fit: cover;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200, 143, 57, 0.55);
  pointer-events: none;
}

.about__title {
  font-size: clamp(1.85rem, 2.5vw, 2.6rem);
  line-height: 1.16;
  margin: 0 0 22px;
}

.about__lede {
  font-size: 17.5px;
  max-width: 64ch;
}

.about__text {
  max-width: 64ch;
}

.about__callout {
  margin-top: 30px;
  border-left: 3px solid var(--gold);
  background: var(--bone);
  padding: 24px 28px;
  font: 500 17px / 1.6 var(--sans);
  color: var(--oxblood);
}

.about__callout-link {
  color: var(--maroon);
  font-weight: 700;
  border-bottom: 1px solid rgba(123, 42, 44, 0.3);
}

/* ---------- practice ---------- */
.practice {
  background: var(--ink);
  color: #e8dbd6;
  padding: clamp(64px, 7vw, 104px) 0;
  position: relative;
}

.practice__title {
  color: #fff;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  margin: 0 0 12px;
}

.practice__intro {
  max-width: 62ch;
  color: #c9b6b0;
  margin: 0 0 46px;
}

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

.practice-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(200, 143, 57, 0.34);
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.practice-card__thumb {
  position: relative;
  height: 190px;
  flex: 0 0 auto;
}

.practice-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 7, 8, 0.1) 0%,
    rgba(23, 7, 8, 0.34) 45%,
    rgba(23, 7, 8, 0.86) 100%
  );
}

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

.practice-card__title {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.24;
}

.practice-card__text {
  font-size: 15.5px;
  line-height: 1.66;
  color: #c3aea8;
  margin: 0;
}

.practice-card__more {
  margin-top: auto;
  padding-top: 16px;
  font: 600 13px / 1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.practice__footer {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 34px;
  border-top: 1px solid rgba(200, 143, 57, 0.22);
}

.practice__footer-text {
  margin: 0;
  color: #c9b6b0;
  font-size: 16.5px;
  max-width: 52ch;
}

/* ---------- values ---------- */
.values {
  background: var(--bone);
  padding: clamp(64px, 7vw, 104px) 0;
}

.values__title {
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  text-align: center;
  margin: 0 0 54px;
}

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

.values__item {
  padding: 36px 30px 34px;
  border-bottom: 1px solid var(--stone);
  border-right: 1px solid var(--stone);
}

.values__item:first-child {
  border-left: 1px solid var(--stone);
}

.values__item-title {
  font-size: 1.28rem;
  line-height: 1.3;
  margin: 0 0 12px;
  position: relative;
  padding-top: 22px;
}

.values__item-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.values__item-text {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--muted);
}

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  color: #fff;
  padding: clamp(72px, 8vw, 120px) 0;
  background-image:
    linear-gradient(rgba(23, 7, 8, 0.86), rgba(23, 7, 8, 0.9)),
    url("../assets/images/bg-testimonial.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.testimonial__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__title {
  color: #fff;
  font-size: clamp(1.6rem, 2.1vw, 2.1rem);
  margin: 0 0 40px;
}

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

.testimonial__mark {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.testimonial__pull {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.34;
  color: #fff;
  margin: 0 0 22px;
}

.testimonial__text {
  font-size: 17px;
  line-height: 1.8;
  color: #dcc9c4;
  max-width: 70ch;
  margin: 0 auto 30px;
}

.testimonial__cite {
  font: 600 13px / 1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-style: normal;
}

/* ---------- contact ---------- */
.contact {
  padding: clamp(64px, 7vw, 104px) 0;
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 80px);
}

.contact__title {
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  line-height: 1.16;
  margin: 0 0 20px;
}

.contact__lead {
  color: var(--muted);
}

.contact__list {
  margin: 34px 0 0;
  display: grid;
  gap: 22px;
}

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

.contact__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid var(--stone);
  display: grid;
  place-items: center;
  color: var(--maroon);
}

.contact__icon svg {
  fill: currentColor;
}

.contact__label {
  display: block;
  font: 600 12px / 1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact__value {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
}

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

.contact-form {
  background: var(--bone);
  border: 1px solid var(--stone);
  padding: clamp(28px, 3vw, 42px);
}

.contact-form__title {
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.contact-form__sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 26px;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form__label {
  display: block;
  font: 600 12px / 1 var(--sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font: 400 16px / 40px var(--sans);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--maroon) 50%),
    linear-gradient(135deg, var(--maroon) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 17px,
    calc(100% - 14px) 17px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact-form__textarea {
  height: 120px;
  padding: 12px 14px;
  line-height: 1.6;
  resize: vertical;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 143, 57, 0.16);
  outline: none;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.contact-form__disclaimer {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 16px 0 0;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: #bda9a3;
  padding: clamp(54px, 6vw, 80px) 0 0;
  border-top: 3px solid var(--gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.7fr));
  gap: clamp(30px, 4vw, 64px);
  padding-bottom: 52px;
}

.footer__logo {
  width: 230px;
  height: auto;
  margin-bottom: 22px;
  filter: brightness(1.06);
  max-width: none;
}

.footer__text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #b8a49e;
}

.footer__heading {
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer__list {
  display: grid;
  gap: 12px;
}

.footer__link {
  font-size: 15.5px;
  color: #b8a49e;
}

.footer__link:hover,
.footer__phone:hover {
  color: var(--gold-lt);
}

.footer__phone {
  font: 700 24px / 1.3 var(--sans);
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.footer__address {
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.75;
  color: #b8a49e;
}

.footer__base {
  border-top: 1px solid rgba(200, 143, 57, 0.2);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 13px;
  color: #8d7a75;
  margin: 0;
}

/* ---------- progressive header scaling ---------- */
@media (max-width: 1400px) {
  .header__nav-list {
    gap: clamp(10px, 1.2vw, 22px);
  }

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

  .header__phone-number {
    font-size: 18px;
  }
}

@media (max-width: 1280px) {
  .practice__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .values__item:nth-child(3) {
    border-left: 1px solid var(--stone);
  }

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

  .header__phone-number {
    font-size: 17px;
  }

  .header__inner {
    gap: 18px;
  }
}

/* ---------- mobile nav ≤1200px ---------- */
@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(23, 7, 8, 0.55);
    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: block;
  }

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

  .header__toggle {
    display: inline-flex;
  }

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

  .header__cta {
    display: none;
  }

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

  .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: 16px 0;
    border-bottom: 1px solid var(--stone);
  }

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

  .header__nav-extras {
    display: block;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--stone);
  }

  .header__phone--panel {
    align-items: flex-start;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }

  .header__phone--panel .header__phone-number {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-pad: 30px;
  }

  .hero__visual {
    width: 42%;
  }

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

  .about__media {
    order: 2;
  }

  .about__image {
    height: 380px;
  }
}

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

  .hero__actions {
    flex-wrap: wrap;
    gap: 18px;
  }
}

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

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

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

  .hero__title {
    font-size: 2.05rem;
  }

  .hero__subtitle {
    font-size: 16.5px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 320px;
    justify-content: flex-start;
    margin-top: 8px;
  }

  .hero__visual::before {
    width: min(420px, 90%);
    left: 30%;
  }

  .hero__image {
    height: min(440px, 70vw);
    max-width: 100%;
  }
}

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

  .container {
    width: 100%;
  }

  body {
    font-size: 16px;
  }

  .utility__inner {
    justify-content: center;
    text-align: center;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .utility__address {
    display: none;
  }

  .header__inner {
    min-height: 92px;
  }

  .accolades__inner {
    gap: 26px;
  }

  .accolades__label {
    max-width: none;
    text-align: center;
    border-right: 0;
    padding-right: 0;
    padding-bottom: 4px;
    flex: 1 0 100%;
    justify-content: center;
  }

  .practice__cards,
  .values__grid,
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .values__item,
  .values__item:nth-child(3) {
    border-left: 1px solid var(--stone);
  }

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

  .testimonial__mark {
    font-size: 70px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

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

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

  html {
    scroll-behavior: auto;
  }
}
