:root {
  --navy: #1a3d6e;
  --ink: #102843;
  --ink-deep: #0b1d33;
  --orange: #f36c3e;
  --orange-dk: #d8542a;
  --cream: #f7f4f0;
  --cream-2: #efeae3;
  --slate: #5a6b80;
  --line: #ded7ce;
  --white: #fff;
  --pad: 45px;
  --display: "Literata", Georgia, serif;
  --body: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --chamfer: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 88px;
}

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

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

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

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

/* ---------- shell ---------- */
.container {
  width: min(100% - (var(--pad) * 2), var(--container-max));
  margin: 0 auto;
}

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

.section__eyebrow {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section__eyebrow::after {
  content: "";
  height: 1px;
  width: 54px;
  background: var(--orange);
  opacity: 0.5;
}

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

.section__eyebrow--center::before {
  content: "";
  height: 1px;
  width: 54px;
  background: var(--orange);
  opacity: 0.5;
}

.section__eyebrow--light {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  padding: 19px 40px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: -0.005em;
  max-width: 100%;
  text-align: center;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(243, 108, 62, 0.75);
}

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

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

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

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

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 18px -10px rgba(16, 40, 67, 0.28);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  padding-top: 14px;
  padding-bottom: 14px;
  min-width: 0;
}

.header__brand {
  flex-shrink: 0;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-left: auto;
}

.header__nav-link {
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width 0.28s ease;
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  flex-shrink: 0;
}

.header__tel {
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.header__tel span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
}

.header__cta .btn--sm {
  font-size: clamp(13px, 1.1vw, 16px);
  padding: clamp(10px, 1vw, 14px) clamp(16px, 1.6vw, 28px);
  flex-shrink: 0;
  white-space: nowrap;
}

.header__nav-extras {
  display: none;
}

.header__nav-close {
  display: none;
}

.header__burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.header__burger i {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__burger.is-active i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active i:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(11, 29, 51, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1200px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 72px 28px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 48px -28px rgba(16, 40, 67, 0.45);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

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

  .header__nav[aria-hidden="true"] {
    visibility: hidden;
  }

  .header__nav.is-open[aria-hidden="false"] {
    visibility: visible;
  }

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

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

  .header__nav-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
  }

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

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

  .header__cta {
    display: none;
  }

  .header__burger {
    display: block;
    margin-left: auto;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  background:
    radial-gradient(120% 130% at 12% 18%, #245088 0%, #1a3d6e 42%, #102843 100%);
  color: #fff;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: soft-light;
}

.hero__glow {
  position: absolute;
  right: -6%;
  top: -18%;
  width: 64vw;
  height: 150%;
  background: radial-gradient(closest-side, rgba(243, 108, 62, 0.3), rgba(243, 108, 62, 0) 72%);
  pointer-events: none;
}

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

.hero__content {
  position: relative;
  z-index: 4;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  padding: clamp(12px, 2vw, 28px) clamp(0px, 1vw, 12px);
}

.hero__title {
  font-size: clamp(38px, 3.85vw, 62px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.026em;
  line-height: 1.05;
  margin: 0 0 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__subtitle {
  font-family: var(--body);
  font-size: clamp(16px, 1.28vw, 20px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.002em;
  max-width: 520px;
  margin: 0 0 30px;
}

.hero__rule {
  width: 78px;
  height: 3px;
  background: var(--orange);
  margin: 0 0 26px;
}

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

.hero__tel {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero__tel svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: var(--orange);
}

.hero__tel small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 2px;
}

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

.hero__octagon {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 40vw);
  aspect-ratio: 1;
  pointer-events: none;
}

.hero__octagon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__octagon path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  opacity: 0.58;
}

.hero__octagon-back {
  stroke: rgba(255, 255, 255, 0.26);
  transform: scale(1.14);
  transform-origin: center;
}

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

@media (max-width: 1180px) {
  .hero__actions {
    gap: 18px;
  }
}

@media (max-width: 1100px) {
  .hero__content {
    width: min(100%, 50%);
    max-width: min(100%, 520px);
  }

  .hero__visual {
    width: 48%;
  }
}

@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    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: 0 0 16px;
  }

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

  .hero__octagon {
    width: 330px;
    bottom: 2%;
  }
}

@media (max-width: 560px) {
  .hero__visual {
    height: 330px;
  }

  .hero__tel {
    font-size: 21px;
  }
}

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

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

.accolades__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  max-width: 150px;
  line-height: 1.55;
  flex: none;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.accolades__row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.4vw, 54px);
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-between;
}

.accolades__badge {
  width: auto;
  flex: none;
  transition: transform 0.25s ease;
}

.accolades__badge:hover {
  transform: translateY(-3px);
}

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

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

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

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

@media (max-width: 900px) {
  .accolades__label {
    border-right: 0;
    padding-right: 0;
    max-width: none;
    text-align: center;
    width: 100%;
  }

  .accolades__row {
    justify-content: center;
    gap: 30px;
  }

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

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

  .accolades__badge--super {
    height: 31px;
  }

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

/* ---------- about ---------- */
.about {
  padding-top: 104px;
  padding-bottom: 104px;
  background: #fff;
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 4.6vw, 84px);
  align-items: start;
}

.about__figure {
  position: relative;
}

.about__image {
  width: 100%;
  height: auto;
  clip-path: var(--chamfer);
}

.about__tag {
  position: absolute;
  left: -20px;
  bottom: 36px;
  background: var(--navy);
  color: #fff;
  padding: 24px 28px;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  box-shadow: 0 24px 44px -20px rgba(16, 40, 67, 0.6);
  max-width: 250px;
}

.about__tag b {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
}

.about__tag span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 9px;
  line-height: 1.5;
}

.about__title {
  font-size: clamp(31px, 2.85vw, 46px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 26px;
  max-width: 15em;
}

.about__text {
  color: var(--slate);
  font-size: 16.5px;
}

.about__lead {
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.62;
}

.about__lead b {
  color: var(--navy);
  font-weight: 700;
}

.about__attorneys {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.about__attorney {
  flex: 1 1 240px;
}

.about__attorney-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.about__attorney-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 9px;
}

.about__attorney-bio {
  font-size: 15.5px;
  margin: 0;
  color: var(--slate);
}

@media (max-width: 980px) {
  .about {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__tag {
    left: 0;
  }
}

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

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

.practice__title {
  font-size: clamp(31px, 2.85vw, 46px);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.practice__intro {
  color: var(--slate);
  max-width: 430px;
  margin: 0;
  font-size: 16px;
}

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

.practice-card {
  background: #fff;
  clip-path: var(--chamfer);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 0 rgba(16, 40, 67, 0.05);
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -26px rgba(16, 40, 67, 0.42);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 40, 67, 0) 40%, rgba(16, 40, 67, 0.62) 100%);
}

.practice-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--body);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
}

.practice-card__body {
  padding: 26px 26px 28px;
}

.practice-card__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.practice-card__text {
  font-size: 15px;
  color: var(--slate);
  margin: 0 0 16px;
  line-height: 1.65;
}

.practice-card__link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.practice-card__link:hover {
  gap: 14px;
}

.practice-card__link span {
  transition: all 0.25s ease;
}

@media (max-width: 1080px) {
  .practice__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .practice {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 600px) {
  .practice__cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- results ---------- */
.results {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

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

.results__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--ink-deep) 4%, rgba(11, 29, 51, 0.78) 48%, rgba(11, 29, 51, 0.5) 100%);
}

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

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

.results__title {
  font-size: clamp(31px, 2.85vw, 46px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}

.results__intro {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 16.5px;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.results__cell {
  background: rgba(11, 29, 51, 0.55);
  backdrop-filter: blur(3px);
  padding: 46px 38px;
  transition: background 0.3s ease;
}

.results__cell:hover {
  background: rgba(26, 61, 110, 0.72);
}

.results__amount {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
}

.results__rule {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 20px;
}

.results__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
  line-height: 1.6;
}

.results__link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.results__link:hover {
  color: #fff;
}

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

@media (max-width: 980px) {
  .results {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .results__grid {
    grid-template-columns: 1fr;
  }

  .results__cell {
    padding: 34px 26px;
  }
}

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

.values__head {
  max-width: 660px;
  margin-bottom: 56px;
}

.values__title {
  font-size: clamp(31px, 2.85vw, 46px);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

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

.values__cell {
  background: #fff;
  padding: 44px clamp(26px, 3vw, 48px);
  position: relative;
  transition: background 0.3s ease;
}

.values__cell:hover {
  background: var(--cream);
}

.values__heading {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  padding-left: 56px;
  line-height: 1.32;
}

.values__text {
  font-size: 16px;
  color: var(--slate);
  margin: 0;
  padding-left: 56px;
}

.values__icon {
  position: absolute;
  top: 44px;
  left: clamp(26px, 3vw, 48px);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--navy);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
}

.values__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .values {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

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

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

.testimonial__label {
  font-size: 13px;
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 34px;
}

.testimonial__quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.35vw, 35px);
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: -0.015em;
  color: #fff;
}

.testimonial__by {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial__by i {
  height: 1px;
  width: 44px;
  background: rgba(255, 255, 255, 0.35);
  display: block;
}

.testimonial__by span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

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

.testimonial__stars svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
}

@media (max-width: 980px) {
  .testimonial {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* ---------- contact ---------- */
.contact {
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--cream-2);
}

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

.contact__title {
  font-size: clamp(31px, 2.85vw, 46px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 20px;
}

.contact__text {
  color: var(--slate);
  font-size: 16.5px;
  max-width: 44ch;
}

.contact__facts {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.contact__fact svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 4px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__fact b {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}

.contact__fact span {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.55;
}

.contact__fact a {
  color: var(--navy);
  font-weight: 700;
}

.contact-form {
  background: #fff;
  padding: clamp(30px, 3.4vw, 52px);
  clip-path: var(--chamfer);
  box-shadow: 0 34px 60px -34px rgba(16, 40, 67, 0.4);
}

.contact-form__title {
  font-size: 23px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}

.contact-form__sub {
  font-size: 14.5px;
  color: var(--slate);
  margin: 0 0 26px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form__field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form__field textarea {
  height: 120px;
  padding: 12px 15px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form__field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231A3D6E' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 11px;
  padding-right: 38px;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(243, 108, 62, 0.16);
}

.contact-form__submit {
  width: 100%;
  margin-top: 8px;
}

.contact-form__fine {
  font-size: 12.5px;
  color: var(--slate);
  margin: 16px 0 0;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 980px) {
  .contact {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.62);
  padding-top: 74px;
  font-size: 15.5px;
}

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

.footer__logo {
  background: #fff;
  display: inline-block;
  padding: 16px 20px;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  margin-bottom: 24px;
}

.footer__logo img {
  width: 200px;
  max-width: none;
}

.footer__blurb {
  font-size: 15.5px;
  line-height: 1.72;
  max-width: 46ch;
}

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

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

.footer__links a:hover {
  color: var(--orange);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__contact b {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer__contact span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.footer__cta {
  align-self: flex-start;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.footer__bottom p {
  margin: 0;
  font-size: 13.5px;
}

.footer__disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  padding-bottom: 30px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 104ch;
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .footer {
    padding-top: 54px;
  }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
  }

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

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