/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: "Libre Baskerville";
  src: url("../assets/fonts/LibreBaskerville-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Libre Baskerville";
  src: url("../assets/fonts/LibreBaskerville-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

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

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

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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --ink: #150f10;
  --brand: #6b1c28;
  --brand-deep: #48111a;
  --brand-dark: #2b0a10;
  --brass: #c2985a;
  --brass-lt: #e5cb95;
  --parch: #f7f3ec;
  --stone: #e6dfd3;
  --body: #3d3531;

  --ff-display: "Libre Baskerville", Georgia, serif;
  --ff-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1824px;
  --wrap: 95%;
  --pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;

  --fs-nav: 16px;
  --fs-phone: 24px;
  --fs-cta: 20px;
}

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

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

body {
  margin: 0;
  background: var(--parch);
  color: var(--body);
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

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

.container {
  width: var(--wrap);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* --- shared type utilities --- */
.eyebrow {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
  display: block;
}

.eyebrow--brand {
  color: var(--brand);
}

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

.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
}

.rule::before,
.rule::after {
  content: "";
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
  flex: 1;
}

.rule__diamond {
  width: 9px;
  height: 9px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex: none;
  display: block;
}

.rule--left::before {
  display: none;
}

.rule--left {
  justify-content: flex-start;
}

.rule--left::after {
  max-width: 132px;
}

.rule--short::before,
.rule--short::after {
  max-width: 78px;
}

.rule--short {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: var(--fs-cta);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.35;
  white-space: nowrap;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  max-width: 100%;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn--brass {
  background: var(--brass);
  color: var(--brand-dark);
  border-color: var(--brass);
}

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

.btn--ghost {
  background: transparent;
  color: var(--brass-lt);
  border-color: rgba(194, 152, 90, 0.6);
}

.btn--ghost:hover {
  background: rgba(194, 152, 90, 0.14);
  border-color: var(--brass);
}

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

.btn--ink:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  transform: translateY(-2px);
}

.btn--sm {
  font-size: 15px;
  padding: 14px 26px;
}

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  display: block;
  flex: none;
  flex-shrink: 0;
  line-height: 0;
}

.logo__image {
  width: clamp(105px, 10.5vw, 159px);
  height: auto;
  max-width: none;
  flex-shrink: 0;
}

.logo--footer .logo__image {
  width: clamp(198px, 17vw, 272px);
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility {
  background: var(--brand-dark);
  color: rgba(243, 237, 228, 0.85);
  border-bottom: 1px solid rgba(194, 152, 90, 0.22);
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 13px;
}

.utility__location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.utility__diamond {
  width: 6px;
  height: 6px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex: none;
  display: block;
}

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

.utility__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.utility__phone-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  line-height: 1;
}

.utility__phone-link {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-phone);
  color: #f3ede4;
  line-height: 1.18;
  white-space: nowrap;
  transition: color 0.2s;
}

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

.utility__cta {
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--parch);
  border-bottom: 1px solid var(--stone);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 36px);
  padding-block: 20px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: nowrap;
}

.header__nav-close {
  display: none;
}

.header__nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: nowrap;
}

.header__nav-link {
  font-size: var(--fs-nav);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  padding-block: 6px;
  position: relative;
  flex-shrink: 0;
}

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

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  right: 0;
}

.header__nav-link[aria-current] {
  color: var(--brand);
}

.header__nav-extras {
  display: none;
}

.header__overlay {
  display: none;
}

.header__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.header__toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.header__toggle-bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.header__toggle-text {
  line-height: 1;
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--brand-deep);
  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;
  background-image: url("../assets/images/bg-hero.webp");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.5;
  z-index: 0;
}

.hero__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, var(--brand-deep) 0%, rgba(12, 22, 54, 0.95) 38%, rgba(9, 17, 42, 0.74) 62%, rgba(7, 14, 34, 0.62) 100%),
    radial-gradient(115% 85% at 76% 104%, rgba(194, 152, 90, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(5, 10, 26, 0.52), transparent 30%, rgba(5, 10, 26, 0.44));
}

.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-block: clamp(20px, 3vw, 40px);
  padding-inline: clamp(0px, 1vw, 8px);
}

.hero__content .eyebrow {
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(29px, 3.15vw, 45px);
  line-height: 1.14;
  color: #fbf7f1;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}

.hero__title span {
  display: block;
}

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

.hero__text {
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(247, 243, 236, 0.86);
  max-width: 520px;
  margin-bottom: 30px;
}

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

.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 1px;
  white-space: nowrap;
}

.hero__phone-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(229, 203, 149, 0.8);
  line-height: 1;
}

.hero__phone-link {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-phone);
  color: #fbf7f1;
  line-height: 1.2;
  transition: color 0.2s;
}

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

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

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

.hero__plinth {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(194, 152, 90, 0.5) 22%, rgba(194, 152, 90, 0.72) 78%, transparent);
}

/* ============================================================
   ACCOLADES
   ============================================================ */
.accolades {
  background: var(--brand-dark);
  padding-block: 44px;
  border-top: 1px solid rgba(194, 152, 90, 0.2);
}

.accolades__head {
  text-align: center;
  margin-bottom: 30px;
}

.accolades__head .eyebrow {
  margin-bottom: 0;
}

.accolades__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.accolades__item {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px clamp(10px, 2vw, 30px);
}

.accolades__item + .accolades__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 62px;
  background: rgba(194, 152, 90, 0.24);
}

.accolades__badge {
  width: auto;
  max-width: 100%;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.accolades__item:hover .accolades__badge {
  opacity: 1;
}

.accolades__badge--mda {
  height: 96px;
}

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

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

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

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding-block: clamp(64px, 7vw, 104px);
  background: var(--parch);
}

.intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 4.6vw, 78px);
  align-items: center;
}

.intro__media {
  position: relative;
  min-width: 0;
}

.intro__image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.intro__media::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 52%;
  height: 46%;
  border-left: 1px solid var(--brass);
  border-top: 1px solid var(--brass);
  z-index: 1;
}

.intro__media::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 52%;
  height: 46%;
  border-right: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  z-index: 1;
}

.intro__copy {
  min-width: 0;
}

.intro__title {
  font-size: clamp(26px, 2.5vw, 37px);
  margin-bottom: 6px;
}

.intro__copy p {
  font-size: 16.5px;
  color: var(--body);
}

.intro__names {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--stone);
}

.intro__name {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.intro__diamond {
  width: 6px;
  height: 6px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  flex: none;
  display: block;
}

.intro__name-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.intro__name-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7c74;
}

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.practice {
  background: var(--ink);
  padding-block: clamp(64px, 7vw, 100px);
  color: rgba(247, 243, 236, 0.8);
}

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

.practice__title {
  color: #fbf7f1;
  font-size: clamp(28px, 2.9vw, 42px);
}

.practice__title span {
  display: block;
}

.practice__title span + span {
  color: var(--brass);
}

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

.practice__card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(194, 152, 90, 0.2);
  min-width: 0;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.practice__card:hover {
  border-color: rgba(194, 152, 90, 0.62);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.055);
}

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

.practice__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 0.6s ease;
}

.practice__card:hover .practice__thumb img {
  transform: scale(1.05);
}

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 21, 38, 0.1), rgba(15, 21, 38, 0.74));
}

.practice__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.practice__card-title {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fbf7f1;
  line-height: 1.45;
  margin-bottom: 12px;
}

.practice__body p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 243, 236, 0.62);
  margin-bottom: 18px;
}

.practice__more {
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice__more::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s;
}

.practice__card:hover .practice__more::after {
  width: 34px;
}

/* ============================================================
   CASE RESULTS
   ============================================================ */
.results {
  position: relative;
  padding-block: clamp(64px, 7vw, 100px);
  background: var(--brand-deep);
  overflow: hidden;
  isolation: isolate;
}

.results__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-results.webp");
  background-size: cover;
  background-position: center 42%;
  opacity: 0.13;
  z-index: 0;
  filter: grayscale(0.75) brightness(0.9);
}

.results::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(100% 120% at 50% 0%, rgba(18, 31, 73, 0.34), rgba(7, 14, 34, 0.74));
}

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

.results__head {
  text-align: center;
  margin-bottom: 46px;
}

.results__title {
  color: #fbf7f1;
  font-size: clamp(28px, 2.9vw, 42px);
}

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

.results__card {
  border: 1px solid rgba(229, 203, 149, 0.3);
  padding: 34px 26px 28px;
  text-align: center;
  background: rgba(7, 14, 34, 0.34);
  min-width: 0;
  transition: background 0.3s, border-color 0.3s;
}

.results__card:hover {
  background: rgba(7, 14, 34, 0.56);
  border-color: rgba(229, 203, 149, 0.68);
}

.results__amount {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(25px, 2.35vw, 35px);
  color: var(--brass-lt);
  line-height: 1.1;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.results__label {
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.8);
  line-height: 1.5;
}

.results__card .rule {
  margin: 18px 0 16px;
}

.results__card .rule::before,
.results__card .rule::after {
  background: rgba(229, 203, 149, 0.45);
}

.results__card .rule__diamond {
  border-color: rgba(229, 203, 149, 0.7);
}

.results__more {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  opacity: 0.85;
}

.results__card:hover .results__more {
  opacity: 1;
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  background: var(--stone);
  padding-block: clamp(64px, 7vw, 100px);
}

.values__head {
  text-align: center;
  margin-bottom: 44px;
}

.values__title {
  font-size: clamp(28px, 2.9vw, 42px);
}

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

.values__item {
  padding-top: 24px;
  border-top: 2px solid var(--brand);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.values__item-title {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.34;
  margin-bottom: 12px;
}

.values__item p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #5a6376;
  margin-bottom: 18px;
}

.values__more {
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.values__more::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s;
}

.values__item:hover .values__more::after {
  width: 32px;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  position: relative;
  padding-block: clamp(66px, 7vw, 102px);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-testimonial.webp");
  background-size: cover;
  background-position: 52% 26%;
  opacity: 0.26;
  z-index: 0;
  filter: grayscale(0.55) sepia(0.18);
}

.testimonial__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(58% 78% at 50% 50%, rgba(15, 21, 38, 0.93) 30%, rgba(15, 21, 38, 0.7) 100%);
}

.testimonial__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin-inline: auto;
}

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

.testimonial__quote {
  margin: 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2.05vw, 29px);
  line-height: 1.58;
  color: #fbf7f1;
}

.testimonial__by {
  margin-top: 26px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--parch);
  padding-block: clamp(64px, 7vw, 100px);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 4.4vw, 72px);
  align-items: start;
}

.contact__title {
  font-size: clamp(27px, 2.6vw, 38px);
  margin-bottom: 8px;
}

.contact__copy p {
  font-size: 16.5px;
  max-width: 440px;
}

.contact__facts {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.contact__fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.contact__diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  margin-top: 9px;
  display: block;
}

.contact__fact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7c74;
  display: block;
  margin-bottom: 3px;
}

.contact__fact-value {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  display: block;
  font-style: normal;
}

.contact__fact-value a {
  transition: color 0.2s;
}

.contact__fact-value a:hover {
  color: var(--brand);
}

.form {
  background: #fff;
  border: 1px solid var(--stone);
  padding: clamp(26px, 2.6vw, 40px);
  box-shadow: 0 26px 60px -32px rgba(7, 14, 34, 0.26);
}

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

.form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

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

.form__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a7c74;
}

.form__input {
  font-family: var(--ff-body);
  font-size: 15.5px;
  font-weight: 400;
  color: var(--ink);
  background: var(--parch);
  border: 1px solid var(--stone);
  border-radius: 0;
  padding: 0 14px;
  width: 100%;
  height: 40px;
  transition: border-color 0.25s, background 0.25s;
}

.form__input--select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brass) 50%),
    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 19px) 17px, calc(100% - 14px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

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

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

.form__input::placeholder {
  color: #b3a79e;
}

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

.form__note {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: #8a7c74;
  max-width: 300px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brand-dark);
  color: rgba(247, 243, 236, 0.62);
  padding-block: 56px 0;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(194, 152, 90, 0.22);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: flex-end;
}

.footer__nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.72);
  transition: color 0.2s;
}

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

.footer__mid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-block: 34px;
}

.footer__label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 10px;
}

.footer__block p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 243, 236, 0.78);
}

.footer__block a {
  transition: color 0.2s;
}

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

.footer__bot {
  border-top: 1px solid rgba(194, 152, 90, 0.18);
  padding-block: 22px 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__bot p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.46);
  max-width: 760px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1400px) {
  :root {
    --fs-nav: 15px;
    --fs-cta: 18px;
    --fs-phone: 22px;
  }

  .header__nav-links {
    gap: 20px;
  }

  .utility__actions {
    gap: 18px;
  }

  .utility__cta,
  .btn {
    padding: 17px 30px;
  }
}

@media (max-width: 1280px) {
  :root {
    --pad: 34px;
    --fs-nav: 13.5px;
    --fs-cta: 16px;
    --fs-phone: 20px;
  }

  .header__nav-links {
    gap: 14px;
  }

  .header__nav-link {
    letter-spacing: 0.06em;
  }

  .utility__cta,
  .btn {
    padding: 15px 24px;
  }
}

@media (max-width: 1200px) {
  .header__toggle {
    display: inline-flex;
  }

  .utility__actions {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(21, 15, 16, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 70;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 28px 24px 40px;
    background: var(--parch);
    border-left: 1px solid var(--stone);
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

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

  .header__nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--stone);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .header__nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header__nav-link {
    font-size: 15px;
    letter-spacing: 0.12em;
    padding-block: 10px;
    width: 100%;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--stone);
  }

  .header__nav-phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .header__nav-phone-label {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--brass);
  }

  .header__nav-phone-link {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--ink);
    line-height: 1.2;
  }

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

  .hero__title {
    font-size: clamp(27px, 3.6vw, 36px);
  }

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

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

  .intro__media {
    max-width: 520px;
  }

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

@media (max-width: 980px) {
  .btn {
    white-space: normal;
  }

  .utility__cta,
  .hero__actions .btn {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  :root {
    --pad: 26px;
    --fs-phone: 21px;
    --fs-cta: 17px;
  }

  .utility__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero {
    height: auto;
    min-height: calc(100vh - var(--site-chrome-height));
    min-height: calc(100dvh - var(--site-chrome-height));
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(32px, 6vw, 52px) 0 0;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding-block: 20px 24px;
  }

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

  .hero__image {
    height: auto;
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
    object-fit: contain;
    object-position: bottom center;
  }

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

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

  .accolades__badge--mda {
    height: 80px;
  }

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

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

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

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

  .footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: clamp(36px, 7vw, 56px) clamp(4px, 1vw, 12px) 0;
  }

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

@media (max-width: 640px) {
  :root {
    --pad: 20px;
    --wrap: 100%;
  }

  body {
    font-size: 16px;
  }

  .header__inner {
    gap: 14px;
  }

  .header__toggle {
    padding: 9px 14px;
    font-size: 12px;
  }

  .utility__location {
    font-size: 11.5px;
    letter-spacing: 0.1em;
  }

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

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

  .hero__actions .btn,
  .btn {
    width: 100%;
    padding: 17px 26px;
    white-space: normal;
  }

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

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

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