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

@font-face {
  font-family: "Karla";
  src: url("../assets/fonts/karla.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #083757;
  --navy-700: #0b4570;
  --ink: #041f34;
  --gray: #a2a2a2;
  --mist: #eef1f4;
  --steel: #5c6e7c;
  --text: #233442;
  --line: #d9dfe5;
  --white: #fff;
  --display: "Marcellus", Georgia, "Times New Roman", serif;
  --body: "Karla", "Helvetica Neue", Arial, sans-serif;
  --pad: 45px;
  --chamfer: 22px;
  --container-max: 1660px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 210px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

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

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

.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::after {
  content: "";
  flex: 0 0 46px;
  height: 1px;
  background: var(--gray);
}

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

.eyebrow--center::before {
  content: "";
  flex: 0 0 46px;
  height: 1px;
  background: var(--gray);
}

.eyebrow--light {
  color: #9fb2c2;
}

.eyebrow--light::after,
.eyebrow--light::before {
  background: rgba(255, 255, 255, 0.32);
}

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

.section__subtitle {
  font-family: var(--body);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.01em;
  margin-top: 12px;
  line-height: 1.6;
}

.on-dark h1,
.on-dark h2,
.on-dark h3 {
  color: #fff;
}

.on-dark .section__subtitle {
  color: #b9c8d4;
}

/* Chamfer corners — echo the angular logo mark */
.chamfer {
  clip-path: polygon(
    0 0,
    calc(100% - var(--chamfer)) 0,
    100% var(--chamfer),
    100% 100%,
    var(--chamfer) 100%,
    0 calc(100% - var(--chamfer))
  );
}

.chamfer--tr {
  clip-path: polygon(
    0 0,
    calc(100% - var(--chamfer)) 0,
    100% var(--chamfer),
    100% 100%,
    0 100%
  );
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: #fff;
  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%;
  text-align: center;
}

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

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

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

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

/* ============================= UTILITY BAR ============================= */
.utility {
  background: var(--ink);
  color: #a9bbc9;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

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

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

.utility__dot {
  width: 5px;
  height: 5px;
  background: var(--gray);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================= HEADER ============================= */
.header {
  position: relative;
  z-index: 100;
}

.header__overlay {
  display: none;
}

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

.header__brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 96px;
}

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

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

.header__logo-tag {
  padding-left: 26px;
  border-left: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.95;
  white-space: nowrap;
}

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

.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  flex-shrink: 0;
}

.header__phone-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

.header__phone-link {
  font-family: var(--display);
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.header__phone-link:hover {
  color: var(--navy-700);
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

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

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

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

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

.header__nav {
  background: var(--navy);
}

.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 52px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

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

.header__nav-link {
  display: block;
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 19px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__nav-meta {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fb6c7;
  white-space: nowrap;
}

.header__nav-extras {
  display: none;
}

/* Progressive header CTA scaling before hamburger */
@media (max-width: 1400px) {
  .header__phone-link {
    font-size: 22px;
  }

  .header__cta .btn {
    font-size: 14px;
    padding: 12px 22px;
  }

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

@media (max-width: 1280px) {
  .header__logo-tag {
    display: none;
  }

  .header__phone-link {
    font-size: 20px;
  }

  .header__cta {
    gap: 18px;
  }

  .header__nav-list {
    gap: 22px;
  }
}

/* ============================== 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;
  opacity: 0.5;
}

.hero__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(4, 31, 52, 0.96) 0%,
    rgba(4, 31, 52, 0.9) 42%,
    rgba(8, 55, 87, 0.66) 72%,
    rgba(8, 55, 87, 0.5) 100%
  );
}

.hero__rule {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0 1px,
    transparent 1px 22px
  );
  opacity: 0.5;
}

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

.hero__content {
  padding: clamp(20px, 3vw, 40px) clamp(0px, 1vw, 12px) clamp(40px, 6vw, 78px);
  color: #fff;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(36px, 3.8vw, 56px);
  color: #fff;
  letter-spacing: 0.004em;
}

.hero__subtitle {
  font-family: var(--body);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 16px 0 18px;
}

.hero__lede {
  color: #cbd8e2;
  font-size: 18.5px;
  max-width: 660px;
  margin: 22px 0 34px;
}

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

.hero__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}

.hero__phone-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9fb2c2;
  margin-bottom: 5px;
}

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

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

.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;
  right: 6%;
  bottom: 0;
  width: min(404px, 72%);
  height: min(534px, 82%);
  background: linear-gradient(
    160deg,
    rgba(162, 162, 162, 0.22),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__plinth::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -1px;
  width: 118px;
  height: 2px;
  background: var(--gray);
}

.hero__visual::before {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 18%;
  width: min(330px, 70%);
  height: min(330px, 50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0) 68%
  );
}

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

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

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

.accolades__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

.accolades__label small {
  display: block;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--steel);
  font-size: 13.5px;
}

.accolades__slot {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.accolades__slot + .accolades__slot::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}

.accolades__badge {
  width: auto;
  opacity: 0.92;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.accolades__badge--mdaf {
  height: 76px;
}

.accolades__badge--ntl {
  height: 64px;
}

.accolades__badge--sl {
  height: 38px;
}

.accolades__badge--aaj {
  height: 56px;
}

/* ============================= ABOUT ============================= */
.about {
  background: var(--mist);
  padding: 96px 0;
}

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

.about__media {
  position: relative;
  isolation: isolate;
}

.about__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about__frame {
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 58%;
  height: 46%;
  border-left: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  pointer-events: none;
  z-index: 0;
}

.about__body h1 {
  font-size: clamp(30px, 3vw, 42px);
}

.about__body h2 {
  font-family: var(--display);
  font-size: clamp(19px, 1.7vw, 24px);
  color: var(--steel);
  margin: 14px 0 26px;
  line-height: 1.4;
}

.about__body p {
  color: #3d4c58;
}

.about__callout {
  --chamfer: 16px;
  margin-top: 30px;
  background: var(--navy);
  color: #fff;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.about__callout p {
  font-size: 17px;
  color: #dce6ee;
  margin: 0;
  flex: 1 1 320px;
}

.about__callout strong {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

/* ========================== PRACTICE AREAS ======================== */
.practice {
  background: #fff;
  padding: 100px 0;
}

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

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

.practice-card {
  --chamfer: 18px;
  background: #fff;
  border: 1px solid var(--line);
  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 -28px rgba(8, 55, 87, 0.45);
  border-color: var(--navy);
}

.practice-card__thumb {
  position: relative;
  height: 212px;
  overflow: hidden;
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 31, 52, 0.06),
    rgba(4, 31, 52, 0.52)
  );
}

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

.practice-card__body h3 {
  font-size: 23px;
  min-height: 2.3em;
}

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

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

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

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

/* =========================== CASE RESULTS ======================== */
.results {
  position: relative;
  padding: 100px 0;
  background: var(--ink);
  overflow: hidden;
}

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

.results__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 31, 52, 0.94), rgba(8, 55, 87, 0.86));
}

.results__inner {
  position: relative;
}

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

.results-card {
  --chamfer: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, transform 0.3s ease;
}

.results-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-6px);
}

.results-card__amount {
  font-family: var(--display);
  font-size: clamp(27px, 2.2vw, 38px);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
}

.results-card__kind {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 16px 0 12px;
}

.results-card__desc {
  font-size: 16.5px;
  color: #d3dfe8;
  line-height: 1.6;
  margin: 0 0 24px;
}

.results-card__more {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.results-card:hover .results-card__more::after {
  width: 38px;
}

/* ============================= VALUES ============================ */
.values {
  background: var(--mist);
  padding: 100px 0;
}

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

.values__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.values__mark {
  --chamfer: 10px;
  width: 64px;
  height: 64px;
  background: var(--navy);
  position: relative;
}

.values__mark::before,
.values__mark::after {
  content: "";
  position: absolute;
  background: #fff;
}

.values__mark::before {
  left: 16px;
  top: 22px;
  width: 32px;
  height: 4px;
}

.values__mark::after {
  left: 16px;
  top: 22px;
  width: 4px;
  height: 24px;
}

.values__mark--gray {
  background: var(--gray);
}

.values__item h3 {
  font-size: 22px;
  line-height: 1.3;
}

.values__item p {
  font-size: 16px;
  color: var(--steel);
  margin-top: 12px;
}

/* =========================== TESTIMONIAL ========================= */
.testimonial {
  background: var(--navy);
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -70px;
  width: 420px;
  height: 420px;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0 1px,
    transparent 1px 20px
  );
}

.testimonial__inner {
  position: relative;
  text-align: center;
  max-width: 1080px;
}

.testimonial__quote {
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 36px);
  color: #fff;
  line-height: 1.42;
  margin: 22px 0 0;
}

.testimonial__body {
  color: #c6d5e1;
  font-size: 18px;
  max-width: 760px;
  margin: 26px auto 0;
}

.testimonial__name {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.stars__star {
  width: 15px;
  height: 15px;
  background: var(--gray);
  clip-path: polygon(
    50% 0,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

/* ============================= CONTACT =========================== */
.contact {
  background: #fff;
  padding: 100px 0;
}

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

.contact__info {
  --chamfer: 20px;
  background: var(--ink);
  color: #c9d7e2;
  padding: 52px 46px;
}

.contact__info h1 {
  font-size: clamp(28px, 2.6vw, 36px);
  color: #fff;
}

.contact__info .section__subtitle {
  color: #afc1cf;
  margin-bottom: 34px;
}

.contact__row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 16.5px;
  line-height: 1.6;
}

.contact__icon {
  width: 14px;
  height: 14px;
  margin-top: 7px;
  background: var(--gray);
  transform: rotate(45deg);
}

.contact__row a {
  color: #fff;
  font-family: var(--display);
  font-size: 24px;
}

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

.contact__row strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact__form-card {
  --chamfer: 20px;
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 46px 44px;
}

.contact__form-card h3 {
  font-size: 26px;
}

.contact__hint {
  font-size: 14.5px;
  color: var(--steel);
  margin: 10px 0 28px;
}

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

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

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

.field__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.field__input,
.field__select {
  height: 40px;
  padding: 0 14px;
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
}

.field__textarea {
  height: 120px;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  resize: vertical;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 55, 87, 0.12);
}

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

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

.contact__form-note {
  font-size: 12.5px;
  color: var(--steel);
  flex: 1 1 240px;
  line-height: 1.55;
}

/* ============================== FOOTER =========================== */
.footer {
  background: var(--ink);
  color: #9fb2c2;
  padding: 74px 0 0;
  font-size: 15.5px;
}

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

.footer__logo {
  height: 132px;
  width: auto;
  max-width: none;
}

.footer__brand p {
  margin-top: 24px;
  max-width: 380px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 13px;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

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

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

.footer__contact a {
  display: block;
  color: #fff;
}

.footer__phone {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 14px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px 0 34px;
  font-size: 13px;
  line-height: 1.7;
  color: #8fa3b4;
  display: grid;
  gap: 12px;
}

.footer__disclaimer {
  max-width: 1100px;
}

/* ============================= MOTION ============================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .practice-card:hover,
  .results-card:hover {
    transform: none;
  }
}

/* =========================== RESPONSIVE ========================== */
@media (max-width: 1420px) {
  .hero__visual {
    width: 44%;
  }

  .accolades__inner {
    grid-template-columns: 180px repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

/* Hamburger nav at 1200px */
@media (max-width: 1200px) {
  :root {
    --pad: 34px;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(4, 31, 52, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

  .header__brand-bar {
    position: relative;
    z-index: 2;
  }

  .header__toggle {
    display: flex;
    position: absolute;
    top: 26px;
    right: var(--pad);
    z-index: 5;
  }

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

  .header.is-open .header__toggle-bar {
    background: #fff;
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    padding: 84px 28px 40px;
    z-index: 2;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

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

  .header__nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: none;
  }

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

  .header__nav-link {
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .header__nav-meta {
    display: none;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
    padding-top: 0;
    border: 0;
  }

  .header__nav-extras .header__phone {
    align-items: flex-start;
  }

  .header__nav-extras .header__phone-label {
    color: #9fb2c2;
  }

  .header__nav-extras .header__phone-link {
    color: #fff;
    font-size: 24px;
  }

  .header__nav-extras .btn {
    width: 100%;
    white-space: normal;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
  }

  .header__nav-extras .btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--navy);
  }

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

  .hero__visual {
    width: 42%;
  }

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

  .about__image {
    height: 440px;
  }

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

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

  .accolades__slot + .accolades__slot::before {
    left: -12px;
  }
}

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

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

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

  .header__brand-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .header__logo-img {
    height: 72px;
  }

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

  .hero__visual {
    position: relative;
    width: 100%;
    height: 430px;
    margin-top: 8px;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

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

  .hero__content {
    padding: 52px 0 26px;
  }

  .hero__plinth {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
    height: 300px;
  }

  .hero__image {
    margin: 0 auto;
    height: 410px;
  }

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

  .about,
  .practice,
  .results,
  .values,
  .testimonial,
  .contact {
    padding: 66px 0;
  }

  .contact__info,
  .contact__form-card {
    padding: 36px 28px;
  }

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

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

  .footer__logo {
    height: 104px;
  }
}

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

  .hero__content {
    max-width: 100%;
    padding-left: clamp(4px, 2vw, 12px);
    padding-right: clamp(4px, 2vw, 12px);
  }
}

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

  body {
    font-size: 16px;
  }

  .header__logo-img {
    height: 62px;
  }

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

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

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

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

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

  .accolades__slot {
    height: 88px;
  }

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

  .hero__visual {
    height: 360px;
  }

  .hero__image {
    height: 340px;
  }

  .hero__plinth {
    width: 230px;
    height: 250px;
  }

  .about__frame {
    display: none;
  }

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

  .contact__form-card,
  .contact__info {
    padding: 30px 22px;
  }
}
