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

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

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

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

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

:root {
  --ink: #0a1120;
  --navy: #122239;
  --navy-lt: #1c3452;
  --brass: #c2a15c;
  --brass-dk: #9a7838;
  --stone: #edf0f4;
  --paper: #ffffff;
  --body: #3e4859;
  --rule: rgba(194, 161, 92, 0.38);
  --display: "Prata", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --site-chrome-height: 132px;
  --container-max: 1800px;
  --nav-breakpoint: 1200px;
  --pad: 45px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: 0.002em;
}

p {
  margin: 0 0 1.15em;
}

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

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

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

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin: 0 0 18px;
}

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

.iron {
  display: block;
  width: 186px;
  height: 16px;
  margin: 0 0 26px;
  background: url("../assets/images/iron.svg") no-repeat center / contain;
}

.iron--center {
  margin-left: auto;
  margin-right: auto;
}

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

.btn:hover {
  background: transparent;
  color: var(--brass);
  transform: translateY(-1px);
}

.btn--sm {
  font-size: 14px;
  padding: 12px 24px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.btn--ghost {
  background: transparent;
  color: var(--brass);
}

.btn--ghost:hover {
  background: var(--brass);
  color: var(--ink);
}

/* ---------- more link ---------- */
.more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dk);
}

.more::after {
  content: "";
  width: 20px;
  height: 7px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 7'%3E%3Cpath d='M0 3.5h18M14.5 .8L18 3.5l-3.5 2.7' fill='none' stroke='black' stroke-width='1.2'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 7'%3E%3Cpath d='M0 3.5h18M14.5 .8L18 3.5l-3.5 2.7' fill='none' stroke='black' stroke-width='1.2'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.3s;
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
}

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

.topbar__emphasis {
  color: #fff;
  font-weight: 500;
}

.topbar__dot {
  color: var(--brass);
  margin: 0 10px;
}

/* ---------- header ---------- */
.header {
  background: var(--navy);
  border-bottom: 1px solid rgba(194, 161, 92, 0.28);
  position: relative;
  z-index: 30;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 86px;
  position: relative;
}

.header__logo {
  flex-shrink: 0;
}

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

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

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

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

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

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

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

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

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

.header__nav-link {
  display: block;
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(11px, 0.55vw + 6.5px, 14px);
  padding: clamp(9px, 0.7vw, 12px) clamp(14px, 1.3vw, 24px);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1120;
  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__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-hero.jpg") center 34% / cover no-repeat;
  filter: saturate(0.35) contrast(1.02) brightness(0.92);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 17, 32, 0.97) 0%,
    rgba(10, 17, 32, 0.94) 30%,
    rgba(13, 24, 42, 0.72) 52%,
    rgba(18, 34, 57, 0.3) 72%,
    rgba(24, 42, 68, 0.12) 100%
  );
}

.hero__veil--base {
  background: linear-gradient(to top, rgba(10, 17, 32, 0.55), rgba(10, 17, 32, 0) 42%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 520px);
  padding-right: clamp(8px, 2vw, 24px);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.hero__title {
  color: #fff;
  font-size: clamp(31px, 2.35vw, 42px);
  line-height: 1.15;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--brass);
}

.hero__sub {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-weight: 300;
}

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

.hero__tel {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
}

.hero__tel:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

.hero__tel-icon {
  width: 17px;
  height: 17px;
  fill: var(--brass);
  flex: none;
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 55%;
  height: 100%;
  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;
}

/* ---------- accolades ---------- */
.accolades {
  background: var(--stone);
  border-top: 1px solid rgba(18, 34, 57, 0.08);
  border-bottom: 1px solid rgba(18, 34, 57, 0.08);
}

.accolades__inner {
  padding-top: 44px;
  padding-bottom: 44px;
}

.accolades__label {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8c97a8;
  margin: 0 0 30px;
}

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

.accolades__item {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  min-width: 0;
}

.accolades__image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.74;
  transition: opacity 0.3s;
}

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

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

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

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

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

/* ---------- sections ---------- */
.section {
  padding: 104px 0;
}

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

.heading-lead {
  font-size: clamp(30px, 2.5vw, 44px);
}

.heading-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin: 16px 0 26px;
}

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

.about__media {
  position: relative;
}

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

.about__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--rule);
}

.about__body p {
  font-size: 17.5px;
}

.callout {
  margin-top: 34px;
  border-left: 3px solid var(--brass);
  background: var(--stone);
  padding: 24px 30px;
  font-size: 17px;
  color: var(--navy);
}

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

.callout a:hover {
  color: var(--navy);
}

/* ---------- practice ---------- */
.practice__head {
  max-width: 760px;
  margin-bottom: 56px;
}

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

.practice-card {
  background: var(--paper);
  border: 1px solid rgba(18, 34, 57, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, box-shadow 0.35s;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(12, 24, 42, 0.14);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 900 / 500;
  overflow: hidden;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 32, 0.62), rgba(10, 17, 32, 0) 58%);
}

.practice-card__body {
  padding: 34px 38px 38px;
}

.practice-card__title {
  font-size: 27px;
}

.practice-card__body p {
  margin-top: 14px;
  font-size: 16.5px;
}

.practice-card:hover .more::after {
  transform: translateX(6px);
}

/* ---------- results ---------- */
.results {
  position: relative;
  padding: 104px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

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

.results__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.86), rgba(10, 17, 32, 0.94));
}

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

.results__title {
  color: #fff;
}

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

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(194, 161, 92, 0.3);
}

.result {
  padding: 44px 34px 40px;
  border-bottom: 1px solid rgba(194, 161, 92, 0.3);
  border-right: 1px solid rgba(194, 161, 92, 0.18);
}

.result:last-child {
  border-right: none;
}

.result__amount {
  font-family: var(--display);
  font-size: clamp(30px, 2.5vw, 40px);
  color: var(--brass);
  line-height: 1;
}

.result__desc {
  margin: 18px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.result .more {
  color: #fff;
  opacity: 0.75;
}

.result:hover .more {
  opacity: 1;
  color: var(--brass);
}

.results__note {
  margin: 34px 0 0;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

/* ---------- values ---------- */
.values {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 80px;
  align-items: center;
}

.values__media {
  position: relative;
}

.values__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1200 / 900;
}

.values__tag {
  position: absolute;
  left: -1px;
  bottom: 34px;
  background: var(--navy);
  color: #fff;
  padding: 22px 30px;
  max-width: 280px;
}

.values__tag-stat {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  color: var(--brass);
  line-height: 1;
}

.values__tag-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.values__list {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid rgba(18, 34, 57, 0.12);
}

.values__item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(18, 34, 57, 0.12);
}

.values__icon {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 4px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.3;
}

.values__item-title {
  font-size: 21px;
  line-height: 1.4;
}

/* ---------- testimonials ---------- */
.testimonials {
  background: var(--navy);
  color: #fff;
  padding: 100px 0;
  position: relative;
}

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

.testimonials__quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.94);
}

.testimonials__cite {
  display: block;
  margin-top: 30px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 76px;
  align-items: start;
}

.contact__copy {
  font-size: 17px;
  margin-top: 22px;
}

.contact__meta {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.contact__meta-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__meta-icon {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 5px;
  stroke: var(--brass-dk);
  fill: none;
  stroke-width: 1.3;
}

.contact__meta-label {
  display: block;
  font-weight: 500;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact__meta-value {
  color: var(--body);
  font-size: 17px;
  line-height: 1.6;
}

.form {
  background: var(--paper);
  border: 1px solid rgba(18, 34, 57, 0.1);
  padding: 44px 46px 48px;
  box-shadow: 0 22px 54px rgba(12, 24, 42, 0.07);
}

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

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

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

.field__label {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 9px;
}

.field__input,
.field__select,
.field__textarea {
  height: 40px;
  width: 100%;
  border: 1px solid rgba(18, 34, 57, 0.2);
  border-radius: 2px;
  background: #fff;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--navy);
}

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

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

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--brass);
  outline: none;
  box-shadow: 0 0 0 3px rgba(194, 161, 92, 0.16);
}

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

.form__fine {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #8c97a8;
}

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

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

.footer__logo {
  width: 300px;
  max-width: 100%;
  height: auto;
}

.footer__blurb {
  margin-top: 24px;
  max-width: 380px;
}

.footer__heading {
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 20px;
}

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

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

.footer__address {
  margin-bottom: 18px;
}

.footer__tel {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
}

.footer__tel:hover {
  color: var(--brass);
}

.footer__cta {
  margin-top: 24px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- header scaling before hamburger ---------- */
@media (max-width: 1400px) {
  .header__inner {
    gap: 26px;
  }

  .header__nav-list {
    gap: clamp(16px, 1.5vw, 24px);
  }

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

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

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

  .header__nav-list {
    gap: 14px;
  }

  .header__nav-link {
    font-size: 12.5px;
    letter-spacing: 0.035em;
  }

  .header__cta .btn {
    font-size: 11px;
    padding: 9px 14px;
  }
}

/* ---------- mobile nav: 1200px ---------- */
@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 17, 32, 0.58);
    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;
    z-index: 4;
  }

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

  .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(--ink);
    border-top: 1px solid rgba(194, 161, 92, 0.25);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }

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

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

  .header__nav-link {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .header__nav-phone {
    color: var(--brass);
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .header__cta {
    display: none;
  }
}

/* ---------- layout stacking ---------- */
@media (max-width: 1080px) {
  :root {
    --pad: 32px;
  }

  .hero__visual {
    width: 48%;
  }

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

  .about__media::after {
    display: none;
  }

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

  .result:nth-child(2n) {
    border-right: none;
  }

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

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

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

@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(32px, 6vw, 48px) clamp(16px, 4vw, 28px) 0;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(10, 17, 32, 0.95), rgba(10, 17, 32, 0.86));
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
    padding-inline: clamp(4px, 2vw, 16px);
    padding-right: clamp(4px, 2vw, 16px);
    padding-bottom: 0;
  }

  .hero .iron {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(560px, 100%);
    height: auto;
    margin: 40px auto 0;
    justify-content: center;
  }

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

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

  body {
    font-size: 16px;
  }

  .section,
  .results,
  .contact {
    padding: 68px 0;
  }

  .testimonials {
    padding: 68px 0;
  }

  .topbar__inner {
    flex-direction: column;
    gap: 3px;
    padding-top: 9px;
    padding-bottom: 9px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .header__inner {
    min-height: 70px;
  }

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

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

  .result {
    border-right: none;
    padding: 32px 0;
  }

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

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

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

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

  .hero__tel {
    justify-content: center;
    border-bottom: none;
  }

  .values__tag {
    position: static;
    max-width: none;
    margin-top: -1px;
  }
}

@media (max-width: 640px) {
  .hero__actions .btn {
    width: 100%;
  }
}

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