@font-face {
  font-family: "SourceSerif";
  src: url("../assets/fonts/source-serif.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
}

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

:root {
  --ink: #0a1521;
  --navy: #13283c;
  --navy-2: #1b3a55;
  --brass: #be9247;
  --brass-lt: #e3c489;
  --paper: #f4f2ec;
  --stone: #e6e2d9;
  --body: #3c4652;
  --hair: rgba(190, 146, 71, 0.34);
  --container-max: 1720px;
  --container-width: 95%;
  --pad: 45px;
  --site-chrome-height: 138px;
  --nav-breakpoint: 1200px;
  --ff-d: "SourceSerif", Georgia, "Times New Roman", serif;
  --ff-b: "InstrumentSans", "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-family: var(--ff-b);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

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

p {
  margin: 0 0 1.15em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-d);
  color: var(--navy);
  margin: 0 0 0.55em;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.012em;
}

:focus-visible {
  outline: 2.5px 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);
}

/* ---------- hexagon motif ---------- */
.hexmark {
  width: 12px;
  height: 14px;
  flex: 0 0 12px;
  background: var(--brass);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.hexmark--offset {
  margin-top: 9px;
}

/* ---------- section shared ---------- */
.section {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}

.section--tight {
  padding-top: 78px;
  padding-bottom: 78px;
}

.section--stone {
  background: var(--stone);
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--ff-b);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
}

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

.section__title {
  font-size: clamp(27px, 2.35vw, 40px);
  margin: 0 0 20px;
  text-wrap: balance;
}

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

.btn--primary {
  background: var(--brass);
  color: #12212f;
  border-color: var(--brass);
}

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

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

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

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

/* ---------- utility strip ---------- */
.utility {
  background: #07111b;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
}

.utility__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 42px;
  flex-wrap: wrap;
}

.utility__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.utility__spanish {
  color: var(--brass-lt);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.utility__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility__link:hover {
  color: #fff;
}

/* ---------- header ---------- */
.header {
  background: var(--ink);
  position: relative;
  z-index: 40;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  min-height: 96px;
  gap: 34px;
  position: relative;
}

.header__logo {
  flex-shrink: 0;
}

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

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  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: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__nav-extras {
  display: none;
}

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

.header__cta .btn {
  font-size: clamp(14px, 1vw, 16px);
  padding: clamp(11px, 1vw, 14px) clamp(18px, 1.8vw, 27px);
}

.header__toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 5;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

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

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

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  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.webp");
  background-size: cover;
  background-position: center 32%;
  opacity: 0.34;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    97deg,
    #08131f 0%,
    #08131f 30%,
    rgba(9, 19, 31, 0.94) 44%,
    rgba(10, 21, 34, 0.62) 60%,
    rgba(12, 26, 41, 0.3) 76%,
    rgba(12, 26, 41, 0.2) 100%
  );
}

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

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

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

.hero__eyebrow {
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero__title {
  color: #fff;
  font-size: clamp(30px, 2.85vw, 46px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin: 0 0 20px;
  text-wrap: balance;
}

.hero__lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17.5px;
  line-height: 1.68;
  margin: 0 0 28px;
  max-width: 49ch;
}

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

.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero__phone-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.hero__phone-link {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

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

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

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--paper);
  border-bottom: 1px solid rgba(19, 40, 60, 0.1);
}

.accolades__inner {
  display: flex;
  align-items: center;
  gap: clamp(30px, 3.5vw, 64px);
  padding-top: 34px;
  padding-bottom: 34px;
  flex-wrap: wrap;
}

.accolades__label {
  margin: 0;
  flex: 0 0 auto;
  max-width: 200px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.accolades__label .hexmark {
  margin-top: 5px;
}

.accolades__row {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(26px, 3vw, 58px);
  flex-wrap: wrap;
}

.accolades__badge {
  width: auto;
  flex: 0 0 auto;
  opacity: 0.9;
}

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

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

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

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

/* ---------- credentials ---------- */
.creds {
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.creds__inner {
  display: flex;
  flex-wrap: wrap;
  padding-top: 38px;
  padding-bottom: 38px;
  gap: 0;
}

.creds__item {
  flex: 1 1 210px;
  padding: 6px 30px;
  border-left: 1px solid rgba(190, 146, 71, 0.38);
}

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

.creds__number {
  font-family: var(--ff-d);
  font-size: 40px;
  font-weight: 600;
  color: var(--brass-lt);
  line-height: 1;
  letter-spacing: -0.02em;
}

.creds__text {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 9px;
  line-height: 1.5;
}

/* ---------- about ---------- */
.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
  gap: clamp(38px, 4.5vw, 84px);
  align-items: center;
}

.about__figure {
  position: relative;
  z-index: 1;
}

.about__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about__figure::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1.5px solid var(--brass);
  z-index: 1;
}

.about__stamp {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  background: var(--navy);
  color: #fff;
  padding: 22px 26px;
  max-width: 78%;
}

.about__stamp-title {
  font-family: var(--ff-d);
  font-size: 27px;
  color: var(--brass-lt);
  line-height: 1;
  font-weight: 600;
}

.about__stamp-text {
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 6px;
}

.about__callout {
  border-left: 3px solid var(--brass);
  padding: 4px 0 4px 22px;
  margin: 26px 0 30px;
  color: var(--navy);
  font-size: 17.5px;
  line-height: 1.7;
}

.about__callout strong {
  font-weight: 600;
}

/* ---------- practice ---------- */
.practice__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.practice__title {
  margin: 0;
}

.practice__lead {
  margin: 0;
  max-width: 46ch;
}

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

.practice-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid var(--brass);
  box-shadow: 0 1px 0 rgba(19, 40, 60, 0.1);
}

.practice-card__thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 21, 33, 0) 45%,
    rgba(10, 21, 33, 0.55) 100%
  );
}

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

.practice-card__title {
  font-size: 23px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.practice-card__text {
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.practice-card__more {
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(19, 40, 60, 0.14);
}

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

/* ---------- values ---------- */
.values {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.values__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-values.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.values__inner {
  position: relative;
}

.values__title {
  color: #fff;
}

.values__lead {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.76);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 46px;
}

.values__item {
  border-top: 2px solid var(--brass);
  padding-top: 22px;
}

.values__item-title {
  color: #fff;
  font-size: 20.5px;
  margin: 0 0 11px;
}

.values__item-text {
  font-size: 16px;
  line-height: 1.66;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- testimonial ---------- */
.testimonial__inner {
  max-width: 1060px;
  text-align: center;
}

.testimonial__stars {
  color: var(--brass);
  letter-spacing: 0.24em;
  font-size: 19px;
  margin-bottom: 22px;
}

.testimonial__quote {
  margin: 0;
  font-family: var(--ff-d);
  font-size: clamp(22px, 2.05vw, 33px);
  line-height: 1.34;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.012em;
}

.testimonial__text {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--body);
  max-width: 74ch;
  margin: 26px auto 24px;
}

.testimonial__author {
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ---------- contact ---------- */
.contact {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-contact.webp");
  background-size: cover;
  background-position: center 40%;
  opacity: 0.26;
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 44%);
  gap: clamp(38px, 4.5vw, 78px);
  align-items: start;
}

.contact__title {
  color: #fff;
  font-size: clamp(27px, 2.3vw, 39px);
}

.contact__lede {
  color: rgba(255, 255, 255, 0.8);
  max-width: 66ch;
}

.contact__lines {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact__line-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-lt);
  font-weight: 600;
  margin-bottom: 3px;
}

.contact__line-value {
  font-family: var(--ff-d);
  font-size: 21px;
  color: #fff;
  line-height: 1.4;
}

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

.lead-form {
  background: var(--paper);
  padding: 38px 38px 34px;
}

.lead-form__title {
  font-size: 23px;
  margin: 0 0 6px;
}

.lead-form__fine {
  font-size: 14.5px;
  color: #5a6572;
  margin: 0 0 24px;
}

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

.lead-form__label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--navy);
  margin-bottom: 7px;
}

.lead-form__input,
.lead-form__select,
.lead-form__textarea {
  width: 100%;
  font-family: var(--ff-b);
  font-size: 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #c9c4b7;
  border-radius: 4px;
  padding: 0 14px;
  height: 40px;
}

.lead-form__textarea {
  height: 120px;
  padding: 11px 14px;
  resize: vertical;
  line-height: 1.55;
}

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

.lead-form__input:focus,
.lead-form__select:focus,
.lead-form__textarea:focus {
  border-color: var(--brass);
  outline: none;
  box-shadow: 0 0 0 3px rgba(190, 146, 71, 0.2);
}

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

.lead-form__disc {
  font-size: 13px;
  line-height: 1.55;
  color: #6b7480;
  margin: 16px 0 0;
}

/* ---------- footer ---------- */
.footer {
  background: #07111b;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15.5px;
}

.footer__top {
  padding-top: 64px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 44px;
}

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

.footer__blurb {
  margin: 0;
  max-width: 38ch;
}

.footer__heading {
  color: #fff;
  font-family: var(--ff-b);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}

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

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

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

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

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

.concept {
  background: var(--brass);
  color: #0f1e2c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 11px 20px;
}

/* ---------- responsive: progressive header scaling ---------- */
@media (max-width: 1440px) {
  .hero__content {
    max-width: 52%;
  }

  .header__nav-list {
    gap: 26px;
  }

  .header__logo img {
    width: 182px;
  }
}

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

  .header__nav-list {
    gap: 20px;
  }

  .header__inner {
    gap: 22px;
  }
}

/* ---------- mobile nav ≤1200px ---------- */
@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(7, 17, 27, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

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

  .header__inner {
    z-index: 2;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 84px 28px 40px;
    background: var(--ink);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

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

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

  .header__nav-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 17px;
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: block;
    margin-left: auto;
  }

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

  .header__logo img {
    width: 182px;
  }

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

  .hero__content {
    max-width: 56%;
  }
}

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

  .contact__inner,
  .about__inner {
    min-width: 0;
  }

  .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, 48px) clamp(20px, 3vw, 32px) 0;
  }

  .hero__veil {
    background: linear-gradient(
      180deg,
      #08131f 0%,
      rgba(9, 18, 29, 0.9) 55%,
      rgba(11, 23, 36, 0.62) 100%
    );
  }

  .hero__inner {
    height: auto;
  }

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

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

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

  .btn {
    white-space: normal;
    text-align: center;
    font-size: 18px;
    padding: 16px 28px;
  }

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

  .about__figure {
    max-width: 520px;
  }

  .about__figure::after {
    inset: 14px -14px -14px 14px;
  }

  .practice__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

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

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

  .creds__item {
    flex: 1 1 45%;
    padding: 6px 22px;
    border-left: 0;
  }

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

  .accolades__inner {
    justify-content: center;
    gap: 26px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .accolades__label {
    flex: 1 1 100%;
    max-width: none;
    justify-content: center;
    text-align: center;
  }

  .accolades__row {
    flex: 1 1 100%;
    justify-content: center;
    gap: 34px 40px;
  }

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

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

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

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

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .utility__inner {
    min-height: 0;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 13.5px;
    gap: 14px;
  }

  .utility__sep,
  .utility__address {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: clamp(32px, 6vw, 48px) clamp(22px, 4vw, 28px) 0;
  }

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

@media (max-width: 640px) {
  .hero__title {
    font-size: 31px;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    font-size: 17px;
    padding: 15px 22px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

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

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

  .lead-form {
    padding: 28px 22px 26px;
  }

  .creds__item {
    flex: 1 1 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .about__stamp {
    position: relative;
    max-width: none;
    margin-top: 14px;
  }

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

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