:root {
  --brand: #0059aa;
  --brand-dk: #00457f;
  --navy: #001a36;
  --navy-mid: #002f5c;
  --navy-soft: #0a2a4d;
  --gold: #b08a3e;
  --gold-lt: #d4b274;
  --gray: #737477;
  --ink: #12181f;
  --body: #4a5561;
  --line: #dce3ea;
  --wash: #f4f7fa;
  --white: #fff;
  --serif: "Spectral", Georgia, serif;
  --sans: "Figtree", -apple-system, "Segoe UI", sans-serif;
  --container-max: 1320px;
  --container-pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 138px;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.75;
  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 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.15em;
}

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

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

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

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

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

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

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

/* ---------- 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: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  text-align: center;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 89, 170, 0.32);
}

.btn--primary:hover {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

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

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

.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 28px rgba(176, 138, 62, 0.3);
}

.btn--gold:hover {
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 26, 54, 0.3);
}

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

/* ---------- utility bar ---------- */
.utility {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  letter-spacing: 0.03em;
}

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

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

.utility__tag {
  color: var(--gold-lt);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11.5px;
}

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

.utility a:hover {
  color: #fff;
}

.utility__phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: #fff;
}

/* ---------- 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(12px, 1.5vw, 28px);
  min-height: 92px;
  position: relative;
}

.header__logo {
  flex-shrink: 0;
}

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

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
}

.header__toggle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.header__nav-link {
  display: block;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0;
  background: var(--brand);
  transition: 0.3s;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--brand);
}

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

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
  margin-left: 6px;
}

.header__cta .btn {
  font-size: clamp(13px, 0.95vw, 16px);
  padding: clamp(10px, 0.9vw, 14px) clamp(14px, 1.4vw, 26px);
  white-space: nowrap;
}

.header__overlay,
.header__overlay[hidden] {
  display: none !important;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background: var(--navy);
  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 42%;
  z-index: 0;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, rgba(0, 20, 42, 0.95) 0%, rgba(0, 26, 54, 0.9) 34%, rgba(0, 40, 78, 0.62) 58%, rgba(0, 50, 96, 0.34) 100%),
    radial-gradient(120% 90% at 88% 100%, rgba(0, 89, 170, 0.34), rgba(0, 0, 0, 0) 60%);
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 4;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 38%, var(--gold) 38%, var(--gold) 52%, rgba(255, 255, 255, 0.14) 52%);
}

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

.hero__content {
  position: relative;
  z-index: 3;
  flex: 0 1 auto;
  width: min(100%, 54%);
  max-width: min(100%, 640px);
  padding: clamp(8px, 2vw, 20px) clamp(8px, 2vw, 16px) clamp(32px, 5vh, 76px) 0;
  color: #fff;
}

.hero__kicker {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 14px;
  line-height: 1.4;
}

.hero__title {
  font-size: clamp(38px, 4.1vw, 62px);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

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

.hero__lede {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
  margin: 0 0 26px;
  line-height: 1.68;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

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

.hero__phone small {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
  font-family: var(--sans);
}

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

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

.hero__visual::before {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 0;
  width: min(430px, 70%);
  height: min(430px, 70%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 89, 170, 0.5), rgba(0, 89, 170, 0) 68%);
}

.hero__visual::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 0;
  width: min(560px, 100%);
  height: min(520px, 90%);
  border-left: 1px solid rgba(212, 178, 116, 0.34);
  border-top: 1px solid rgba(212, 178, 116, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 70%);
}

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

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

.accolades__inner {
  padding-top: 52px;
  padding-bottom: 54px;
}

.accolades .eyebrow {
  margin-bottom: 34px;
}

.accolades__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.accolades__item {
  flex: 0 1 auto;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  min-height: 104px;
}

.accolades__item:last-child {
  border-right: 0;
}

.accolades__item img {
  width: auto;
  opacity: 0.82;
  transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.accolades__item:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

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

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

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

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

.accolades__press {
  margin: 38px auto 0;
  max-width: 900px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--gray);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.accolades__press strong {
  color: var(--navy);
  font-weight: 600;
}

.accolades__press em {
  font-style: italic;
}

/* ---------- about ---------- */
.about {
  padding: 104px 0 108px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 41%;
  height: 100%;
  background: var(--wash);
  z-index: 0;
}

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

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 74px;
  align-items: center;
}

.about__title {
  font-size: clamp(32px, 2.9vw, 45px);
  margin-bottom: 16px;
}

.about__sub {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 28px;
  line-height: 1.5;
}

.about__sub a {
  color: var(--brand);
  border-bottom: 2px solid rgba(0, 89, 170, 0.28);
}

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

.about__body p {
  font-size: 16.5px;
  line-height: 1.82;
}

.about__note {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--navy);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.65;
  border-left: 4px solid var(--gold);
}

.about__note strong {
  color: #fff;
}

.about__note-link {
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(212, 178, 116, 0.5);
}

.about__note-link:hover {
  border-bottom-color: var(--gold-lt);
}

.about__visual {
  position: relative;
}

.about__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 3px;
}

.about__visual::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 150px;
  height: 150px;
  border-top: 3px solid var(--brand);
  border-left: 3px solid var(--brand);
}

.about__badge {
  position: absolute;
  right: -24px;
  bottom: 38px;
  background: #fff;
  padding: 24px 30px;
  border-radius: 3px;
  box-shadow: 0 22px 50px rgba(0, 26, 54, 0.18);
  border-bottom: 3px solid var(--gold);
  text-align: center;
}

.about__badge b {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  color: var(--brand);
  line-height: 1;
  font-weight: 600;
}

.about__badge span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}

/* ---------- practice ---------- */
.practice {
  padding: 104px 0 110px;
  background: var(--wash);
}

.practice__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.practice__title {
  font-size: clamp(32px, 2.9vw, 45px);
  margin-bottom: 16px;
}

.practice__head p {
  font-size: 17px;
}

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

.card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 26, 54, 0.07);
  transition: 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(0, 26, 54, 0.16);
}

.card__media {
  position: relative;
  height: 212px;
  overflow: hidden;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s cubic-bezier(0.2, 0, 0.2, 1);
}

.card:hover .card__image {
  transform: scale(1.07);
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 26, 54, 0) 40%, rgba(0, 26, 54, 0.62));
}

.card__num {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold-lt);
  letter-spacing: 0.16em;
  font-weight: 600;
}

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

.card__title {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.28;
}

.card__body p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.card__link svg {
  transition: 0.3s;
}

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

/* ---------- verdicts ---------- */
.verdicts {
  position: relative;
  padding: 100px 0 104px;
  background: var(--navy);
  overflow: hidden;
}

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

.verdicts__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 44, 0.9), rgba(0, 26, 54, 0.94));
}

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

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

.verdicts__title {
  color: #fff;
  font-size: clamp(32px, 2.9vw, 45px);
  margin-bottom: 14px;
}

.verdicts__head p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16.5px;
}

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

.verdicts__item {
  padding: 34px 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.verdicts__item:last-child {
  border-right: 0;
}

.verdicts__amount {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 2.7vw, 42px);
  color: #fff;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.verdicts__rule {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 14px;
  font-style: normal;
}

.verdicts__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
}

.verdicts__foot {
  margin-top: 52px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- values ---------- */
.values {
  padding: 104px 0 110px;
  background: #fff;
}

.values__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.values__title {
  font-size: clamp(32px, 2.9vw, 45px);
  margin-bottom: 18px;
}

.values__head p {
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.value {
  padding: 30px 28px 28px;
  background: var(--wash);
  border-top: 3px solid var(--brand);
  border-radius: 2px;
  transition: 0.32s;
}

.value:hover {
  background: #fff;
  box-shadow: 0 20px 44px rgba(0, 26, 54, 0.13);
  transform: translateY(-4px);
}

.value__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
}

.value__title {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.value p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.value__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.value__link:hover {
  color: var(--gold);
}

/* ---------- testimonials ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--navy-soft);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "\201C";
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 340px;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

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

.testimonials__title {
  color: #fff;
  font-size: clamp(30px, 2.6vw, 40px);
  margin-bottom: 40px;
}

.testimonials__quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  color: #fff;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  max-width: 960px;
  margin: 0 auto 26px;
  letter-spacing: -0.01em;
}

.testimonials__body {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 820px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.testimonials__stars {
  color: var(--gold-lt);
  letter-spacing: 0.3em;
  font-size: 17px;
  margin-bottom: 14px;
}

.testimonials__name {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

/* ---------- contact ---------- */
.contact {
  padding: 104px 0 108px;
  background: var(--wash);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 74px;
  align-items: start;
}

.contact__title {
  font-size: clamp(32px, 2.9vw, 45px);
  margin-bottom: 18px;
}

.contact__info p {
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact__rows {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 34px;
}

.contact__row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact__row p {
  margin: 0;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}

.contact__row p a:hover {
  color: var(--brand);
}

.contact__icon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 5px;
}

.form {
  background: #fff;
  padding: 44px 44px 46px;
  border-radius: 3px;
  box-shadow: 0 20px 54px rgba(0, 26, 54, 0.11);
  border-top: 4px solid var(--brand);
}

.form__title {
  font-size: 26px;
  margin-bottom: 8px;
}

.form > p {
  font-size: 15px;
  margin-bottom: 28px;
}

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

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

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

.form__field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form__field input,
.form__field select {
  height: 40px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  width: 100%;
  transition: 0.24s;
}

.form__field select {
  appearance: none;
  background-image: url("../assets/images/icon-select.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form__field textarea {
  height: 120px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  transition: 0.24s;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 89, 170, 0.12);
}

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

.form__fine {
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 16px;
  line-height: 1.6;
  text-align: center;
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.66);
  padding: 76px 0 0;
  font-size: 15px;
}

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

.footer__logo {
  margin-bottom: 24px;
}

.footer__logo img {
  height: 56px;
  width: auto;
  max-width: none;
}

.footer p {
  line-height: 1.8;
  font-size: 15px;
}

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

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

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

.footer__phone {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

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

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0 34px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.44);
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- 1400px ---------- */
@media (max-width: 1400px) {
  .header__nav {
    gap: 22px;
  }

  .hero__title {
    font-size: clamp(34px, 3.6vw, 54px);
  }
}

/* ---------- 1200px: hamburger + stacked sections ---------- */
@media (max-width: 1200px) {
  :root {
    --container-pad: 32px;
  }

  .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__visual {
    width: 46%;
  }

  .hero__content {
    width: min(100%, 58%);
  }

  .header__inner {
    min-height: 80px;
    z-index: 2;
  }

  .header__logo img {
    height: 48px;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(0, 26, 54, 0.55);
    pointer-events: none;
  }

  .header.is-open .header__overlay {
    display: block !important;
    pointer-events: auto;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin-left: 0;
    padding: 84px 28px 40px;
    background: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    box-shadow: -18px 0 40px rgba(0, 26, 54, 0.18);
  }

  .header.is-open .header__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }

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

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

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

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

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

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

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

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

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

  .about::after {
    display: none;
  }

  .about__image {
    height: 460px;
  }

  .about__badge {
    right: 24px;
  }

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

  .verdicts__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .verdicts__item:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero__title {
    font-size: clamp(34px, 4.6vw, 50px);
  }
}

/* ---------- 980px: wrapping CTAs ---------- */
@media (max-width: 980px) {
  .btn {
    white-space: normal;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .accolades__item {
    padding: 16px 30px;
    min-height: 88px;
  }

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

/* ---------- 768px: stacked hero visual ---------- */
@media (max-width: 768px) {
  :root {
    --container-pad: 22px;
  }

  body {
    font-size: 16px;
  }

  .utility__inner {
    justify-content: center;
    text-align: center;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .utility__left {
    justify-content: center;
    gap: 14px;
    font-size: 12.5px;
  }

  .utility__sep {
    display: none;
  }

  .practice,
  .about,
  .values,
  .contact,
  .verdicts,
  .testimonials {
    padding-top: 66px;
    padding-bottom: 70px;
  }

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

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 12px 8px 34px;
    text-align: center;
  }

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

  .hero__actions {
    justify-content: center;
  }

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

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .hero__visual::before {
    right: 50%;
    transform: translateX(50%);
    width: 340px;
    height: 340px;
  }

  .hero__visual::after {
    display: none;
  }

  .hero__image {
    height: min(430px, 78vw);
    width: auto;
    max-width: 100%;
  }

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

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

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

  .verdicts__item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 26px 14px;
  }

  .verdicts__item:last-child {
    border-bottom: 0;
  }

  .accolades__inner {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .accolades__item {
    flex: 0 0 50%;
    padding: 16px 12px;
    border-right: 0;
    min-height: 96px;
  }

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

  .accolades__item--mdaf img {
    width: 78px;
  }

  .accolades__item--ntl img {
    width: 124px;
  }

  .accolades__item--sl img {
    width: 126px;
  }

  .accolades__item--aaj img {
    width: 132px;
  }

  .accolades__press {
    margin-top: 26px;
    font-size: 12.5px;
  }

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

  .form {
    padding: 30px 24px 32px;
  }

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

  .about__image {
    height: 340px;
  }

  .about__badge {
    position: static;
    margin-top: 18px;
    display: inline-block;
    box-shadow: none;
    border: 1px solid var(--line);
  }

  .about__visual::before {
    display: none;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__phone span {
    font-size: 21px;
  }

  .btn {
    font-size: 17px;
    padding: 16px 28px;
  }

  .testimonials::before {
    font-size: 200px;
  }

  .footer__bar-inner {
    justify-content: center;
    text-align: center;
  }
}

/* ---------- 640px: full-width stacked hero CTAs ---------- */
@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

/* ---------- 440px ---------- */
@media (max-width: 440px) {
  .contact__grid > *,
  .about__grid > *,
  .values__grid > * {
    min-width: 0;
  }

  .form {
    padding: 26px 18px 28px;
  }

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

  .accolades__item {
    padding: 14px 8px;
  }

  .hero__image {
    height: 300px;
  }

  .hero__title {
    font-size: 28px;
  }
}
