/* ============ TOKENS ============ */
:root {
  --ink: #0b1420;
  --navy: #16283c;
  --navy-2: #1e3550;
  --brass: #c09a54;
  --brass-lt: #dfc48f;
  --paper: #f1f4f7;
  --paper-2: #e6ebf0;
  --white: #ffffff;
  --steel: #5a6a79;
  --hair: rgba(11, 20, 32, 0.12);
  --hair-lt: rgba(255, 255, 255, 0.16);
  --disp: "Gilda Display", Georgia, serif;
  --sans: "Sora", -apple-system, "Segoe UI", sans-serif;
  --pad: 45px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 120px;
}

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

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

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

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

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

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

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

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

.section {
  padding: 104px 0;
  position: relative;
}

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

.eyebrow::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 70px;
  background: var(--brass);
  opacity: 0.5;
}

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

.eyebrow--center::before {
  content: "";
  height: 1px;
  width: 70px;
  background: var(--brass);
  opacity: 0.5;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.heading--lg {
  font-family: var(--disp);
  font-size: clamp(30px, 2.6vw, 45px);
  line-height: 1.12;
}

.heading--sub {
  font-family: var(--sans);
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--steel);
}

.body-copy p {
  margin: 0 0 20px;
  color: var(--steel);
}

.body-copy p:last-child {
  margin-bottom: 0;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 20px 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
  transition: 0.35s var(--ease);
}

.btn--brass {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(192, 154, 84, 0.28);
}

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

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

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

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

.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--hair);
}

.btn--line:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.topbar__inner span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.topbar__inner b {
  color: var(--brass-lt);
  font-weight: 600;
}

.topbar__location--hide-md {
  /* shown by default */
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: box-shadow 0.3s var(--ease);
}

.header--stuck {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.header__brand {
  flex-shrink: 0;
}

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

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

.header__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s var(--ease);
}

.header__nav-link:hover {
  color: var(--white);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-extras {
  display: none;
}

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

.header__tel {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.header__burger--open .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger--open .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger--open .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 32, 0.55);
  z-index: 85;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.nav-overlay--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  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 22% / cover no-repeat;
  opacity: 0.5;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      96deg,
      rgba(11, 20, 32, 0.97) 0%,
      rgba(11, 20, 32, 0.9) 38%,
      rgba(11, 20, 32, 0.46) 62%,
      rgba(11, 20, 32, 0.72) 100%
    ),
    radial-gradient(120% 90% at 74% 100%, rgba(192, 154, 84, 0.14), transparent 60%);
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brass) 0%,
    var(--brass) 22%,
    rgba(192, 154, 84, 0.14) 22%
  );
  z-index: 4;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

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

.hero__title {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--disp);
  font-size: clamp(32px, 3.05vw, 53px);
  line-height: 1.03;
  letter-spacing: -0.005em;
}

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

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0 0;
  font-weight: 400;
}

.hero__lede {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16.5px;
  margin: 16px 0 0;
  max-width: 520px;
}

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

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

.hero__tel small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.hero__tel a {
  font-family: var(--disp);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.01em;
}

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

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

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

/* ============ ACCOLADES ============ */
.accolades {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accolades__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 0;
}

.accolades__item {
  padding: 34px 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 150px;
}

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

.accolades__mark {
  font-family: var(--disp);
  font-size: 30px;
  color: var(--brass-lt);
  line-height: 1;
}

.accolades__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.accolades__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0.82;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.accolades__badge img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.accolades__item:hover .accolades__badge {
  opacity: 1;
  transform: translateY(-3px);
}

.accolades__badge--million img {
  height: 78px;
}

.accolades__badge--ntl img {
  height: 67px;
}

.accolades__badge--super img {
  height: 40px;
}

.accolades__badge--aaj img {
  height: 52px;
}

.accolades__item--text {
  gap: 6px;
}

.accolades__item--text .accolades__mark {
  font-size: 38px;
}

/* ============ ABOUT ============ */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.about__media {
  position: relative;
  padding: 0 0 46px 46px;
}

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

.about__media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64%;
  height: 78%;
  border: 1px solid var(--brass);
  opacity: 0.55;
  z-index: 1;
}

.about__stat {
  position: absolute;
  right: -26px;
  bottom: 6px;
  z-index: 3;
  background: var(--ink);
  padding: 26px 30px;
  border-top: 3px solid var(--brass);
  box-shadow: 0 24px 60px rgba(11, 20, 32, 0.3);
}

.about__stat-value {
  display: block;
  font-family: var(--disp);
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}

.about__stat-unit {
  font-size: 0.55em;
}

.about__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.about__copy .heading--lg {
  margin-bottom: 10px;
}

.about__kicker {
  margin-bottom: 26px;
  color: var(--brass);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__pull {
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--hair);
  display: flex;
  gap: 16px;
  align-items: center;
}

.about__pull svg {
  width: 26px;
  height: 26px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.3;
  flex: 0 0 auto;
}

.about__pull p {
  margin: 0;
  font-family: var(--disp);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.4;
}

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

/* ============ PRACTICE ============ */
.practice {
  background: var(--paper);
}

.practice__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.practice__head p {
  margin: 12px 0 0;
  color: var(--steel);
  max-width: 520px;
}

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

.practice__card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid transparent;
  transition: 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.practice__card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 56px rgba(11, 20, 32, 0.14);
  border-bottom-color: var(--brass);
}

.practice__thumb {
  position: relative;
  height: 212px;
  overflow: hidden;
  background: var(--navy);
}

.practice__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.7s var(--ease);
}

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

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 20, 32, 0.62), rgba(11, 20, 32, 0.05) 62%);
}

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

.practice__body h3 {
  font-family: var(--disp);
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.practice__body p {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--steel);
  line-height: 1.66;
  flex: 1;
}

.practice__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 9px;
}

.practice__link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  transition: transform 0.3s var(--ease);
}

.practice__card:hover .practice__link svg {
  transform: translateX(5px);
}

/* ============ CASE LEDGER ============ */
.ledger {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.ledger__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 20, 32, 0.86), rgba(11, 20, 32, 0.96));
}

.ledger .container {
  position: relative;
  z-index: 2;
}

.ledger__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.ledger__head h2 {
  color: var(--white);
}

.ledger__total {
  text-align: right;
}

.ledger__total-value {
  display: block;
  font-family: var(--disp);
  font-size: clamp(30px, 2.4vw, 42px);
  color: var(--brass-lt);
  line-height: 1;
}

.ledger__total-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ledger__rows {
  margin-top: 38px;
  border-top: 1px solid var(--brass);
}

.ledger__row {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.35s var(--ease);
}

.ledger__row:hover {
  background: rgba(192, 154, 84, 0.06);
  padding-left: 14px;
  padding-right: 14px;
}

.ledger__amount {
  font-family: var(--disp);
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
}

.ledger__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ledger__type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.ledger__note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.ledger__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ledger__link svg {
  width: 15px;
  height: 15px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.6;
  transition: transform 0.3s var(--ease);
}

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

.ledger__link:hover svg {
  transform: translateX(5px);
}

.ledger__disclaimer {
  margin: 26px 0 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.34);
  letter-spacing: 0.03em;
}

/* ============ VALUES ============ */
.values {
  background: var(--white);
}

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

.values__head p {
  margin: 14px 0 0;
  color: var(--steel);
}

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

.values__item {
  padding: 0 34px;
  border-left: 1px solid var(--hair);
}

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

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

.values__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
}

.values__icon svg {
  width: 46px;
  height: 46px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.15;
}

.values__item h3 {
  font-family: var(--disp);
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.values__item p {
  margin: 0;
  font-size: 15px;
  color: var(--steel);
  line-height: 1.7;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 112px 0;
}

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

.testimonial__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 40, 60, 0.9), rgba(11, 20, 32, 0.94));
}

.testimonial .container {
  position: relative;
  z-index: 2;
}

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

.testimonial__mark {
  font-family: var(--disp);
  font-size: 96px;
  line-height: 0.6;
  color: var(--brass);
  opacity: 0.5;
  margin-bottom: 8px;
}

.testimonial h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.testimonial__sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  margin: 0 0 44px;
}

.testimonial__quote {
  font-family: var(--disp);
  font-size: clamp(21px, 1.85vw, 32px);
  line-height: 1.45;
  color: var(--white);
  margin: 0;
}

.testimonial__body {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.testimonial__name {
  margin: 28px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

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

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

/* ============ CONTACT ============ */
.contact {
  background: var(--paper);
  padding: 0;
}

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

.contact__media {
  position: relative;
  min-height: 100%;
  background: var(--navy);
}

.contact__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.contact__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(11, 20, 32, 0.82), rgba(22, 40, 60, 0.58));
}

.contact__info {
  position: relative;
  z-index: 2;
  padding: 96px var(--pad) 96px 0;
  max-width: 520px;
  margin-left: auto;
  color: var(--white);
}

.contact__info h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact__info > p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 34px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--hair-lt);
  padding-top: 28px;
}

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

.contact__item svg {
  width: 20px;
  height: 20px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.4;
  margin-top: 4px;
  flex: 0 0 auto;
}

.contact__item small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 5px;
}

.contact__item span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact__form-side {
  padding: 96px 0 96px var(--pad);
}

.form {
  background: var(--white);
  padding: 52px 48px;
  box-shadow: 0 30px 70px rgba(11, 20, 32, 0.09);
  border-top: 3px solid var(--brass);
}

.form h3 {
  font-family: var(--disp);
  font-size: 30px;
  margin-bottom: 8px;
}

.form > p {
  margin: 0 0 30px;
  font-size: 15px;
  color: var(--steel);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__field {
  margin-bottom: 18px;
  min-width: 120px;
}

.form__field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}

.form__field input,
.form__field select {
  width: 100%;
  min-width: 120px;
  height: 40px;
  padding: 0 14px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 4px;
  font-size: 15px;
  transition: 0.25s var(--ease);
}

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

.form__field textarea {
  width: 100%;
  min-width: 120px;
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.6;
  transition: 0.25s var(--ease);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 154, 84, 0.16);
}

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

.form__fine {
  margin: 18px 0 0;
  font-size: 12px;
  color: var(--steel);
  line-height: 1.6;
  text-align: center;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 52px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 216px;
  margin-bottom: 24px;
  max-width: none;
}

.footer p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
}

.footer h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer ul a {
  font-size: 15px;
  transition: color 0.25s var(--ease);
}

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

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

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

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

/* ============ MOTION ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal--d1 {
  transition-delay: 0.09s;
}

.reveal--d2 {
  transition-delay: 0.18s;
}

.reveal--d3 {
  transition-delay: 0.27s;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ============ RESPONSIVE: progressive header scale ============ */
@media (max-width: 1320px) {
  :root {
    --pad: 36px;
  }

  .header__nav {
    gap: 22px;
  }

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

  .header__tel {
    font-size: 15px;
  }

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

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

  .header__nav {
    gap: 18px;
  }

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

  .header__inner {
    gap: 24px;
  }

  .header__cta {
    gap: 14px;
  }

  .about__grid {
    gap: 48px;
  }

  .practice__grid {
    gap: 20px;
  }
}

@media (max-width: 1240px) {
  .header__nav {
    gap: 14px;
  }

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

  .header__tel {
    font-size: 14px;
  }

  .header__tel small {
    font-size: 10px;
  }

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

/* ============ NAV BREAKPOINT: 1200px ============ */
@media (max-width: 1200px) {
  .header__cta {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__burger:focus {
    outline: none;
  }

  .header__burger:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 6px;
    border-radius: 4px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 108px 32px 40px;
    background: var(--ink);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    z-index: 95;
    overflow-y: auto;
  }

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

  .header__nav-link {
    font-size: 18px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__nav-link:first-of-type {
    border-top: 0;
    padding-top: 0;
  }

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .header__nav-extras .header__tel small {
    margin-bottom: 4px;
  }

  .header__nav-extras .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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

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

  .accolades__badge--million img {
    height: 64px;
  }

  .accolades__badge--ntl img {
    height: 55px;
  }

  .accolades__badge--super img {
    height: 34px;
  }

  .accolades__badge--aaj img {
    height: 44px;
  }

  .accolades__item--text .accolades__mark {
    font-size: 32px;
  }

  .accolades__item:nth-child(3) {
    border-right: 0;
  }
}

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

  .topbar__location--hide-md {
    display: none;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: 440px;
    right: auto;
    bottom: auto;
    margin-top: 8px;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: block;
    padding: clamp(40px, 6vw, 52px) clamp(20px, 3vw, 40px) 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about__media {
    padding: 0 0 40px 40px;
    max-width: 560px;
  }

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

  .contact__info {
    max-width: none;
    padding: 76px 0;
    margin: 0;
  }

  .contact__media {
    min-height: 0;
  }

  .contact__form-side {
    padding: 0 0 76px;
  }

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

  .section {
    padding: 80px 0;
  }
}

/* Full-width CTAs in stacked hero */
@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    font-size: 17px;
    padding: 17px 30px;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 20px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: 100%;
  }

  .topbar__meta-extra {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-start;
  }

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

  .accolades__item {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 126px;
    padding: 26px 16px;
  }

  .accolades__item:nth-child(2n) {
    border-right: 0 !important;
  }

  .accolades__item:last-child {
    grid-column: 1 / -1;
    border-right: 0 !important;
    border-bottom: 0;
  }

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

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

  .values__item {
    border-left: 0;
    padding: 0;
  }

  .ledger__row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .ledger__link {
    margin-top: 4px;
  }

  .ledger__total {
    text-align: left;
  }

  .form {
    padding: 34px 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .hero__visual {
    height: 370px;
  }

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

  .hero__content {
    padding-left: 0;
    padding-right: 0;
  }

  .about__media {
    padding: 0 0 34px 26px;
  }

  .about__stat {
    right: 0;
    bottom: -14px;
    padding: 20px 22px;
  }

  .about__stat-value {
    font-size: 34px;
  }

  .testimonial__mark {
    font-size: 70px;
  }

  .section {
    padding: 66px 0;
  }
}

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

  .hero__content {
    max-width: 100%;
    width: 100%;
  }
}
