@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/newsreader-400.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/newsreader-500.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/archivo-400.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/archivo-500.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/archivo-600.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/archivo-700.woff2") format("woff2");
}

:root {
  --navy: #071b2b;
  --navy-2: #0c2438;
  --navy-3: #123049;
  --gold: #937826;
  --gold-lt: #c0a05a;
  --gold-pale: #e4d5ae;
  --cream: #f7f4ee;
  --cream-2: #efe9de;
  --ink: #1b2430;
  --grey: #5c6674;
  --line: rgba(7, 27, 43, 0.12);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --site-chrome-height: 152px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

p {
  margin: 0 0 1.15em;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(18px, 3.2vw, 45px);
}

/* ---------- Eyebrow ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  max-width: 120px;
}

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

.eyebrow--center::before {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(270deg, var(--gold), transparent);
  max-width: 120px;
}

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

.eyebrow--light::after,
.eyebrow--light::before {
  background: linear-gradient(90deg, var(--gold-lt), transparent);
}

.eyebrow--center.eyebrow--light::before {
  background: linear-gradient(270deg, var(--gold-lt), transparent);
}

/* ---------- 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;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: none;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
  letter-spacing: 0.005em;
  max-width: 100%;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(147, 120, 38, 0.75);
}

.btn--gold:hover {
  background: #a9892b;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -12px rgba(147, 120, 38, 0.85);
}

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

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

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

/* ---------- Top bar ---------- */

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  letter-spacing: 0.02em;
}

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

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topbar__icon {
  width: 14px;
  height: 14px;
  fill: var(--gold-lt);
  flex: none;
}

.topbar a:hover {
  color: #fff;
}

.topbar__sep {
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- Header ---------- */

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}

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

.header__logo {
  flex-shrink: 0;
  width: 108px;
}

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

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

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

.header__nav-link {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.015em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  transform: scaleX(1);
}

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

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
  margin-left: 28px;
}

.header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.header__toggle-bar + .header__toggle-bar {
  margin-top: 5px;
}

.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__overlay {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background: var(--navy);
  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;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(4, 15, 25, 0.94) 0%,
    rgba(6, 22, 36, 0.88) 34%,
    rgba(7, 27, 43, 0.55) 62%,
    rgba(7, 27, 43, 0.3) 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: 52%;
  padding: clamp(8px, 2vw, 24px) clamp(0px, 1vw, 12px) 0 0;
}

.hero__title {
  font-size: 63px;
  color: #fff;
  letter-spacing: -0.018em;
  font-weight: 400;
  margin: 0 0 18px;
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0 0 20px;
}

.hero__lede {
  font-size: 18.5px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.68;
  margin: 0 0 34px;
  max-width: 540px;
}

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

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-family: var(--sans);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero__phone svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-lt);
  flex: none;
}

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

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

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

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-lt) 45%,
    rgba(192, 160, 90, 0) 100%
  );
  z-index: 3;
}

/* ---------- Accolades ---------- */

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

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

.accolades__label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 28px;
}

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

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 34px;
  position: relative;
  min-height: 60px;
}

.accolades__item + .accolades__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--line);
}

.accolades__item img {
  width: auto;
  max-width: 100%;
  height: auto;
  opacity: 0.88;
  transition: opacity 0.35s;
}

.accolades__item:hover img {
  opacity: 1;
}

/* ---------- About ---------- */

.about {
  padding: 104px 0 100px;
  background: #fff;
  position: relative;
}

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

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 15;
  object-fit: cover;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 112px;
  height: 112px;
  border-left: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
}

.about__badge {
  position: absolute;
  right: -26px;
  bottom: 38px;
  background: var(--navy);
  color: #fff;
  padding: 24px 30px;
  text-align: center;
  box-shadow: 0 26px 50px -22px rgba(7, 27, 43, 0.6);
}

.about__badge b {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--gold-lt);
  font-weight: 400;
}

.about__badge span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.about__title {
  font-size: 47px;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0 0 26px;
  max-width: 20ch;
}

.about__heading {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 32px 0 14px;
}

.about p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.78;
}

.about__callout {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 24px 30px;
}

.about__callout svg {
  width: 34px;
  height: 34px;
  fill: var(--gold);
  flex: none;
}

.about__callout p {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

/* ---------- Section head ---------- */

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-head__title {
  font-size: 47px;
  color: var(--navy);
  letter-spacing: -0.012em;
}

.section-head--light .section-head__title {
  color: #fff;
}

.section-head p {
  margin-top: 18px;
  color: var(--grey);
  font-size: 18px;
}

.section-head--light p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Practice ---------- */

.practice {
  padding: 104px 0 108px;
  background: var(--cream);
}

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

.practice-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 0 rgba(7, 27, 43, 0.05);
  transition: 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
  position: relative;
}

.practice-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 54px -26px rgba(7, 27, 43, 0.4);
}

.practice-card:hover::after {
  transform: scaleX(1);
}

.practice-card__thumb {
  position: relative;
  aspect-ratio: 42 / 31;
  overflow: hidden;
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 43, 0) 45%, rgba(7, 27, 43, 0.55) 100%);
}

.practice-card__num {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: var(--navy);
  color: var(--gold-lt);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 9px 15px;
}

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

.practice-card__title {
  font-size: 25px;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.008em;
}

.practice-card__body p {
  font-size: 15.5px;
  color: var(--grey);
  line-height: 1.7;
  margin: 0 0 22px;
}

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

.practice-card__link svg {
  width: 15px;
  height: 9px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  transition: transform 0.3s;
}

.practice-card:hover .practice-card__link svg {
  transform: translateX(6px);
}

/* ---------- Additional matters ---------- */

.matters {
  padding: 0 0 108px;
  background: var(--cream);
}

.matters__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.matters__title {
  font-size: 31px;
  color: var(--navy);
}

.matters__head p {
  margin: 0;
  color: var(--grey);
  font-size: 16px;
  max-width: 44ch;
}

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

.matters__tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 35 / 26;
  display: flex;
  align-items: flex-end;
}

.matters__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.matters__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 43, 0.05) 30%, rgba(7, 27, 43, 0.86) 100%);
}

.matters__tile:hover img {
  transform: scale(1.07);
}

.matters__name {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 21px;
  padding: 22px 22px 20px;
  letter-spacing: -0.005em;
}

/* ---------- Cases ---------- */

.cases {
  position: relative;
  padding: 104px 0 108px;
  background: var(--navy);
  overflow: hidden;
}

.cases__bg {
  position: absolute;
  inset: 0;
}

.cases__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.cases__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 43, 0.9), rgba(7, 27, 43, 0.96));
}

.cases__inner {
  position: relative;
}

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

.cases__item {
  padding: 44px 34px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease;
}

.cases__item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.cases__item:hover {
  background: rgba(255, 255, 255, 0.045);
}

.cases__figure {
  font-family: var(--serif);
  font-size: 41px;
  line-height: 1.06;
  color: var(--gold-lt);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  min-height: 2.12em;
  display: flex;
  align-items: flex-end;
}

.cases__desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
  margin: 0 0 26px;
  flex: 1;
}

.cases__more {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  align-self: flex-start;
  transition: 0.3s;
}

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

.cases__note {
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------- Values ---------- */

.values {
  padding: 104px 0 106px;
  background: #fff;
}

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

.values__list {
  display: grid;
  gap: 2px;
}

.values__item {
  display: flex;
  gap: 24px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

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

.values__icon {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}

.values__icon svg {
  width: 25px;
  height: 25px;
  fill: var(--gold);
}

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

.values__item:hover .values__icon svg {
  fill: var(--gold-lt);
}

.values__heading {
  font-size: 23px;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.006em;
}

.values__item p {
  margin: 0;
  font-size: 16px;
  color: var(--grey);
  line-height: 1.68;
}

.values__title {
  font-size: 44px;
  color: var(--navy);
  letter-spacing: -0.012em;
  margin-bottom: 22px;
}

.values__aside p {
  color: var(--grey);
  font-size: 17px;
}

.values__aside .btn {
  margin-top: 30px;
}

/* ---------- Testimonial ---------- */

.testimonial {
  background: var(--cream-2);
  padding: 96px 0 100px;
}

.testimonial__inner {
  max-width: 1000px;
  text-align: center;
}

.testimonial__mark {
  font-family: var(--serif);
  font-size: 110px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 18px;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 26px;
}

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

.testimonial__title {
  font-size: 41px;
  color: var(--navy);
  margin: 0 0 26px;
  letter-spacing: -0.012em;
}

.testimonial p {
  font-size: 19.5px;
  color: var(--grey);
  line-height: 1.76;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 30px;
}

.testimonial__cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
}

.testimonial__cite span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin-top: 7px;
  font-size: 12px;
}

/* ---------- Contact ---------- */

.contact {
  padding: 104px 0 108px;
  background: var(--navy);
  position: relative;
}

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

.contact__title {
  font-size: 46px;
  color: #fff;
  letter-spacing: -0.014em;
  margin-bottom: 22px;
}

.contact__lede {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17.5px;
  max-width: 46ch;
}

.contact__details {
  margin-top: 42px;
  display: grid;
  gap: 26px;
}

.contact__row {
  display: flex;
  gap: 19px;
  align-items: flex-start;
}

.contact__row svg {
  width: 21px;
  height: 21px;
  fill: var(--gold-lt);
  flex: none;
  margin-top: 4px;
}

.contact__row b {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 6px;
}

.contact__row p {
  margin: 0;
  color: #fff;
  font-size: 17.5px;
  line-height: 1.6;
}

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

.contact-form {
  background: #fff;
  padding: 46px 44px 44px;
  box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.55);
}

.contact-form__title {
  font-size: 29px;
  color: var(--navy);
  margin: 0 0 8px;
}

.contact-form__sub {
  font-size: 15px;
  color: var(--grey);
  margin: 0 0 30px;
}

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

.field {
  display: flex;
  flex-direction: column;
}

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

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 9px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #d6d2c8;
  background: #fcfbf8;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

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

.field select {
  appearance: none;
  background-image: url("../assets/images/icon-select.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(147, 120, 38, 0.14);
}

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

.contact-form__note {
  font-size: 12.5px;
  color: var(--grey);
  margin: 18px 0 0;
  line-height: 1.6;
  text-align: center;
}

/* ---------- Footer ---------- */

.footer {
  background: #040f19;
  color: rgba(255, 255, 255, 0.6);
  padding: 66px 0 0;
  font-size: 15px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__name {
  font-family: var(--serif);
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}

.footer__sub {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 22px;
}

.footer__brand p {
  max-width: 42ch;
  line-height: 1.75;
}

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

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

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 0;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

.footer__credit {
  color: rgba(255, 255, 255, 0.55);
}

.footer__credit b {
  color: var(--gold-lt);
  font-weight: 600;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Header type scaling (before hamburger) ---------- */

@media (max-width: 1440px) {
  .hero__title {
    font-size: 57px;
  }

  .header__nav-list {
    gap: 26px;
  }

  .about__grid {
    gap: 56px;
  }
}

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

  .header__nav-list {
    gap: 22px;
  }

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

  .header__inner {
    gap: 20px;
  }
}

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

  .header__nav-list {
    gap: 18px;
  }

  .header__cta {
    margin-left: 16px;
  }

  .header__cta .btn {
    font-size: 13px;
    padding: 12px 18px;
  }

  .header__inner {
    min-height: 96px;
  }
}

@media (max-width: 1240px) {
  .hero__title {
    font-size: 48px;
  }

  .hero__content {
    max-width: none;
  }

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

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

  .cases__item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .about__title,
  .section-head__title,
  .contact__title,
  .values__title {
    font-size: 39px;
  }
}

/* ---------- Mobile nav: below 1200px ---------- */

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(7, 27, 43, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
  }

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

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

  .header__toggle {
    display: flex;
    position: relative;
    z-index: 4;
  }

  .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: 100dvh;
    height: 100svh;
    margin: 0;
    padding: 84px 28px 40px;
    z-index: 2;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.36s cubic-bezier(0.2, 0.7, 0.3, 1),
      visibility 0.36s;
    overflow-y: auto;
    box-shadow: -18px 0 40px -24px rgba(7, 27, 43, 0.45);
  }

  .header.is-open .header__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

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

  .hero__phone {
    font-size: clamp(18px, 2.4vw, 24px);
  }

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

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

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

  .header__nav-phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
  }

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

  .header__cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .about__grid,
  .values__grid,
  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .about__image {
    aspect-ratio: 16 / 11;
  }

  .about__badge {
    right: 22px;
    bottom: 22px;
  }

  .about__media::after {
    display: none;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .hero__visual {
    width: 46%;
  }

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

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

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

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .topbar__inner {
    min-height: 0;
    padding-top: 9px;
    padding-bottom: 9px;
    justify-content: center;
    text-align: center;
  }

  .topbar__left {
    display: none;
  }

  .hero {
    height: auto;
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

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

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

  .hero__title {
    font-size: 38px;
  }

  .hero__lede {
    font-size: 17px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: 360px;
    justify-content: center;
  }

  .hero__image {
    height: 100%;
    max-height: 360px;
  }

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

  .accolades__item {
    padding: 16px 14px;
    min-height: 60px;
  }

  .accolades__item img {
    max-height: 30px;
    width: auto;
  }

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

  .eyebrow {
    margin-bottom: 16px;
  }

  .accolades__item + .accolades__item::before {
    display: none;
  }

  .accolades__item:nth-child(2n)::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 16%;
    bottom: 16%;
    width: 1px;
    background: var(--line);
  }

  .accolades__item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .matters {
    padding-bottom: 72px;
  }

  .about__title,
  .section-head__title,
  .contact__title,
  .values__title,
  .testimonial__title {
    font-size: 31px;
  }

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

  .cases__item,
  .cases__item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .contact-form {
    padding: 34px 24px 32px;
  }

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

  .about__badge {
    position: static;
    margin-top: 18px;
    display: inline-block;
  }

  .testimonial p {
    font-size: 17.5px;
  }

  .testimonial__mark {
    font-size: 80px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
    font-size: 18px;
    padding: 17px 24px;
  }

  .hero__phone {
    justify-content: center;
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .hero__title {
    font-size: 33px;
  }
}
