:root {
  --ink: #0e2a2f;
  --petrol: #2b6a71;
  --petrol-deep: #1b4a53;
  --petrol-mid: #245a63;
  --brass: #c1934f;
  --brass-lt: #dcb77e;
  --fog: #e9edec;
  --fog-2: #f4f7f6;
  --paper: #ffffff;
  --line: rgba(14, 42, 47, 0.14);
  --line-lt: rgba(255, 255, 255, 0.16);
  --pad: 45px;
  --disp: "Petrona", Georgia, serif;
  --body: "Karla", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--disp);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.022em;
}

p {
  margin: 0 0 1.1em;
}

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

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

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

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--petrol);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
  flex: none;
}

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

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

.lede {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(14, 42, 47, 0.78);
}

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

.btn--brass {
  background: var(--brass);
  color: #20150a;
  box-shadow: 0 10px 26px -12px rgba(193, 147, 79, 0.75);
}

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

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

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

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

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.045em;
}

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

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

.utility__item {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  min-width: 0;
}

.utility__item svg {
  width: 14px;
  height: 14px;
  flex: none;
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.6;
}

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

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.header--stuck {
  box-shadow: 0 12px 30px -22px rgba(14, 42, 47, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  min-height: 96px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__brand {
  flex: none;
  flex-shrink: 0;
}

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

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

.header__nav-link {
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__cta {
  flex: none;
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  padding: clamp(10px, 1vw, 14px) clamp(16px, 1.6vw, 28px);
}

.header__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 52px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  z-index: 70;
}

.header__burger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

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

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

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

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 47, 0.45);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

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

.header__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  height: 100dvh;
  max-width: 100vw;
  background: #fff;
  z-index: 80;
  transform: translate3d(100%, 0, 0);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0.35s;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 36px;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}

.header__panel.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}

.header__panel-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.header__nav-close {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__nav-close::before,
.header__nav-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.header__nav-close::before {
  transform: rotate(45deg);
}

.header__nav-close::after {
  transform: rotate(-45deg);
}

.header__panel-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header__panel-nav .header__nav-link {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
}

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

.header__nav-extras {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.header__nav-phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header__nav-phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14, 42, 47, 0.5);
}

.header__nav-phone-link {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--petrol-deep);
  overflow: hidden;
  isolation: isolate;
  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::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-texture.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  mix-blend-mode: overlay;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 108%, rgba(43, 106, 113, 0.85) 0%, rgba(27, 74, 83, 0) 62%),
    linear-gradient(103deg, var(--ink) 0%, var(--petrol-deep) 46%, var(--petrol-mid) 100%);
  z-index: -1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(95%, var(--container-max));
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, var(--pad));
  height: 100%;
  display: flex;
  align-items: center;
}

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

.hero__eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin: 0 0 16px;
  line-height: 1.5;
}

.hero__title {
  font-size: clamp(36px, 3.55vw, 56px);
  font-weight: 600;
  letter-spacing: -0.028em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 19ch;
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-lt);
}

.hero__serving {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-lt);
  display: inline-block;
}

.hero__text {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
  margin-bottom: 28px;
}

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

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

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

.hero__tel-link {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero__tel-link:hover {
  color: var(--brass-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;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 132%;
  height: 86%;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(66% 78% at 50% 100%, rgba(220, 183, 126, 0.24) 0%, rgba(220, 183, 126, 0) 72%);
  z-index: 0;
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.accolades__inner {
  padding-top: 40px;
  padding-bottom: 42px;
}

.accolades__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 30px;
}

.accolades__eyebrow::before,
.accolades__eyebrow::after {
  content: "";
  height: 1px;
  width: 44px;
  background: rgba(255, 255, 255, 0.2);
}

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

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  position: relative;
  min-height: 92px;
}

.accolades__item + .accolades__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.accolades__item img {
  width: auto;
  opacity: 0.82;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.accolades__item:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.accolades__item--seal img {
  height: 84px;
}

.accolades__item--ntl img {
  height: 68px;
}

.accolades__item--sl img {
  height: 40px;
}

.accolades__item--aaj img {
  height: 62px;
}

/* ---------- section shells ---------- */
.section {
  padding: 112px 0;
}

.section--fog {
  background: var(--fog-2);
}

.section__head {
  max-width: 760px;
}

.section__head h2 {
  font-size: clamp(31px, 3.05vw, 46px);
}

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

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

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__frame {
  position: absolute;
  left: -24px;
  top: -24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid var(--brass);
  opacity: 0.8;
  z-index: -1;
}

.about__stat {
  position: absolute;
  right: -30px;
  bottom: 44px;
  background: var(--petrol-deep);
  color: #fff;
  padding: 26px 32px;
  max-width: 250px;
}

.about__stat-value {
  display: block;
  font-family: var(--disp);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brass-lt);
  margin-bottom: 8px;
}

.about__stat-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.about__copy h2 {
  font-size: clamp(31px, 3.1vw, 46px);
  margin-bottom: 26px;
}

.about__copy .lede {
  margin-bottom: 30px;
}

.about__sig {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about__sig-name {
  font-family: var(--disp);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.about__sig-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petrol);
}

.about__sig-cta {
  margin-left: auto;
}

/* ---------- practice areas ---------- */
.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.practice-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -30px rgba(14, 42, 47, 0.55);
}

.practice-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.practice-card:hover .practice-card__thumb img {
  transform: scale(1.06);
}

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 47, 0) 40%, rgba(14, 42, 47, 0.62) 100%);
}

.practice-card__body {
  padding: 28px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.practice-card__body h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.practice-card__body p {
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(14, 42, 47, 0.68);
  margin-bottom: 20px;
}

.practice-card__link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petrol);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card__link::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s ease;
}

.practice-card:hover .practice-card__link::after {
  width: 34px;
}

/* ---------- case results ledger ---------- */
.ledger {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.ledger__bg {
  position: absolute;
  inset: 0;
  opacity: 0.16;
}

.ledger__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ledger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(14, 42, 47, 0.9) 55%, rgba(14, 42, 47, 0.7) 100%);
}

.ledger__inner {
  position: relative;
  z-index: 2;
  padding-top: 108px;
  padding-bottom: 108px;
}

.ledger__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--brass);
}

.ledger__top h2 {
  font-size: clamp(31px, 3.05vw, 46px);
  color: #fff;
}

.ledger__note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34ch;
  line-height: 1.7;
}

.ledger__row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    background 0.35s ease,
    padding-left 0.35s ease;
}

.ledger__row:hover {
  background: rgba(255, 255, 255, 0.04);
  padding-left: 14px;
}

.ledger__index {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
}

.ledger__type {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.ledger__type small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.ledger__amount {
  font-family: var(--disp);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--brass-lt);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.ledger__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 36px;
}

.ledger__total {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.ledger__total b {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  margin-left: 10px;
}

/* ---------- values ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.value {
  padding: 44px 34px 40px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
}

.value:first-child {
  border-left: 1px solid var(--line);
}

.value::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.value:hover::before {
  transform: scaleX(1);
}

.value svg {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--petrol);
  stroke-width: 1.35;
}

.value h3 {
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: -0.012em;
  margin-bottom: 0;
}

.value p {
  font-size: 15px;
  line-height: 1.68;
  color: rgba(14, 42, 47, 0.66);
  margin-top: 12px;
}

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

.testimonial__inner {
  padding-top: 104px;
  padding-bottom: 104px;
  position: relative;
  z-index: 2;
}

.testimonial__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.testimonial h2 {
  font-size: clamp(31px, 3.1vw, 46px);
}

.testimonial h2 span {
  display: block;
  color: var(--petrol);
  font-style: italic;
  font-weight: 400;
}

.testimonial__stars {
  display: flex;
  gap: 6px;
  margin-top: 24px;
}

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

.testimonial__quote {
  position: relative;
  padding-left: 44px;
}

.testimonial__quote::before {
  content: "“";
  position: absolute;
  left: -6px;
  top: -34px;
  font-family: var(--disp);
  font-size: 150px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.36;
}

.testimonial__quote blockquote {
  margin: 0;
  font-family: var(--disp);
  font-size: clamp(22px, 2.35vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.44;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.testimonial__cite {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petrol);
}

/* ---------- contact ---------- */
.contact {
  background: var(--petrol-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-texture.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.contact__inner {
  position: relative;
  z-index: 2;
  padding-top: 104px;
  padding-bottom: 104px;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 80px;
  align-items: start;
}

.contact h2 {
  font-size: clamp(31px, 3.1vw, 46px);
  margin-bottom: 24px;
  color: #fff;
}

.contact .lede {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
}

.contact__facts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.contact__fact {
  background: var(--petrol-deep);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 4px 24px 0;
}

.contact__fact svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: var(--brass-lt);
  stroke-width: 1.5;
  margin-top: 4px;
}

.contact__fact-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.contact__fact-value {
  font-size: 16.5px;
  line-height: 1.6;
  color: #fff;
}

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

.contact__form {
  background: var(--paper);
  color: var(--ink);
  padding: 44px 42px 46px;
}

.contact__form-title {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 6px;
}

.contact__form-sub {
  font-size: 14px;
  color: rgba(14, 42, 47, 0.62);
  margin-bottom: 30px;
}

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

.field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background: var(--fog-2);
  border: 1px solid var(--line);
  border-radius: 0;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--petrol) 50%),
    linear-gradient(135deg, var(--petrol) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 18px,
    calc(100% - 14px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--petrol);
  background: #fff;
  outline: none;
}

.contact__form .btn {
  width: 100%;
  margin-top: 10px;
}

.contact__form-fine {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(14, 42, 47, 0.55);
  text-align: center;
}

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

.footer__inner {
  padding-top: 76px;
  padding-bottom: 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__logo {
  width: 266px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
  max-width: none;
}

.footer__blurb {
  max-width: 44ch;
  line-height: 1.75;
}

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

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

.footer ul a:hover {
  color: #fff;
}

.footer__tel {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  display: block;
  margin-bottom: 16px;
}

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

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

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bar-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 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;
  }

  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1500px) {
  .header__nav {
    gap: 24px;
  }

  .header__brand img {
    width: 210px;
  }
}

@media (max-width: 1300px) {
  :root {
    --pad: 34px;
  }

  .header__nav {
    gap: 18px;
  }

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

  .about__grid {
    gap: 52px;
  }

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

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

  .value:nth-child(3) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 1200px) {
  .header__inner {
    min-height: 80px;
  }

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

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

  .hero__visual {
    width: 45%;
  }

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

  .accolades__item {
    padding: 8px 22px;
  }

  .accolades__item:nth-child(3)::before {
    display: none;
  }

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

  .about__media {
    max-width: 520px;
  }

  .about__stat {
    right: -16px;
  }

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

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

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

  .section {
    padding: 88px 0;
  }
}

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

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

  body {
    font-size: 16px;
  }

  .utility__inner {
    justify-content: center;
    text-align: center;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .utility__left {
    justify-content: center;
    gap: 10px;
    flex-direction: column;
  }

  .utility__item {
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }

  .utility__est {
    display: none;
  }

  .header__brand img {
    width: 184px;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 28px) 0;
    display: flex;
    flex-direction: column;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 clamp(20px, 4vw, 32px);
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: min(420px, 55vh);
    margin-top: auto;
  }

  .hero__actions {
    gap: 20px;
  }

  .accolades__item {
    padding: 6px 14px;
    min-height: 78px;
  }

  .accolades__item--seal img {
    height: 70px;
  }

  .accolades__item--ntl img {
    height: 56px;
  }

  .accolades__item--sl img {
    height: 33px;
  }

  .accolades__item--aaj img {
    height: 50px;
  }

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

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

  .value,
  .value:nth-child(3) {
    border-left: 1px solid var(--line);
  }

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

  .ledger__index {
    display: none;
  }

  .ledger__amount {
    text-align: left;
  }

  .ledger__row:hover {
    padding-left: 0;
  }

  .ledger__foot .btn,
  .about__sig-cta {
    width: 100%;
  }

  .about__sig {
    flex-wrap: wrap;
    gap: 16px;
  }

  .about__sig-cta {
    margin-left: 0;
  }

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

  .about__frame {
    display: none;
  }

  .testimonial__quote {
    padding-left: 0;
    padding-top: 14px;
  }

  .testimonial__quote::before {
    left: -4px;
    top: -46px;
    font-size: 110px;
  }

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

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

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

  .section {
    padding: 70px 0;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    font-size: 16px;
    padding: 15px 22px;
    white-space: normal;
    line-height: 1.35;
  }
}

@media (max-width: 400px) {
  .accolades__item {
    padding: 6px 10px;
  }
}
