:root {
  --navy-950: #0A1830;
  --navy-900: #0F2142;
  --navy-800: #1A3566;
  --navy-700: #254885;
  --gold-500: #C4A052;
  --gold-300: #E3CD97;
  --gold-050: #F6EFDD;
  --cream-050: #F7F5F0;
  --ink-900: #1C2430;
  --ink-500: #5B6472;
  --ink-300: #98A0AC;
  --white: #FFFFFF;
  --ff-head: "Domine", Georgia, serif;
  --ff-body: "Karla", -apple-system, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 86px;
  --pad: 45px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-1: 0 12px 30px -12px rgba(10, 24, 48, 0.25);
  --shadow-2: 0 24px 60px -20px rgba(10, 24, 48, 0.35);
  --header-nav-size: 16px;
  --header-cta-size: 20px;
  --header-phone-size: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--ff-head);
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
}

p {
  margin: 0;
  line-height: 1.7;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(95%, var(--container-max));
  margin: 0 auto;
}

.about__grid > *,
.contact__grid > *,
.footer__top > *,
.hero__content,
.hero__actions > * {
  min-width: 0;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.eyebrow--light {
  color: var(--gold-300);
}

.eyebrow--light::before {
  background: var(--gold-300);
}

.results__head .eyebrow,
.values__head .eyebrow,
.testimonial__inner .eyebrow {
  justify-content: center;
}

.results__head .eyebrow::before,
.values__head .eyebrow::before,
.testimonial__inner .eyebrow::before {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--header-cta-size, 20px);
  line-height: 1.35;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  text-align: center;
  max-width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--gold {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 10px 24px -8px rgba(196, 160, 82, 0.55);
}

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

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(15, 33, 66, 0.55);
}

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

/* ---------- Phone link ---------- */
.phone-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-head);
  font-size: var(--header-phone-size, 24px);
  font-weight: 600;
  color: var(--navy-900);
  white-space: nowrap;
  flex-shrink: 0;
}

.phone-link svg {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}

.phone-link--light {
  color: var(--white);
  font-size: 22px;
}

.phone-link--light svg path {
  stroke: var(--gold-300);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  z-index: 1000;
  border-bottom: 1px solid rgba(15, 33, 66, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 20px;
}

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

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: center;
}

.header__nav-link {
  font-size: var(--header-nav-size);
  font-weight: 600;
  color: var(--navy-900);
  position: relative;
  padding: 6px 2px;
  flex-shrink: 0;
  white-space: nowrap;
}

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

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-extras {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 33, 66, 0.1);
  width: 100%;
}

.header__nav-extras .btn {
  font-size: 16px;
  padding: 14px 28px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.header__cta {
  font-size: var(--header-cta-size);
  padding: 14px 28px;
  flex-shrink: 0;
  white-space: nowrap;
}

.header__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}

.header__menu-toggle-bars,
.header__menu-toggle-bars::before,
.header__menu-toggle-bars::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.header__menu-toggle-bars::before {
  position: absolute;
  top: -6px;
}

.header__menu-toggle-bars::after {
  position: absolute;
  top: 6px;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-toggle-bars {
  background: transparent;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 48, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Progressive header type scaling before hamburger */
@media (max-width: 1400px) {
  :root {
    --header-nav-size: 15px;
    --header-cta-size: 17px;
    --header-phone-size: 21px;
  }

  .header__nav {
    gap: 26px;
  }

  .header__actions {
    gap: 16px;
  }

  .header__cta {
    padding: 12px 22px;
  }
}

@media (max-width: 1280px) {
  :root {
    --header-nav-size: 14px;
    --header-cta-size: 15px;
    --header-phone-size: 18px;
  }

  .header__nav {
    gap: 18px;
  }

  .header__actions {
    gap: 12px;
  }

  .header__cta {
    padding: 11px 18px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-900) 52%, var(--navy-800) 100%);
  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::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-texture.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: 8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 160, 82, 0.2) 0%, rgba(196, 160, 82, 0) 70%);
  z-index: 0;
}

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

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  max-width: 55%;
  color: var(--white);
  padding: clamp(12px, 2vw, 28px) clamp(8px, 1.5vw, 20px) 0 0;
}

.hero__content .eyebrow {
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(42px, 5.4vw, 74px);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.02;
  margin-bottom: 26px;
}

.hero__accent {
  color: var(--gold-500);
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 440px;
  margin-bottom: 34px;
  line-height: 1.75;
}

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

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

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

.hero__plinth {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 75%);
  z-index: 0;
}

/* ---------- Accolades ---------- */
.accolades {
  background: var(--cream-050);
  padding: 34px 0;
  border-bottom: 1px solid rgba(15, 33, 66, 0.06);
}

.accolades__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
}

.accolades__logo {
  width: auto;
  flex: 0 0 auto;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.accolades__logo:hover {
  opacity: 1;
}

.accolades__logo--million {
  height: 75px;
}

.accolades__logo--ntl {
  height: 52px;
}

.accolades__logo--super {
  height: 31px;
}

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

/* ---------- Sections ---------- */
.section {
  position: relative;
}

.section--pad {
  padding: 110px 0;
}

.section__head {
  margin-bottom: 56px;
  max-width: 640px;
}

.section__title {
  font-size: clamp(32px, 3.6vw, 46px);
  color: var(--navy-950);
  margin-top: 16px;
}

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

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.about__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about__frame {
  position: absolute;
  inset: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  pointer-events: none;
}

.about__stat {
  position: absolute;
  left: -26px;
  bottom: 36px;
  background: var(--navy-950);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  min-width: 190px;
}

.about__stat-num {
  font-family: var(--ff-head);
  font-size: 30px;
  color: var(--gold-500);
  display: block;
}

.about__stat-label {
  font-size: 12.5px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.75);
}

.about__copy .eyebrow {
  margin-bottom: 18px;
}

.about__title {
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--navy-950);
  margin-bottom: 14px;
}

.about__subtitle {
  font-family: var(--ff-body);
  font-weight: 600;
  font-style: italic;
  font-size: 19px;
  color: var(--gold-500);
  margin-bottom: 22px;
}

.about__text {
  color: var(--ink-500);
  font-size: 16.5px;
  margin-bottom: 28px;
}

/* ---------- Practice ---------- */
.practice {
  background: var(--cream-050);
}

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

.practice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.practice-card__thumb {
  position: relative;
  height: 190px;
  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.07);
}

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

.practice-card__body {
  padding: 26px 24px 28px;
}

.practice-card__title {
  font-size: 19px;
  color: var(--navy-950);
  margin-bottom: 12px;
}

.practice-card__more {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.practice-card__more svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s;
}

.practice-card:hover .practice-card__more svg {
  transform: translateX(3px);
}

/* ---------- Results ---------- */
.results {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-texture.jpg");
  background-size: cover;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.results__head {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.results__head .eyebrow {
  margin-bottom: 0;
}

.results__title {
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: 1px;
  margin-top: 14px;
}

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

.result-card {
  text-align: center;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.result-card:last-child {
  border-right: none;
}

.result-card__amount {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(34px, 4vw, 50px);
  color: var(--gold-500);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.result-card__desc {
  display: block;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

/* ---------- Values ---------- */
.values {
  background: var(--white);
}

.values__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.values__head .section__title {
  margin-top: 14px;
}

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

.value-card {
  padding: 38px 28px;
  border: 1px solid rgba(15, 33, 66, 0.1);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-1);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
}

.value-card__title {
  font-size: 19px;
  color: var(--navy-950);
  margin-bottom: 14px;
  line-height: 1.35;
}

.value-card__link {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ---------- Testimonial ---------- */
.testimonial {
  position: relative;
  background-image: url("../assets/images/bg-testimonial.jpg");
  background-size: cover;
  background-position: center;
  padding: 130px 0;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 24, 48, 0.92), rgba(15, 33, 66, 0.8));
}

.testimonial__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.testimonial__quote-mark {
  font-family: var(--ff-head);
  font-size: 64px;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.testimonial__inner .eyebrow {
  margin-bottom: 26px;
}

.testimonial__quote {
  font-family: var(--ff-head);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.6;
  font-weight: 500;
  white-space: pre-line;
  margin-bottom: 28px;
}

.testimonial__name {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--cream-050);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
}

.contact__info .eyebrow {
  margin-bottom: 18px;
}

.contact__title {
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--navy-950);
  margin-bottom: 20px;
}

.contact__lead {
  color: var(--ink-500);
  font-size: 16px;
  margin-bottom: 38px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact__detail-text {
  font-size: 15.5px;
  color: var(--ink-900);
  line-height: 1.6;
}

.contact__detail-text strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--pad);
  box-shadow: var(--shadow-2);
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-500);
}

.form-field input,
.form-field select {
  height: 40px;
  border: 1.5px solid rgba(15, 33, 66, 0.15);
  border-radius: 10px;
  padding: 0 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink-900);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-field textarea {
  height: 120px;
  border: 1.5px solid rgba(15, 33, 66, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink-900);
  resize: vertical;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}

.contact__form .btn {
  width: 100%;
  margin-top: 6px;
  font-size: 18px;
}

.contact__form-fine {
  font-size: 12px;
  color: var(--ink-300);
  text-align: center;
  margin-top: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
}

.footer__top {
  padding: 80px 0 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 50px;
}

.footer__brand img {
  height: 38px;
  margin-bottom: 22px;
}

.footer__brand p {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}

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

.footer__list li a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer__addr {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  white-space: pre-line;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .footer__top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  }

  .footer__top .footer__col:nth-child(4) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1200px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 88px 28px 32px;
    box-shadow: -12px 0 40px -16px rgba(15, 33, 66, 0.28);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

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

  .header__nav-link {
    font-size: 18px;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 33, 66, 0.08);
  }

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

  .header__nav-extras {
    display: flex;
    margin-top: 20px;
    align-items: stretch;
  }

  .header__nav-extras .phone-link {
    justify-content: center;
    font-size: 22px;
  }

  .header__phone,
  .header__cta {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .header__actions {
    gap: 14px;
  }
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: clamp(38px, 6vw, 58px);
  }

  .accolades__inner {
    gap: 30px 40px;
    justify-content: center;
  }

  .accolades__logo--million {
    height: 66px;
  }

  .accolades__logo--ntl {
    height: 46px;
  }

  .accolades__logo--super {
    height: 27px;
  }

  .accolades__logo--aaj {
    height: 40px;
  }

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

  .about__image {
    height: 440px;
  }

  .about__stat {
    left: 20px;
  }

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

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

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

  .result-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

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

@media (max-width: 768px) {
  .header__inner {
    height: 74px;
  }

  .header__logo img {
    height: 34px;
    max-width: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: clamp(32px, 6vw, 56px) clamp(16px, 4vw, 28px) 0;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0;
  }

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

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: 380px;
    right: auto;
    bottom: auto;
    margin-top: 40px;
  }

  .hero::after {
    display: none;
  }

  .section--pad {
    padding: 70px 0;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    padding: 60px 0 40px;
    gap: 36px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__actions .phone-link {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .practice__grid,
  .values__grid {
    grid-template-columns: 1fr;
  }

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

  .result-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .accolades__inner {
    justify-content: center;
    gap: 26px 34px;
  }

  .accolades__logo--million {
    height: 58px;
  }

  .accolades__logo--ntl {
    height: 40px;
  }

  .accolades__logo--super {
    height: 24px;
  }

  .accolades__logo--aaj {
    height: 35px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .about__stat {
    position: static;
    margin-top: -40px;
    margin-left: 20px;
    display: inline-block;
  }

  .btn {
    font-size: 16px;
    padding: 13px 22px;
  }
}
