:root {
  --navy-900: #0b1730;
  --navy-850: #0f1d3c;
  --navy-800: #12244a;
  --navy-700: #1b3161;
  --gold: #c4a057;
  --gold-2: #e0c489;
  --bone: #f6f4f0;
  --bone-2: #ede9e2;
  --ink: #1b2233;
  --muted: #5c6579;
  --white: #fff;
  --hairline: rgba(196, 160, 87, 0.38);
  --display: "Archivo", -apple-system, Helvetica, Arial, sans-serif;
  --body: "Lora", Georgia, "Times New Roman", serif;
  --shadow: 0 18px 44px rgba(11, 23, 48, 0.14);
  --site-chrome-height: 148px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
}

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

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

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

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
}

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

.eyebrow::after {
  content: "";
  flex: 0 0 54px;
  height: 1px;
  background: var(--hairline);
}

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

.eyebrow--center::before {
  content: "";
  flex: 0 0 54px;
  height: 1px;
  background: var(--hairline);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  margin: 0;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 21px;
  font-weight: 700;
}

p {
  margin: 0 0 18px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}

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

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

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

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

/* ---------- Utility bar ---------- */
.utility {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.utility__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

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

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

.utility strong {
  color: var(--gold-2);
  font-weight: 600;
}

/* ---------- Header ---------- */
.header {
  background: var(--navy-850);
  border-bottom: 1px solid rgba(196, 160, 87, 0.28);
  position: relative;
  z-index: 20;
}

.header__overlay[hidden] {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
  line-height: 0;
}

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

.header__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}

.header__toggle-bar {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
}

.header__toggle-bar:nth-child(1) {
  top: 14px;
}

.header__toggle-bar:nth-child(2) {
  top: 21px;
}

.header__toggle-bar:nth-child(3) {
  top: 28px;
}

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

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

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

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

.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 {
  font-family: var(--display);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  position: relative;
  display: block;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

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

.header__nav-extras {
  display: none;
}

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

.header__phone {
  font-family: var(--display);
  font-size: clamp(16px, 1.55vw, 24px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__phone small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.header__cta .btn--sm {
  font-size: clamp(13px, 1.1vw, 16px);
  padding: 14px clamp(16px, 1.6vw, 28px);
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 0;
  overflow: hidden;
  background: var(--navy-900) url("../assets/images/bg-hero.jpg") center / cover no-repeat;
  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: linear-gradient(
    100deg,
    var(--navy-900) 0%,
    rgba(11, 23, 48, 0.94) 38%,
    rgba(11, 23, 48, 0.55) 62%,
    rgba(11, 23, 48, 0.35) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(196, 160, 87, 0) 78%);
  z-index: 4;
}

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

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 640px);
  width: min(100%, 52%);
  padding: clamp(16px, 2.4vw, 28px) clamp(12px, 2vw, 26px) clamp(16px, 2.4vw, 28px);
  border-left: 1px solid var(--hairline);
}

.hero__title {
  color: #fff;
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: 0;
}

.hero__lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 520px;
}

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

.hero__phone {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero__phone svg {
  flex: 0 0 auto;
}

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

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

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

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

.accolades__label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-800);
  max-width: 150px;
  line-height: 1.5;
}

.accolades__label em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-top: 4px;
}

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

.accolades__badge {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.accolades__badge img {
  width: auto;
  opacity: 0.92;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.accolades__badge--forum img {
  height: 92px;
}

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

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

.accolades__badge--justice img {
  height: 62px;
}

/* ---------- Section shell ---------- */
.section {
  padding: 96px 0;
}

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

.lead-in {
  max-width: 760px;
  margin-bottom: 52px;
}

.lead-in--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead-in p {
  color: var(--muted);
  margin-top: 18px;
  font-size: 17.5px;
}

.lead-in__title {
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 800;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

.about__media::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 190px;
  height: 190px;
  border: 1px solid var(--hairline);
  z-index: 1;
}

.about__media::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 190px;
  height: 190px;
  border: 1px solid var(--hairline);
  z-index: 1;
}

.about__badge {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 44px;
  background: var(--navy-800);
  color: #fff;
  padding: 22px 30px;
  max-width: 250px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.about__badge strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1;
}

.about__badge span {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.about__title {
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.about__sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.45;
}

.about__body p {
  color: var(--muted);
}

.about__special {
  margin-top: 28px;
  padding: 22px 26px;
  background: var(--bone);
  border-left: 3px solid var(--gold);
  color: var(--navy-800);
  font-size: 17px;
  line-height: 1.6;
}

.about__actions {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

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

.practice-card {
  background: #fff;
  border: 1px solid #e4dfd6;
  box-shadow: 0 10px 26px rgba(11, 23, 48, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(11, 23, 48, 0.16);
}

.practice-card__thumb {
  position: relative;
  aspect-ratio: 68 / 47;
  overflow: hidden;
}

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

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

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

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

.practice-card__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.practice-card__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: 20px;
}

.practice-card__more {
  margin-top: auto;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card:hover .practice-card__more {
  color: var(--gold);
}

.practice-card__more span {
  transition: transform 0.3s ease;
  display: inline-block;
}

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

/* ---------- Case results ---------- */
.results {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}

.results__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-results.jpg") center 30% / cover no-repeat;
  opacity: 0.2;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, rgba(11, 23, 48, 0.86) 45%, var(--navy-900) 100%);
  z-index: 1;
}

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

.results .lead-in__title {
  color: #fff;
}

.results .lead-in p {
  color: rgba(255, 255, 255, 0.7);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.results__item {
  padding: 38px 32px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

.results__item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.results__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width 0.45s ease;
}

.results__item:hover::before {
  width: 100%;
}

.results__amount {
  font-family: var(--display);
  font-weight: 800;
  color: var(--gold-2);
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.results__amount--text {
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.3;
}

.results__label {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.results__mark {
  width: 26px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
}

.results__note {
  margin-top: 34px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  font-style: italic;
}

/* ---------- Values ---------- */
.values {
  position: relative;
  background: var(--bone) url("../assets/images/bg-values.jpg") center / cover no-repeat;
}

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 240, 0.9);
}

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

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.values__item {
  padding: 44px 34px 46px;
  border-right: 1px solid var(--bone-2);
  position: relative;
}

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

.values__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--gold);
}

.values__title {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.values__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.values__item::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}

.values__item:hover::after {
  width: 54px;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "\201C";
  position: absolute;
  left: 3%;
  top: -40px;
  font-family: var(--body);
  font-size: 340px;
  color: rgba(196, 160, 87, 0.13);
  line-height: 1;
}

.reviews .container {
  position: relative;
  z-index: 2;
}

.reviews__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.reviews__title {
  color: #fff;
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 800;
  margin-bottom: 34px;
}

.reviews__stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 26px;
  color: var(--gold);
}

.reviews__headline {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--gold-2);
  margin-bottom: 24px;
}

.reviews__quote {
  font-size: 17.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.reviews__name {
  margin-top: 28px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

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

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

.contact__title {
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}

.contact__sub {
  font-family: var(--body);
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 24px;
}

.contact__info p {
  color: var(--muted);
}

.contact__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

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

.contact__icon {
  flex: 0 0 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: #fff;
}

.contact__item strong {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 5px;
}

.contact__item span {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  white-space: pre-line;
}

.contact__item a {
  color: var(--navy-800);
  font-weight: 600;
}

.form-card {
  background: #fff;
  padding: 44px 44px 46px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.form-card__title {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-card__sub {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 28px;
}

.field {
  margin-bottom: 18px;
}

.field__label {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.field__input,
.field__select {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #d8d3ca;
  background: #fff;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 16px;
}

.field__textarea {
  width: 100%;
  height: 120px;
  padding: 11px 14px;
  border: 1px solid #d8d3ca;
  background: #fff;
  border-radius: 2px;
  resize: vertical;
  font-family: var(--body);
  font-size: 16px;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 160, 87, 0.18);
}

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

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

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

.form-card__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- CTA band ---------- */
.band {
  background: var(--gold);
  color: var(--navy-900);
}

.band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-top: 44px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}

.band__title {
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 760px;
}

.band__meta {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 10px 0 0;
  color: rgba(11, 23, 48, 0.72);
}

.band__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

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

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

.footer__logo {
  width: 300px;
  height: auto;
  max-width: none;
  margin-bottom: 22px;
}

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

.footer__heading {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

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

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

.footer__phone {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer__address {
  white-space: pre-line;
  line-height: 1.65;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 26px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom p {
  margin: 0;
  max-width: 900px;
  line-height: 1.6;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Header scale-down before hamburger ---------- */
@media (max-width: 1400px) {
  .header__inner {
    gap: 20px;
  }

  .header__nav-list {
    gap: 22px;
  }

  .header__cta {
    gap: 16px;
  }

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

  .header__phone {
    font-size: 20px;
  }

  .header__cta .btn--sm {
    font-size: 14px;
    padding: 13px 20px;
  }
}

@media (max-width: 1280px) {
  .header__nav-list {
    gap: 16px;
  }

  .header__nav-link {
    font-size: 13.5px;
    letter-spacing: 0.03em;
  }

  .header__phone {
    font-size: 18px;
  }

  .header__cta .btn--sm {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* ---------- Nav breakpoint: hamburger below 1200px ---------- */
@media (max-width: 1200px) {
  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(11, 23, 48, 0.56);
  }

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

  .header__toggle {
    display: block;
    z-index: 3;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    background: var(--navy-800);
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 84px 28px 40px;
    z-index: 2;
    background: var(--navy-800);
    border-top: 0;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
  }

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

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

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

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

  .header__cta {
    display: none;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: auto;
    padding-top: 28px;
  }

  .header__nav-extras .header__phone {
    font-size: 22px;
  }

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

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

  .results__item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

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

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

  .values__item:nth-child(1),
  .values__item:nth-child(2) {
    border-bottom: 1px solid var(--bone-2);
  }

  .hero__content {
    width: min(100%, 58%);
    max-width: min(100%, 560px);
  }

  .hero__visual {
    width: 50%;
  }
}

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

  .btn--sm {
    font-size: 14px;
    padding: 12px 18px;
  }
}

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .about__image {
    height: 420px;
  }

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

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

@media (max-width: 880px) {
  .utility {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 66px 0;
  }

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

  .hero__inner {
    height: auto;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: clamp(12px, 3vw, 20px) clamp(8px, 2vw, 18px) clamp(20px, 4vw, 32px);
  }

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

  .hero__image {
    height: auto;
    width: min(500px, 86%);
    max-width: 100%;
    margin: 0 auto;
  }

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

  .about__media::before,
  .about__media::after {
    display: none;
  }

  .about__badge {
    position: static;
    max-width: none;
    margin-top: -4px;
  }

  .form-card {
    padding: 30px 24px 34px;
  }

  .form-card__row {
    grid-template-columns: 1fr;
  }

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

  .footer__logo {
    width: min(300px, 100%);
    max-width: 100%;
  }

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

  .accolades__label {
    max-width: none;
  }

  .accolades__row {
    gap: 18px 12px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .accolades__badge {
    padding: 0;
  }

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

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

  .accolades__badge--super img {
    height: 32px;
  }

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

  .reviews::before {
    font-size: 200px;
    top: -10px;
  }

  .band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .results__item,
  .results__item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .values__item {
    border-right: 0;
    border-bottom: 1px solid var(--bone-2);
  }

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

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__phone {
    font-size: 22px;
    justify-content: center;
  }

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

  .band__actions,
  .band__actions .btn {
    width: 100%;
  }
}
