:root {
  --ink: #0a1424;
  --navy: #12243e;
  --navy-2: #1a3055;
  --gold: #c6891c;
  --gold-lt: #ebbe4e;
  --gold-deep: #9a6710;
  --cream: #f8f4ec;
  --cream-2: #efe8da;
  --slate: #33405a;
  --slate-lt: #5c6980;
  --container-max: 1320px;
  --container-pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
  --display: "Marcellus", Georgia, serif;
  --caps: "Marcellus SC", "Marcellus", Georgia, serif;
  --body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

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

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

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--caps);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.eyebrow::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 96px;
  background: linear-gradient(90deg, rgba(198, 137, 28, 0.85), rgba(198, 137, 28, 0));
}

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

.eyebrow--center::before {
  content: "";
  height: 1px;
  width: 96px;
  background: linear-gradient(270deg, rgba(198, 137, 28, 0.85), rgba(198, 137, 28, 0));
}

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

.eyebrow--light::after,
.eyebrow--light::before {
  background-image: linear-gradient(90deg, rgba(235, 190, 78, 0.8), rgba(235, 190, 78, 0));
}

.eyebrow--light.eyebrow--center::before {
  background-image: linear-gradient(270deg, rgba(235, 190, 78, 0.8), rgba(235, 190, 78, 0));
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  text-align: center;
  max-width: 100%;
  line-height: 1.35;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  color: #231603;
  box-shadow: 0 10px 24px rgba(154, 103, 16, 0.32);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(154, 103, 16, 0.42);
}

.btn--navy {
  background: var(--navy);
  color: var(--cream);
  font-size: 20px;
  padding: 16px 34px;
}

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

.btn--outline {
  background: transparent;
  border-color: rgba(26, 48, 85, 0.3);
  color: var(--navy);
  font-size: 20px;
  padding: 16px 34px;
}

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

.btn--hero {
  font-size: 20px;
  padding: 17px 36px;
  white-space: nowrap;
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  color: rgba(248, 244, 236, 0.72);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(198, 137, 28, 0.22);
}

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

.utility__left {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
}

.utility__right {
  display: flex;
  align-items: center;
  gap: 26px;
  letter-spacing: 0.05em;
  font-family: var(--caps);
  font-size: 13px;
}

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

.utility__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

/* ---------- header ---------- */
.header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(6, 12, 22, 0.28);
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
}

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

.header__nav {
  margin-left: auto;
}

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

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

.header__nav-link {
  font-family: var(--caps);
  font-size: clamp(13px, 1.05vw, 16px);
  color: #ede7db;
  letter-spacing: 0.045em;
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
  display: inline-block;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-lt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

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

.header__nav-link:hover::after,
.header__nav-link--active::after {
  transform: scaleX(1);
}

.header__nav-link--active {
  color: var(--gold-lt);
}

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  flex-shrink: 0;
  margin-left: 8px;
}

.header__cta-btn {
  font-size: clamp(12px, 1.05vw, 16px);
  padding: clamp(10px, 1vw, 13px) clamp(14px, 1.6vw, 26px);
  flex-shrink: 0;
  white-space: nowrap;
}

.header__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(235, 190, 78, 0.5);
  border-radius: 6px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 4;
}

.header__toggle-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--gold-lt);
  transition: transform 0.3s, opacity 0.2s;
}

.header__toggle-bar:nth-child(1) {
  top: 14px;
}

.header__toggle-bar:nth-child(2) {
  top: 20px;
}

.header__toggle-bar:nth-child(3) {
  top: 26px;
}

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

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

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background: var(--ink);
  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;
  opacity: 0.5;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 620px at 22% 40%, rgba(10, 20, 36, 0.94), rgba(10, 20, 36, 0.62) 58%, rgba(10, 20, 36, 0.34)),
    linear-gradient(90deg, rgba(10, 20, 36, 0.96) 0%, rgba(10, 20, 36, 0.72) 46%, rgba(10, 20, 36, 0.3) 74%, rgba(10, 20, 36, 0.55) 100%);
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-lt) 38%, var(--gold) 62%, var(--gold-deep));
  z-index: 3;
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  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, 2vw, 24px) clamp(40px, 6vh, 64px);
}

.hero__title {
  color: var(--cream);
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: 1.02;
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}

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

.ledger {
  list-style: none;
  margin: 22px 0 30px;
  padding: 0;
  max-width: 520px;
  border-top: 1px solid rgba(235, 190, 78, 0.34);
}

.ledger__item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(235, 190, 78, 0.18);
}

.ledger__case {
  font-family: var(--caps);
  font-size: 14.5px;
  letter-spacing: 0.07em;
  color: rgba(248, 244, 236, 0.82);
  white-space: nowrap;
}

.ledger__lead {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(235, 190, 78, 0.42) 0 2px,
    transparent 2px 6px
  );
  transform: translateY(-3px);
}

.ledger__amt {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold-lt);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

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

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

.hero__phone-label {
  font-family: var(--caps);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: rgba(248, 244, 236, 0.6);
}

.hero__phone-link {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.02em;
}

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

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

.hero__visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(430px, 90%);
  height: min(430px, 70%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 137, 28, 0.2), rgba(198, 137, 28, 0) 68%);
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--cream-2);
  border-bottom: 1px solid rgba(26, 48, 85, 0.1);
}

.accolades__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3.6vw, 66px);
  padding-top: 36px;
  padding-bottom: 36px;
  flex-wrap: wrap;
}

.accolades__label {
  font-family: var(--caps);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--slate-lt);
  padding-right: 14px;
  border-right: 1px solid rgba(26, 48, 85, 0.18);
}

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__item img {
  width: auto;
  opacity: 0.72;
  transition: opacity 0.3s ease;
}

.accolades__item--tall img {
  height: 78px;
}

.accolades__item--md img {
  height: 66px;
}

.accolades__item--sm img {
  height: 48px;
}

.accolades__item--xs img {
  height: 46px;
}

.accolades__item:hover img {
  opacity: 1;
}

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

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

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

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

.section__title--light {
  color: var(--cream);
}

.section__lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--slate-lt);
}

/* ---------- about ---------- */
.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: center;
}

.about__title {
  font-size: clamp(34px, 3.4vw, 48px);
  margin-bottom: 24px;
}

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

.about__figure {
  position: relative;
}

.about__figure img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.about__figure::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--gold);
  opacity: 0.8;
}

.about__stat {
  position: absolute;
  z-index: 3;
  left: -28px;
  bottom: -28px;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 28px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 20px 40px rgba(10, 20, 36, 0.28);
}

.about__stat-num {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  color: var(--gold-lt);
}

.about__stat-label {
  font-family: var(--caps);
  font-size: 12.5px;
  letter-spacing: 0.13em;
  color: rgba(248, 244, 236, 0.74);
  margin-top: 7px;
}

.about__actions {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- practice ---------- */
.practice {
  background: var(--cream);
}

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

.practice-card {
  background: #fff;
  border: 1px solid rgba(26, 48, 85, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(10, 20, 36, 0.16);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 76 / 52;
  overflow: hidden;
  background: var(--navy);
}

.practice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.practice-card:hover .practice-card__media img {
  transform: scale(1.055);
}

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 36, 0) 42%, rgba(10, 20, 36, 0.62));
}

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

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

.practice-card__body p {
  font-size: 15.6px;
  line-height: 1.66;
  color: var(--slate-lt);
}

.practice-card__more {
  margin-top: auto;
  font-family: var(--caps);
  font-size: 13px;
  letter-spacing: 0.13em;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card__more span {
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: width 0.28s ease;
}

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

/* ---------- results ---------- */
.results {
  position: relative;
  background: var(--ink);
  color: rgba(248, 244, 236, 0.8);
  overflow: hidden;
}

.results__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-results.jpg");
  background-size: cover;
  background-position: center 26%;
  opacity: 0.5;
}

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 36, 0.9) 0%, rgba(10, 20, 36, 0.72) 42%, rgba(10, 20, 36, 0.88) 100%);
}

.results__inner {
  position: relative;
}

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

.results-card {
  background: rgba(10, 20, 36, 0.72);
  padding: 38px 30px 34px;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.results-card:hover {
  background: rgba(26, 48, 85, 0.78);
}

.results-card__amt {
  font-family: var(--display);
  font-size: clamp(32px, 3.1vw, 42px);
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: 0.01em;
}

.results-card__desc {
  font-size: 15.6px;
  color: rgba(248, 244, 236, 0.72);
  line-height: 1.6;
}

.results-card__more {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--caps);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.results-card__more span {
  width: 20px;
  height: 1px;
  background: var(--gold-lt);
  transition: width 0.28s;
}

.results-card:hover .results-card__more span {
  width: 32px;
}

.results__note {
  margin-top: 30px;
  font-size: 13.5px;
  color: rgba(248, 244, 236, 0.52);
  letter-spacing: 0.01em;
}

/* ---------- reasons ---------- */
.reasons__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.reasons__figure {
  position: relative;
}

.reasons__figure img {
  width: 100%;
  height: auto;
}

.reasons__figure::after {
  content: "";
  position: absolute;
  inset: auto -22px -22px auto;
  width: 62%;
  height: 62%;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  opacity: 0.75;
}

.reasons__title {
  font-size: clamp(32px, 3.3vw, 46px);
  margin-bottom: 30px;
}

.reasons__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(26, 48, 85, 0.14);
}

.reasons__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(26, 48, 85, 0.14);
}

.reasons__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reasons__icon svg {
  width: 19px;
  height: 19px;
}

.reasons__item-title {
  font-size: clamp(20px, 1.9vw, 25px);
  color: var(--navy);
  font-weight: 400;
}

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  color: var(--cream);
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-testimonial.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.34;
}

.testimonial__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 36, 0.86), rgba(18, 36, 62, 0.9));
}

.testimonial__inner {
  position: relative;
  text-align: center;
}

.testimonial__quote {
  font-family: var(--display);
  font-size: clamp(21px, 2.15vw, 30px);
  line-height: 1.5;
  color: var(--cream);
  max-width: 1040px;
  margin: 0 auto;
  letter-spacing: 0.004em;
}

.testimonial__mark {
  font-family: var(--display);
  font-size: 88px;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.testimonial__name {
  margin-top: 32px;
  font-family: var(--caps);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold-lt);
}

/* ---------- contact ---------- */
.contact {
  background: var(--cream-2);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: start;
}

.contact__title {
  font-size: clamp(32px, 3.2vw, 46px);
  margin-bottom: 20px;
}

.contact__info {
  font-size: 17px;
}

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

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

.contact__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(26, 48, 85, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold-deep);
}

.contact__key {
  font-family: var(--caps);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--slate-lt);
}

.contact__value {
  font-family: var(--display);
  font-size: 20px;
  color: var(--navy);
  line-height: 1.35;
}

.contact__value a:hover {
  color: var(--gold-deep);
}

.lead-form {
  background: #fff;
  border: 1px solid rgba(26, 48, 85, 0.12);
  padding: 38px;
  box-shadow: 0 26px 54px rgba(10, 20, 36, 0.09);
}

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

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

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

.field__label {
  font-family: var(--caps);
  font-size: 12.5px;
  letter-spacing: 0.13em;
  color: var(--slate-lt);
}

.field__input {
  font-family: var(--body);
  font-size: 16px;
  color: var(--navy);
  background: #fcfaf6;
  border: 1px solid rgba(26, 48, 85, 0.2);
  border-radius: 3px;
  padding: 0 14px;
  height: 40px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

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

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

.field__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 137, 28, 0.15);
}

.lead-form__submit {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lead-form__submit .btn {
  font-size: 20px;
  padding: 16px 38px;
}

.lead-form__note {
  font-size: 13px;
  color: var(--slate-lt);
  flex: 1;
  min-width: 220px;
  line-height: 1.55;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(248, 244, 236, 0.66);
  font-size: 15.5px;
}

.footer__top {
  padding: 74px 0 46px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr) minmax(0, 0.9fr);
  gap: clamp(34px, 4vw, 64px);
}

.footer__brand img {
  width: 409px;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.footer__heading {
  font-family: var(--caps);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--gold-lt);
  margin: 0 0 20px;
}

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

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

.footer__addr {
  font-style: normal;
  line-height: 1.8;
}

.footer__phone {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  display: inline-block;
  margin-top: 6px;
}

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

.footer__cta {
  margin-top: 22px;
}

.footer__cta .btn {
  font-size: 16px;
  padding: 13px 26px;
}

.footer__bar {
  border-top: 1px solid rgba(248, 244, 236, 0.12);
  padding: 26px 0 34px;
}

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

.footer__disclaimer {
  font-size: 12.6px;
  line-height: 1.7;
  color: rgba(248, 244, 236, 0.44);
  max-width: 900px;
}

.footer__copyright {
  font-size: 12.6px;
  color: rgba(248, 244, 236, 0.44);
  white-space: nowrap;
}

/* ---------- motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
  }
}

/* ---------- progressive header scaling before hamburger ---------- */
@media (max-width: 1400px) {
  .header__nav-list {
    gap: 19px;
  }

  .header__cta-btn {
    font-size: 15px;
    padding: 12px 22px;
  }
}

@media (max-width: 1280px) {
  :root {
    --container-pad: 32px;
  }

  .header__nav-list {
    gap: 14px;
  }

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

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

/* ---------- nav breakpoint: hamburger below 1200px ---------- */
@media (max-width: 1200px) {
  .header__cta {
    display: none;
  }

  .header__toggle {
    display: block;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(6, 12, 22, 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__overlay[hidden] {
    display: none;
  }

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

  .header__inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

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

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

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

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

  .header__nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(248, 244, 236, 0.08);
    font-size: 17px;
  }

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

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

  .header__nav-phone {
    font-family: var(--display);
    font-size: 22px;
    color: #fff;
  }

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

  .header__nav-cta {
    font-size: 15px;
    padding: 14px 22px;
    white-space: normal;
    width: 100%;
  }

  .hero__content {
    width: min(100%, 52%);
  }

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

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

@media (max-width: 980px) {
  .btn--hero,
  .btn--navy,
  .btn--outline,
  .lead-form__submit .btn,
  .about__actions .btn {
    white-space: normal;
    font-size: 17px;
    padding: 14px 24px;
  }

  .about__inner,
  .reasons__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reasons__figure {
    order: 2;
  }

  .section {
    padding: 78px 0;
  }

  .about__figure::after {
    inset: 20px -14px -14px 20px;
  }

  .about__stat {
    left: -14px;
    bottom: -14px;
  }
}

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

  body {
    font-size: 16.5px;
  }

  .utility__left {
    display: none;
  }

  .utility__inner {
    justify-content: center;
  }

  .utility__right {
    gap: 18px;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

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

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

  .hero__title {
    font-size: clamp(38px, 10.5vw, 52px);
  }

  .ledger {
    max-width: none;
  }

  .ledger__item {
    flex-wrap: wrap;
    gap: 6px;
  }

  .ledger__lead {
    min-width: 20px;
  }

  .hero__actions {
    gap: 18px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 380px;
    right: auto;
    bottom: auto;
    justify-content: flex-start;
    margin-top: 8px;
  }

  .hero__image {
    height: min(430px, 70vw);
    max-width: none;
  }

  .hero__visual::before {
    width: 280px;
    height: 280px;
    left: 40%;
  }

  .accolades__inner {
    gap: 26px 32px;
  }

  .accolades__label {
    border-right: none;
    border-bottom: 1px solid rgba(26, 48, 85, 0.18);
    padding: 0 0 14px;
    width: 100%;
    text-align: center;
  }

  .accolades__item--tall img {
    height: calc(78px * 0.78);
  }

  .accolades__item--md img {
    height: calc(66px * 0.78);
  }

  .accolades__item--sm img {
    height: calc(48px * 0.78);
  }

  .accolades__item--xs img {
    height: calc(46px * 0.78);
  }

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

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

  .section {
    padding: 62px 0;
  }

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

  .footer__brand img {
    width: 100%;
    max-width: 340px;
  }

  .lead-form {
    padding: 26px 22px;
  }

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

  .about__stat {
    position: static;
    margin-top: 18px;
    display: inline-block;
  }

  .about__figure::after {
    display: none;
  }

  .testimonial__mark {
    font-size: 64px;
  }
}

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

  .about__actions .btn {
    width: 100%;
  }

  .lead-form__submit .btn {
    width: 100%;
  }
}
