:root {
  --ink: #101d23;
  --deep: #1b2e36;
  --brand: #45616b;
  --mid: #5e7c87;
  --pale: #dde5e7;
  --paper: #f3f6f6;
  --gold: #be9a55;
  --gold-hi: #d8bb82;
  --white: #fff;
  --pad: 45px;
  --display: "Bodoni Moda", Georgia, serif;
  --body: "Barlow", Helvetica, Arial, sans-serif;
  --util: "Barlow Condensed", Impact, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
}

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

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

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

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

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

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

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

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

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

.section__eyebrow {
  font-family: var(--util);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.section__eyebrow--dark {
  color: var(--brand);
}

.section__title {
  font-family: var(--display);
  font-weight: 500;
  color: var(--deep);
  margin: 0;
  line-height: 1.14;
  letter-spacing: -0.005em;
  font-size: clamp(28px, 3vw, 44px);
}

.section__rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--deep);
  margin: 0;
  line-height: 1.14;
  letter-spacing: -0.005em;
}

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

.btn--gold {
  background: var(--gold);
  color: #15242b;
  border-color: var(--gold);
}

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

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--deep);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--deep);
  border-color: var(--brand);
}

.btn--outline:hover {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}

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

/* ---------- utility bar ---------- */
.utility-bar {
  background: var(--deep);
  color: #c4d2d6;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
  font-family: var(--util);
  font-size: 15px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.utility-bar__tag {
  color: var(--gold-hi);
}

.utility-bar__phone {
  color: #fff;
}

.utility-bar__phone strong {
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 16px;
}

/* ---------- header ---------- */
.header {
  background: var(--white);
  border-bottom: 1px solid #e4eaeb;
  position: relative;
  z-index: 40;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-top: 22px;
  padding-bottom: 22px;
}

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

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

.header__right {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 0 1 auto;
  min-width: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.header__nav-link {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  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;
}

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  right: 0;
}

.header__cta {
  flex-shrink: 0;
  font-size: 16px;
  padding: 14px 30px;
}

.header__nav-close,
.header__nav-extras {
  display: none;
}

.header__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 42;
  width: 46px;
  height: 46px;
}

.header__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--deep);
  margin: 5px auto;
  transition: transform 0.3s, opacity 0.3s;
}

.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 {
  position: fixed;
  inset: 0;
  background: rgba(16, 29, 35, 0.55);
  z-index: 35;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink) url("../assets/images/bg-hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  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: linear-gradient(
    100deg,
    rgba(11, 21, 26, 0.94) 0%,
    rgba(13, 25, 31, 0.86) 42%,
    rgba(16, 29, 35, 0.55) 68%,
    rgba(16, 29, 35, 0.42) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  top: -14%;
  right: -4%;
  width: 60%;
  height: 128%;
  background: radial-gradient(
    ellipse at 58% 52%,
    rgba(139, 170, 180, 0.4) 0%,
    rgba(110, 140, 151, 0.2) 42%,
    rgba(16, 29, 35, 0) 72%
  );
  pointer-events: none;
}

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

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

.hero__eyebrow {
  font-family: var(--util);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.hero__virtues {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2px, 0.35vw, 7px);
  margin: 0 0 26px;
}

.hero__virtues-row {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
}

.hero__virtues-word {
  font-family: var(--display);
  font-weight: 500;
  color: #fff;
  font-size: clamp(29px, 3.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  display: inline-block;
  white-space: nowrap;
}

.hero__virtues-sep {
  display: inline-block;
  width: 1px;
  height: 0.74em;
  background: var(--gold);
  margin: 0 clamp(13px, 1.35vw, 22px);
  flex: none;
  opacity: 0.9;
}

.hero__text {
  color: #c9d6da;
  font-size: 18px;
  line-height: 1.78;
  margin: 0 0 34px;
  max-width: 590px;
}

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

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

.hero__phone-label {
  font-family: var(--util);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93a8ae;
}

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

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

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

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--paper);
  border-bottom: 1px solid #e1e8e9;
  --badge-scale: 1;
}

.accolades__inner {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.accolades__label {
  font-family: var(--util);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  max-width: 150px;
  line-height: 1.4;
  flex: none;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin: 0;
}

.accolades__row {
  display: flex;
  align-items: center;
  gap: clamp(30px, 3.2vw, 56px);
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 26px;
}

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

.accolades__badge img {
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}

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

.accolades__badge--seal img {
  height: calc(76px * var(--badge-scale));
}

.accolades__badge--ntl img {
  height: calc(62px * var(--badge-scale));
}

.accolades__badge--sl img {
  height: calc(40px * var(--badge-scale));
}

.accolades__badge--aaj img {
  height: calc(54px * var(--badge-scale));
}

@media (min-width: 1441px) {
  .accolades {
    --badge-scale: 1.2;
  }

  .accolades__inner {
    padding-top: 38px;
    padding-bottom: 38px;
  }
}

/* ---------- about ---------- */
.about {
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: center;
}

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

.about__image {
  width: 100%;
  height: auto;
}

.about__figure::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 126px;
  height: 126px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.about__title {
  font-size: clamp(27px, 2.55vw, 40px);
}

.about__body {
  margin: 28px 0 0;
}

.about__body p {
  margin: 0 0 18px;
}

.about__stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin: 34px 0;
  padding: 26px 0;
  border-top: 1px solid var(--pale);
  border-bottom: 1px solid var(--pale);
}

.about__stat {
  min-width: 0;
}

.about__stat-value {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  color: var(--deep);
  line-height: 1;
}

.about__stat-label {
  display: block;
  font-family: var(--util);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 8px;
}

/* ---------- practice areas ---------- */
.practice {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--paper);
}

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

.practice__head .section__rule {
  margin: 22px auto 0;
}

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

.practice-card {
  background: #fff;
  border: 1px solid #e2e9ea;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(27, 46, 54, 0.14);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 640 / 440;
  overflow: hidden;
}

.practice-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.practice-card:hover .practice-card__image {
  transform: scale(1.05);
}

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 29, 35, 0) 45%, rgba(16, 29, 35, 0.55) 100%);
}

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

.practice-card__title {
  font-size: 22px;
  line-height: 1.24;
}

.practice-card__text {
  font-size: 15.5px;
  line-height: 1.68;
  margin: 14px 0 20px;
  color: #54666d;
}

.practice-card__more {
  margin-top: auto;
  font-family: var(--util);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card__more::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

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

/* ---------- case results ---------- */
.cases {
  position: relative;
  background: var(--deep) url("../assets/images/bg-cases.jpg") center / cover no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}

.cases::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 33, 0.86);
}

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

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

.cases__head .section__title {
  color: #fff;
}

.cases__head .section__rule {
  margin: 22px auto 0;
}

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

.case-card {
  border: 1px solid rgba(190, 154, 85, 0.34);
  padding: 36px 28px 30px;
  background: rgba(255, 255, 255, 0.035);
  display: flex;
  flex-direction: column;
  transition: background 0.3s, border-color 0.3s;
}

.case-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: var(--gold);
}

.case-card__amount {
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 500;
  color: var(--gold-hi);
  line-height: 1;
  display: block;
}

.case-card__text {
  color: #bdcbd0;
  font-size: 15.5px;
  line-height: 1.62;
  margin: 16px 0 22px;
}

.case-card__link {
  margin-top: auto;
  font-family: var(--util);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.case-card__link:hover {
  color: var(--gold-hi);
}

/* ---------- values ---------- */
.values {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}

.values__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 5vw, 80px);
}

.values__title {
  font-size: clamp(28px, 2.7vw, 42px);
}

.values__intro {
  margin: 24px 0 0;
  color: #54666d;
}

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

.value {
  border-top: 2px solid var(--pale);
  padding-top: 24px;
  transition: border-color 0.3s;
}

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

.value__number {
  font-family: var(--util);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.value__title {
  font-size: 21px;
  line-height: 1.26;
}

.value__text {
  font-size: 15.5px;
  line-height: 1.68;
  margin: 12px 0 16px;
  color: #54666d;
}

.value__link {
  font-family: var(--util);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

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

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  background: var(--ink) url("../assets/images/bg-testimonial.jpg") center / cover no-repeat;
  padding-top: 96px;
  padding-bottom: 96px;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 25, 31, 0.88);
}

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

.testimonial__title {
  color: #fff;
  font-size: clamp(26px, 2.4vw, 36px);
}

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

.testimonial__quote {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.82;
  color: #d3dee1;
  font-family: var(--body);
  font-weight: 300;
}

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

/* ---------- contact ---------- */
.contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--paper);
}

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

.contact__title {
  font-size: clamp(28px, 2.7vw, 42px);
}

.contact__intro {
  margin: 26px 0 34px;
  color: #54666d;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-info__label {
  font-family: var(--util);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  width: 92px;
  flex: none;
  padding-top: 5px;
}

.contact-info__value {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--deep);
}

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

.contact-form {
  background: #fff;
  border: 1px solid #e2e9ea;
  padding: 38px 36px 40px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

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

.form-field__label {
  font-family: var(--util);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.form-field__input,
.form-field__select,
.form-field__textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--deep);
  background: #f7f9f9;
  border: 1px solid #d9e2e3;
  border-radius: 2px;
  padding: 0 14px;
  height: 40px;
  transition: border-color 0.25s, background 0.25s;
}

.form-field__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position: calc(100% - 20px) 17px, calc(100% - 14px) 17px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

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

.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.contact-form__foot {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-form__note {
  font-size: 13px;
  color: #7b8d93;
  line-height: 1.5;
  flex: 1 1 200px;
  min-width: 0;
  margin: 0;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: #a9bac0;
  padding-top: 76px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr) minmax(0, 0.8fr);
  gap: clamp(34px, 4vw, 68px);
  padding-bottom: 54px;
}

.footer__logo-img {
  width: 420px;
  height: auto;
  max-width: 100%;
}

.footer__tagline {
  margin: 26px 0 0;
  font-size: 16px;
  line-height: 1.75;
  max-width: 440px;
  color: #93a6ac;
}

.footer__heading {
  font-family: var(--util);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__nav-link {
  font-size: 16px;
}

.footer__nav-link:hover,
.footer__contact a:hover {
  color: #fff;
}

.footer__contact {
  font-size: 16px;
  line-height: 1.8;
  font-style: normal;
}

.footer__phone {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding: 28px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #7c8f96;
}

.footer__disclaimer {
  max-width: 760px;
  line-height: 1.7;
  margin: 0;
}

.footer__copyright {
  margin: 0;
}

/* ---------- progressive header scaling (above hamburger) ---------- */
@media (max-width: 1440px) {
  .header__logo-img {
    width: 360px;
  }

  .header__nav {
    gap: 22px;
  }

  .header__inner {
    gap: 24px;
  }

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

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

@media (max-width: 1320px) {
  .header__logo-img {
    width: 320px;
  }

  .header__nav {
    gap: 16px;
  }

  .header__right {
    gap: 20px;
  }

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

  .header__cta {
    font-size: 14px;
    padding: 11px 20px;
  }
}

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

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

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

  .header__right {
    gap: 14px;
  }
}

/* ---------- layout breakpoints ---------- */
@media (max-width: 1180px) {
  :root {
    --pad: 32px;
  }

  .accolades {
    --badge-scale: 0.9;
  }

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

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

  .about__figure {
    max-width: 560px;
  }

  .accolades__inner {
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }

  .accolades__label {
    max-width: none;
    border-left: 0;
    border-top: 2px solid var(--gold);
    padding: 14px 0 0;
    margin: 0 auto;
  }
}

/* ---------- hamburger nav @ 1200px ---------- */
@media (max-width: 1200px) {
  .header__toggle {
    display: block;
    order: 2;
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 28px 40px;
    z-index: 45;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 40px rgba(16, 29, 35, 0.18);
    overflow-y: auto;
  }

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

  .header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    margin: 0 0 18px;
    padding: 0;
    border: 1px solid #d9e2e3;
    background: var(--paper);
    color: var(--deep);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    border-radius: 2px;
  }

  .header__nav-link {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #e4eaeb;
  }

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

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

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

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

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

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

  body {
    font-size: 16px;
  }

  .utility-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 0;
  }

  .utility-bar__left {
    gap: 14px;
    font-size: 13px;
  }

  .header__logo-img {
    width: 280px;
  }

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

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

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

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
    margin-top: 8px;
  }

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

  .hero::after {
    width: 100%;
    right: 0;
    top: auto;
    bottom: -10%;
    height: 70%;
  }

  .hero__virtues-word {
    font-size: clamp(25px, 7.2vw, 40px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .hero__phone {
    align-items: flex-start;
  }

  .practice__grid,
  .cases__grid,
  .values__grid,
  .contact-form__grid,
  .footer__top {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .testimonial {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .about__stats {
    gap: 26px;
  }

  .btn {
    white-space: normal;
    text-align: center;
    padding: 17px 26px;
    line-height: 1.35;
  }

  .contact-form__foot .btn {
    width: 100%;
  }

  .contact-form__note {
    flex-basis: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 28px 22px 30px;
  }

  .footer__logo-img {
    width: min(320px, 80vw);
  }

  .accolades {
    --badge-scale: 0.78;
  }

  .accolades__row {
    gap: 24px;
    row-gap: 22px;
  }
}

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

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