/* ============================================================
   Jason C. Altman, P.C. — Landing page
   Palette: #E0B372 gold / #17181A ink
   Type: Bodoni Moda (display) + Barlow (body)
   ============================================================ */

:root {
  --gold: #e0b372;
  --gold-dk: #b0844a;
  --gold-lt: #f0d6ac;
  --ink: #17181a;
  --ink-2: #202226;
  --ink-warm: #2a2621;
  --paper: #faf8f5;
  --paper-2: #f1ece4;
  --body: #4b4f55;
  --line: rgba(224, 179, 114, 0.3);
  --line-d: rgba(255, 255, 255, 0.12);
  --display: "Bodoni Moda", Georgia, serif;
  --sans: "Barlow", Helvetica, Arial, sans-serif;
  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 148px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

p {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Shared type ---------- */
.section__eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: flex;
  align-items: center;
  gap: 14px;
}

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

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

.section__eyebrow--light::before {
  background: var(--gold);
}

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

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

.section__rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 22px 0 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

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

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

.btn--ghost:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  color: var(--gold-dk);
  border-color: var(--gold-dk);
}

.btn--ghost-dark:hover {
  background: var(--gold-dk);
  color: #fff;
}

.btn--sm {
  font-size: 16px;
  padding: 13px 26px;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.topbar__left {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

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

.topbar__item {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* ============ HEADER ============ */
.header {
  background: #fff;
  border-bottom: 1px solid rgba(23, 24, 26, 0.09);
  position: sticky;
  top: 0;
  z-index: 60;
}

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

.header__logo {
  flex-shrink: 0;
}

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

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

.header__nav-link {
  flex-shrink: 0;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(13px, 1.05vw, 16px);
  padding: clamp(10px, 1vw, 13px) clamp(16px, 1.6vw, 26px);
}

.header__nav-extras {
  display: none;
}

.header__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(23, 24, 26, 0.18);
  border-radius: 6px;
  padding: 9px 11px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 70;
}

.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

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

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

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

.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(23, 24, 26, 0.55);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  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-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: 50% 42%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      58% 78% at 74% 62%,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0) 70%
    ),
    linear-gradient(
      90deg,
      rgba(23, 24, 26, 0.96) 0%,
      rgba(23, 24, 26, 0.9) 34%,
      rgba(23, 24, 26, 0.58) 60%,
      rgba(23, 24, 26, 0.42) 100%
    );
}

.hero__hair {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-dk) 42%,
    rgba(224, 179, 114, 0) 100%
  );
  z-index: 4;
}

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

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

.hero__title {
  color: #fff;
  font-size: clamp(34px, 3.45vw, 54px);
  line-height: 1.06;
  margin: 18px 0 0;
  letter-spacing: -0.015em;
}

.hero__title-lede {
  display: block;
  font-weight: 800;
}

.hero__title-tail {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 0.66em;
  color: var(--gold-lt);
  margin-top: 12px;
  letter-spacing: 0;
}

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

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

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

.hero__phone span {
  border-bottom: 1px solid rgba(224, 179, 114, 0.5);
  padding-bottom: 2px;
}

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

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

.hero__disc {
  position: absolute;
  right: 26px;
  bottom: -90px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(224, 179, 114, 0.2);
  background: radial-gradient(
    circle at 50% 45%,
    rgba(224, 179, 114, 0.13) 0%,
    rgba(224, 179, 114, 0) 68%
  );
}

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

.hero__plate {
  position: absolute;
  left: 8%;
  bottom: 56px;
  z-index: 3;
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 20px;
}

.hero__plate-name {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__plate-role {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

/* ============ ACCOLADES ============ */
.accolades {
  background: #fff;
  border-bottom: 1px solid rgba(23, 24, 26, 0.08);
}

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

.accolades__label {
  flex: none;
  max-width: 210px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.6;
}

.accolades__label-rule {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 12px;
}

.accolades__strip {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.accolades__slot {
  flex: 1;
  min-width: 0;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.accolades__slot + .accolades__slot {
  border-left: 1px solid rgba(23, 24, 26, 0.1);
}

.accolades__slot img {
  max-width: 100%;
  height: auto;
  opacity: 0.82;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

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

/* ============ ABOUT ============ */
.about {
  padding: 110px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 76px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 11 / 8;
  position: relative;
  z-index: 2;
}

.about__media::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 60%;
  height: 62%;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
}

.about__caption {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: var(--ink);
  color: #fff;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about__caption-place {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.about__caption-area {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
  line-height: 1.6;
}

.about__copy .section__title {
  margin-top: 20px;
}

.about__lead {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.8;
}

.about__sig {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(23, 24, 26, 0.12);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.about__sig-name {
  font-family: var(--display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 700;
}

.about__sig-role {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-weight: 600;
}

/* ============ PRACTICE AREAS ============ */
.practice {
  padding: 104px 0;
  background: var(--paper-2);
}

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

.practice__head-text {
  max-width: 620px;
}

.practice__head .section__title {
  margin-top: 20px;
}

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

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

.practice-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 50px rgba(23, 24, 26, 0.14);
}

.practice-card__shot {
  position: relative;
  aspect-ratio: 19 / 13;
  overflow: hidden;
}

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

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

.practice-card__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 24, 26, 0) 40%,
    rgba(23, 24, 26, 0.55) 100%
  );
}

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

.practice-card__body h3 {
  font-size: 23px;
  line-height: 1.22;
}

.practice-card__body p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.7;
}

.practice-card__more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.practice-card__more-line {
  width: 22px;
  height: 1px;
  background: var(--gold-dk);
  display: block;
  transition: width 0.3s ease;
}

.practice-card:hover .practice-card__more-line {
  width: 38px;
}

/* ============ CASE RESULTS ============ */
.results {
  position: relative;
  padding: 100px 0 104px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

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

.results__tex::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 24, 26, 0.82) 0%,
    rgba(23, 24, 26, 0.62) 50%,
    rgba(23, 24, 26, 0.9) 100%
  );
}

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

.results .section__title {
  color: #fff;
}

.results__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.results__top-text {
  max-width: 560px;
}

.results__top .section__title {
  margin-top: 20px;
}

.results__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 330px;
  line-height: 1.7;
}

.ledger {
  margin-top: 56px;
  border-top: 1px solid var(--line-d);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ledger__item {
  padding: 40px 34px 38px;
  border-right: 1px solid var(--line-d);
  position: relative;
}

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

.ledger__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.ledger__item:hover::before {
  width: 100%;
}

.ledger__amount {
  font-family: var(--display);
  font-size: clamp(32px, 3.1vw, 44px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ledger__desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.ledger__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.ledger__link-line {
  width: 18px;
  height: 1px;
  background: var(--gold);
  display: block;
  transition: width 0.3s ease;
}

.ledger__item:hover .ledger__link-line {
  width: 32px;
}

/* ============ VALUES ============ */
.values {
  padding: 106px 0;
}

.values__head {
  max-width: 760px;
}

.values__head .section__title {
  margin-top: 20px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(23, 24, 26, 0.14);
}

.values__item {
  padding: 44px 42px 40px;
  border-right: 1px solid rgba(23, 24, 26, 0.14);
  position: relative;
}

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

.values__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.values__mark {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
}

.values__item h3 {
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.24;
}

.values__item p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  padding: 96px 0;
  background: var(--paper-2);
  position: relative;
}

.testimonial__inner {
  max-width: 1100px;
  text-align: center;
}

.testimonial .section__title {
  margin-top: 18px;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 34px;
}

.testimonial__stars svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.testimonial__quote {
  margin: 26px auto 0;
  max-width: 900px;
  font-family: var(--display);
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}

.testimonial__who {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

/* ============ CONSULT ============ */
.consult {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 100px;
}

.consult__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-consult.jpg");
  background-size: cover;
  background-position: 50% 40%;
}

.consult__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 24, 26, 0.94) 0%,
    rgba(23, 24, 26, 0.8) 46%,
    rgba(23, 24, 26, 0.52) 100%
  );
}

.consult__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 80px;
  align-items: start;
}

.consult .section__title {
  color: #fff;
  margin-top: 20px;
}

.consult__say {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 490px;
}

.consult__facts {
  margin-top: 38px;
  display: grid;
  gap: 2px;
}

.consult__fact {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-d);
}

.consult__fact:last-child {
  border-bottom: 1px solid var(--line-d);
}

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

.consult__fact-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.consult__fact-value {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

.form-card {
  background: #fff;
  padding: 44px 44px 40px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.form-card__title {
  font-size: 27px;
  color: var(--ink);
}

.form-card__sub {
  margin-top: 10px;
  font-size: 15px;
  color: var(--body);
}

.form-card__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-card__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-card__field--full {
  grid-column: 1 / -1;
}

.form-card__field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.form-card__field input,
.form-card__field select {
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(23, 24, 26, 0.2);
  border-radius: 3px;
  background: #fff;
  font-size: 15px;
  width: 100%;
}

.form-card__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-dk) 50%),
    linear-gradient(135deg, var(--gold-dk) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 17px,
    calc(100% - 13px) 17px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.form-card__field textarea {
  height: 120px;
  min-height: 120px;
  padding: 11px 14px;
  border: 1px solid rgba(23, 24, 26, 0.2);
  border-radius: 3px;
  background: #fff;
  font-size: 15px;
  resize: vertical;
  width: 100%;
  line-height: 1.6;
}

.form-card__field input:focus,
.form-card__field select:focus,
.form-card__field textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 179, 114, 0.22);
}

.form-card .btn {
  width: 100%;
  margin-top: 24px;
}

.form-card__tiny {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(75, 79, 85, 0.85);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  padding: 76px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-d);
}

.footer__logo img {
  width: 360px;
  max-width: 100%;
}

.footer__blurb {
  margin-top: 24px;
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 430px;
}

.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

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

.footer__col address {
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.85;
}

.footer__phone {
  display: block;
  margin-top: 16px;
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 0 34px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  max-width: 820px;
}

.footer__copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

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

/* Progressive header scaling before hamburger */
@media (max-width: 1400px) {
  .header__inner {
    gap: 18px;
  }

  .header__nav {
    gap: 18px;
  }
}

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

  .header__inner {
    height: 96px;
  }

  .about__inner {
    gap: 48px;
  }

  .values__item {
    padding: 36px 28px 32px;
  }

  .ledger__item {
    padding: 32px 24px;
  }

  .consult__inner {
    gap: 48px;
  }

  .footer__top {
    gap: 40px;
  }

  .hero__disc {
    width: 520px;
    height: 520px;
    bottom: -70px;
  }

  .hero__plate-name {
    font-size: 20px;
  }
}

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

  .btn--sm {
    font-size: 15px;
    padding: 12px 20px;
  }
}

/* Nav hamburger breakpoint — 1200px */
@media (max-width: 1200px) {
  .header__cta {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__overlay {
    display: block;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--site-chrome-height, 148px) + 12px) 28px 40px;
    background: #fff;
    box-shadow: -12px 0 40px rgba(23, 24, 26, 0.18);
    z-index: 65;
    transform: translateX(105%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

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

  .header__burger {
    z-index: 80;
  }

  .header__nav-link {
    font-size: 15px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(23, 24, 26, 0.08);
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    width: 100%;
  }

  .header__nav-phone {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  .header__nav-phone:hover {
    color: var(--gold-dk);
  }

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

  .header__inner {
    height: 84px;
  }

  .hero__plate,
  .hero__disc {
    display: none;
  }

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

  .about__media {
    order: -1;
  }

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

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

  .ledger__item {
    border-bottom: 1px solid var(--line-d);
  }

  .ledger__item:nth-child(2n) {
    border-right: 0;
  }

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

  .values__item {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 24, 26, 0.14);
  }

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

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

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

  .accolades__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .accolades__label {
    max-width: none;
  }

  .accolades__strip {
    width: 100%;
    gap: 18px;
  }
}

/* Hero mobile — visual in flow */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

  .hero__inner {
    height: auto;
    align-items: flex-start;
    padding-top: 8px;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 280px;
    margin-top: 20px;
    justify-content: flex-end;
  }

  .hero__image {
    height: min(440px, 70vw);
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(28px, 8vw, 34px);
  }
}

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

  .topbar__left {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
    height: 38px;
  }

  .topbar {
    font-size: 11.5px;
    letter-spacing: 0.14em;
  }

  .about,
  .practice,
  .values,
  .testimonial,
  .consult,
  .results {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .accolades__strip {
    flex-wrap: wrap;
  }

  .accolades__slot {
    flex: 1 1 42%;
    height: 84px;
    padding: 0 10px;
  }

  .accolades__slot + .accolades__slot {
    border-left: 0;
  }

  .accolades__slot:nth-child(2n) {
    border-left: 1px solid rgba(23, 24, 26, 0.1);
  }

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

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

  .ledger__item {
    border-right: 0;
    padding: 28px 0;
  }

  .form-card {
    padding: 30px 22px 28px;
  }

  .about__caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 22px;
  }

  .form-card__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
  }

  .footer__copyright {
    white-space: normal;
  }

  .footer__logo img {
    width: min(360px, 90%);
  }
}

/* Full-width stacked hero CTAs */
@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero__actions .btn {
    width: 100%;
    font-size: 17px;
    padding: 16px 22px;
    white-space: normal;
  }

  .hero__phone {
    font-size: 22px;
    justify-content: center;
  }

  .hero__image {
    height: 300px;
  }

  .form-card .btn {
    font-size: 16px;
    padding: 16px 18px;
    white-space: normal;
  }
}
