:root {
  --ink: #0a1330;
  --ink-2: #0e1a3e;
  --ink-3: #131f47;
  --brand: #00237c;
  --brand-lt: #1b44a8;
  --brass: #c6a15b;
  --brass-lt: #e2c892;
  --cream: #f7f4ed;
  --cream-2: #efebe1;
  --paper: #ffffff;
  --body: #414a61;
  --body-lt: #6b7488;
  --rule: rgba(10, 19, 48, 0.12);
  --display: "DM Serif Display", Georgia, serif;
  --sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
}

*,
*::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(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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.002em;
}

p {
  margin: 0 0 1.1em;
}

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

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

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

.eyebrow::after {
  content: "";
  height: 1px;
  width: 56px;
  background: linear-gradient(90deg, var(--brass), transparent);
}

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

.eyebrow--center::before {
  content: "";
  height: 1px;
  width: 56px;
  background: linear-gradient(270deg, var(--brass), transparent);
}

.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;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  max-width: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn--brass {
  background: linear-gradient(180deg, var(--brass-lt), var(--brass));
  color: #20180a;
  box-shadow: 0 14px 34px rgba(198, 161, 91, 0.32);
}

.btn--brass:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(198, 161, 91, 0.42);
}

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

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

.btn--brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 35, 124, 0.24);
}

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

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

/* ---------- utility strip ---------- */
.utility {
  background: var(--brand);
  color: #dce4f7;
  font-size: 13.5px;
  letter-spacing: 0.06em;
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.utility__location {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
}

.utility__meta {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
}

.utility__meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.utility svg {
  flex: none;
}

/* ---------- header ---------- */
.header {
  background: var(--ink);
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 92px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__logo {
  width: 145px;
  flex-shrink: 0;
  max-width: none;
}

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

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.header__nav-link {
  display: inline-block;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e6eaf6;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  flex-shrink: 0;
  transition: color 0.22s ease;
}

.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.28s ease;
}

.header__nav-link:hover {
  color: #fff;
}

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

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

.header__cta .btn {
  font-size: clamp(14px, 1.15vw, 20px);
  padding: clamp(11px, 1vw, 15px) clamp(16px, 1.6vw, 30px);
}

.header__nav-extras {
  display: none;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 40px;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  padding: 0 11px;
  background: transparent;
}

.header__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  transform-origin: center;
}

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

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

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

.header__overlay {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  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;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero__tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 78% at 74% 62%, rgba(120, 152, 222, 0.34), transparent 66%),
    linear-gradient(
      96deg,
      rgba(8, 15, 40, 0.96) 0%,
      rgba(8, 15, 40, 0.9) 34%,
      rgba(10, 19, 48, 0.5) 62%,
      rgba(10, 19, 48, 0.34) 100%
    );
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 100% 78px;
}

.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
  padding-inline: clamp(0px, 1vw, 8px);
}

.hero__content {
  width: min(100%, 640px);
  max-width: 55%;
  color: #fff;
  z-index: 3;
  position: relative;
  padding-inline: clamp(0px, 1.5vw, 12px);
}

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

.hero__title {
  font-size: clamp(44px, 4.5vw, 68px);
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.012em;
}

.hero__subtitle {
  font-size: clamp(21px, 1.95vw, 29px);
  line-height: 1.28;
  color: #c9d4ee;
  font-style: italic;
  margin-top: 14px;
  font-weight: 400;
}

.hero__rule {
  width: 96px;
  height: 2px;
  background: var(--brass);
  margin: 26px 0 24px;
}

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

.hero__phone {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}

.hero__phone svg {
  flex: none;
}

.hero__phone small {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 2px;
}

.hero__phone-stack {
  line-height: 1.16;
}

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

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

.hero__accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brass) 46%, var(--brass-lt) 62%, var(--brand));
  z-index: 4;
}

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

.accolades__inner {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.accolades__label {
  flex: none;
  width: 190px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1.5;
}

.accolades__label em {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-top: 6px;
}

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex: 1;
  flex-wrap: wrap;
}

.accolades__badge {
  flex: 1;
  min-width: 130px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  position: relative;
}

.accolades__badge + .accolades__badge::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(0, 35, 124, 0.16);
}

.accolades__badge-img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.accolades__badge-img--mdaf {
  height: 90px;
}

.accolades__badge-img--ntl {
  height: 82px;
}

.accolades__badge-img--sl {
  height: 44px;
}

.accolades__badge-img--aaj {
  height: 60px;
}

/* ---------- section shell ---------- */
.section {
  position: relative;
  padding: 104px 0;
}

.section__head {
  max-width: 760px;
}

.section__head--center {
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: clamp(32px, 3.05vw, 46px);
  line-height: 1.1;
}

.section__subtitle {
  font-family: var(--display);
  font-size: clamp(19px, 1.6vw, 24px);
  color: var(--brand);
  margin-top: 12px;
  font-style: italic;
  font-weight: 400;
}

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

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

.about__figure {
  position: relative;
  padding: 0 0 26px 26px;
}

.about__figure::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66%;
  height: 72%;
  border: 1px solid var(--brass);
  border-radius: 2px;
}

.about__figure img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 30px 70px rgba(10, 19, 48, 0.22);
}

.about__stamp {
  position: absolute;
  right: -18px;
  top: 34px;
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 20px 46px rgba(10, 19, 48, 0.3);
  z-index: 3;
}

.about__stamp b {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  color: var(--brass-lt);
}

.about__stamp span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b9c4de;
  margin-top: 8px;
}

.about__body {
  margin-top: 26px;
  font-size: 17.5px;
}

.about__body p {
  margin-bottom: 1.25em;
}

.about__callout {
  margin-top: 36px;
  padding: 26px 30px 26px 32px;
  background: var(--cream);
  border-left: 3px solid var(--brass);
  border-radius: 2px;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.62;
}

.about__callout a {
  color: var(--brand);
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 35, 124, 0.28);
}

.about__callout a:hover {
  border-color: var(--brand);
}

/* ---------- practice areas ---------- */
.practice {
  background: var(--ink);
  color: #c7d0e6;
}

.practice h2 {
  color: #fff;
}

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

.practice__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.practice__intro {
  max-width: 430px;
  color: #9faac6;
  margin: 0;
}

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

.practice-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 161, 91, 0.55);
}

.practice-card__media {
  position: relative;
  height: 214px;
  overflow: hidden;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 48, 0.12), rgba(10, 19, 48, 0.86));
}

.practice-card__num {
  position: absolute;
  left: 20px;
  top: 16px;
  z-index: 2;
  font-family: var(--display);
  font-size: 15px;
  color: var(--brass-lt);
  letter-spacing: 0.1em;
  text-shadow: 0 1px 8px rgba(6, 12, 32, 0.85);
}

.practice-card__body {
  padding: 26px 26px 30px;
}

.practice-card h3 {
  font-size: 23px;
  color: #fff;
  line-height: 1.2;
}

.practice-card p {
  font-size: 15px;
  line-height: 1.66;
  color: #9faac6;
  margin: 12px 0 0;
}

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

.practice-card__more svg {
  transition: transform 0.3s ease;
}

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

/* ---------- case results ---------- */
.results {
  background: var(--cream);
}

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

.results__item {
  padding: 40px 34px 40px 0;
  border-right: 1px solid var(--rule);
}

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

.results__item:not(:first-child) {
  padding-left: 34px;
}

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

.results__amount {
  font-family: var(--display);
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.01em;
}

.results__type {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.results__item p {
  margin: 16px 0 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--body);
}

.results__note {
  margin-top: 44px;
  font-size: 13px;
  color: var(--body-lt);
  max-width: 900px;
}

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

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

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

.values__num {
  font-family: var(--display);
  font-size: 16px;
  color: var(--brass);
  letter-spacing: 0.14em;
}

.values__item h3 {
  font-size: 22px;
  line-height: 1.24;
  margin-top: 14px;
}

.values__item p {
  font-size: 15.5px;
  line-height: 1.68;
  margin-top: 12px;
}

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

.testimonial__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-testimonial.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 40, 0.9), rgba(8, 15, 40, 0.78));
}

.testimonial__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonial h2 {
  color: #fff;
  font-size: clamp(32px, 3.05vw, 46px);
  line-height: 1.1;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 30px 0 22px;
}

.testimonial__quote {
  font-family: var(--display);
  font-size: clamp(23px, 2.25vw, 33px);
  line-height: 1.44;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  font-style: italic;
}

.testimonial__by {
  margin-top: 26px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(10, 19, 48, 0.14);
}

.contact__side {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 54px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  min-height: 100%;
}

.contact__side-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-contact.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.62;
}

.contact__side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 40, 0.7), rgba(8, 15, 40, 0.9));
}

.contact__side > * {
  position: relative;
  z-index: 2;
}

.contact__side h3 {
  font-family: var(--display);
  font-size: 30px;
  color: #fff;
  line-height: 1.18;
}

.contact__side p {
  color: #afbbd6;
  font-size: 16px;
  margin-top: 16px;
}

.contact__info {
  display: grid;
  gap: 22px;
}

.contact__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: #dde4f3;
  line-height: 1.6;
}

.contact__info-item svg {
  flex: none;
  margin-top: 3px;
}

.contact__info-item b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 5px;
}

.contact__form-wrap {
  padding: 54px 48px;
}

.contact__form-wrap h2 {
  font-size: clamp(28px, 2.5vw, 38px);
}

.contact__form-lead {
  font-size: 16px;
  margin-top: 12px;
}

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

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

.contact__field--full {
  grid-column: 1 / -1;
}

.contact__field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 0 16px;
  width: 100%;
  height: 40px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300237C' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__field textarea {
  height: 120px;
  min-height: 120px;
  padding: 12px 16px;
  line-height: 1.6;
  resize: vertical;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 35, 124, 0.1);
}

.contact__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contact__note {
  font-size: 12.5px;
  color: var(--body-lt);
  line-height: 1.55;
  max-width: 340px;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: #93a0bf;
  padding: 74px 0 0;
  font-size: 15px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.05fr;
  gap: 52px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 300px;
  margin-bottom: 24px;
}

.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

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

.footer__text {
  max-width: 340px;
  line-height: 1.7;
}

.footer__phone {
  font-family: var(--display);
  font-size: 27px;
  color: #fff;
  display: inline-block;
  margin-top: 6px;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7c89a8;
}

.footer__disclaimer {
  max-width: 900px;
  line-height: 1.65;
}

/* ---------- progressive header shrink (before hamburger) ---------- */
@media (max-width: 1439px) {
  .header__inner {
    gap: 28px;
  }

  .header__nav-list {
    gap: 22px;
  }

  .header__nav-link {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

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

  .hero__visual {
    width: 50%;
  }
}

@media (max-width: 1320px) {
  .header__inner {
    gap: 20px;
  }

  .header__nav-list {
    gap: 16px;
  }

  .header__nav-link {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .header__cta .btn {
    font-size: 15px;
    padding: 12px 18px;
  }

  .about__grid {
    gap: 48px;
  }

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

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

  .results__item {
    border-bottom: 1px solid var(--rule);
  }

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

  .results__item:nth-child(2n + 1) {
    padding-left: 0;
  }

  .results__item:nth-child(2n) {
    padding-left: 34px;
  }

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

  .accolades__inner {
    gap: 34px;
  }

  .accolades__label {
    width: 160px;
  }
}

/* ---------- mobile nav at 1200px ---------- */
@media (max-width: 1200px) {
  :root {
    --pad: 34px;
  }

  .header__toggle {
    display: flex;
    position: relative;
    z-index: 3;
  }

  /* Keep the X above menu links when the panel is open */
  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    margin-left: 0;
    z-index: 4;
  }

  .header__cta {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 24, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 1;
  }

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

  .header__inner {
    position: relative;
    z-index: 2;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    background: var(--ink-2);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -26px 0 46px rgba(4, 8, 24, 0.44);
    flex-direction: column;
    align-items: stretch;
    padding: 84px 28px 40px;
    transform: translateX(105%);
    transition: transform 0.32s ease;
    z-index: 2;
    overflow-y: auto;
  }

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

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

  .header__nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .header__nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    letter-spacing: 0.07em;
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .header__phone {
    font-family: var(--display);
    font-size: 26px;
    color: #fff;
  }

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

  .utility__location {
    display: none;
  }

  .utility__inner {
    justify-content: center;
  }

  .hero__content {
    max-width: 58%;
  }

  .hero__visual {
    width: 48%;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    text-align: center;
  }

  .header__inner {
    min-height: 84px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about__figure {
    max-width: 520px;
  }

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

  .contact__form-wrap {
    padding: 44px 34px;
  }

  .contact__side {
    padding: 44px 34px;
  }

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

  .section {
    padding: 78px 0;
  }

  .accolades__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .accolades__label {
    width: auto;
  }

  .accolades__row {
    width: 100%;
    gap: 20px;
  }
}

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

  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    order: 1;
  }

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

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(560px, 92%);
    height: auto;
    margin: 36px auto 0;
    order: 2;
    justify-content: center;
  }

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

  .hero__tint {
    background: linear-gradient(180deg, rgba(8, 15, 40, 0.94), rgba(10, 19, 48, 0.72));
  }

  .hero__accent {
    order: 3;
    position: relative;
  }
}

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

  body {
    font-size: 16px;
  }

  .header__inner {
    gap: 14px;
    min-height: 72px;
  }

  .utility {
    font-size: 12.5px;
  }

  .utility__meta {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__subtitle {
    font-size: 19px;
  }

  .hero__actions {
    gap: 18px;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    font-size: 18px;
    padding: 16px 20px;
  }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 16px 20px;
    font-size: 18px;
  }

  .contact__submit .btn {
    width: 100%;
  }

  .contact__submit {
    gap: 14px;
  }

  .contact__note {
    max-width: none;
  }

  .accolades__badge {
    min-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    height: 88px;
  }

  .accolades__badge + .accolades__badge::before {
    display: none;
  }

  .accolades__badge-img--mdaf {
    height: 74px;
  }

  .accolades__badge-img--ntl {
    height: 66px;
  }

  .accolades__badge-img--sl {
    height: 36px;
  }

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

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

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

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

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

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

  .about__figure {
    padding: 0 0 20px 16px;
  }

  .about__stamp {
    right: 0;
    padding: 16px 18px;
  }

  .about__stamp b {
    font-size: 27px;
  }

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

  .contact__form-wrap,
  .contact__side {
    padding: 34px 22px;
  }

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

  .section {
    padding: 62px 0;
  }

  .testimonial {
    padding: 70px 0;
  }
}
