:root {
  --navy-900: #08172D;
  --navy-800: #10284B;
  --navy-700: #183358;
  --navy-600: #234360;
  --gold: #FAA31A;
  --gold-lt: #FFB612;
  --gold-dp: #D4830B;
  --bone: #F7F5F1;
  --bone-2: #EDE9E2;
  --ink: #14181E;
  --slate: #5A6472;
  --line: rgba(16, 40, 75, 0.14);
  --ff-display: "Zilla Slab", Georgia, serif;
  --ff-body: "Sora", system-ui, -apple-system, sans-serif;
  --ff-num: "Oswald", Impact, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 120px;
  --pad: clamp(20px, 3.2vw, 45px);
}

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

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

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

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

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

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

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

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

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

.eyebrow {
  font-family: var(--ff-num);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dp);
  display: flex;
  align-items: center;
  gap: 14px;
}

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

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

.eyebrow--light::after {
  background: rgba(250, 163, 26, 0.35);
}

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

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

.eyebrow--center.eyebrow--light::before {
  background: rgba(250, 163, 26, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  padding: 19px 40px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 10px 30px -10px rgba(250, 163, 26, 0.7);
}

.btn--gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(250, 163, 26, 0.85);
}

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

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

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

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

.btn--outline {
  border-color: var(--navy-800);
  color: var(--navy-800);
  background: transparent;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

  html {
    scroll-behavior: auto;
  }
}

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

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 9px;
  padding-bottom: 9px;
}

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

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

.utility__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.utility em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--ff-num);
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 24px -14px rgba(8, 23, 45, 0.4);
}

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

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

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

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-left: auto;
}

.header__nav-link {
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: var(--navy-800);
  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.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.header__nav-extras {
  display: none;
}

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

.header__tel {
  font-family: var(--ff-num);
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 21px);
  letter-spacing: 0.02em;
  color: var(--navy-800);
  flex-shrink: 0;
  white-space: nowrap;
}

.header__tel small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dp);
}

.header__cta .btn--sm {
  font-size: clamp(13px, 1.1vw, 16px);
  padding: clamp(10px, 1vw, 14px) clamp(16px, 1.8vw, 28px);
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 70;
}

.header__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-800);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__overlay {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy-800);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  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-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 30%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    var(--navy-900) 0%,
    rgba(16, 40, 75, 0.95) 38%,
    rgba(24, 51, 88, 0.62) 62%,
    rgba(24, 51, 88, 0.3) 100%
  );
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dp) 45%, transparent 100%);
  z-index: 3;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-left: clamp(0px, 1vw, 8px);
  padding-right: clamp(0px, 1vw, 8px);
}

.hero__content {
  color: #fff;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  padding: clamp(16px, 3vw, 40px) clamp(0px, 2vw, 20px) clamp(40px, 6vw, 74px);
  position: relative;
  z-index: 3;
}

.hero__title {
  font-size: clamp(2.3rem, 3.55vw, 3.5rem);
  color: #fff;
  margin: 20px 0 0;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.hero__title b {
  color: var(--gold);
  font-weight: 600;
}

.hero__lead {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.83);
  font-weight: 300;
  max-width: 585px;
}

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

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

.hero__phone span {
  font-family: var(--ff-num);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__phone a {
  font-family: var(--ff-num);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #fff;
}

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

.hero__trust {
  display: flex;
  gap: 34px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
}

.hero__trust-item strong {
  display: block;
  font-family: var(--ff-num);
  font-weight: 500;
  font-size: 29px;
  color: var(--gold);
  line-height: 1;
}

.hero__trust-item em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  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;
}

.hero__badge {
  position: absolute;
  left: 8%;
  bottom: 52px;
  z-index: 3;
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 24px 60px -20px rgba(8, 23, 45, 0.6);
  border-left: 5px solid var(--gold);
  max-width: 216px;
  pointer-events: auto;
}

.hero__badge strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--navy-800);
  line-height: 1.25;
}

.hero__badge span {
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.04em;
}

/* ---------- accolades (strip below hero — natural height) ---------- */
.accolades {
  position: relative;
  background: var(--navy-900);
  padding: 0;
}

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

.accolades__inner {
  position: relative;
  z-index: 2;
  padding-top: 38px;
  padding-bottom: 38px;
}

.accolades__heading {
  font-family: var(--ff-num);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-bottom: 26px;
}

.accolades__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.accolades__plate {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 18px;
  border: 1px solid rgba(250, 163, 26, 0.34);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  min-height: 126px;
  transition: border-color 0.3s, background 0.3s;
}

.accolades__plate:hover {
  border-color: var(--gold);
  background: rgba(250, 163, 26, 0.07);
}

.accolades__plate img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.3s;
}

.accolades__plate:hover img {
  opacity: 1;
}

.accolades__plate--sl img {
  height: 38px;
}

.accolades__plate--ntl img {
  height: 60px;
}

.accolades__plate--mda img {
  height: 78px;
}

.accolades__plate--aaj img {
  height: 46px;
}

.accolades__plate--empty {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.2);
  flex-direction: column;
  gap: 7px;
}

.accolades__plate--empty svg {
  width: 24px;
  height: 24px;
  flex: none;
}

.accolades__plate--empty b {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.24;
}

.accolades__plate--empty i {
  font-style: normal;
  font-family: var(--ff-num);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

/* ---------- about ---------- */
.about {
  padding-top: 100px;
  padding-bottom: 92px;
  background: var(--bone);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  gap: 66px;
  align-items: center;
}

.about__figure {
  position: relative;
}

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

.about__figure::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -14px;
  width: 44%;
  height: 44%;
  border-left: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
  z-index: 1;
}

.about__figure::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 44%;
  height: 44%;
  border-right: 3px solid var(--navy-600);
  border-bottom: 3px solid var(--navy-600);
  z-index: 1;
}

.about__title {
  font-size: clamp(1.85rem, 2.5vw, 2.6rem);
  color: var(--navy-800);
  margin: 18px 0 0;
  line-height: 1.12;
}

.about__subtitle {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--gold-dp);
  margin: 14px 0 0;
}

.about__text {
  margin-top: 22px;
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.82;
}

.about__quote {
  margin-top: 30px;
  padding: 22px 26px;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-family: var(--ff-display);
  font-size: 19px;
  color: var(--navy-800);
  line-height: 1.5;
  box-shadow: 0 14px 40px -26px rgba(8, 23, 45, 0.5);
}

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

/* ---------- practice areas ---------- */
.practice {
  padding-top: 88px;
  padding-bottom: 100px;
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.practice__title {
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  color: var(--navy-800);
  margin-top: 18px;
}

.practice__lead {
  margin-top: 16px;
  color: var(--slate);
  font-size: 16.5px;
}

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

.practice-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy-800);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  box-shadow: 0 18px 44px -28px rgba(8, 23, 45, 0.55);
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 64px -30px rgba(8, 23, 45, 0.6);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 45, 0.05) 0%, rgba(8, 23, 45, 0.72) 100%);
}

.practice-card__number {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  font-family: var(--ff-num);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 4px 9px;
  border-radius: 3px;
  background: rgba(8, 23, 45, 0.72);
  backdrop-filter: blur(2px);
}

.practice-card__body {
  padding: 24px 24px 27px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.practice-card__body h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1.24;
}

.practice-card__body p {
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.68;
  font-weight: 300;
}

.practice-card__more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 16px;
  align-self: flex-start;
  font-family: var(--ff-num);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.practice-card__more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.practice-card:hover .practice-card__more svg {
  transform: translateX(5px);
}

/* ---------- scoreboard ---------- */
.scoreboard {
  background: var(--navy-900);
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.scoreboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 0 1px,
    transparent 1px 46px
  );
}

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

.scoreboard__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.scoreboard__title {
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  color: #fff;
  margin-top: 18px;
}

.scoreboard__lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15.5px;
  max-width: 390px;
  font-weight: 300;
}

.scoreboard__panel {
  border: 1px solid rgba(250, 163, 26, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
  overflow: hidden;
}

.scoreboard__strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 26px;
  background: rgba(250, 163, 26, 0.1);
  border-bottom: 1px solid rgba(250, 163, 26, 0.28);
  font-family: var(--ff-num);
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.scoreboard__strip span:last-child {
  color: rgba(255, 255, 255, 0.5);
}

.scoreboard__rows {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scoreboard__row {
  padding: 44px 30px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
  transition: background 0.35s;
}

.scoreboard__row:last-child {
  border-right: 0;
}

.scoreboard__row:hover {
  background: rgba(250, 163, 26, 0.055);
}

.scoreboard__row--w100 {
  --w: 100%;
}

.scoreboard__row--w65 {
  --w: 65%;
}

.scoreboard__row--w34 {
  --w: 34%;
}

.scoreboard__row--w18 {
  --w: 18%;
}

.scoreboard__amount {
  font-family: var(--ff-num);
  font-weight: 500;
  font-size: clamp(2rem, 2.85vw, 2.9rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.scoreboard__type {
  margin-top: 13px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #fff;
}

.scoreboard__bar {
  margin-top: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.13);
  position: relative;
  overflow: hidden;
}

.scoreboard__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--gold);
  width: 0;
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scoreboard__row.is-in .scoreboard__bar-fill {
  width: var(--w);
}

.scoreboard__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--ff-num);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

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

.scoreboard__footnote {
  padding: 20px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-weight: 300;
}

/* ---------- values ---------- */
.values {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

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

.values__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 58, 0.93), rgba(8, 23, 45, 0.97));
}

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

.values__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.values__title {
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  color: #fff;
  margin-top: 18px;
}

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

.value-card {
  padding: 34px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(3px);
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  border-color: var(--gold);
  background: rgba(250, 163, 26, 0.07);
  transform: translateY(-6px);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(250, 163, 26, 0.14);
  border: 1px solid rgba(250, 163, 26, 0.4);
}

.value-card__icon svg {
  width: 21px;
  height: 21px;
}

.value-card__title {
  margin-top: 20px;
  font-size: 19px;
  color: #fff;
  line-height: 1.28;
}

.value-card__text {
  margin-top: 11px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-weight: 300;
}

.value-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  align-self: flex-start;
  font-family: var(--ff-num);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- testimonial ---------- */
.testimonial {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--bone-2);
}

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

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
}

.testimonial__stars svg {
  width: 24px;
  height: 24px;
}

.testimonial__quote {
  margin: 26px 0 0;
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 1.85vw, 1.72rem);
  line-height: 1.5;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

.testimonial__quote::before {
  content: "\201C";
}

.testimonial__quote::after {
  content: "\201D";
}

.testimonial__by {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial__by strong {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-800);
}

.testimonial__by span {
  font-family: var(--ff-num);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- contact ---------- */
.contact {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--line);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

.contact__title {
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  color: var(--navy-800);
  margin-top: 18px;
}

.contact__lead {
  margin-top: 18px;
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.8;
}

.contact__list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.contact__list svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
}

.contact__list b {
  display: block;
  font-family: var(--ff-num);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dp);
}

.contact__list span {
  color: var(--navy-800);
  font-size: 16px;
  line-height: 1.6;
}

.form {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px 36px 34px;
}

.form__heading {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--navy-800);
}

.form__sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--slate);
}

.form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 24px;
}

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

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

.field label {
  font-family: var(--ff-num);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(16, 40, 75, 0.2);
  border-radius: 5px;
  padding: 0 14px;
  height: 40px;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(250, 163, 26, 0.18);
  outline: none;
}

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

.form__note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.6;
  text-align: center;
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.62);
  padding-top: 70px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 52px;
}

.footer__logo {
  width: 230px;
  margin-bottom: 20px;
  max-width: none;
}

.footer__blurb {
  font-size: 14.5px;
  line-height: 1.78;
  font-weight: 300;
  max-width: 330px;
}

.footer__heading {
  font-family: var(--ff-num);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

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

.footer__list a {
  font-size: 14.5px;
}

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

.footer__tel {
  font-family: var(--ff-num);
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 14px;
}

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

.footer__addr {
  font-size: 14.5px;
  line-height: 1.75;
  font-style: normal;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

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

/* ---------- responsive: nav breakpoint & layout ---------- */
@media (max-width: 1200px) {
  .header__toggle {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8, 23, 45, 0.55);
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .header__overlay--visible {
    opacity: 1;
    pointer-events: auto;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 28px 36px;
    background: #fff;
    box-shadow: -18px 0 48px -24px rgba(8, 23, 45, 0.45);
    z-index: 65;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-y: auto;
  }

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

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

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

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

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

  .header__nav-extras .header__tel small {
    display: block;
  }

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

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

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

  .scoreboard__row:nth-child(2) {
    border-right: 0;
  }

  .scoreboard__row:nth-child(1),
  .scoreboard__row:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

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

  .about__inner,
  .contact__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .about__figure {
    max-width: 520px;
  }

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

@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    flex-direction: column;
    padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 32px) 0;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: clamp(12px, 2vw, 24px) 0 28px;
  }

  .hero__veil {
    background: linear-gradient(
      178deg,
      var(--navy-900) 0%,
      rgba(16, 40, 75, 0.94) 55%,
      rgba(24, 51, 88, 0.86) 100%
    );
  }

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

  .hero__image {
    height: auto;
    width: min(90%, 520px);
    max-height: 520px;
    margin: 0 auto;
  }

  .hero__badge {
    left: max(0px, calc(50% - 260px));
    bottom: 20px;
  }
}

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

  .hero__actions .btn {
    white-space: normal;
  }
}

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

  .utility__left span:nth-child(2) {
    display: none;
  }

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

  .hero {
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__image {
    width: min(90%, 470px);
    max-height: 480px;
  }

  .hero__badge {
    left: 0;
    bottom: 20px;
  }

  .hero__actions {
    gap: 18px;
  }

  .hero__trust {
    gap: 24px;
  }

  .about,
  .practice,
  .scoreboard,
  .values,
  .testimonial,
  .contact {
    padding-top: 66px;
    padding-bottom: 66px;
  }

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

  .scoreboard__row {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 32px 24px;
  }

  .scoreboard__row:last-child {
    border-bottom: 0;
  }

  .scoreboard__header {
    margin-bottom: 32px;
  }

  .form {
    padding: 28px 22px;
  }

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

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

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

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

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