:root {
  --navy-950: #060d16;
  --navy-900: #0a1521;
  --navy-800: #10202f;
  --navy-700: #1a3348;
  --gold: #bb9537;
  --gold-lt: #d9bc6c;
  --paper: #eff2f5;
  --paper-2: #e4e9ee;
  --line: #d5dde5;
  --ink: #14202c;
  --muted: #5c6b7a;
  --white: #fff;
  --ff-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --ff-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --pad: 45px;
  --container-max: 1760px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 150px;
}

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

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

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

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

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

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

/* ---------- eyebrow + rule ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

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

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

.rule {
  position: relative;
  height: 1px;
  background: var(--line);
  margin: 34px 0;
}

.rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.rule--left::after {
  left: 22px;
}

.rule--compact {
  margin: 22px 0;
}

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

.btn--primary {
  background: var(--gold);
  color: var(--navy-950);
}

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

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

.btn--navy:hover {
  background: var(--navy-700);
}

.btn--sm {
  font-size: 16px;
  padding: 12px 26px;
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0.04em;
}

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

.utility__address {
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility__glyph {
  color: var(--gold);
  font-size: 12px;
}

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

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

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

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 104px;
  position: relative;
}

.header__logo {
  flex-shrink: 0;
}

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

.header__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  z-index: 4;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: center;
}

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

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

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

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: 0.03em;
  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.28s ease;
}

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

.header__nav-extras {
  display: none;
}

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

.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: right;
  flex-shrink: 0;
}

.header__phone-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.header__phone-number {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  font-family: var(--ff-body);
  white-space: nowrap;
}

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

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

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--navy-950) 0%,
    rgba(10, 21, 33, 0.93) 40%,
    rgba(10, 21, 33, 0.55) 66%,
    rgba(19, 38, 55, 0.42) 100%
  );
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 660px);
  width: min(100%, 55%);
  padding: 0 clamp(12px, 2.5vw, 36px) 0 0;
}

.hero__title {
  font-size: clamp(48px, 4.6vw, 74px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 16px;
  line-height: 1.5;
}

.hero__text {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
}

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

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.hero__glyph {
  color: var(--gold);
  font-size: 18px;
}

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

.hero__plinth {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(440px, 90%);
  height: 90%;
  border-right: 1px solid rgba(187, 149, 55, 0.4);
  border-top: 1px solid rgba(187, 149, 55, 0.22);
  pointer-events: none;
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--navy-950);
  padding: 40px 0;
  border-top: 1px solid rgba(187, 149, 55, 0.28);
}

.accolades__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.accolades__label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-right: 40px;
  border-right: 1px solid rgba(187, 149, 55, 0.35);
  white-space: nowrap;
}

.accolades__row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.accolades__image {
  width: auto;
  height: auto;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.accolades__item:hover .accolades__image {
  opacity: 1;
}

.accolades__item--seal .accolades__image {
  height: 78px;
}

.accolades__item--stack .accolades__image {
  height: 62px;
}

.accolades__item--wide .accolades__image {
  height: 44px;
}

.accolades__item--lockup .accolades__image {
  height: 52px;
}

/* ---------- section frame ---------- */
.section {
  padding: 104px 0;
}

.section__head {
  max-width: 780px;
}

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

.section__title {
  font-size: clamp(34px, 3.1vw, 50px);
}

.section__sub {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

.section__head--light .section__sub {
  color: rgba(255, 255, 255, 0.62);
}

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

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

.about__figure {
  position: relative;
}

.about__image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

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

.about__figure::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 58%;
  height: 58%;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  z-index: 1;
}

.about__title {
  font-size: clamp(30px, 2.6vw, 44px);
}

.about__body {
  margin-top: 24px;
  color: var(--muted);
}

.about__callout {
  margin-top: 34px;
  padding: 26px 30px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  font-size: 18px;
  color: var(--navy-900);
}

.about__callout a {
  color: var(--navy-900);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

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

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

.practice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 56px;
}

.practice__card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.practice__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -26px rgba(10, 21, 33, 0.4);
  border-color: var(--gold);
}

.practice__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-800);
}

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

.practice__card:hover .practice__image {
  transform: scale(1.05);
}

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 22, 0) 45%, rgba(6, 13, 22, 0.55) 100%);
}

.practice__body {
  padding: 30px 32px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.practice__title {
  font-size: 28px;
}

.practice__line {
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0;
}

.practice__text {
  color: var(--muted);
  font-size: 16px;
}

.practice__more {
  margin-top: auto;
  padding-top: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-900);
}

.practice__more span {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* ---------- cases ---------- */
.cases {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

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

.cases__inner {
  position: relative;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(187, 149, 55, 0.3);
}

.cases__item {
  padding: 40px 34px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(187, 149, 55, 0.3);
}

.cases__item:first-child {
  padding-left: 0;
}

.cases__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.cases__result {
  font-family: var(--ff-display);
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1.1;
  min-height: 2.2em;
  display: flex;
  align-items: flex-start;
}

.cases__desc {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.cases__link {
  margin-top: 22px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

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

.cases__disclaimer {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 820px;
}

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

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

.values__item {
  padding: 42px 46px;
  border-top: 1px solid var(--line);
  position: relative;
}

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

.values__item:nth-child(even) {
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.values__title {
  font-size: 26px;
  color: var(--navy-900);
}

.values__line {
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 16px;
}

.values__text {
  color: var(--muted);
  font-size: 16px;
}

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

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

.testimonial__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 22, 0.86), rgba(6, 13, 22, 0.94));
}

.testimonial__inner {
  position: relative;
  text-align: center;
}

.testimonial__title {
  font-size: clamp(32px, 2.9vw, 46px);
}

.testimonial__quote {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.3vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  max-width: 1000px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial__name {
  margin-top: 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.testimonial__stars {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 26px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.18em;
}

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

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 52%);
  gap: 70px;
  align-items: start;
}

.contact__title {
  font-size: clamp(32px, 2.8vw, 46px);
}

.contact__lede {
  margin-top: 22px;
  color: var(--muted);
}

.contact__meta {
  margin-top: 36px;
  display: grid;
  gap: 24px;
}

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

.contact__diamond {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-top: 9px;
}

.contact__meta-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__meta-value {
  font-size: 19px;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.5;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px;
}

.contact__form-title {
  font-size: 26px;
  color: var(--navy-900);
}

.contact__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

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

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

.contact__field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 14px;
  height: 40px;
  width: 100%;
}

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

.contact__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy-900) 50%),
    linear-gradient(135deg, var(--navy-900) 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;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(187, 149, 55, 0.16);
}

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

.contact__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.68);
  padding: 78px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
}

.footer__logo {
  background: var(--white);
  display: inline-block;
  padding: 14px 18px;
}

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

.footer__about {
  margin-top: 24px;
  font-size: 16px;
  max-width: 420px;
}

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

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 16px;
}

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

.footer__contact {
  display: grid;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.footer__contact strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 19px;
}

.footer__bottom {
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- progressive header scaling (before hamburger) ---------- */
@media (max-width: 1600px) {
  .header__nav,
  .header__nav-list {
    gap: 22px;
  }

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

  .header__phone-number {
    font-size: 18px;
  }

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

@media (max-width: 1400px) {
  .header__inner {
    gap: 18px;
  }

  .header__nav,
  .header__nav-list {
    gap: 16px;
  }

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

  .header__cta {
    gap: 14px;
  }

  .header__phone-number {
    font-size: 16px;
  }

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

@media (max-width: 1280px) {
  .about__grid {
    gap: 48px;
  }
}

/* ---------- hamburger / mobile nav ---------- */
@media (max-width: 1200px) {
  .header__toggle {
    display: flex;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(6, 13, 22, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .header__overlay[hidden] {
    display: none;
  }

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

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

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

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

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    background: var(--white);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: 28px;
  }

  .header__nav-extras .header__phone {
    text-align: left;
  }

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

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

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

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

  .about__figure {
    max-width: 520px;
  }

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

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

  .cases__item {
    padding: 34px 28px;
  }

  .cases__item:nth-child(odd) {
    padding-left: 0;
  }

  .cases__item:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

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

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

  .accolades__label {
    border-right: 0;
    padding-right: 0;
    width: 100%;
    text-align: center;
  }
}

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

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

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

  body {
    font-size: 16px;
  }

  .section,
  .contact,
  .testimonial {
    padding: 68px 0;
  }

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

  .utility__meta {
    gap: 16px;
  }

  .header__inner {
    min-height: 88px;
    gap: 14px;
  }

  .hero {
    height: auto;
    min-height: calc(100vh - var(--site-chrome-height));
    min-height: calc(100dvh - var(--site-chrome-height));
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 48px) 0 0;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 12px 0 24px;
  }

  .hero__title {
    font-size: clamp(38px, 10vw, 52px);
  }

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

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

  .hero__plinth {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

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

  .cases__item {
    padding: 30px 0;
    border-right: 0;
  }

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

  .values__item {
    padding: 32px 0;
  }

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

  .contact__form {
    padding: 26px 22px;
  }

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

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

  .accolades__row {
    gap: 22px;
  }

  .accolades__item--seal .accolades__image {
    height: 64px;
  }

  .accolades__item--stack .accolades__image {
    height: 52px;
  }

  .accolades__item--wide .accolades__image {
    height: 36px;
  }

  .accolades__item--lockup .accolades__image {
    height: 44px;
  }

  .about__figure::before,
  .about__figure::after {
    display: none;
  }

  .footer__contact .btn,
  .contact__actions .btn,
  .about__actions .btn {
    width: 100%;
    font-size: 16px;
    padding: 13px 14px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .contact__actions {
    width: 100%;
  }
}

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

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