/* ============================================================
   Tokens
   ============================================================ */
:root {
  --ink: #0a1626;
  --navy: #13273e;
  --navy-2: #1b3554;
  --navy-hi: #355277;
  --brass: #b98a46;
  --brass-lt: #d8b478;
  --granite: #edeff1;
  --granite-2: #e2e6e9;
  --slate: #57616e;
  --paper: #ffffff;
  --line: rgba(10, 22, 38, 0.12);
  --line-lt: rgba(255, 255, 255, 0.16);

  --ff-display: "Rufina", Georgia, "Times New Roman", serif;
  --ff-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --site-chrome-height: 148px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
}

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

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

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

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

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

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

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

/* ============================================================
   Eyebrow + peak rule
   ============================================================ */
.section__eyebrow {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.section__eyebrow::after {
  content: "";
  flex: 1;
  height: 8px;
  min-width: 44px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8'%3E%3Cpath d='M0 7.5L8 1l8 6.5z' fill='%23B98A46'/%3E%3C/svg%3E"),
    linear-gradient(var(--brass), var(--brass));
  background-size: 16px 8px, 100% 1px;
  background-position: left bottom, left bottom;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.92;
}

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

.section__eyebrow--light::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8'%3E%3Cpath d='M0 7.5L8 1l8 6.5z' fill='%23D8B478'/%3E%3C/svg%3E"),
    linear-gradient(var(--brass-lt), var(--brass-lt));
}

.peak-rule {
  display: block;
  width: 74px;
  height: 9px;
  margin: 0 auto 22px;
  background: var(--brass);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='74' height='9'%3E%3Cpath d='M0 8h26l11-7 11 7h26' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center / 74px 9px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='74' height='9'%3E%3Cpath d='M0 8h26l11-7 11 7h26' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center / 74px 9px no-repeat;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

.btn--primary {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}

.btn--primary:hover {
  background: var(--brass-lt);
  border-color: var(--brass-lt);
}

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

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

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

.btn--navy:hover {
  background: var(--brass);
  border-color: var(--brass);
}

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

/* ============================================================
   Utility bar
   ============================================================ */
.utility {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.utility__address {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.02em;
}

.utility__address svg {
  flex: 0 0 auto;
  opacity: 0.65;
}

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

.utility__note {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--brass-lt);
}

.utility__phone:hover {
  color: #fff;
}

/* ============================================================
   Header & navigation
   ============================================================ */
.header {
  background: var(--navy);
  position: relative;
  z-index: 20;
  isolation: isolate;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 104px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
  display: block;
}

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

.header__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 4;
}

.header__toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

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

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

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

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

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

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

.header__nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  flex-shrink: 0;
}

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

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

.header__nav-link--active {
  color: #fff;
}

.header__nav-extras {
  display: none;
}

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

.header__cta .btn {
  flex-shrink: 0;
}

.header__phone {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header__phone--desktop {
  font-size: 15px;
}

/* Progressive type scale before hamburger */
@media (max-width: 1400px) {
  .header__inner {
    gap: 24px;
  }

  .header__nav-list {
    gap: 22px;
  }

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

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

  .header__phone--desktop {
    font-size: 14px;
  }
}

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

  .header__nav-list {
    gap: 14px;
  }

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

  .header__cta {
    gap: 12px;
  }

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

  .header__phone--desktop {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 22, 38, 0.55);
  }

  .header.is-open .header__overlay {
    display: block;
  }

  .header__inner {
    z-index: 2;
    gap: 16px;
  }

  .header__toggle {
    display: block;
  }

  .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: 0;
    padding: 84px 28px 40px;
    background: var(--navy);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

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

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

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

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .header__cta {
    display: none;
  }
}

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

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

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    96deg,
    var(--ink) 0%,
    rgba(10, 22, 38, 0.94) 34%,
    rgba(12, 26, 44, 0.62) 54%,
    rgba(14, 30, 50, 0.14) 74%,
    rgba(14, 30, 50, 0) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(115% 78% at 84% 108%, rgba(185, 138, 70, 0.2) 0%, rgba(185, 138, 70, 0) 58%);
}

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

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

.hero__kicker {
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin: 0 0 16px;
  line-height: 1.5;
}

.hero__title {
  color: #fff;
  font-size: clamp(36px, 3.45vw, 56px);
  line-height: 1.06;
  margin: 0 0 20px;
  letter-spacing: -0.018em;
}

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

.hero__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17.5px;
  line-height: 1.68;
  margin: 0 0 30px;
  max-width: 466px;
  font-weight: 300;
}

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

.hero__tel {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.hero__tel svg {
  flex: 0 0 auto;
  color: var(--brass-lt);
}

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

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

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

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

.accolades__inner {
  padding: 38px 0 42px;
}

.accolades__lead {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.72;
  margin: 0 0 26px;
}

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.6vw, 58px);
  flex-wrap: wrap;
}

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

.accolades__image {
  width: auto;
  max-height: 92px;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.accolades__image:hover {
  opacity: 1;
}

/* ============================================================
   Band
   ============================================================ */
.band {
  background: var(--navy-2);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(185, 138, 70, 0.16), rgba(185, 138, 70, 0) 62%);
}

.band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 34px 0;
  flex-wrap: wrap;
}

.band__text {
  font-family: var(--ff-display);
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.38;
  color: #fff;
  margin: 0;
  max-width: 1020px;
  font-weight: 400;
}

.band__text a {
  color: var(--brass-lt);
  border-bottom: 1px solid rgba(216, 180, 120, 0.42);
}

.band__text a:hover {
  color: #fff;
  border-color: #fff;
}

/* ============================================================
   About
   ============================================================ */
.about {
  padding: clamp(64px, 6.4vw, 104px) 0;
  background: var(--paper);
}

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

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: clamp(400px, 42vw, 620px);
  object-fit: cover;
}

.about__stat {
  position: absolute;
  left: -1px;
  bottom: 36px;
  background: var(--navy);
  color: #fff;
  padding: 22px 30px 24px;
  max-width: 250px;
}

.about__stat-value {
  display: block;
  font-family: var(--ff-display);
  font-size: 44px;
  line-height: 1;
  color: var(--brass-lt);
  margin-bottom: 6px;
}

.about__stat-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  display: block;
}

.about__title {
  font-size: clamp(30px, 2.75vw, 44px);
  margin: 0 0 14px;
  line-height: 1.1;
}

.about__subtitle {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--brass);
  margin: 0 0 24px;
  letter-spacing: 0.005em;
  line-height: 1.5;
}

.about__text {
  margin: 0 0 20px;
  font-weight: 300;
}

.about__text:last-of-type {
  margin-bottom: 32px;
}

/* ============================================================
   Practice areas
   ============================================================ */
.practice {
  padding: clamp(64px, 6.4vw, 104px) 0;
  background: var(--granite);
}

.practice__head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(38px, 4vw, 58px);
}

.practice__title {
  font-size: clamp(30px, 2.75vw, 44px);
  margin: 0 0 14px;
}

.practice__intro {
  margin: 0;
  font-weight: 300;
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.7vw, 26px);
}

.practice-card {
  background: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10, 22, 38, 0.14);
}

.practice-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 88 / 62;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 38, 0.58), rgba(10, 22, 38, 0) 62%);
}

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

.practice-card__title {
  font-size: 22px;
  line-height: 1.22;
  margin: 0 0 11px;
}

.practice-card__text {
  font-size: 15.5px;
  line-height: 1.62;
  margin: 0 0 20px;
  font-weight: 300;
  flex: 1;
}

.practice-card__more {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card__more svg {
  transition: transform 0.3s ease;
}

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

.practice-card:hover .practice-card__more svg {
  transform: translateX(5px);
}

/* ============================================================
   Case results
   ============================================================ */
.results {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: clamp(64px, 6.4vw, 100px) 0;
}

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

.results__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 38, 0.9), rgba(10, 22, 38, 0.94));
}

.results__inner {
  position: relative;
}

.results__head {
  text-align: center;
  margin: 0 auto clamp(38px, 4vw, 56px);
}

.results__title {
  color: #fff;
  font-size: clamp(30px, 2.75vw, 44px);
  margin: 0;
}

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

.results__item {
  background: rgba(10, 22, 38, 0.55);
  padding: clamp(28px, 2.6vw, 40px) clamp(20px, 2vw, 32px);
  text-align: center;
  transition: background 0.3s ease;
}

.results__item:hover {
  background: rgba(27, 53, 84, 0.72);
}

.results__amount {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(30px, 2.9vw, 44px);
  line-height: 1;
  color: var(--brass-lt);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.results__label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 16px;
}

.results__link {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.results__link:hover {
  color: #fff;
}

.results__note {
  text-align: center;
  margin: clamp(30px, 3vw, 42px) 0 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 300;
}

/* ============================================================
   Values
   ============================================================ */
.values {
  padding: clamp(64px, 6.4vw, 104px) 0;
  background: var(--paper);
}

.values__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 4.4vw, 76px);
}

.values__title {
  font-size: clamp(30px, 2.75vw, 44px);
  margin: 0 0 16px;
}

.values__text {
  margin: 0 0 28px;
  font-weight: 300;
}

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

.values__item {
  background: var(--paper);
  padding: clamp(26px, 2.4vw, 36px);
}

.values__mark {
  display: block;
  width: 22px;
  height: 10px;
  margin-bottom: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='10'%3E%3Cpath d='M0 9.2L7.5 1.4l4.6 4.8L15.6 3l6.4 6.2z' fill='none' stroke='%23B98A46' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left bottom;
}

.values__item-title {
  font-size: 19px;
  line-height: 1.28;
  margin: 0 0 10px;
}

.values__item-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
  font-weight: 300;
}

/* ============================================================
   Testimonial
   ============================================================ */
.testimonial {
  background: var(--granite);
  padding: 0;
}

.testimonial__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.testimonial__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--ink);
}

.testimonial__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(19, 39, 62, 0.5) 0%, rgba(19, 39, 62, 0.16) 34%, rgba(19, 39, 62, 0) 62%),
    linear-gradient(0deg, rgba(19, 39, 62, 0.34) 0%, rgba(19, 39, 62, 0) 40%);
}

.testimonial__body {
  padding: clamp(52px, 5.4vw, 92px) clamp(34px, 4.4vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial__mark {
  font-family: var(--ff-display);
  font-size: 76px;
  line-height: 0.7;
  color: var(--brass);
  opacity: 0.5;
  margin-bottom: 14px;
}

.testimonial__quote {
  font-family: var(--ff-display);
  font-size: clamp(21px, 1.85vw, 29px);
  line-height: 1.42;
  color: var(--ink);
  margin: 0 0 26px;
  font-weight: 400;
}

.testimonial__quote span {
  display: block;
}

.testimonial__quote span + span {
  margin-top: 14px;
  font-size: 0.76em;
  color: var(--slate);
  line-height: 1.55;
}

.testimonial__author {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--navy);
}

.testimonial__author em {
  font-style: normal;
  color: var(--brass);
  display: block;
  margin-top: 6px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: var(--navy);
  color: #fff;
  padding: clamp(64px, 6.4vw, 104px) 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -6%;
  width: 44%;
  height: 180%;
  background: radial-gradient(closest-side, rgba(185, 138, 70, 0.16), rgba(185, 138, 70, 0));
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 4.6vw, 80px);
}

.contact__title {
  color: #fff;
  font-size: clamp(30px, 2.75vw, 44px);
  margin: 0 0 16px;
}

.contact__text {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  margin: 0 0 30px;
}

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

.contact__fact {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.contact__fact svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--brass-lt);
}

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

.contact-form {
  background: #fff;
  padding: clamp(30px, 2.9vw, 44px);
}

.contact-form__title {
  font-size: 23px;
  margin: 0 0 6px;
}

.contact-form__note {
  font-size: 14px;
  color: var(--slate);
  margin: 0 0 24px;
  font-weight: 300;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form__field {
  display: block;
}

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

.contact-form__input,
.contact-form__select {
  width: 100%;
  height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: #fbfbfc;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
  font-size: 15.5px;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' fill='none' stroke='%2357616E' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}

.contact-form__textarea {
  width: 100%;
  height: 120px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: #fbfbfc;
  color: var(--ink);
  border-radius: 2px;
  resize: vertical;
  font-size: 15.5px;
  line-height: 1.6;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--brass);
  background: #fff;
  outline: none;
}

.contact-form__foot {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.contact-form__fine {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
  font-weight: 300;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  padding: clamp(52px, 5vw, 76px) 0 0;
  font-size: 15px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 3.4vw, 58px);
  padding-bottom: clamp(38px, 4vw, 58px);
}

.footer__logo {
  width: 246px;
  height: 59px;
  max-width: none;
  margin-bottom: 22px;
}

.footer__text {
  margin: 0 0 16px;
  font-weight: 300;
  line-height: 1.7;
}

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

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

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

.footer__phone {
  font-family: var(--ff-display);
  font-size: 26px;
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
}

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

.footer__address {
  font-style: normal;
  line-height: 1.7;
  font-weight: 300;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0 34px;
}

.footer__disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.44);
  margin: 0 0 14px;
  font-weight: 300;
  max-width: 1180px;
}

.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.44);
  flex-wrap: wrap;
}

/* ============================================================
   Buttons & layout — mid breakpoints
   ============================================================ */
@media (max-width: 1100px) {
  .practice__grid,
  .results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .about__image {
    height: clamp(320px, 50vw, 460px);
  }

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

  .testimonial__media {
    min-height: 300px;
  }

  .utility__address {
    display: none;
  }

  .utility__inner {
    justify-content: center;
  }
}

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

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

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

@media (max-width: 768px) {
  .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(32px, 6vw, 48px) 0 0;
  }

  .hero__inner {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__content {
    max-width: 100%;
    width: 100%;
    padding: clamp(16px, 4vw, 32px) clamp(4px, 2vw, 12px) clamp(20px, 4vw, 28px);
    text-align: center;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(10, 22, 38, 0.94) 0%,
      rgba(10, 22, 38, 0.86) 48%,
      rgba(12, 26, 44, 0.7) 100%
    );
  }

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

  .hero__image {
    height: clamp(280px, 52vw, 420px);
    width: auto;
    max-width: 100%;
    object-position: bottom center;
  }
}

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

  .header__inner {
    min-height: 82px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__tel {
    justify-content: center;
  }

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

  .values__list,
  .results__grid {
    gap: 1px;
  }

  .band__inner {
    padding: 26px 0;
  }

  .accolades__row {
    gap: 16px;
  }

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

  .footer__logo {
    width: 200px;
    height: 48px;
  }

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

  .about__stat {
    position: relative;
    left: 0;
    bottom: 0;
    max-width: none;
    width: 100%;
  }
}

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