:root {
  --ink: #070e1b;
  --navy: #0c1729;
  --navy-2: #132239;
  --navy-3: #1b2e4a;
  --brass: #c39a3e;
  --brass-lt: #e3c57c;
  --brass-dk: #9a7527;
  --cream: #f7f4ed;
  --cream-2: #efeae0;
  --paper: #ffffff;
  --body: #4e5867;
  --body-lt: #6b7585;
  --rule: rgba(195, 154, 62, 0.3);
  --ff-d: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  --ff-b: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pad: 45px;
  --container-max: 1820px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 140px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--ff-b);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

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

p {
  margin: 0 0 20px;
}

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

/* ---------- type ---------- */

.eyebrow {
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.eyebrow::after {
  content: "";
  height: 1px;
  width: 56px;
  background: var(--brass);
  opacity: 0.55;
  flex: 0 0 auto;
}

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

.eyebrow--center::before {
  content: "";
  height: 1px;
  width: 56px;
  background: var(--brass);
  opacity: 0.55;
  flex: 0 0 auto;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 999px;
  font-family: var(--ff-b);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.28s ease;
  border: 1px solid transparent;
  max-width: 100%;
  line-height: 1.35;
}

.btn--lg {
  font-size: 20px;
  padding: 19px 42px;
}

.btn--sm {
  font-size: 14px;
  padding: 12px 26px;
  letter-spacing: 0.1em;
}

.btn--primary {
  background: linear-gradient(180deg, var(--brass-lt), var(--brass));
  color: var(--ink);
  box-shadow: 0 14px 34px -14px rgba(195, 154, 62, 0.75);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #efd69a, var(--brass-lt));
  box-shadow: 0 18px 40px -14px rgba(195, 154, 62, 0.9);
  transform: translateY(-2px);
}

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

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

.more-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.more-link--navy {
  color: var(--navy);
}

.more-link__icon {
  width: 16px;
  height: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  transition: transform 0.3s;
}

.more-link:hover .more-link__icon {
  transform: translateX(6px);
}

/* ---------- utility bar ---------- */

.utility {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  letter-spacing: 0.05em;
}

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

.utility__group {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.utility__item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.utility__item--emphasis {
  color: var(--brass-lt);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.utility__icon {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  fill: var(--brass);
}

.utility__text {
  min-width: 0;
}

/* ---------- header ---------- */

.header {
  background: var(--navy);
  border-bottom: 1px solid rgba(195, 154, 62, 0.24);
  position: relative;
  z-index: 40;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 20px;
  position: relative;
  z-index: 2;
}

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

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

.header__toggle {
  display: none;
  width: 44px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

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

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

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

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

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

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  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: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.24s;
  flex-shrink: 0;
}

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

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

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

.header__nav-extras {
  display: none;
}

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

.header__cta .btn--sm {
  font-size: clamp(12px, 0.95vw, 14px);
  padding: clamp(10px, 0.9vw, 12px) clamp(18px, 1.6vw, 26px);
}

/* ---------- hero ---------- */

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 32%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(7, 14, 27, 0.965) 0%,
    rgba(7, 14, 27, 0.93) 34%,
    rgba(9, 17, 33, 0.72) 58%,
    rgba(9, 17, 33, 0.42) 78%,
    rgba(9, 17, 33, 0.55) 100%
  );
}

.hero__glow {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 62%, rgba(195, 154, 62, 0.2), rgba(195, 154, 62, 0) 66%);
}

.hero__ring {
  position: absolute;
  right: 8%;
  bottom: -70px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(195, 154, 62, 0.3);
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 46%);
  align-items: center;
  gap: 20px;
}

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

.hero__title {
  color: var(--cream);
  font-size: clamp(40px, 5.05vw, 78px);
  line-height: 1.02;
  margin: 20px 0 0;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

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

.hero__subtitle {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.9;
  max-width: 600px;
}

.hero__rule {
  width: 78px;
  height: 2px;
  background: var(--brass);
  margin: 28px 0 0;
}

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

.hero__tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__tel-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

.hero__tel-number {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.25;
  transition: color 0.24s;
}

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

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

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

.hero__plinth {
  position: absolute;
  right: -4%;
  bottom: 0;
  width: 112%;
  height: 96px;
  background: radial-gradient(ellipse at 50% 100%, rgba(195, 154, 62, 0.24), rgba(195, 154, 62, 0) 70%);
}

/* ---------- accolades ---------- */

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

.accolades__inner {
  padding-block: 46px 50px;
}

.accolades__caption {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--body-lt);
  margin: 0 0 30px;
}

.accolades__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.accolades__slot {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  position: relative;
}

.accolades__slot + .accolades__slot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: linear-gradient(180deg, rgba(12, 23, 41, 0), rgba(12, 23, 41, 0.16), rgba(12, 23, 41, 0));
}

.accolades__image {
  width: auto;
  max-width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

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

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

.accolades__image--aaj {
  height: 69px;
}

.accolades__slot:hover .accolades__image {
  opacity: 1;
}

/* ---------- about ---------- */

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

.about__inner {
  padding-block: 104px;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  gap: 78px;
  align-items: center;
}

.about__figure {
  position: relative;
}

.about__figure::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 150px;
  height: 150px;
  border-left: 2px solid var(--brass);
  border-top: 2px solid var(--brass);
}

.about__figure::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 150px;
  height: 150px;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
}

.about__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 60%;
}

.about__title {
  font-size: clamp(30px, 3.05vw, 44px);
  margin: 18px 0 14px;
}

.about__subtitle {
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin: 0 0 26px;
}

.about__lede {
  font-size: 17.5px;
  line-height: 1.85;
}

.about__callout {
  margin-top: 34px;
  background: var(--cream);
  border-left: 3px solid var(--brass);
  padding: 26px 30px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--navy-2);
}

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

.about__callout a {
  color: var(--brass-dk);
  font-weight: 700;
  border-bottom: 1px solid var(--rule);
}

/* ---------- practice ---------- */

.practice {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.practice__texture {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-practice.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}

.practice__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 23, 41, 0.92), rgba(7, 14, 27, 0.97));
}

.practice__inner {
  position: relative;
  z-index: 2;
  padding-block: 104px 110px;
}

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

.practice__title {
  color: var(--cream);
  font-size: clamp(30px, 3.1vw, 46px);
  margin-top: 18px;
}

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

.practice-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.34s ease;
}

.practice-card__photo {
  position: relative;
  height: 212px;
  overflow: hidden;
}

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

.practice-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 27, 0.06), rgba(7, 14, 27, 0.72));
}

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

.practice-card__title {
  color: var(--cream);
  font-size: 21px;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: center;
}

.practice-card .more-link {
  margin-top: auto;
}

.practice-card:hover {
  border-color: rgba(195, 154, 62, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, 0.7);
}

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

/* ---------- results ---------- */

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

.results__inner {
  padding-block: 100px 106px;
}

.results__head {
  text-align: center;
  margin-bottom: 54px;
}

.results__title {
  font-size: clamp(30px, 3.1vw, 46px);
  margin-top: 18px;
}

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

.result-card {
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-top: 3px solid var(--brass);
  padding: 38px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.3s;
}

.result-card__outcome {
  font-family: var(--ff-b);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dk);
}

.result-card__title {
  font-size: 22px;
  line-height: 1.32;
  flex: 1;
}

.result-card .more-link {
  padding-top: 6px;
}

.result-card:hover {
  box-shadow: 0 24px 44px -24px rgba(12, 23, 41, 0.34);
  transform: translateY(-5px);
}

/* ---------- values ---------- */

.values {
  position: relative;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.values__texture {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-practice.jpg");
  background-size: cover;
  background-position: center 70%;
  opacity: 0.24;
}

.values__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 27, 0.94), rgba(12, 23, 41, 0.9));
}

.values__inner {
  position: relative;
  z-index: 2;
  padding-block: 100px 104px;
  display: grid;
  grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.values__title {
  color: var(--cream);
  font-size: clamp(30px, 3.05vw, 44px);
  margin-top: 18px;
}

.values__note {
  margin-top: 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
}

.values__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.09);
}

.values__item {
  background: var(--navy);
  padding: 38px 34px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: background 0.3s;
}

.values__num {
  font-family: var(--ff-d);
  font-size: 34px;
  font-weight: 600;
  color: var(--brass);
  line-height: 1;
  opacity: 0.85;
  flex: 0 0 auto;
}

.values__heading {
  color: var(--cream);
  font-size: 20px;
  line-height: 1.38;
}

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

/* ---------- testimonial ---------- */

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

.testimonial__inner {
  padding-block: 98px;
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
}

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

.testimonial__stars svg {
  width: 20px;
  height: 20px;
  fill: var(--brass);
}

.testimonial__quote {
  margin: 0;
  font-family: var(--ff-d);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.42;
  color: var(--navy);
  font-weight: 400;
}

.testimonial__who {
  margin: 30px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-dk);
}

/* ---------- contact ---------- */

.contact {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.contact__texture {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 20%;
  opacity: 0.4;
}

.contact__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 14, 27, 0.97), rgba(12, 23, 41, 0.9));
}

.contact__inner {
  position: relative;
  z-index: 2;
  padding-block: 100px 106px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 600px);
  gap: 72px;
  align-items: start;
}

.contact__title {
  color: var(--cream);
  font-size: clamp(30px, 3.05vw, 44px);
  margin-top: 18px;
}

.contact__blurb {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
}

.contact__facts {
  margin-top: 40px;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  max-width: 560px;
}

.contact-fact {
  background: rgba(255, 255, 255, 0.035);
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-fact__icon {
  width: 18px;
  height: 18px;
  fill: var(--brass);
  flex: 0 0 auto;
  margin-top: 4px;
}

.contact-fact__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.contact-fact__value {
  color: #fff;
  font-size: 16.5px;
  line-height: 1.6;
  white-space: pre-line;
}

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

.form {
  background: var(--paper);
  padding: 44px 44px 46px;
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.6);
}

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

.form__subtitle {
  font-size: 15px;
  color: var(--body-lt);
  margin-bottom: 28px;
}

.form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.form__input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #d8d3c8;
  background: #fcfbf8;
  border-radius: 3px;
  font-size: 15.5px;
  color: var(--navy);
  transition: 0.22s;
  outline: none;
}

.form__input--select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234E5867' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
}

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

.form__input:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(195, 154, 62, 0.16);
  background: #fff;
}

.form__submit {
  width: 100%;
  margin-top: 22px;
}

.form__fine {
  margin: 16px 0 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--body-lt);
  text-align: center;
}

/* ---------- footer ---------- */

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

.footer__top {
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__logo {
  width: 250px;
  height: auto;
  margin-bottom: 24px;
}

.footer__bio {
  max-width: 440px;
  line-height: 1.85;
}

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

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

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

.footer__value {
  color: #fff;
  white-space: pre-line;
  line-height: 1.7;
  margin: 0;
}

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

.footer__value--spaced {
  margin-top: 16px;
}

.footer__cta {
  margin: 20px 0 0;
}

.footer__bottom {
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- header scale before hamburger ---------- */

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

  .header__inner {
    gap: 24px;
  }
}

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

  .header__nav-link {
    letter-spacing: 0.08em;
  }
}

/* ---------- hamburger / slide-in panel ---------- */

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(7, 14, 27, 0.62);
    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;
    margin-left: auto;
  }

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

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

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

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

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(195, 154, 62, 0.24);
  }

  .header__nav-phone {
    font-family: var(--ff-d);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
  }

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

  .header__cta {
    display: none;
  }

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

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

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

  .values__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

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

@media (max-width: 1240px) {
  :root {
    --pad: 34px;
  }
}

/* ---------- buttons wrap ---------- */

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

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

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    padding-block: 74px;
  }

  .about__image {
    height: 420px;
  }

  .accolades__strip {
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
  }

  .accolades__slot {
    height: 96px;
    padding: 0 18px;
  }

  .accolades__image {
    transform: scale(0.86);
  }

  .accolades__slot:nth-child(3)::before {
    display: none;
  }

  .form {
    padding: 34px 26px 36px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__logo {
    width: 210px;
  }
}

/* ---------- hero stacks below 768 ---------- */

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

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

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

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

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

  .hero__ring,
  .hero__glow {
    display: none;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(7, 14, 27, 0.95), rgba(9, 17, 33, 0.86));
  }
}

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

  .container {
    width: 100%;
  }

  .utility__row {
    height: auto;
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .utility__group {
    flex-wrap: wrap;
    gap: 14px;
  }

  .header__inner {
    padding-block: 16px;
  }

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

  .hero__subtitle {
    letter-spacing: 0.11em;
    font-size: 14.5px;
  }

  .hero__actions {
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn--lg {
    font-size: 18px;
    padding: 16px;
    width: 100%;
    letter-spacing: 0.04em;
  }

  .hero__visual {
    height: 360px;
  }

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

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

  .practice-card__photo {
    height: 190px;
  }

  .practice-card__title {
    min-height: 0;
  }

  .values__item {
    padding: 28px 24px;
  }

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

  .practice__inner,
  .results__inner,
  .values__inner,
  .contact__inner,
  .testimonial__inner {
    padding-top: 70px;
    padding-bottom: 74px;
  }
}
