:root {
  --ink: #071B2E;
  --navy: #0C2C4A;
  --navy-mid: #17456E;
  --navy-soft: #2A5B87;
  --gold: #C0912F;
  --gold-lt: #E0BC6A;
  --stone: #EDF1F4;
  --stone-2: #DCE3EA;
  --paper: #FFFFFF;
  --body: #3A4A58;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 96px;
  --serif: "Frank Ruhl Libre", Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.012em;
}

p {
  margin: 0 0 1.15em;
}

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

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

/* ---------- structure ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 3.5vw, 45px);
  padding-right: clamp(20px, 3.5vw, 45px);
}

.section {
  padding: 104px 0;
}

.section--tight {
  padding: 78px 0;
}

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

.section__title {
  font-size: clamp(2rem, 3.1vw, 2.95rem);
}

.section__title--light {
  color: #F3F7FA;
}

.lede {
  font-size: 18.5px;
  max-width: 70ch;
}

.lede--narrow {
  max-width: 44ch;
}

/* eyebrow: brass hairline + small caps — the firm's 1962 lineage motif */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
  flex: none;
  opacity: 0.85;
}

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

.eyebrow--center::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
  flex: none;
  opacity: 0.85;
}

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

.eyebrow--light::before,
.eyebrow--light::after {
  background: var(--gold-lt);
}

.eyebrow--spaced {
  margin-bottom: 26px;
}

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

.btn--gold {
  background: var(--gold);
  color: #12212E;
  box-shadow: 0 12px 30px -14px rgba(192, 145, 47, 0.7);
}

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

.btn--ghost {
  border-color: rgba(224, 188, 106, 0.6);
  color: var(--gold-lt);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #12212E;
}

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

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

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

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ink);
  border-bottom: 1px solid rgba(224, 188, 106, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  min-height: 96px;
}

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

.header__logo-img {
  width: 290px;
  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 {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: #DCE6EF;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

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

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

.header__nav-close {
  display: none;
}

.header__nav-extras {
  display: none;
}

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

.header__phone {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

.header__aside .btn {
  flex-shrink: 0;
  font-size: clamp(12px, 1.05vw, 15px);
  padding: clamp(10px, 0.9vw, 13px) clamp(16px, 1.6vw, 26px);
}

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

.header__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #E6EDF4;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

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

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

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

.header__overlay {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 0;
  overflow: hidden;
  background: var(--ink);
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-hero.jpg") center 32% / cover no-repeat;
  opacity: 0.55;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(7, 27, 46, 0.97) 0%,
      rgba(7, 27, 46, 0.9) 38%,
      rgba(7, 27, 46, 0.55) 62%,
      rgba(7, 27, 46, 0.28) 100%
    ),
    radial-gradient(120% 90% at 8% 100%, rgba(12, 44, 74, 0.85), transparent 65%);
}

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

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

.hero__kicker {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-lt);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 4.1vw, 3.95rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
}

.hero__text {
  color: #BCCCDA;
  font-size: 17.5px;
  max-width: 37rem;
  margin-bottom: 34px;
}

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

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

.hero__phone-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7F98AE;
}

.hero__phone-link {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

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

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

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--ink);
  border-top: 1px solid rgba(224, 188, 106, 0.16);
  padding: 38px 0;
}

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

.accolades__item {
  padding: 12px 26px;
  text-align: center;
  border-left: 1px solid rgba(224, 188, 106, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 86px;
}

.accolades__item:first-child {
  border-left: 0;
}

.accolades__value {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 600;
  color: #F0F5F9;
  line-height: 1.22;
}

.accolades__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.about__figure {
  position: relative;
  margin: 0;
}

.about__image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about__figure::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(192, 145, 47, 0.55);
  pointer-events: none;
}

.about__title {
  font-size: clamp(1.95rem, 2.9vw, 2.7rem);
  margin-bottom: 26px;
}

.about__body {
  max-width: 62ch;
}

.callout {
  margin-top: 34px;
  border-left: 3px solid var(--gold);
  background: var(--stone);
  padding: 24px 30px;
  font-family: var(--serif);
  font-size: 19.5px;
  line-height: 1.55;
  color: var(--navy);
}

.callout__link {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

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

/* ---------- practice areas ---------- */
.practice__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.practice__head--compact {
  margin-bottom: 40px;
}

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

.practice__card {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  display: block;
  isolation: isolate;
}

.practice__card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.practice__card:hover .practice__card-image {
  transform: scale(1.06);
}

.practice__card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78%;
  background: linear-gradient(
    to top,
    rgba(7, 27, 46, 0.97) 8%,
    rgba(7, 27, 46, 0.72) 42%,
    rgba(7, 27, 46, 0.12) 82%,
    transparent
  );
  z-index: 1;
  pointer-events: none;
}

.practice__card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 26px 26px;
}

.practice__card-title {
  color: #fff;
  font-size: 20.5px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.practice__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.practice__more svg {
  transition: transform 0.3s ease;
}

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

.practice__rule {
  height: 1px;
  background: var(--gold);
  width: 34px;
  margin-bottom: 16px;
}

/* ---------- case results: settlement ledger ---------- */
.results {
  background: var(--navy);
  color: #C4D3E0;
  position: relative;
}

.results__head {
  text-align: center;
  margin-bottom: 56px;
}

.results__note {
  font-size: 13.5px;
  color: #8EA6BB;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

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

.ledger__col {
  padding: 38px 40px;
  border-left: 1px solid rgba(224, 188, 106, 0.22);
}

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

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

.ledger__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  min-height: 2.4em;
}

.ledger__sum {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.4vw, 3.15rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}

.ledger__sub {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8EA6BB;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(224, 188, 106, 0.22);
}

.ledger__rows {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ledger__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14.5px;
}

.ledger__row dt {
  color: #93AABE;
  flex: none;
}

.ledger__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(147, 170, 190, 0.45);
  transform: translateY(-4px);
  min-width: 12px;
}

.ledger__row dd {
  margin: 0;
  flex: none;
  color: #EAF1F7;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ledger__row--highlight dt {
  color: var(--gold-lt);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ledger__row--highlight dd {
  color: var(--gold-lt);
}

.results__disclaimer {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(224, 188, 106, 0.22);
  font-size: 12.5px;
  color: #7E97AC;
  max-width: 88ch;
}

/* ---------- values ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--stone-2);
}

.values__item {
  background: var(--paper);
  padding: 42px 34px 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.35s ease;
}

.values__item:hover {
  background: var(--stone);
}

.values__icon {
  color: var(--gold);
}

.values__title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.24;
}

.values__text {
  font-size: 15.5px;
  line-height: 1.62;
  color: #5A6B7A;
  margin: 0;
}

.values__item .practice__more {
  color: var(--navy-mid);
  margin-top: auto;
}

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

.values__item .practice__more svg {
  transition: transform 0.3s ease;
}

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

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

.testimonial__inner {
  max-width: 74rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonial__mark {
  font-family: var(--serif);
  font-size: 130px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.32;
  display: block;
  margin-bottom: 6px;
}

.testimonial__quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.15vw, 1.92rem);
  font-weight: 300;
  line-height: 1.48;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.testimonial__cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--gold);
}

/* ---------- contact ---------- */
.contact {
  background: var(--ink);
  color: #BCCCDA;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 0;
  align-items: stretch;
}

.contact__pane {
  padding: 88px 68px 88px 0;
}

.contact__intro {
  max-width: 52ch;
}

.contact__figure {
  position: relative;
  min-height: 560px;
}

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

.contact__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(7, 27, 46, 0.42), rgba(7, 27, 46, 0.72));
}

.contact__card {
  position: absolute;
  z-index: 2;
  left: 44px;
  right: 44px;
  bottom: 44px;
  background: rgba(7, 27, 46, 0.86);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(224, 188, 106, 0.34);
  padding: 30px 32px;
}

.contact__card-title {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  color: #fff;
  margin-bottom: 14px;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.contact__meta a {
  color: #DDE7F0;
}

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

.contact__meta-note {
  color: #8EA6BB;
}

.contact__title {
  font-size: clamp(1.95rem, 2.9vw, 2.65rem);
  margin-bottom: 18px;
}

.form {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.form__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8EA6BB;
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: #F2F7FB;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 188, 106, 0.3);
  border-radius: 2px;
  padding: 0 16px;
  height: 44px;
  width: 100%;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form__textarea {
  height: 120px;
  padding: 13px 16px;
  resize: vertical;
  line-height: 1.55;
}

.form__select {
  appearance: none;
  cursor: pointer;
  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='%23E0BC6A' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #6F879C;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.form__submit {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.form__fine {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: #7E97AC;
  margin-top: 4px;
}

.form__fine-link {
  color: #DDE7F0;
  border-bottom: 1px solid var(--gold);
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy);
  color: #A8BCCE;
  padding: 74px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 52px;
  padding-bottom: 56px;
}

.footer__logo-img {
  width: 266px;
  height: auto;
  max-width: none;
  margin-bottom: 22px;
}

.footer__blurb {
  font-size: 15px;
  max-width: 34ch;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

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

.footer__address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.75;
  white-space: pre-line;
}

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

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

.footer__bar {
  border-top: 1px solid rgba(224, 188, 106, 0.22);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #8098AD;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

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

/* ---------- responsive: progressive header scaling ---------- */
@media (max-width: 1320px) {
  .about__grid {
    gap: 52px;
  }
}

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

  .header__toggle {
    display: block;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(7, 27, 46, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 28px 28px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-left: 1px solid rgba(224, 188, 106, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

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

  .header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    margin: -8px -8px 12px 0;
    padding: 0;
    border: 1px solid rgba(224, 188, 106, 0.35);
    background: transparent;
    color: #E6EDF4;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
  }

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

  .header__nav-link {
    font-size: 17px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(224, 188, 106, 0.14);
  }

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

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

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

  .header__nav-extras .header__phone {
    font-size: 24px;
  }

  .header__inner {
    min-height: 78px;
  }

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

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

  .accolades__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(224, 188, 106, 0.18);
  }

  .accolades__item {
    border-left: 0;
    background: var(--ink);
  }

  .contact__pane {
    padding: 70px 44px 70px 0;
  }

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

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

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

  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    overflow: visible;
  }

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

  .hero__content {
    padding: clamp(20px, 4vw, 40px) 0 clamp(16px, 3vw, 28px);
  }

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

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

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

  .about__image {
    min-height: 380px;
  }

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

  .ledger__col {
    border-left: 0;
    border-top: 1px solid rgba(224, 188, 106, 0.22);
    padding: 32px 0;
  }

  .ledger__col:first-child {
    border-top: 0;
    padding-top: 0;
  }

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

  .contact__pane {
    padding: 64px 0 56px;
  }

  .contact__figure {
    min-height: 400px;
    order: -1;
  }

  .section {
    padding: 78px 0;
  }
}

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

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

  .hero__visual {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16.5px;
  }

  .section,
  .section--tight {
    padding: 58px 0;
  }

  .hero__title {
    font-size: 2.05rem;
  }

  .btn {
    font-size: 17px;
    padding: 16px 30px;
    width: 100%;
  }

  .hero__actions {
    gap: 20px;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

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

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

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

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

  .testimonial__mark {
    font-size: 92px;
  }

  .contact__card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 24px;
  }
}
