:root {
  --ink: #0b1622;
  --ink-2: #132338;
  --ink-3: #1b2e48;
  --brass: #b08a4a;
  --brass-lt: #c9a461;
  --cream: #f8f5f0;
  --cream-2: #f1ece3;
  --line: #e1dbd0;
  --line-dk: rgba(255, 255, 255, 0.14);
  --body: #4b525c;
  --white: #fff;
  --display: "Newsreader", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 150px;
  --atty-w: min(55%, 720px);
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

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

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::after {
  content: "";
  height: 1px;
  width: 54px;
  background: linear-gradient(90deg, var(--brass), rgba(176, 138, 74, 0));
}

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

.eyebrow--center::before {
  content: "";
  height: 1px;
  width: 54px;
  background: linear-gradient(270deg, var(--brass), rgba(176, 138, 74, 0));
}

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

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

.btn--brass {
  background: var(--brass);
  color: #fff;
  box-shadow: 0 12px 30px -14px rgba(176, 138, 74, 0.75);
}

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

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

.btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

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

.btn--ink:hover {
  background: var(--ink-3);
}

.btn--sm {
  font-size: 16px;
  padding: 15px 30px;
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

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

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar__left b,
.topbar__right b {
  color: #fff;
  font-weight: 500;
}

.topbar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass-lt);
  display: inline-block;
  margin-right: 9px;
}

/* ---------- header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  height: 104px;
}

.header__logo {
  width: 200px;
  flex-shrink: 0;
}

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

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

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

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

.header__nav-link:hover::after,
.header__nav-link--active::after {
  transform: scaleX(1);
}

.header__cta {
  flex-shrink: 0;
  font-size: clamp(13px, 1.1vw, 16px);
  padding: clamp(12px, 1.1vw, 15px) clamp(18px, 1.8vw, 30px);
}

.header__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 70;
}

.header__burger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header--nav-open .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header--nav-open .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header--nav-open .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav-close {
  display: none;
}

.header__nav-extras {
  display: none;
}

.header__overlay {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  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;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.17;
  filter: contrast(1.05);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 95% at 12% 100%,
      rgba(27, 46, 72, 0.55) 0%,
      rgba(11, 22, 34, 0) 60%
    ),
    linear-gradient(
      95deg,
      rgba(11, 22, 34, 0.97) 0%,
      rgba(11, 22, 34, 0.9) 42%,
      rgba(19, 35, 56, 0.72) 68%,
      rgba(19, 35, 56, 0.55) 100%
    );
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 4;
  background: linear-gradient(
    90deg,
    var(--brass) 0%,
    var(--brass-lt) 38%,
    rgba(176, 138, 74, 0.15) 100%
  );
}

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

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

.hero__title {
  color: #fff;
  font-size: clamp(38px, 3.55vw, 56px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

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

.hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 17.5px);
  font-weight: 500;
  color: #fff;
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin: 0 0 20px;
  padding-left: 18px;
  border-left: 2px solid var(--brass);
}

.hero__lede {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  max-width: 520px;
  margin: 0 0 30px;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.01em;
  margin: 0 0 26px;
}

.hero__phone-label {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 12px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

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

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

.accolades__inner {
  padding-top: 44px;
  padding-bottom: 44px;
}

.accolades__head {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8b8378;
  text-align: center;
  margin: 0 0 28px;
}

.accolades__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.accolades__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.accolades__item--million img {
  height: 96px;
}

.accolades__item--ntl img {
  height: 84px;
}

.accolades__item--super img {
  height: 40px;
}

.accolades__item--aaj img {
  height: 62px;
}

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

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

.section__title {
  font-size: clamp(31px, 2.55vw, 42px);
  line-height: 1.16;
  margin: 0 0 8px;
}

.section__subtitle {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 26px;
}

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

.section__header .section__title {
  margin-bottom: 14px;
}

/* ---------- about / two column ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 76px;
  align-items: center;
}

.about__copy p {
  font-size: 16.5px;
}

.about__callout {
  margin-top: 32px;
  border-left: 3px solid var(--brass);
  background: var(--cream-2);
  padding: 24px 28px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
}

.section--cream .about__callout {
  background: #fff;
}

.about__callout a {
  color: var(--brass);
  font-weight: 600;
  font-family: var(--sans);
  font-size: 18px;
  white-space: nowrap;
}

.about__media {
  position: relative;
}

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

.about__media::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 130px;
  height: 130px;
  border-left: 3px solid var(--brass);
  border-top: 3px solid var(--brass);
}

.about__stat {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: var(--ink);
  color: #fff;
  padding: 28px 34px;
  max-width: 262px;
}

.about__stat-value {
  display: block;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: var(--brass-lt);
  margin-bottom: 6px;
}

.about__stat-label {
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- practice areas ---------- */
.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.practice-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.section--cream .practice-card {
  border-color: #e6dfd3;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -28px rgba(11, 22, 34, 0.45);
  border-color: var(--brass);
}

.practice-card__thumb {
  position: relative;
  overflow: hidden;
  height: 206px;
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 22, 34, 0) 40%,
    rgba(11, 22, 34, 0.55) 100%
  );
}

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

.practice-card__body h3 {
  font-size: 23px;
  line-height: 1.25;
  margin: 0 0 12px;
}

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

.practice-card__more {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

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

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

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

.results__bg {
  position: absolute;
  inset: 0;
}

.results__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}

.results__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 22, 34, 0.9),
    rgba(11, 22, 34, 0.94)
  );
}

.results__inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.results .section__title {
  color: #fff;
}

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

.results__item {
  padding: 44px 34px 40px;
  border-right: 1px solid var(--line-dk);
  border-bottom: 1px solid var(--line-dk);
}

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

.results__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.results__figure {
  font-family: var(--display);
  font-size: clamp(34px, 2.9vw, 46px);
  line-height: 1;
  color: var(--brass-lt);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.results__desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0 0 22px;
  min-height: 52px;
}

.results__link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.results__link::after {
  content: "→";
  color: var(--brass-lt);
  transition: transform 0.3s ease;
}

.results__link:hover::after {
  transform: translateX(5px);
}

/* ---------- values ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

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

.values__num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin: 0 0 14px;
}

.values__item h3 {
  font-size: 21px;
  line-height: 1.3;
  margin: 0 0 12px;
}

.values__item p {
  font-size: 15.5px;
  line-height: 1.7;
}

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

.testimonial__inner {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
}

.testimonial__mark {
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 230px;
  line-height: 1;
  color: rgba(201, 164, 97, 0.13);
  z-index: 1;
  pointer-events: none;
}

.testimonial__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonial__quote {
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.5;
  color: #fff;
  font-weight: 300;
  margin: 0 0 20px;
}

.testimonial__quote span {
  display: block;
}

.testimonial__quote span + span {
  margin-top: 22px;
}

.testimonial__stars {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin: 0 0 26px;
  color: var(--brass-lt);
}

.testimonial__name {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 74px;
  align-items: start;
}

.contact__aside .section__title {
  margin-bottom: 16px;
}

.contact__list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.contact__list-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact__list-item:first-child {
  border-top: 1px solid var(--line);
}

.contact__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
}

.contact__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b8378;
  margin: 0 0 4px;
}

.contact__value {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.4;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px;
  box-shadow: 0 30px 70px -40px rgba(11, 22, 34, 0.4);
}

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

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

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

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

.form-card__field input,
.form-card__field select,
.form-card__field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 0;
  padding: 0 15px;
  height: 40px;
  width: 100%;
  transition: 0.22s ease;
}

.form-card__field textarea {
  height: 120px;
  padding: 12px 15px;
  resize: vertical;
  line-height: 1.6;
}

.form-card__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230B1622' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

.form-card__field input:focus,
.form-card__field select:focus,
.form-card__field textarea:focus {
  outline: 0;
  border-color: var(--brass);
  background: #fff;
}

.form-card .btn {
  width: 100%;
  margin-top: 22px;
}

.form-card__note {
  font-size: 13px;
  color: #8b8378;
  margin: 16px 0 0;
  line-height: 1.6;
}

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

.footer__inner {
  padding-top: 74px;
  padding-bottom: 34px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.85fr);
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-dk);
}

.footer__logo {
  width: 360px;
  max-width: 100%;
  margin-bottom: 24px;
}

.footer__brand p {
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 430px;
}

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

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 12px;
}

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

.footer__phone {
  font-family: var(--display);
  font-size: 21px;
  color: #fff;
  line-height: 1.5;
}

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

.footer__address {
  margin-top: 14px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__disclaimer {
  max-width: 760px;
}

/* ---------- large desktop CTA ---------- */
@media (min-width: 1601px) {
  .header__cta.btn--sm {
    font-size: 20px;
    padding: 19px 34px;
  }
}

/* ---------- progressive header scaling before hamburger ---------- */
@media (max-width: 1439px) {
  .header__nav {
    gap: 26px;
  }

  .btn {
    font-size: 18px;
    padding: 17px 30px;
  }

  .about {
    gap: 52px;
  }
}

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

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

  .header__cta {
    font-size: 14px;
    padding: 13px 22px;
  }
}

/* ---------- nav hamburger ≤1200px ---------- */
@media (max-width: 1200px) {
  :root {
    --pad: 34px;
    --atty-w: min(56vw, 1080px);
  }

  .header__inner {
    height: 92px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 88px 28px 40px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 80;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -18px 0 40px -24px rgba(11, 22, 34, 0.45);
    overflow-y: auto;
  }

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

  .header__nav-link {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .header__cta {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 22px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    cursor: pointer;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    padding: 0;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

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

  .header__nav-extras .btn {
    width: 100%;
    white-space: normal;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 22, 34, 0.55);
    z-index: 70;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

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

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

  .results__item {
    padding: 34px 28px;
  }

  .results__item:nth-child(1),
  .results__item:nth-child(3) {
    padding-left: 0;
  }

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

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

  .about {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .about__media img {
    height: 460px;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .accolades__row {
    gap: 24px;
  }

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

/* ---------- CTA wrap ---------- */
@media (max-width: 980px) {
  .btn {
    white-space: normal;
    font-size: 16px;
    padding: 15px 26px;
  }
}

/* ---------- hero stacks on tablet ---------- */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: calc(100vh - var(--site-chrome-height));
    min-height: calc(100dvh - var(--site-chrome-height));
    min-height: calc(100svh - var(--site-chrome-height));
  }

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

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

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

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

/* ---------- mobile ---------- */
@media (max-width: 820px) {
  :root {
    --pad: 26px;
  }

  .topbar__left {
    display: none;
  }

  .topbar__right > span {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
    height: 42px;
  }

  .section {
    padding: 70px 0;
  }

  .results__inner,
  .testimonial__inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero__lede {
    max-width: none;
  }

  .hero__image {
    max-height: 360px;
  }

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

  .accolades__item--million img,
  .accolades__item--ntl img,
  .accolades__item--super img,
  .accolades__item--aaj img {
    height: auto;
    max-height: 72px;
  }

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

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

  .results__item {
    padding: 30px 0;
    border-right: 0;
  }

  .results__desc {
    min-height: 0;
  }

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

  .about__media img {
    height: 340px;
  }

  .about__stat {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    padding: 22px 26px;
  }

  .about__media::before {
    display: none;
  }

  .form-card {
    padding: 28px 22px;
  }

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

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

  .footer__bottom {
    flex-direction: column;
  }

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

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

  .hero__content {
    max-width: 100%;
    padding: clamp(12px, 3vw, 24px) 0 0;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
  }

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

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

  .hero__cta .btn {
    width: 100%;
    white-space: normal;
    font-size: 15px;
    padding: 14px 22px;
  }

  .btn {
    font-size: 15px;
    padding: 14px 22px;
  }
}
