/* ============================================================
   Guster Law Firm, LLC — homepage
   Palette sampled from firm assets:
     suit shadow #0B0E14 · suit body #171A26
     tie gold  #C9A227 · logo swoosh #96989B
   Type: Spectral (display) + Be Vietnam Pro (text)
   ============================================================ */

:root {
  --ink: #0b0e14;
  --ink-2: #12161f;
  --charcoal: #171a26;
  --gold: #c9a227;
  --gold-lt: #e2cc84;
  --gold-dp: #9c7c15;
  --silver: #96989b;
  --paper: #f4f4f2;
  --paper-2: #e9e8e3;
  --line: #d6d5d0;
  --text: #1b1e24;
  --muted: #5c6169;

  --ff-display: "Spectral", Georgia, serif;
  --ff-text: "Be Vietnam Pro", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --site-chrome-height: 150px;
  --container-max: 1840px;
  --nav-breakpoint: 1200px;
  --pad: 45px;
  --nav-fs: 16px;
  --phone-fs: 24px;
  --cta-fs: 20px;
}

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

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

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

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

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

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

/* --- shared -------------------------------------------------------- */

.eyebrow {
  font-family: var(--ff-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dp);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  line-height: 1.4;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

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

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

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

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

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

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

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

.section {
  padding: 104px 0;
}

.section__head {
  max-width: 760px;
}

.section__head--center {
  margin: 0 auto;
  text-align: center;
}

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

.section__title--light {
  color: #fff;
}

/* --- utility bar --------------------------------------------------- */

.topbar {
  background: var(--ink);
  color: #b9bcc3;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

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

.topbar a:hover {
  color: var(--gold-lt);
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar__left span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.topbar__phone b {
  color: var(--gold-lt);
  font-weight: 600;
}

/* --- header -------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 14, 20, 0.03);
}

.header__overlay {
  display: none;
}

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

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

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

.header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.header__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.28s ease, background 0.28s ease;
}

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

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

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

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.9vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.header__nav-link {
  display: block;
  font-size: clamp(13px, 1.05vw, var(--nav-fs));
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--text);
  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(--gold);
  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(--ink);
}

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
  margin-left: 6px;
}

.header__cta .btn {
  font-size: clamp(15px, 1.2vw, var(--cta-fs));
  padding: clamp(14px, 1.15vw, 19px) clamp(22px, 2vw, 38px);
}

.header__phone {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.005em;
}

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

/* --- 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;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0.5;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      94deg,
      rgba(9, 11, 16, 0.97) 0%,
      rgba(9, 11, 16, 0.92) 34%,
      rgba(11, 14, 20, 0.62) 60%,
      rgba(11, 14, 20, 0.5) 100%
    ),
    radial-gradient(120% 88% at 78% 100%, rgba(201, 162, 39, 0.14) 0%, transparent 62%);
}

.hero__glow {
  position: absolute;
  right: 2vw;
  bottom: 0;
  z-index: 0;
  width: 640px;
  height: 520px;
  background: radial-gradient(60% 60% at 50% 70%, rgba(201, 162, 39, 0.2), transparent 70%);
  pointer-events: none;
}

.hero__mark {
  position: absolute;
  z-index: 2;
  left: 56.5%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  pointer-events: none;
}

.hero__mark span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(226, 204, 132, 0.6);
  line-height: 1;
}

.hero__mark::before,
.hero__mark::after {
  content: "";
  display: block;
  width: 1px;
  height: 70px;
}

.hero__mark::before {
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.75));
}

.hero__mark::after {
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.75), transparent);
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 640px);
  color: #fff;
  padding-inline: clamp(0px, 1vw, 8px);
}

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

.hero__title {
  font-size: clamp(38px, 4.15vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 20px;
  text-wrap: balance;
}

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

.hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #c9cdd5;
  max-width: 560px;
  margin: 0 0 32px;
  font-weight: 300;
}

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

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-size: var(--phone-fs);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.005em;
}

.hero__phone svg {
  width: 19px;
  height: 19px;
  fill: var(--gold);
  flex: none;
}

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

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

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

/* --- accolades ----------------------------------------------------- */

.accolades {
  background: var(--ink-2);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 52px 0;
}

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.accolades__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex: none;
  max-width: 190px;
  line-height: 1.6;
  margin: 0;
}

.accolades__items {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 54px);
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.badge:hover {
  opacity: 1;
}

.badge img {
  width: auto;
  display: block;
}

.badge--mda img {
  height: 84px;
}

.badge--ntl img {
  height: 66px;
}

.badge--sl img {
  height: 36px;
}

.badge--aaj img {
  height: 54px;
}

/* --- intro --------------------------------------------------------- */

.intro {
  background: var(--paper);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: start;
}

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

.intro__figure::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 62%;
  height: 64%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.intro__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.intro__est {
  position: absolute;
  left: -1px;
  top: 34px;
  background: var(--ink);
  color: var(--gold-lt);
  padding: 14px 22px;
  font-family: var(--ff-display);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro__title {
  font-size: clamp(30px, 3vw, 46px);
  margin-bottom: 10px;
}

.intro__kicker {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 21px;
  color: var(--gold-dp);
  margin: 0 0 26px;
  font-weight: 400;
}

.intro__copy p {
  color: #3c424b;
}

.intro__serves {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
}

.intro__serves b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11.5px;
  margin-bottom: 9px;
}

/* --- ledger / case results ----------------------------------------- */

.ledger {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 90px;
}

.ledger__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ledger__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.ledger__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 11, 0.72), rgba(6, 8, 11, 0.9));
}

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

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

.ledger__title {
  font-size: clamp(30px, 3vw, 46px);
  color: #fff;
}

.ledger__note {
  font-size: 12.5px;
  color: #8c929c;
  letter-spacing: 0.05em;
  max-width: 330px;
}

.ledger__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(201, 162, 39, 0.34);
}

.ledger__cell {
  padding: 44px 34px 8px;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
}

.ledger__cell:last-child {
  border-right: 0;
}

.ledger__cell:first-child {
  padding-left: 0;
}

.ledger__index {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-dp);
  margin-bottom: 16px;
  font-weight: 600;
}

.ledger__figure {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--gold);
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.ledger__label {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #c6cad2;
  line-height: 1.55;
  display: block;
  max-width: 270px;
}

/* --- practice areas ------------------------------------------------ */

.practice {
  background: var(--paper-2);
}

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

.practice__card {
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--line);
  transition: 0.32s ease;
  overflow: hidden;
}

.practice__card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 22px 44px -22px rgba(11, 14, 20, 0.4);
}

.practice__thumb {
  position: relative;
  aspect-ratio: 44 / 26;
  overflow: hidden;
  background: var(--ink);
}

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

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

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 11, 16, 0.55));
}

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

.practice__title {
  font-size: 22px;
  letter-spacing: -0.005em;
}

.practice__text {
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
  margin: 0;
}

.practice__more {
  margin-top: auto;
  padding-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dp);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice__more svg {
  width: 15px;
  height: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  transition: transform 0.3s ease;
}

.practice__card:hover .practice__more svg {
  transform: translateX(5px);
}

/* --- values -------------------------------------------------------- */

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

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  background: rgba(201, 162, 39, 0.22);
}

.values__cell {
  background: var(--ink);
  padding: 38px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.values__num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.18em;
}

.values__title {
  font-size: 22px;
  color: #fff;
  line-height: 1.22;
}

.values__text {
  font-size: 15px;
  color: #a8aeb8;
  line-height: 1.7;
  margin: 0;
}

.values__link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(226, 204, 132, 0.35);
  align-self: flex-start;
  padding-bottom: 3px;
}

.values__link:hover {
  color: #fff;
  border-color: var(--gold);
}

/* --- review -------------------------------------------------------- */

.review {
  background: var(--paper);
  text-align: center;
}

.review__quote {
  margin: 0;
  max-width: 900px;
  margin-inline: auto;
}

.review__mark {
  font-family: var(--ff-display);
  font-size: 88px;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}

.review__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 600;
  margin: 0 0 20px;
}

.review__body {
  font-size: 19px;
  line-height: 1.78;
  color: #3c424b;
  font-weight: 300;
}

.review__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 26px 0 16px;
}

.review__stars svg {
  width: 19px;
  height: 19px;
  fill: var(--gold);
}

.review__cite {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- contact ------------------------------------------------------- */

.contact {
  background: var(--paper-2);
  padding: 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.contact__info {
  background: var(--ink);
  color: #fff;
  padding: 96px clamp(40px, 4.4vw, 88px) 96px max(var(--pad), calc((100vw - var(--container-max)) / 2 + var(--pad)));
}

.contact__info-inner {
  max-width: 520px;
  margin-left: auto;
}

.contact__title {
  font-size: clamp(28px, 2.5vw, 40px);
  color: #fff;
  margin-bottom: 18px;
}

.contact__lede {
  color: #a8aeb8;
  font-size: 16px;
  font-weight: 300;
}

.contact__list {
  margin-top: 38px;
  display: grid;
  gap: 24px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
}

.contact__item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex: none;
  margin-top: 5px;
}

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

.contact__item span {
  font-size: 16.5px;
  color: #e4e6ea;
  line-height: 1.6;
}

.contact__item a:hover {
  color: var(--gold-lt);
}

.contact__form {
  padding: 96px clamp(40px, 4.4vw, 88px);
}

.contact__form-inner {
  max-width: 660px;
}

.contact__form-title {
  font-size: clamp(24px, 2vw, 32px);
  margin-bottom: 8px;
}

.contact__form-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 34px;
}

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

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

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

.form__field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--ff-text);
  font-size: 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 16px;
  width: 100%;
  height: 40px;
  transition: 0.24s ease;
}

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

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

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14);
}

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

.form__foot small {
  font-size: 12px;
  color: var(--muted);
  max-width: 330px;
  line-height: 1.55;
}

/* --- footer -------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: #8f959f;
  padding: 80px 0 34px;
  font-size: 15px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.8fr)) minmax(0, 0.9fr);
  gap: clamp(30px, 3.4vw, 64px);
}

.footer__plate {
  background: #fff;
  padding: 16px 20px;
  display: inline-block;
}

.footer__plate img {
  width: 270px;
  height: auto;
}

.footer__heading {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-text);
  font-weight: 600;
  margin: 0 0 20px;
}

.footer__col p {
  margin: 0 0 12px;
  line-height: 1.7;
}

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

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

.footer__about {
  margin-top: 24px;
  line-height: 1.75;
  max-width: 390px;
  font-size: 14.5px;
}

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

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

.footer__directions {
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(226, 204, 132, 0.4);
}

.footer__bottom {
  margin-top: 62px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #6e747e;
}

.footer__disclaimer {
  max-width: 1000px;
  line-height: 1.7;
}

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

@media (min-width: 1560px) {
  .hero__mark {
    display: flex;
  }

  .hero__content {
    max-width: 750px;
  }

  .hero__title {
    font-size: 66px;
  }

  .hero__subtitle {
    max-width: 600px;
    font-size: 17.5px;
  }
}

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

@media (max-width: 1400px) {
  .hero__content {
    max-width: min(100%, 560px);
  }

  .hero__visual {
    width: 46%;
  }

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

@media (max-width: 1280px) {
  :root {
    --pad: 34px;
  }

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

@media (max-width: 1200px) {
  .header__overlay {
    display: none;
  }

  .header.is-open .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(11, 14, 20, 0.55);
  }

  .header__inner {
    position: relative;
    z-index: 2;
    min-height: 86px;
  }

  .header__toggle {
    display: flex;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    border-color: rgba(226, 204, 132, 0.45);
    background: var(--ink);
  }

  .header.is-open .header__toggle-bar {
    background: var(--gold-lt);
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 84px 28px 40px;
    background: var(--ink);
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    pointer-events: none;
  }

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

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

  .header__nav-link {
    display: block;
    padding: 14px 0;
    color: #e4e6ea;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: normal;
  }

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

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

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

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

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

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

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .intro__figure {
    max-width: 520px;
  }

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

  .contact__info {
    padding: 74px var(--pad);
  }

  .contact__info-inner {
    max-width: none;
    margin: 0;
  }

  .contact__form {
    padding: 74px var(--pad);
  }

  .contact__form-inner {
    max-width: none;
  }

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

@media (max-width: 1000px) {
  .topbar__left {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-end;
  }
}

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

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

  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__inner {
    display: block;
    height: auto;
    order: 1;
    width: 100%;
  }

  .hero__content {
    max-width: 100%;
  }

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

  .hero__image {
    height: auto;
    width: min(360px, 74%);
    max-height: 52vh;
    margin-inline: auto;
  }

  .hero__glow {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: clamp(32px, 6vw, 48px) clamp(20px, 4vw, 32px) 0;
  }

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

  .hero__title {
    font-size: clamp(31px, 8.4vw, 42px);
  }

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

  .ledger__cell {
    padding: 34px 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  }

  .ledger__cell:last-child {
    border-bottom: 0;
  }

  .accolades__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .accolades__label {
    max-width: none;
  }

  .accolades__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    gap: 26px;
  }
}

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

  .container {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  body {
    font-size: 16px;
  }

  .topbar__note {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__right {
    gap: 0;
  }

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

  .accolades__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
  }

  .accolades {
    padding: 44px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .review__body {
    font-size: 17px;
  }

  .ledger {
    padding: 70px 0 66px;
  }

  .footer__plate img {
    width: 220px;
  }

  .intro__est {
    top: 20px;
    padding: 11px 16px;
    font-size: 13px;
  }

  .badge--mda img {
    height: 64px;
  }

  .badge--ntl img {
    height: 50px;
  }

  .badge--sl img {
    height: 28px;
  }

  .badge--aaj img {
    height: 42px;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__phone {
    justify-content: center;
    white-space: normal;
  }
}

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

  .practice__card:hover {
    transform: none;
  }
}
