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

@font-face {
  font-family: "SoraV";
  src: url("../assets/fonts/sora.woff2") format("woff2");
  font-weight: 100 800;
  font-display: swap;
}

:root {
  --ink: #0b1420;
  --navy: #132138;
  --navy-2: #1b2c46;
  --navy-3: #24395a;
  --brand: #2e5093;
  --gold: #c6a24c;
  --gold-lt: #e3cb8a;
  --bone: #f6f4ef;
  --bone-2: #ece7dc;
  --slate: #64708a;
  --slate-d: #3c4762;
  --white: #fff;

  --display: "LoraV", Georgia, "Times New Roman", serif;
  --body: "SoraV", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
  --nav-fs: 16px;
  --hero-tel-fs: 24px;
  --cta-fs: 20px;
  --rule: rgba(198, 162, 76, 0.32);
}

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

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--navy);
  font-family: var(--body);
  font-weight: 350;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
  color: inherit;
}

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

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

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

.eyebrow::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
  max-width: 120px;
}

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

.eyebrow--center::before {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
  max-width: 120px;
}

.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}

.lede {
  font-size: 18px;
  line-height: 1.72;
  color: var(--slate-d);
  margin: 0 0 26px;
  max-width: 60ch;
}

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

.on-dark .section__title {
  color: var(--white);
}

.on-dark .lede {
  color: rgba(255, 255, 255, 0.72);
}

.placeholder {
  font-family: var(--body);
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px dashed rgba(198, 162, 76, 0.75);
  padding-bottom: 1px;
  opacity: 0.92;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: var(--cta-fs);
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 34px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn--sm {
  font-size: 15px;
  padding: 13px 24px;
}

/* ---------- draft banner ---------- */
.draft {
  background: var(--brand);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 20px;
  line-height: 1.5;
}

.draft b {
  color: var(--gold-lt);
}

.draft__mark {
  border-bottom: 1px dashed #e3cb8a;
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13.5px;
}

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

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

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

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

.utility__phone {
  color: var(--white);
  font-weight: 500;
}

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

/* ---------- header ---------- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--bone-2);
  position: sticky;
  top: 0;
  z-index: 60;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 96px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

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

.header__logo-mark {
  height: 46px;
  width: auto;
  max-width: none;
  display: block;
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--bone-2);
  border-radius: 8px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  z-index: 4;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.28s ease, opacity 0.28s 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;
  gap: 34px;
  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: var(--nav-fs);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
}

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

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    96deg,
    rgba(11, 20, 32, 0.94) 0%,
    rgba(11, 20, 32, 0.86) 34%,
    rgba(19, 33, 56, 0.42) 62%,
    rgba(19, 33, 56, 0.14) 100%
  );
}

.hero__blade {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 6%;
  width: 30vw;
  pointer-events: none;
  background: linear-gradient(184deg, rgba(198, 162, 76, 0.3), rgba(46, 80, 147, 0.12) 62%, rgba(198, 162, 76, 0) 100%);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  -webkit-mask-image: linear-gradient(94deg, transparent 0, #000 42%, #000 100%);
  mask-image: linear-gradient(94deg, transparent 0, #000 42%, #000 100%);
  opacity: 0.9;
}

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

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

.hero__title {
  font-family: var(--display);
  font-weight: 600;
  color: var(--white);
  font-size: clamp(33px, 3.25vw, 47px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: pretty;
}

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

.hero__subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17.5px;
  line-height: 1.66;
  margin: 0 0 26px;
  max-width: 52ch;
}

.hero__tel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--hero-tel-fs);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 26px;
}

.hero__tel svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
}

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

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

.hero__trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

.hero__trust i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-right: 9px;
  vertical-align: middle;
}

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

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

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

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

.accolades__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  max-width: 150px;
  line-height: 1.5;
  flex: 0 0 auto;
  margin: 0;
}

.accolades__row {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: space-around;
}

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.accolades__item:hover {
  opacity: 1;
}

.accolades__image {
  width: auto;
  object-fit: contain;
  display: block;
}

.accolades__item--seal .accolades__image {
  height: 60px;
}

.accolades__item--stack .accolades__image {
  height: 50px;
}

.accolades__item--wide .accolades__image {
  height: 34px;
}

.accolades__item--lockup .accolades__image {
  height: 42px;
}

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

.section--navy {
  background: var(--navy);
  color: var(--white);
}

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

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

.section__head {
  max-width: 760px;
  margin: 0 0 54px;
}

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

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

.about__media {
  position: relative;
}

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

.about__stat {
  position: absolute;
  right: -30px;
  bottom: 38px;
  background: var(--gold);
  color: var(--ink);
  padding: 26px 32px;
  border-radius: 4px;
  max-width: 230px;
  box-shadow: 0 18px 40px rgba(11, 20, 32, 0.24);
}

.about__stat b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}

.about__stat span {
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.45;
  display: block;
  font-weight: 500;
}

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

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16.5px;
  color: var(--slate-d);
  line-height: 1.6;
}

.checklist svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.signature {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--bone-2);
}

.signature b {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.signature span {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}

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

.practice__card {
  background: var(--white);
  border: 1px solid var(--bone-2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.practice__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(11, 20, 32, 0.14);
  border-color: var(--gold);
}

.practice__thumb {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
  background: var(--navy);
}

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

.practice__card:hover .practice__thumb img {
  transform: scale(1.05);
}

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 20, 32, 0.1) 0%, rgba(11, 20, 32, 0.62) 100%);
}

.practice__body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.practice__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.practice__body p {
  margin: 0 0 20px;
  font-size: 15.5px;
  color: var(--slate-d);
  line-height: 1.6;
}

.practice__more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice__more svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.24s ease;
}

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

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

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 32, 0.84);
  z-index: 0;
}

.results > * {
  position: relative;
  z-index: 1;
}

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

.results__cell {
  background: var(--ink);
  padding: 40px 32px 34px;
  display: flex;
  flex-direction: column;
}

.results__matter {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.results__cell b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: var(--gold-lt);
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.results__more {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.results__more svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.results__note {
  margin: 34px auto 0;
  max-width: 70ch;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ---------- reasons ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.reasons__item {
  padding: 0 30px;
  border-left: 1px solid var(--bone-2);
}

.reasons__item:first-child {
  padding-left: 0;
  border-left: none;
}

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

.reasons__item b {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.reasons__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.reasons__item p {
  margin: 0;
  font-size: 15.5px;
  color: var(--slate-d);
  line-height: 1.62;
}

/* ---------- reviews ---------- */
.reviews {
  max-width: 78ch;
  margin: 0 auto;
  text-align: center;
}

.reviews__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}

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

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

.reviews__card blockquote {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.62;
  color: var(--white);
  font-weight: 400;
}

.reviews__by {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin: 0;
}

/* ---------- consult band ---------- */
.consult {
  position: relative;
  background: var(--navy) url("../assets/images/bg-consult.jpg") center / cover no-repeat;
  isolation: isolate;
}

.consult::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(11, 20, 32, 0.93) 0%, rgba(11, 20, 32, 0.74) 52%, rgba(19, 33, 56, 0.3) 100%);
  z-index: 0;
}

.consult > * {
  position: relative;
  z-index: 1;
}

.consult__inner {
  padding-top: 92px;
  padding-bottom: 92px;
  max-width: 700px;
}

.consult__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

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

.contact__list {
  margin: 32px 0 0;
  display: grid;
  gap: 24px;
}

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

.contact__row svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 4px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
}

.contact__row dt {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact__row dd {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.contact__media {
  margin-top: 38px;
}

.contact__media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 4px;
}

.form {
  background: var(--white);
  border: 1px solid var(--bone-2);
  border-radius: 4px;
  padding: 42px 40px;
}

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

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form__field label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-d);
  font-weight: 600;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--navy);
  background: var(--bone);
  border: 1px solid var(--bone-2);
  border-radius: 4px;
  padding: 0 16px;
  height: 40px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__field textarea {
  height: 120px;
  padding: 12px 16px;
  resize: vertical;
  line-height: 1.55;
}

.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2364708A' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 42px;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 162, 76, 0.2);
}

.form__foot {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.form__note {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
  max-width: 34ch;
  margin: 0;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 56px;
  padding-top: 76px;
  padding-bottom: 56px;
}

.footer__logo {
  margin-bottom: 24px;
}

.footer__logo-mark {
  height: 44px;
  width: auto;
  display: block;
}

.footer__blurb {
  margin: 0;
  max-width: 40ch;
  line-height: 1.65;
}

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

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

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

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

.footer__tel {
  font-family: var(--display);
  font-size: 26px;
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

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

.footer__bottom p {
  margin: 0;
}

.footer__legal {
  max-width: 78ch;
  line-height: 1.6;
}

/* ---------- motion ---------- */
html.js .rise {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .rise.is-in {
  opacity: 1;
  transform: none;
}

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

  html.js .rise {
    opacity: 1;
    transform: none;
  }
}

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

  .header__nav,
  .header__nav-list {
    gap: 22px;
  }

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

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

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

  .header__nav,
  .header__nav-list {
    gap: 16px;
  }

  .header__nav-link {
    font-size: 14px;
  }

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

  .about {
    gap: 44px;
  }

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

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

  .reasons__item:nth-child(3) {
    padding-left: 0;
    border-left: none;
  }

  .contact {
    gap: 44px;
  }
}

/* ---------- hamburger / mobile nav ---------- */
@media (max-width: 1200px) {
  .header__toggle {
    display: flex;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(11, 20, 32, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .header__overlay[hidden] {
    display: none;
  }

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

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    padding: 84px 28px 40px;
    z-index: 2;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    box-shadow: -18px 0 40px rgba(11, 20, 32, 0.18);
  }

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

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

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

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

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

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

  .header__phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
  }

  .header__nav-extras .btn {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 1080px) {
  :root {
    --pad: 28px;
  }

  .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(28px, 5vw, 48px) 0 0;
  }

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

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

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

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

  .hero__blade {
    right: 0;
    width: 80vw;
    opacity: 0.5;
  }

  .hero__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    font-size: 17px;
    padding: 13px 26px;
  }

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

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

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

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

  .about__image {
    height: 420px;
  }

  .about__stat {
    right: 20px;
  }

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

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

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }
}

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

  body {
    font-size: 16px;
  }

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

  .utility__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .utility__group {
    gap: 16px;
  }

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

  .reasons {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reasons__item {
    padding: 0;
    border-left: none;
  }

  .form {
    padding: 30px 22px;
  }

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

  .about__stat {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: -40px;
    margin-left: 20px;
    max-width: none;
  }

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

  .header__inner {
    min-height: 84px;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  :root {
    --cta-fs: 17px;
    --hero-tel-fs: 22px;
    --pad: 20px;
  }

  .container {
    width: 100%;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

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