:root {
  --ink: #0b1a26;
  --steel-deep: #16334a;
  --steel: #336686;
  --steel-lt: #458bad;
  --graphite: #444445;
  --brass: #c9a15a;
  --brass-lt: #e0be7e;
  --paper: #ffffff;
  --mist: #f4f6f8;
  --line: rgba(11, 26, 38, 0.12);
  --ff-display: "Newsreader", Georgia, "Times New Roman", serif;
  --ff-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  color: var(--graphite);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

/* ---------- layout ---------- */

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

.section {
  padding: 96px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}

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

.eyebrow__rule {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.22;
  min-width: 0;
}

.flute {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  flex: 0 0 auto;
}

.flute__bar {
  display: block;
  width: 4px;
  background: currentColor;
}

.flute__bar:nth-child(1) {
  height: 9px;
  opacity: 0.45;
}

.flute__bar:nth-child(2) {
  height: 15px;
  opacity: 0.75;
}

.flute__bar:nth-child(3) {
  height: 22px;
}

.flute--brass {
  color: var(--brass);
}

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

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

.section-head__lede {
  margin: 14px 0 0;
  max-width: 620px;
  color: #5a5d61;
}

/* ---------- 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.005em;
  line-height: 1;
  padding: 19px 36px;
  border-radius: 999px;
  border: 2px solid transparent;
  white-space: nowrap;
  max-width: 100%;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1),
    background-color 0.25s,
    color 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}

.btn--primary,
.btn--brass {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 0 12px 30px -14px rgba(201, 161, 90, 0.85);
}

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

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

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

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

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

.btn--sm {
  font-size: 20px;
  padding: 15px 30px;
}

/* ---------- utility bar ---------- */

.utility {
  background: var(--ink);
  color: #fff;
}

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

.utility__location {
  margin: 0;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 0 0 auto;
}

.utility__phone {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.005em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility__phone svg {
  flex: 0 0 auto;
}

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

/* ---------- header ---------- */

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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

.header__toggle {
  display: none;
  position: relative;
  z-index: 4;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.header__toggle-bar {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  background: var(--ink);
  border-radius: 1px;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.7, 0.3, 1),
    opacity 0.2s;
}

.header__toggle-bar:nth-child(1) {
  transform: translateY(-7px);
}

.header__toggle-bar:nth-child(2) {
  transform: translateY(-50%);
}

.header__toggle-bar:nth-child(3) {
  transform: translateY(5px);
}

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

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

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

.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--brass);
  transition: right 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

.header__nav-extras {
  display: none;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  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__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 32%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 26, 38, 0.96) 0%,
    rgba(11, 26, 38, 0.9) 42%,
    rgba(16, 51, 74, 0.62) 66%,
    rgba(22, 64, 92, 0.5) 100%
  );
}

.hero__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: radial-gradient(
    60% 55% at 62% 46%,
    rgba(69, 139, 173, 0.42) 0%,
    rgba(69, 139, 173, 0) 72%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

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

.hero__title {
  font-size: clamp(40px, 3.55vw, 62px);
  color: #fff;
  letter-spacing: -0.018em;
  line-height: 1.06;
}

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

.hero__subtitle {
  font-family: var(--ff-body);
  font-size: 18.5px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 22px 0 0;
  max-width: 600px;
  letter-spacing: 0.005em;
}

.hero__lede {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 585px;
}

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

.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__plinth {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 90%;
  background: linear-gradient(
    180deg,
    rgba(69, 139, 173, 0) 0%,
    rgba(69, 139, 173, 0.16) 42%,
    rgba(201, 161, 90, 0.16) 100%
  );
  border-top-left-radius: 210px;
  border-top-right-radius: 210px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
}

.hero__flutes {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 364px;
  height: 68%;
  display: flex;
  gap: 10px;
  justify-content: center;
  opacity: 0.6;
}

.hero__flutes-bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12));
  border-radius: 60px 60px 0 0;
}

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

/* ---------- accolades strip ---------- */

.accolades {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.accolades__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 36px 0;
}

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 30px;
  position: relative;
  min-width: 0;
}

.accolades__item + .accolades__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 74px;
  background: var(--line);
}

.accolades__image {
  max-height: 96px;
  width: auto;
  object-fit: contain;
}

/* ---------- about ---------- */

.about {
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: start;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 132px;
  height: 132px;
  border-left: 3px solid var(--brass);
  border-bottom: 3px solid var(--brass);
}

.about__badge {
  position: absolute;
  right: -24px;
  top: 44px;
  background: var(--ink);
  color: #fff;
  padding: 22px 26px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 24px 50px -22px rgba(11, 26, 38, 0.6);
}

.about__badge-year {
  display: block;
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  color: var(--brass-lt);
}

.about__badge-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 7px;
}

.about__title {
  font-size: clamp(29px, 2.35vw, 40px);
  letter-spacing: -0.015em;
}

.about__sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--steel);
  margin: 20px 0 26px;
  line-height: 1.4;
}

.about__body p {
  color: #55585c;
}

.callout {
  display: flex;
  gap: 22px;
  align-items: center;
  background: var(--mist);
  border-left: 4px solid var(--brass);
  padding: 26px 30px;
  margin: 34px 0 30px;
  border-radius: 0 3px 3px 0;
}

.callout__text {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
}

/* ---------- practice areas ---------- */

.practice {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -32px rgba(11, 26, 38, 0.5);
}

.card__media {
  position: relative;
  aspect-ratio: 36 / 25;
  overflow: hidden;
  background: var(--ink);
}

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

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

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 38, 0.05), rgba(11, 26, 38, 0.45));
}

.card__body {
  padding: 32px 34px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-size: 24px;
  margin-bottom: 12px;
}

.card__text {
  color: #5a5d61;
  font-size: 16px;
  line-height: 1.68;
}

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

.card:hover .card__link {
  color: var(--brass);
}

/* ---------- case results ---------- */

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

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

.results__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 38, 0.94), rgba(11, 26, 38, 0.88));
}

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

.results__title {
  color: #fff;
}

.results .section-head__lede {
  color: rgba(255, 255, 255, 0.62);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.results__cell {
  padding: 40px 34px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-width: 0;
}

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

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

.results__amount {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(34px, 2.9vw, 46px);
  font-weight: 500;
  color: var(--brass-lt);
  line-height: 1;
  letter-spacing: -0.02em;
}

.results__label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 16px 0 14px;
}

.results__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15.5px;
  line-height: 1.66;
  margin: 0;
}

.results__note {
  margin-top: 44px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

/* ---------- values ---------- */

.values {
  background: #fff;
}

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

.values__item {
  min-width: 0;
}

.values__mark {
  color: var(--brass);
  margin-bottom: 20px;
}

.values__title {
  font-size: 22px;
  margin-bottom: 12px;
}

.values__text {
  color: #5a5d61;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- testimonial ---------- */

.testimonial {
  background: var(--steel-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  left: 2%;
  top: -64px;
  font-family: var(--ff-display);
  font-size: 340px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

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

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

.testimonial .eyebrow {
  justify-content: center;
  color: var(--brass-lt);
}

.testimonial__quote {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.34;
  letter-spacing: -0.012em;
  color: #fff;
}

.testimonial__body {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
  margin: 26px auto 0;
  max-width: 760px;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 30px 0 14px;
  color: var(--brass);
}

.testimonial__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- contact ---------- */

.contact {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

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

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

.contact__lede {
  color: #5a5d61;
  margin: 20px 0 34px;
  max-width: 520px;
}

.contact__info {
  display: grid;
  gap: 26px;
  margin-bottom: 34px;
}

.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-row__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
}

.info-row__label {
  font-size: 12.5px;
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}

.info-row__text {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

.info-row__link {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--ink);
}

.info-row__link:hover {
  color: var(--steel);
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 44px;
}

.form__title {
  font-size: 26px;
  margin-bottom: 8px;
}

.form__note {
  font-size: 14.5px;
  color: #6b6e72;
  margin-bottom: 28px;
}

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

.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.field__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 8px;
}

.field__input,
.field__select,
.field__textarea {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(11, 26, 38, 0.2);
  border-radius: 3px;
  padding: 0 14px;
  height: 40px;
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

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

.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23336686' stroke-width='1.7'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(51, 102, 134, 0.14);
  outline: none;
}

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

.form__fine {
  font-size: 12.5px;
  color: #83868a;
  margin: 16px 0 0;
  line-height: 1.55;
}

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: 72px 0 0;
}

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

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

.footer p {
  font-size: 15.5px;
  line-height: 1.72;
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.footer__link {
  font-size: 15.5px;
}

.footer__link:hover,
.footer__phone:hover {
  color: var(--brass-lt);
}

.footer__phone {
  font-family: var(--ff-display);
  font-size: 24px;
  color: #fff;
  display: inline-block;
  margin-top: 4px;
}

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

/* ---------- responsive: header shrink (before hamburger) ---------- */

@media (max-width: 1400px) {
  .header__nav-link {
    font-size: 15px;
  }

  .header__nav-list {
    gap: 22px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .hero__visual {
    width: 42%;
  }
}

@media (max-width: 1280px) {
  .header__nav-link {
    font-size: 13.5px;
    letter-spacing: 0.03em;
  }

  .header__nav-list {
    gap: 16px;
  }

  .utility__phone {
    font-size: 22px;
  }

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

  .about__grid {
    gap: 48px;
  }

  .contact__grid {
    gap: 44px;
  }

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

  .utility__location {
    display: none;
  }

  .utility__inner {
    justify-content: flex-end;
  }
}

/* ---------- hamburger / slide-in nav ---------- */

@media (max-width: 1200px) {
  .utility {
    display: none;
  }

  .header__overlay[hidden] {
    display: none;
  }

  .header__overlay:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(11, 26, 38, 0.55);
  }

  .header__inner {
    z-index: 2;
    min-height: 92px;
  }

  .header__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin-left: 0;
    padding: 84px 28px 40px;
    background: #fff;
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    box-shadow: -18px 0 40px -24px rgba(11, 26, 38, 0.45);
  }

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

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .header__nav-link {
    font-size: 16px;
    padding: 16px 0;
    letter-spacing: 0.08em;
  }

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

  .header__nav-phone {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
  }

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

  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__visual {
    width: 40%;
  }

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

  .about__badge {
    right: 24px;
  }

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

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

  .results__cell {
    padding: 34px 28px 30px;
  }

  .results__cell:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }

  .results__cell:nth-child(2n + 1) {
    padding-left: 0;
  }

  .results__cell:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

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

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

  .hero__actions {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .eyebrow {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11.5px;
    letter-spacing: 0.18em;
  }

  .eyebrow__rule {
    display: none;
  }

  .header__inner {
    min-height: 78px;
    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) clamp(20px, 4vw, 28px) 0;
  }

  .hero__inner {
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero__title {
    font-size: clamp(32px, 8.4vw, 42px);
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: min(58vh, 460px);
    right: auto;
    bottom: auto;
  }

  .hero__plinth {
    max-width: 290px;
  }

  .accolades__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
    padding: 34px 0;
  }

  .accolades__item {
    padding: 6px 18px;
  }

  .accolades__item:nth-child(2n + 1)::before {
    display: none;
  }

  .accolades__item + .accolades__item::before {
    height: 60px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 38px;
  }

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

  .about__badge {
    position: static;
    display: inline-block;
    margin-top: 24px;
    text-align: left;
  }

  .about__media::after {
    display: none;
  }

  .form {
    padding: 28px 24px;
  }

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

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

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

  .results__cell {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .results__cell:last-child {
    border-bottom: 0;
  }

  .results__cell:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .footer__logo {
    width: 250px;
  }

  .testimonial::before {
    font-size: 200px;
    top: -30px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }
}

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