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

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

:root {
  --ink: #0a1622;
  --navy: #0f2942;
  --navy-2: #16385a;
  --navy-3: #1d4770;
  --steel: #5f9bc0;
  --steel-dk: #3f7ca1;
  --steel-lt: #a9c7dc;
  --gold: #c2a265;
  --gold-lt: #dcc69a;
  --bone: #f6f3ed;
  --bone-2: #ede7dc;
  --line: #dcd5c8;
  --body: #414e5b;
  --serif: "Literata", Georgia, "Times New Roman", serif;
  --sans: "Jakarta", "Helvetica Neue", Arial, sans-serif;
  --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;
  font-family: var(--sans);
  color: var(--body);
  background: #fff;
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.012em;
}

p {
  margin: 0 0 1.15em;
}

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

button {
  font-family: inherit;
}

.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(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 20px;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.35;
  padding: 20px 38px;
  border-radius: 999px;
  white-space: nowrap;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  max-width: 100%;
  transition: 0.28s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  color: #1a1206;
  box-shadow: 0 12px 30px -12px rgba(194, 162, 101, 0.75);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(194, 162, 101, 0.9);
}

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

.btn--navy:hover {
  background: var(--navy-2);
}

.btn--sm {
  font-size: 15px;
  padding: 14px 26px;
  gap: 8px;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

/* ============================== UTILITY BAR ============================== */

.utility {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

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

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

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

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

.utility svg {
  width: 14px;
  height: 14px;
  color: var(--steel);
  flex: none;
}

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

/* ============================== HEADER ============================== */

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 40;
}

.header__overlay {
  display: none;
}

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

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

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

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

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.2s 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 {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-left: auto;
}

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

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

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

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

.header__nav-link:hover::after,
.header__nav-link:focus-visible::after {
  right: 0;
}

.header__nav-extras {
  display: none;
}

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

.header__phone {
  font-family: var(--serif);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.15;
}

.header__phone-label {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1px;
}

.header__phone-number {
  display: block;
}

.header__cta .btn {
  font-size: clamp(13px, 1vw, 15px);
  padding: clamp(11px, 0.9vw, 14px) clamp(18px, 1.6vw, 26px);
  flex-shrink: 0;
}

/* ============================== HERO ============================== */

.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 12% 50%, rgba(10, 22, 34, 0.94) 0%, rgba(10, 22, 34, 0.76) 45%, rgba(10, 22, 34, 0.42) 100%),
    linear-gradient(90deg, rgba(10, 22, 34, 0.92) 0%, rgba(10, 22, 34, 0.5) 52%, rgba(10, 22, 34, 0.72) 100%);
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  padding: 0 clamp(12px, 2.4vw, 48px) 0 0;
}

.hero__title {
  font-size: clamp(38px, 3.8vw, 66px);
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.06;
}

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

.hero__lede {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17.5px;
  line-height: 1.7;
  margin: 26px 0 0;
  max-width: 600px;
}

.hero__rule {
  width: 74px;
  height: 3px;
  background: var(--gold);
  margin: 30px 0 0;
  border-radius: 2px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__phone-number {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.005em;
  line-height: 1.1;
  white-space: nowrap;
}

.hero__phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-lt);
}

.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: 1;
}

.hero__glow {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 78%;
  height: 80%;
  background: radial-gradient(60% 62% at 50% 78%, rgba(95, 155, 192, 0.32), rgba(95, 155, 192, 0) 70%);
  pointer-events: none;
}

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

/* ============================== ACCOLADES ============================== */

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

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

.accolades__label {
  flex: none;
  max-width: 250px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.accolades__title {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  line-height: 1.22;
  font-weight: 600;
}

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

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3.6vw, 68px);
  flex: 1;
  flex-wrap: wrap;
}

.accolades {
  --seal-scale: 1;
}

.accolades__seal {
  display: block;
  width: auto;
  flex: none;
  opacity: 0.88;
  transition: 0.3s;
}

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

.accolades__seal--s1 {
  height: calc(92px * var(--seal-scale));
}

.accolades__seal--s2 {
  height: calc(80px * var(--seal-scale));
}

.accolades__seal--s3 {
  height: calc(48px * var(--seal-scale));
}

.accolades__seal--s4 {
  height: calc(60px * var(--seal-scale));
}

/* ============================== SECTION SHELL ============================== */

.section {
  padding: 110px 0;
}

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

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

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

.section__head h2 {
  font-size: clamp(30px, 2.55vw, 44px);
}

.section__head h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-dk);
  margin-top: 16px;
}

.section__head p {
  margin-top: 22px;
}

/* ============================== ABOUT ============================== */

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

.about__media {
  position: relative;
}

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

.about__media::after {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  right: 52px;
  bottom: 52px;
  border: 1px solid rgba(194, 162, 101, 0.75);
  border-radius: 4px;
  z-index: -1;
}

.about__stat {
  position: absolute;
  right: -26px;
  bottom: -26px;
  background: var(--navy);
  color: #fff;
  padding: 26px 30px;
  border-radius: 4px;
  box-shadow: 0 26px 54px -22px rgba(10, 22, 34, 0.6);
  max-width: 230px;
}

.about__stat b {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: var(--gold-lt);
  font-weight: 600;
}

.about__stat span {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
  line-height: 1.5;
}

.about__copy h2 {
  font-size: clamp(30px, 2.6vw, 45px);
}

.about__sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--steel-dk);
  margin: 18px 0 26px;
}

.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 34px;
}

.about__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.about__chip svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex: none;
}

.section--bone .about__chip {
  background: #fff;
}

/* ============================== PRACTICE ============================== */

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

.practice__card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.practice__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.05s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.practice__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 22, 34, 0.12) 0%, rgba(10, 22, 34, 0.55) 48%, rgba(10, 22, 34, 0.93) 100%);
}

.practice__card:hover .practice__image {
  transform: scale(1.07);
}

.practice__body {
  padding: 32px 30px 30px;
  width: 100%;
}

.practice__index {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold-lt);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.practice__title {
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
}

.practice__more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.practice__more svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}

.practice__card:hover .practice__more svg {
  transform: translateX(5px);
}

.practice__note {
  margin-top: 44px;
  text-align: center;
}

/* ============================== RESULTS ============================== */

.results {
  position: relative;
  background: var(--ink);
  padding: 110px 0;
  overflow: hidden;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-results.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

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

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

.results .section__head h2 {
  color: #fff;
}

.results .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

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

.results__card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.results__card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.results__title {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.22;
  color: #fff;
  font-weight: 600;
  display: block;
}

.results__charge {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-lt);
}

.results__link {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.results__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.results__card:hover .results__link svg {
  transform: translateX(4px);
}

/* ============================== VALUES ============================== */

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.values__card {
  padding: 46px 42px;
}

.values__card + .values__card {
  border-left: 1px solid var(--line);
}

.values__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.values__icon svg {
  width: 26px;
  height: 26px;
  color: var(--steel-dk);
}

.values__title {
  font-size: 23px;
  margin-bottom: 14px;
}

.values__text {
  font-size: 16px;
}

/* ============================== TESTIMONIAL ============================== */

.testimonial {
  padding: 104px 0;
  background: var(--bone-2);
}

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

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.34;
  color: var(--navy);
  letter-spacing: -0.012em;
}

.testimonial__quote--secondary {
  font-family: var(--sans);
  font-size: 18.5px;
  line-height: 1.78;
  color: var(--body);
  max-width: 800px;
  margin: 30px auto 0;
  font-style: italic;
}

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

.testimonial__stars svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.testimonial__by {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-dk);
}

/* ============================== CONTACT ============================== */

.contact {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

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

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 22, 34, 0.95) 0%, rgba(10, 22, 34, 0.82) 55%, rgba(15, 41, 66, 0.9) 100%);
}

.contact__inner {
  position: relative;
  z-index: 2;
  padding-top: 104px;
  padding-bottom: 104px;
}

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

.contact h2 {
  color: #fff;
  font-size: clamp(30px, 2.6vw, 44px);
}

.contact__copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 22px;
  max-width: 520px;
}

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

.contact__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.contact__list svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  flex: none;
  margin-top: 3px;
}

.contact__actions {
  margin-top: 38px;
}

.form {
  background: #fff;
  border-radius: 5px;
  padding: 44px 42px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
}

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

.form__note {
  font-size: 14.5px;
  margin-bottom: 28px;
}

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

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

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

.form__input {
  width: 100%;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 15px;
  height: 40px;
  transition: 0.22s;
}

.form__input--select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F2942' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px;
  padding-right: 38px;
}

.form__input--textarea {
  height: 120px;
  padding: 12px 15px;
  resize: vertical;
  line-height: 1.6;
}

.form__input:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(95, 155, 192, 0.16);
}

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

.form__disclaimer {
  font-size: 12.5px;
  line-height: 1.6;
  color: #7a8794;
  margin-top: 18px;
}

/* ============================== FOOTER ============================== */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: 80px 0 0;
  font-size: 15px;
}

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

.footer__logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 26px;
}

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

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

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

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

.footer__row svg {
  width: 17px;
  height: 17px;
  color: var(--steel);
  flex: none;
  margin-top: 4px;
}

.footer__phone {
  font-family: var(--serif);
  font-size: 23px;
  color: #fff;
  font-weight: 600;
}

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

.footer__credit {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

/* ============================== RESPONSIVE ============================== */

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

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

  .header__cta {
    gap: 14px;
  }

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

  .about {
    gap: 48px;
  }

  .accolades__inner {
    gap: 34px;
  }

  .accolades {
    --seal-scale: 0.86;
  }
}

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 22, 34, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

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

  .header__toggle {
    display: flex;
  }

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

  .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: #fff;
    box-shadow: -18px 0 48px rgba(10, 22, 34, 0.2);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  }

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

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

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

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

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

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

  .header__cta {
    display: none;
  }

  .utility__group--left {
    display: none;
  }

  .utility__inner {
    justify-content: center;
  }

  .utility__group--right {
    justify-content: center;
    gap: 20px;
  }

  .header__inner {
    min-height: 82px;
  }
}

@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__image {
    height: 440px;
  }

  .about__media::after {
    right: 22px;
    bottom: 22px;
  }

  .about__stat {
    right: 0;
    bottom: -20px;
  }

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

  .values__card + .values__card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

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

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

  .accolades__row {
    width: 100%;
    justify-content: flex-start;
    gap: 26px;
  }

  .section {
    padding: 84px 0;
  }
}

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

@media (max-width: 768px) {
  .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));
    padding: clamp(32px, 6vw, 48px) clamp(20px, 4vw, 28px) 0;
  }

  .hero__inner {
    height: auto;
    display: block;
  }

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

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

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

  .eyebrow::after,
  .eyebrow--center::before {
    display: none;
  }
}

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

  .utility__inner {
    justify-content: center;
    text-align: center;
  }

  .utility__group--left {
    display: none;
  }

  .utility__group--right {
    justify-content: center;
    gap: 16px;
  }

  .hero__title {
    font-size: clamp(31px, 8.6vw, 42px);
  }

  .hero__actions {
    gap: 22px;
  }

  .hero .btn {
    width: 100%;
  }

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

  .practice__card {
    min-height: 330px;
  }

  .about__image {
    height: 340px;
  }

  .about__stat {
    position: static;
    margin-top: 18px;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .about__stat span {
    margin-top: 0;
  }

  .about__media::after {
    display: none;
  }

  .form {
    padding: 32px 24px;
  }

  .section {
    padding: 64px 0;
  }

  .results,
  .testimonial {
    padding: 64px 0;
  }

  .contact__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .footer__logo {
    width: 250px;
  }

  .accolades {
    --seal-scale: 0.66;
  }

  .accolades__row {
    gap: 22px 26px;
  }

  .btn {
    font-size: 18px;
    padding: 17px 30px;
  }

  .testimonial__quote {
    font-size: 24px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

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