:root {
  --ink: #0e1729;
  --ink-2: #16233b;
  --ink-3: #1e2e4a;
  --gold: #b08a4a;
  --gold-lt: #d6ba88;
  --gold-dk: #8e6d36;
  --paper: #f7f5f1;
  --paper-2: #efebe3;
  --line: #e1dcd3;
  --body: #434a59;
  --white: #fff;
  --pad: 45px;
  --display: "Newsreader", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #20293a;
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

.site {
  width: 95%;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
}

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

/* ---------- Shared section helpers ---------- */
.section__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section__eyebrow::after {
  content: "";
  height: 1px;
  flex: 0 0 42px;
  background: var(--gold);
  opacity: 0.55;
}

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

.section__eyebrow--center::before {
  content: "";
  height: 1px;
  flex: 0 0 42px;
  background: var(--gold);
  opacity: 0.55;
}

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

.section__eyebrow--light::before,
.section__eyebrow--light::after {
  background: var(--gold-lt);
}

.section--dark .section__title,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

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

.section__title--spaced {
  margin-bottom: 38px;
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section__head .section__title {
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 17px 34px;
  border-radius: 999px;
  line-height: 1.35;
  max-width: 100%;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--gold);
  color: #12192a;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

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

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.btn--outline:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- Header ---------- */
.header {
  background: var(--ink);
  border-bottom: 1px solid rgba(214, 186, 136, 0.22);
  position: relative;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
  padding-top: 20px;
  padding-bottom: 20px;
}

.header__logo {
  flex-shrink: 0;
}

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

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 24px);
}

.header__nav-link {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: #eae7e1;
  white-space: nowrap;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

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

.header__nav-link:hover {
  color: var(--white);
}

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

.header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: #12192a;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.02em;
  padding: clamp(9px, 0.9vw, 12px) clamp(14px, 1.5vw, 24px);
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.35;
  max-width: 100%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header__cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.header__cta--panel {
  display: none;
}

.header__nav-extras {
  display: none;
}

.header__nav-close {
  display: none;
}

.header__toggle {
  display: none;
}

.header__overlay {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
  background: var(--ink) url("../assets/images/bg-hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 18, 33, 0.96) 0%,
    rgba(12, 20, 37, 0.9) 42%,
    rgba(14, 23, 41, 0.5) 68%,
    rgba(14, 23, 41, 0.32) 100%
  );
}

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

.hero__content {
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  padding: clamp(16px, 2.5vw, 34px) clamp(0px, 1vw, 12px) clamp(16px, 2.5vw, 34px) 0;
  color: #e9e6e0;
  position: relative;
  z-index: 3;
}

.hero__title {
  color: var(--white);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.06;
  font-weight: 400;
  margin: 0 0 18px;
}

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

.hero__subtitle {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  color: #cfcbc3;
  margin: 0 0 30px;
  line-height: 1.45;
}

.hero__rule {
  width: 66px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 26px;
}

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

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

.hero__phone-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233, 230, 224, 0.62);
}

.hero__phone-link {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

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

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

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

/* ---------- Accolades ---------- */
.accolades {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.accolades__label {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 150px;
  line-height: 1.5;
}

.accolades__label em {
  display: block;
  font-family: var(--display);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--gold-dk);
}

.accolades__badges {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px 40px;
  flex-wrap: wrap;
}

.accolades__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  flex: 0 0 auto;
}

.accolades__badge img {
  height: auto;
  opacity: 0.82;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.accolades__badge:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.accolades__badge--mdaf img {
  width: 75px;
}

.accolades__badge--ntl img {
  width: 120px;
}

.accolades__badge--super img {
  width: 156px;
}

.accolades__badge--aaj img {
  width: 136px;
}

/* ---------- About ---------- */
.about {
  background: var(--white);
  padding-top: 96px;
  padding-bottom: 96px;
}

.about__inner {
  display: flex;
  gap: 70px;
  align-items: stretch;
}

.about__media {
  flex: 0 0 40%;
  position: relative;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 26px;
  bottom: 26px;
  width: 3px;
  background: var(--gold);
}

.about__body {
  flex: 1 1 auto;
  align-self: center;
  min-width: 0;
}

.about__title {
  margin: 0 0 26px;
  font-size: clamp(30px, 2.9vw, 44px);
}

.about__lede {
  font-size: 18px;
  line-height: 1.8;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about__stat b {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  color: var(--gold-dk);
  line-height: 1;
}

.about__stat span {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.72;
}

/* ---------- Practice ---------- */
.practice {
  background: var(--paper);
  padding-top: 92px;
  padding-bottom: 96px;
}

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

.practice-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14, 23, 41, 0.13);
  border-color: rgba(176, 138, 74, 0.5);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 76 / 52;
  overflow: hidden;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 23, 41, 0) 45%, rgba(14, 23, 41, 0.5) 100%);
}

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

.practice-card__title {
  font-size: 22px;
  margin: 0 0 12px;
}

.practice-card__body p {
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.practice-card__link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.practice-card__link svg {
  width: 14px;
  height: 9px;
  transition: transform 0.25s ease;
}

.practice-card:hover .practice-card__link svg {
  transform: translateX(5px);
}

/* ---------- Results ---------- */
.results {
  background: var(--ink) url("../assets/images/bg-results.jpg") center / cover no-repeat;
  position: relative;
  padding-top: 88px;
  padding-bottom: 88px;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 33, 0.9), rgba(11, 18, 33, 0.94));
}

.results__inner {
  position: relative;
}

.results .section__head {
  margin-bottom: 46px;
}

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

.results__item {
  padding: 14px 30px;
  text-align: center;
  border-left: 1px solid rgba(214, 186, 136, 0.24);
}

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

.results__item span {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233, 230, 224, 0.7);
  margin-bottom: 14px;
}

.results__item b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 2.7vw, 42px);
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -0.01em;
}

.results__note {
  text-align: center;
  margin: 44px auto 0;
  max-width: 680px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(233, 230, 224, 0.55);
}

/* ---------- Values ---------- */
.values {
  background: var(--white);
  padding-top: 92px;
  padding-bottom: 96px;
}

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

.values__item {
  padding: 38px 30px 8px;
  border-left: 1px solid var(--line);
}

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

.values__item:last-child {
  padding-right: 0;
}

.values__mark {
  width: 26px;
  height: 26px;
  margin-bottom: 20px;
  color: var(--gold);
}

.values__title {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 14px;
}

.values__item p {
  font-size: 15.5px;
  line-height: 1.72;
  margin: 0;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--paper-2);
  padding-top: 86px;
  padding-bottom: 86px;
}

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

.testimonial__quote-mark {
  font-family: var(--display);
  font-size: 86px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 18px;
}

.testimonial__headline {
  font-size: clamp(24px, 2.3vw, 34px);
  margin: 0 0 22px;
  font-style: italic;
}

.testimonial__quote {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.68;
  color: #3a4150;
}

.testimonial__cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 22px;
  color: var(--gold);
}

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

/* ---------- Contact ---------- */
.contact {
  background: var(--ink-2);
  position: relative;
  padding-top: 88px;
  padding-bottom: 88px;
}

.contact__inner {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.contact__aside {
  flex: 0 0 34%;
}

.contact__title {
  font-size: clamp(28px, 2.6vw, 40px);
  margin: 0 0 20px;
}

.contact__aside p {
  color: rgba(233, 230, 224, 0.72);
  font-size: 16.5px;
}

.contact__info-list {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(214, 186, 136, 0.24);
  display: grid;
  gap: 22px;
}

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

.contact__info svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--gold-lt);
  margin-top: 4px;
}

.contact__info-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233, 230, 224, 0.55);
  margin-bottom: 4px;
}

.contact__info-value {
  color: var(--white);
  font-size: 16.5px;
  line-height: 1.55;
  font-family: var(--display);
}

.contact__info-value a:hover {
  color: var(--gold-lt);
}

.contact-form {
  flex: 1 1 auto;
  background: var(--white);
  padding: 40px 42px 42px;
  border-top: 3px solid var(--gold);
}

.contact-form__title {
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--ink);
}

.contact-form__subtitle {
  font-size: 14.5px;
  color: #6b7280;
  margin: 0 0 26px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

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

.contact-form__field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-form__field input,
.contact-form__field select {
  height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: #fbfaf8;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%238E6D36' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 34px;
}

.contact-form__field textarea {
  height: 120px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: #fbfaf8;
  resize: vertical;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

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

.contact-form__submit button {
  font-family: var(--sans);
  border: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 999px;
  line-height: 1.35;
  max-width: 100%;
  white-space: normal;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form__submit button:hover {
  background: var(--gold);
  color: #12192a;
  transform: translateY(-2px);
}

.contact-form__submit small {
  font-size: 12.5px;
  color: #7a8290;
  line-height: 1.5;
  max-width: 280px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(233, 230, 224, 0.68);
  padding-top: 64px;
  padding-bottom: 34px;
}

.footer__top {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(214, 186, 136, 0.2);
}

.footer__brand {
  flex: 0 0 34%;
}

.footer__brand img {
  width: 100%;
  max-width: 392px;
  height: auto;
  margin-bottom: 22px;
}

.footer__brand p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.footer__cols {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-family: var(--sans);
  margin: 0 0 18px;
}

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

.footer__list a {
  font-size: 15px;
}

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

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

.footer__bottom {
  padding-top: 26px;
  display: flex;
  gap: 34px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__disclaimer,
.footer__copy {
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
  color: rgba(233, 230, 224, 0.45);
}

.footer__disclaimer {
  max-width: 900px;
}

.footer__copy {
  white-space: nowrap;
}

/* ---------- Progressive header scaling (before hamburger) ---------- */
@media (max-width: 1400px) {
  .header__nav {
    gap: 16px;
  }

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

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

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

  .header__nav {
    gap: 12px;
  }

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

  .header__cta--bar {
    font-size: 12px;
    padding: 9px 14px;
  }

  .about__inner {
    gap: 44px;
  }

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

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

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

  .values__item:nth-child(2) {
    padding-right: 0;
  }

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

  .contact__inner {
    flex-direction: column;
    gap: 40px;
  }

  .contact__aside {
    flex: 1 1 auto;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    flex: 1 1 auto;
  }
}

/* ---------- Nav breakpoint: hamburger at 1200px ---------- */
@media (max-width: 1200px) {
  .header__toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(214, 186, 136, 0.5);
    color: #eae7e1;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 999px;
    cursor: pointer;
    z-index: 110;
  }

  .header__toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 16px;
  }

  .header__toggle-line {
    display: block;
    height: 1.5px;
    width: 100%;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  body.is-nav-open .header__toggle-line:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  body.is-nav-open .header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  body.is-nav-open .header__toggle-line:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .header__cta--bar {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 22, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 105;
  }

  body.is-nav-open .header__overlay {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    margin: 0;
    padding: 72px 28px 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: var(--ink-2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 110;
    overflow-y: auto;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
  }

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

  .header__nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(214, 186, 136, 0.45);
    border-radius: 999px;
    background: transparent;
    color: var(--gold-lt);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .header__nav-link {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(214, 186, 136, 0.14);
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(214, 186, 136, 0.24);
  }

  .header__nav-phone {
    font-family: var(--display);
    font-size: 22px;
    color: var(--white);
  }

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

  .header__cta--panel {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    font-size: 18px;
    padding: 15px 26px;
  }

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

@media (max-width: 900px) {
  .about__inner {
    flex-direction: column;
  }

  .about__media {
    flex: 1 1 auto;
    height: 420px;
  }

  .about__media::after {
    display: none;
  }

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

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

  .hero__inner {
    height: auto;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 clamp(20px, 4vw, 32px);
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 320px;
    justify-content: center;
  }

  .hero__image {
    height: min(400px, 55vh);
    width: auto;
    max-width: 100%;
  }
}

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

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

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

  .site {
    width: 100%;
  }

  .section__eyebrow {
    flex-wrap: wrap;
  }

  .section__eyebrow::after,
  .section__eyebrow--center::before {
    display: none;
  }

  .practice__cards,
  .results__grid,
  .values__grid,
  .contact-form__grid,
  .footer__cols {
    grid-template-columns: 1fr;
  }

  .results__item {
    border-left: 0;
    border-top: 1px solid rgba(214, 186, 136, 0.24);
    padding: 22px 0;
  }

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

  .values__item {
    border-left: 0;
    padding: 32px 0 8px;
    border-top: 1px solid var(--line);
  }

  .values__item:first-child {
    border-top: 0;
    padding-top: 32px;
  }

  .about__stats {
    gap: 26px;
    flex-wrap: wrap;
  }

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

  .accolades__label {
    max-width: none;
  }

  .accolades__badges {
    justify-content: center;
    gap: 26px 32px;
  }

  .accolades__badge {
    height: 70px;
  }

  .contact-form {
    padding: 28px 24px 30px;
  }

  .about,
  .practice,
  .values,
  .results,
  .testimonial,
  .contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer__copy {
    white-space: normal;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
