@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-400.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-400-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-700.woff2") format("woff2");
}

@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/karla-400.woff2") format("woff2");
}

@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/karla-500.woff2") format("woff2");
}

@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/karla-700.woff2") format("woff2");
}

:root {
  --navy-900: #0a1626;
  --navy-800: #0f2038;
  --navy-700: #16304f;
  --gold: #c4a468;
  --gold-lt: #d8c080;
  --ivory: #faf8f4;
  --paper: #ffffff;
  --ink: #1d2634;
  --muted: #5b6775;
  --rule: rgba(196, 164, 104, 0.3);
  --rule-soft: rgba(29, 38, 52, 0.12);
  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-text: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 18px 48px rgba(10, 22, 38, 0.1);
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 140px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-text);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.004em;
}

p {
  margin: 0 0 1.15em;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 45px);
}

.section {
  padding: 104px 0;
}

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

.section--dark {
  color: #fff;
}

.section--dark .section__title,
.section--dark h3 {
  color: #fff;
}

.section__header {
  max-width: 44em;
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.section__title {
  font-size: clamp(34px, 3.5vw, 52px);
}

.section__lede {
  font-size: 18px;
  color: var(--muted);
}

.section--dark .section__lede {
  color: rgba(255, 255, 255, 0.74);
}

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

.section__eyebrow::before,
.section__eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.005em;
  padding: 17px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

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

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

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

.utility {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(196, 164, 104, 0.2);
}

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

.utility__left,
.utility__right {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

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

.utility__icon {
  width: 14px;
  height: 14px;
  flex: none;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}

.utility__phone {
  white-space: nowrap;
  font-weight: 700;
  color: var(--gold-lt);
}

.header {
  background: var(--navy-900);
  position: relative;
  z-index: 40;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 96px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}

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

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

.header__nav-link {
  display: inline-block;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s;
}

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  right: 0;
}

.header__nav-extras {
  display: none;
}

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

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
}

.header__cta .btn {
  flex-shrink: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  padding: clamp(10px, 0.9vw, 13px) clamp(18px, 1.6vw, 28px);
}

.header__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: 1px solid rgba(196, 164, 104, 0.5);
  border-radius: 6px;
  cursor: pointer;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-lt);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s 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);
}

.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 0;
  overflow: hidden;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
  background: var(--navy-900) url("../assets/images/bg-hero.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 22, 38, 0.88) 0%,
    rgba(10, 22, 38, 0.66) 40%,
    rgba(10, 22, 38, 0.22) 70%,
    rgba(10, 22, 38, 0.34) 100%
  );
}

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

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

.hero__title {
  font-size: clamp(38px, 3.9vw, 60px);
  line-height: 1.06;
  font-weight: 600;
  color: #fff;
  text-wrap: balance;
}

.hero__rule {
  width: 78px;
  height: 2px;
  background: var(--gold);
  margin: 26px 0 20px;
}

.hero__subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 33em;
  margin: 0 0 32px;
}

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

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

.hero__phone svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  flex: none;
}

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

.hero__arc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__arc--inner {
  bottom: -96px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(216, 192, 128, 0.72);
  background: radial-gradient(circle at 50% 42%, rgba(196, 164, 104, 0.2), rgba(196, 164, 104, 0) 70%);
}

.hero__arc--outer {
  bottom: -142px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(196, 164, 104, 0.34);
}

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

.accolades {
  background: var(--navy-800);
  border-top: 1px solid rgba(196, 164, 104, 0.22);
}

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

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 26px;
  position: relative;
  min-width: 0;
}

.accolades__item + .accolades__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: rgba(196, 164, 104, 0.28);
}

.accolades__image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.accolades__image--forum {
  height: 82px;
}

.accolades__image--trial {
  height: 66px;
}

.accolades__image--super {
  height: 36px;
}

.accolades__image--justice {
  height: 50px;
}

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

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  z-index: 1;
}

.about__content .section__title {
  margin-bottom: 10px;
}

.about__subtitle {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin: 0 0 26px;
  letter-spacing: 0.01em;
}

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

.about__body p:first-child {
  font-family: var(--ff-display);
  font-size: 23px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}

.about__sig {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

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

.practice__lede {
  margin-top: 16px;
}

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

.practice-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

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

.practice-card__thumb {
  position: relative;
  aspect-ratio: 700 / 460;
  overflow: hidden;
  background: var(--navy-800);
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 38, 0.06), rgba(10, 22, 38, 0.42));
}

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

.practice-card__title {
  font-size: 25px;
  font-weight: 600;
}

.practice-card__text {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.practice-card__more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

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

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

.results {
  background: var(--navy-900) url("../assets/images/bg-results.jpg") center / cover no-repeat;
  position: relative;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 38, 0.74), rgba(10, 22, 38, 0.9));
}

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

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
}

.results__item {
  padding: 6px 30px;
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

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

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

.results__item + .results__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(196, 164, 104, 0.26);
}

.results__amount {
  font-family: var(--ff-display);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.results__desc {
  margin: 16px 0 20px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
  flex: 1;
}

.results__link {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(196, 164, 104, 0.55);
  padding-bottom: 4px;
}

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

.results__disclaimer {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 70em;
}

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

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 32, 56, 0.8), rgba(10, 22, 38, 0.92));
}

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

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

.values__card {
  border: 1px solid rgba(196, 164, 104, 0.26);
  padding: 34px 28px 32px;
  background: rgba(255, 255, 255, 0.026);
  min-width: 0;
}

.values__icon {
  width: 38px;
  height: 38px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.25;
  margin-bottom: 22px;
}

.values__title {
  font-size: 23px;
  line-height: 1.24;
  margin-bottom: 12px;
}

.values__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.68;
}

.testimonials {
  background: var(--ivory);
}

.testimonials__inner {
  max-width: 60em;
  margin-inline: auto;
  text-align: center;
}

.testimonials__mark {
  font-family: var(--ff-display);
  font-size: 96px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}

.testimonials__title {
  font-size: clamp(26px, 2.4vw, 36px);
  margin-bottom: 24px;
}

.testimonials__quote {
  font-family: var(--ff-display);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.62;
  color: var(--ink);
  font-style: italic;
}

.testimonials__name {
  margin-top: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials__stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}

.testimonials__stars svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
}

.contact {
  background: var(--paper);
}

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

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

.contact__lede {
  margin-bottom: 34px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule-soft);
}

.contact__item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: flex-start;
}

.contact__icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex: none;
  margin-top: 4px;
}

.contact__key {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.contact__value {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
  white-space: pre-line;
}

.contact__value strong {
  font-weight: 700;
}

.contact-form {
  background: var(--ivory);
  border: 1px solid var(--rule-soft);
  border-top: 3px solid var(--gold);
  padding: 44px 42px 46px;
  box-shadow: var(--shadow);
}

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

.contact-form__fine {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

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

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

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--ff-text);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(29, 38, 52, 0.2);
  border-radius: 2px;
  padding: 0 14px;
  width: 100%;
  height: 40px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form__field textarea {
  height: 120px;
  padding: 11px 14px;
  line-height: 1.6;
  resize: vertical;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23C4A468' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 164, 104, 0.18);
  outline: none;
}

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

.contact-form__note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.66);
  padding: 76px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 56px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 230px;
  height: 67px;
  max-width: none;
  margin-bottom: 24px;
}

.footer__blurb {
  font-size: 15px;
  line-height: 1.75;
}

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

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  font-size: 15px;
}

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

.footer__address {
  white-space: pre-line;
  font-size: 15px;
  line-height: 1.75;
}

.footer__address a {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  margin-top: 14px;
}

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

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 30px;
}

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

.footer__bar p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}

@media (max-width: 1400px) {
  .header__inner {
    gap: 24px;
  }

  .header__nav-list {
    gap: 22px;
  }

  .header__cta {
    gap: 18px;
  }
}

@media (max-width: 1240px) {
  .hero__visual {
    width: 44%;
  }

  .hero__arc--inner {
    width: 410px;
    height: 410px;
  }

  .hero__arc--outer {
    width: 490px;
    height: 490px;
  }

  .about__grid {
    gap: 48px;
  }
}

@media (max-width: 1200px) {
  .header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 22, 38, 0.55);
  }

  .header.is-open .header__overlay {
    display: block;
  }

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

  .header__toggle {
    display: flex;
  }

  .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;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-800);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

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

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

  .header__nav-link {
    display: block;
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

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

  .header__cta {
    display: none;
  }

  .hero__content {
    max-width: min(100%, 54%);
  }

  .hero__visual {
    width: 42%;
  }
}

@media (max-width: 1080px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__inner {
    height: auto;
    align-items: flex-start;
  }

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

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

  .hero__image {
    height: 470px;
    max-height: 70vh;
  }

  .hero__arc--outer {
    display: none;
  }

  .hero__arc--inner {
    bottom: -70px;
    width: 390px;
    height: 390px;
  }

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

  .about__media::after {
    left: -10px;
    top: -10px;
    right: 10px;
    bottom: 10px;
  }

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

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

  .results__item {
    padding: 0 26px;
  }

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

  .results__item:nth-child(odd)::before {
    display: none;
  }

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

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

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    line-height: 1.35;
    font-size: 18px;
    padding: 14px 24px;
  }

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

@media (max-width: 820px) {
  .utility__inner {
    justify-content: center;
  }

  .utility__left {
    display: none;
  }

  .utility__right {
    gap: 18px;
    font-size: 12.5px;
  }

  .accolades__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
    padding: 30px 0;
  }

  .accolades__item:nth-child(odd)::before {
    display: none;
  }

  .accolades__item {
    padding: 6px 16px;
  }

  .accolades__image--forum {
    height: 66px;
  }

  .accolades__image--trial {
    height: 54px;
  }

  .accolades__image--super {
    height: 30px;
  }

  .accolades__image--justice {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: clamp(32px, 6vw, 48px) clamp(16px, 4vw, 24px) 0;
  }

  .hero__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  body {
    font-size: 16px;
  }

  .utility__right span {
    display: none;
  }

  .hero__content {
    padding: 12px 0 28px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__image {
    height: 390px;
  }

  .hero__arc--inner {
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    bottom: -56px;
  }

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

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

  .results__item::before {
    display: none;
  }

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

  .contact-form {
    padding: 32px 24px 34px;
  }

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

  .testimonials__mark {
    font-size: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
