/* ============================================================
   Hall & Collins Injury Law, LLC — homepage
   Palette : ink / ash / crimson / brass / stone
   Type    : Libre Caslon Display (display) + Familjen Grotesk (body)
   ============================================================ */

:root {
  --ink: #0b0c0f;
  --ink-2: #14161b;
  --ink-3: #1d2027;
  --ash: #5a5f6a;
  --crimson: #a21a32;
  --crimson-lt: #c4203c;
  --brass: #b4924f;
  --stone: #f2f0ec;
  --stone-2: #e4e1da;
  --paper: #ffffff;

  --display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --body: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1860px;
  --container-pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.012em;
}

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

.about__grid > *,
.testimonials__grid > *,
.contact__grid > *,
.practice__grid > *,
.values__grid > * {
  min-width: 0;
}

/* ---------- type ---------- */

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

.eyebrow::after {
  content: "";
  flex: 0 0 44px;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
}

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

.eyebrow--center::before {
  content: "";
  flex: 0 0 44px;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
}

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

.heading--xl {
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 74px);
  line-height: 1.03;
}

.heading--lg {
  font-family: var(--display);
  font-size: clamp(29px, 2.7vw, 46px);
  line-height: 1.14;
}

.heading--md {
  font-family: var(--display);
  font-size: clamp(21px, 1.5vw, 26px);
  line-height: 1.24;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  white-space: nowrap;
  background: var(--crimson);
  color: #fff;
  border: 1px solid var(--crimson);
  max-width: 100%;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.btn:hover {
  background: var(--crimson-lt);
  border-color: var(--crimson-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -14px rgba(162, 26, 50, 0.85);
}

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

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

.btn--ink:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ================= TOP BAR ================= */

.topbar {
  background: var(--ink-2);
  color: rgba(242, 240, 236, 0.72);
  font-size: 13px;
  letter-spacing: 0.06em;
}

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

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.topbar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--crimson-lt);
  flex: 0 0 4px;
}

/* ================= HEADER ================= */

.header {
  background: var(--ink);
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(180, 146, 79, 0.24);
}

.header__overlay {
  display: none;
}

.header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "logo cta"
    "logo nav";
  align-items: center;
  column-gap: 36px;
  row-gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header__logo {
  grid-area: logo;
  flex-shrink: 0;
  align-self: center;
}

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

.header__toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 5;
  color: #fff;
}

.header__toggle-bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  display: block;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.header__toggle-bar:nth-child(1) {
  top: 13px;
}

.header__toggle-bar:nth-child(2) {
  top: 21px;
}

.header__toggle-bar:nth-child(3) {
  top: 29px;
}

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

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

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

.header__nav {
  grid-area: nav;
  justify-self: end;
}

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

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

.header__nav-link {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  color: rgba(242, 240, 236, 0.9);
  letter-spacing: 0.02em;
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

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

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

.header__nav-extras {
  display: none;
}

.header__cta {
  grid-area: cta;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.header__cta-btn {
  padding: 15px 30px;
  font-size: clamp(16px, 1.2vw, 20px);
  flex-shrink: 0;
}

.header__phone {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__phone-icon {
  width: 17px;
  height: 17px;
  fill: var(--crimson-lt);
  flex: 0 0 17px;
}

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

/* ================= HERO ================= */

.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  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: url("../assets/images/bg-hero-courthouse.jpg") center 28% / cover no-repeat;
  opacity: 0.5;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    101deg,
    rgba(11, 12, 15, 0.97) 0%,
    rgba(11, 12, 15, 0.93) 34%,
    rgba(11, 12, 15, 0.62) 58%,
    rgba(11, 12, 15, 0.42) 100%
  );
}

.hero__rule {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(
    180deg,
    var(--crimson) 0%,
    var(--crimson) 42%,
    var(--brass) 42%,
    var(--brass) 100%
  );
  opacity: 0.9;
}

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

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

.hero__content .eyebrow {
  color: var(--brass);
  margin-bottom: 14px;
}

.hero .heading--xl {
  color: #fff;
}

.hero .heading--xl em {
  font-style: normal;
  display: block;
  color: var(--crimson-lt);
}

.hero__text {
  color: rgba(242, 240, 236, 0.8);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 600px;
}

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

.hero__phone {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.hero__phone small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 5px;
}

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

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

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

.hero__mono {
  position: absolute;
  right: 6%;
  bottom: -6%;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(300px, 34vw, 520px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(180, 146, 79, 0.16);
  user-select: none;
  pointer-events: none;
}

/* ================= CREDENTIAL LINE ================= */

.creds {
  background: var(--ink-2);
  border-top: 1px solid rgba(180, 146, 79, 0.2);
}

.creds__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 19px;
  padding-bottom: 19px;
  flex-wrap: wrap;
}

.creds__list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.creds__item {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 240, 236, 0.78);
  display: flex;
  align-items: center;
  gap: 12px;
}

.creds__item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--crimson-lt);
  transform: rotate(45deg);
  flex: 0 0 6px;
}

/* ================= ACCOLADES ================= */

.accolades {
  background: var(--stone);
  padding: 56px 0 58px;
  border-bottom: 1px solid var(--stone-2);
}

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

.accolades__title {
  font-family: var(--display);
  font-size: clamp(22px, 1.7vw, 29px);
  color: var(--ink);
}

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}

.accolades__badge {
  width: auto;
  flex: 0 0 auto;
  opacity: 0.9;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

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

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

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

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

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

/* ================= ABOUT ================= */

.about {
  padding: clamp(70px, 7vw, 116px) 0;
  background: var(--paper);
}

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

.about__figure {
  position: relative;
}

.about__figure::before {
  content: "";
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 58%;
  height: 56%;
  border-left: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  z-index: 0;
}

.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.about__stamp {
  position: absolute;
  z-index: 2;
  right: -16px;
  bottom: 34px;
  background: var(--crimson);
  color: #fff;
  padding: 22px 26px;
  max-width: 224px;
}

.about__stamp b {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.about__stamp span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  line-height: 1.5;
}

.about .heading--lg {
  color: var(--ink);
  margin-bottom: 22px;
}

.about__text {
  margin: 0 0 18px;
  color: var(--ash);
}

.about__callout {
  margin-top: 30px;
  border-left: 3px solid var(--crimson);
  background: var(--stone);
  padding: 24px 28px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
}

.about__callout a {
  color: var(--crimson);
  font-weight: 600;
  border-bottom: 1px solid rgba(162, 26, 50, 0.35);
}

.about__callout a:hover {
  border-color: var(--crimson);
}

/* ================= PRACTICE AREAS ================= */

.practice {
  padding: clamp(70px, 7vw, 110px) 0;
  background: var(--stone);
}

.practice__head {
  max-width: 620px;
  margin-bottom: 46px;
}

.practice .heading--lg {
  color: var(--ink);
}

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

.practice-card {
  background: var(--paper);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stone-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -30px rgba(11, 12, 15, 0.5);
  border-color: rgba(180, 146, 79, 0.6);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 43 / 31;
  overflow: hidden;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 15, 0) 42%, rgba(11, 12, 15, 0.62) 100%);
}

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

.practice-card .heading--md {
  color: var(--ink);
}

.practice-card__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.66;
  color: var(--ash);
  flex: 1;
}

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

.practice-card__more span {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--crimson);
  transition: width 0.28s ease;
}

.practice-card:hover .practice-card__more span {
  width: 36px;
}

/* ================= CASE RESULTS ================= */

.results {
  position: relative;
  background: var(--ink);
  padding: clamp(70px, 7vw, 112px) 0 clamp(56px, 5vw, 84px);
  isolation: isolate;
  overflow: hidden;
}

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

.results__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 15, 0.86), rgba(11, 12, 15, 0.94));
}

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

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

.results .heading--lg {
  color: #fff;
}

.results__intro {
  margin: 0;
  max-width: 430px;
  color: rgba(242, 240, 236, 0.66);
  font-size: 16px;
}

.results__row {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  padding: 34px 0 34px 26px;
  position: relative;
  border-top: 1px solid rgba(180, 146, 79, 0.28);
}

.results__row:last-of-type {
  border-bottom: 1px solid rgba(180, 146, 79, 0.28);
}

.results__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 26px;
  background: var(--crimson-lt);
  transition: height 0.34s ease;
}

.results__row:hover::before {
  height: calc(100% - 34px);
}

.results__amount {
  font-family: var(--display);
  font-size: clamp(38px, 3.6vw, 60px);
  line-height: 1;
  color: #fff;
  display: block;
}

.results__kind {
  display: block;
  margin-top: 11px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.results__desc {
  margin: 0;
  color: rgba(242, 240, 236, 0.74);
  font-size: 16.5px;
  line-height: 1.72;
}

.results__disclaimer {
  margin: 26px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(242, 240, 236, 0.42);
  letter-spacing: 0.02em;
}

/* ================= VALUES ================= */

.values {
  position: relative;
  padding: clamp(70px, 7vw, 110px) 0;
  background: var(--ink-2);
  isolation: isolate;
  overflow: hidden;
}

.values__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-values.jpg") center 32% / cover no-repeat;
  opacity: 0.18;
}

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

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

.values .heading--lg {
  color: #fff;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(180, 146, 79, 0.28);
}

.values__cell {
  background: rgba(11, 12, 15, 0.72);
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease;
}

.values__cell:hover {
  background: rgba(11, 12, 15, 0.9);
}

.values__cell .heading--md {
  color: #fff;
}

.values__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(242, 240, 236, 0.7);
  flex: 1;
}

.values__link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.values__link:hover {
  color: #fff;
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: clamp(70px, 7vw, 112px) 0;
  background: var(--stone);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.testimonials__image {
  width: 100%;
  height: auto;
  filter: saturate(0.9);
}

.testimonials__quote {
  margin: 0;
  position: relative;
}

.testimonials__quote::before {
  content: "\201C";
  font-family: var(--display);
  font-size: 150px;
  line-height: 0.7;
  color: var(--crimson);
  opacity: 0.16;
  position: absolute;
  left: -10px;
  top: -26px;
}

.testimonials__quote q {
  quotes: none;
  font-family: var(--display);
  font-size: clamp(20px, 1.72vw, 29px);
  line-height: 1.5;
  color: var(--ink);
  display: block;
  position: relative;
}

.testimonials__cite {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials__cite b {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.testimonials__cite i {
  flex: 0 0 46px;
  height: 1px;
  background: var(--brass);
  display: block;
}

.testimonials__cite span {
  font-size: 13px;
  color: var(--ash);
  letter-spacing: 0.04em;
}

/* ================= CONTACT ================= */

.contact {
  padding: clamp(70px, 7vw, 112px) 0;
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 5vw, 88px);
  align-items: start;
}

.contact .heading--lg {
  color: var(--ink);
  margin-bottom: 20px;
}

.contact__lede {
  margin: 0 0 34px;
  font-size: 17.5px;
  line-height: 1.78;
  color: var(--ash);
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--stone-2);
}

.contact__row {
  padding: 20px 0;
  border-bottom: 1px solid var(--stone-2);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.contact__label {
  flex: 0 0 108px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 5px;
}

.contact__value {
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink-2);
  white-space: pre-line;
}

.contact__value a:hover {
  color: var(--crimson);
}

.form {
  background: var(--stone);
  padding: clamp(30px, 3vw, 44px);
  border-top: 3px solid var(--crimson);
}

.form__title {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 6px;
}

.form__note {
  font-size: 14px;
  color: var(--ash);
  margin: 0 0 26px;
}

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

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.form__input {
  height: 40px;
  padding: 0 14px;
  border: 1px solid #cfcbc2;
  background: var(--paper);
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  border-radius: 0;
}

.form__textarea {
  height: 120px;
  min-height: 120px;
  padding: 12px 14px;
  border: 1px solid #cfcbc2;
  background: var(--paper);
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  resize: vertical;
  border-radius: 0;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--brass);
  outline-offset: 1px;
}

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

.form__disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ash);
  margin: 16px 0 0;
}

/* ================= FOOTER ================= */

.footer {
  background: var(--ink);
  color: rgba(242, 240, 236, 0.66);
  padding: clamp(56px, 5vw, 80px) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.62fr) minmax(0, 0.62fr);
  gap: clamp(36px, 4vw, 70px);
  padding-bottom: 52px;
}

.footer__logo {
  height: 96px;
  width: auto;
  max-width: none;
  margin-bottom: 24px;
}

.footer__text {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.7;
}

.footer__heading {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

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

.footer__link {
  font-size: 15.5px;
}

.footer__link:hover,
.footer__contact a:hover {
  color: var(--brass);
}

.footer__contact {
  font-size: 15.5px;
  line-height: 1.8;
  white-space: pre-line;
  margin: 0;
}

.footer__bar {
  border-top: 1px solid rgba(180, 146, 79, 0.24);
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__bar p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.72;
  color: rgba(242, 240, 236, 0.45);
  max-width: 900px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1400px) {
  .header__nav-list {
    gap: 20px;
  }

  .header__cta {
    gap: 16px;
  }

  .header__cta-btn {
    padding: 14px 24px;
  }
}

@media (max-width: 1240px) {
  :root {
    --container-pad: 32px;
  }

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

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

  .hero__content {
    width: min(100%, 52%);
  }
}

/* Hamburger / slide-in panel — match JS NAV_BREAKPOINT */
@media (max-width: 1200px) {
  .header {
    overflow: visible;
  }

  .header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(11, 12, 15, 0.56);
  }

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

  .header__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding-top: 14px;
    padding-bottom: 14px;
    grid-template-columns: none;
    grid-template-areas: none;
  }

  .header__logo {
    grid-area: auto;
    margin-right: auto;
  }

  .header__cta {
    display: none;
  }

  .header .header__toggle {
    display: block;
    order: 3;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    margin-left: 0;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    padding: 84px 28px 40px;
    z-index: 2;
    background: var(--ink-2);
    justify-self: auto;
    grid-area: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    border-left: 1px solid rgba(180, 146, 79, 0.3);
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

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

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

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

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px 0 0;
  }

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

  .header__nav-extras .header__phone {
    justify-content: center;
    font-size: 24px;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__item:last-child {
    display: none;
  }
}

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

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

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

  .about__figure {
    max-width: 520px;
  }

  .results__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 28px 0 28px 22px;
  }

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

  .footer__logo {
    height: 78px;
  }
}

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

  .container {
    width: 100%;
  }

  .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 {
    display: block;
    height: auto;
  }

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

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

  .hero__image {
    height: auto;
    width: min(94%, 520px);
    margin: 0 auto;
    object-position: bottom center;
  }

  .hero__mono {
    display: none;
  }

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

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

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

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

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

  .hero__phone {
    justify-content: center;
  }

  .about__stamp {
    right: 0;
    bottom: 0;
    padding: 18px 20px;
  }

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

  .creds__list {
    gap: 14px 26px;
  }

  .accolades__row {
    gap: 26px 34px;
  }

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

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

  .accolades__badge--slaw {
    height: 33px;
  }

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

  .testimonials__quote::before {
    font-size: 104px;
    left: -4px;
    top: -18px;
  }
}

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

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

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