/* ===========================================================
   CRISSMAN LAW — vanity-stage homepage
   Leaders Marketing · house style (Ricky)
   =========================================================== */

:root {
  --ink: #0b1622;
  --ink-2: #10202f;
  --ink-3: #16293b;
  --gold: #c8a24c;
  --gold-lt: #f0e09a;
  --gold-dk: #8a5e1e;
  --ivory: #f5f1e9;
  --ivory-2: #ebe5da;
  --slate: #4a5665;
  --line: rgba(200, 162, 76, 0.28);

  --container-max: 1860px;
  --wrap: 95%;
  --pad: 45px;
  --nav: 16px;
  --hero-phone: 24px;
  --cta: 20px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 142px;

  --serif: "Gilda Display", Georgia, "Times New Roman", serif;
  --sans: "Work Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --mark: "Cinzel", Georgia, serif;
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--slate);
  font: 400 17px / 1.75 var(--sans);
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.005em;
}

p {
  margin: 0 0 1.15em;
}

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

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

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

.section {
  padding: 104px 0;
}

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

.section__eyebrow {
  font: 500 12px / 1 var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin: 0 0 20px;
}

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

.section__title {
  font-size: clamp(30px, 3.1vw, 47px);
  line-height: 1.13;
}

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

.section__head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 58px;
}

.section__lede {
  font-size: 18px;
  line-height: 1.8;
  max-width: 66ch;
}

.section__head .section__lede {
  margin: 22px auto 0;
}

.rule {
  width: 64px;
  height: 2px;
  border: 0;
  margin: 22px 0 0;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
}

.rule--mid {
  margin: 22px auto 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font: 600 var(--cta) / 1 var(--sans);
  letter-spacing: 0.01em;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  line-height: 1.35;
  text-align: center;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold) 46%, var(--gold-dk));
  color: #241703;
  box-shadow: 0 12px 30px -14px rgba(138, 94, 30, 0.75);
}

.btn--primary:hover {
  background: var(--gold-lt);
  color: #1b1102;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ivory);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(200, 162, 76, 0.1);
}

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

.tel-link {
  white-space: nowrap;
}

/* ======================= UTILITY BAR ================================== */

.utility {
  background: var(--ink);
  border-bottom: 1px solid rgba(200, 162, 76, 0.16);
  font-size: 13.5px;
  color: rgba(245, 241, 233, 0.62);
}

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

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

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

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

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

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

.header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(200, 162, 76, 0.16);
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  min-height: 96px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
}

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

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

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

.header__nav-link {
  display: block;
  font: 500 var(--nav) / 1 var(--sans);
  color: rgba(245, 241, 233, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  transform: scaleX(1);
}

.header__nav-extras {
  display: none;
}

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

.header__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--ivory);
  cursor: pointer;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.header__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ivory);
  border-radius: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    top 0.28s ease;
}

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

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

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

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

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

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

/* --- logo -------------------------------------------------------------- */

.logo {
  --lm-w: 46px;
  --lm-h: 52px;
  --l-name: 20.5px;
  --l-sub: 9.5px;
  --l-gap: 13px;
  display: flex;
  align-items: center;
  gap: var(--l-gap);
  flex: none;
  flex-shrink: 0;
}

.header .logo {
  --lm-w: 36.8px;
  --lm-h: 41.6px;
  --l-name: 16.4px;
  --l-sub: 7.6px;
  --l-gap: 10.4px;
}

.logo__mark {
  width: var(--lm-w);
  height: var(--lm-h);
  flex: none;
  flex-shrink: 0;
  max-width: none;
}

.logo__type {
  display: block;
}

.logo__name {
  font: 500 var(--l-name) / 1 var(--mark);
  letter-spacing: 0.155em;
  color: #f7f5f1;
  white-space: nowrap;
}

.logo__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.logo__sub span {
  font: 400 var(--l-sub) / 1 var(--mark);
  letter-spacing: 0.3em;
  color: rgba(247, 245, 241, 0.72);
  white-space: nowrap;
}

.logo__sub i {
  flex: 1;
  height: 1px;
  background: rgba(200, 162, 76, 0.5);
  min-width: 14px;
}

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

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

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    var(--ink) 0%,
    rgba(11, 22, 34, 0.96) 38%,
    rgba(11, 22, 34, 0.6) 66%,
    rgba(11, 22, 34, 0.82) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  background: url("../assets/images/texture-grain.jpg") center / 620px repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

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

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

.hero__title {
  color: #fcfaf6;
  font-size: clamp(31px, 3.5vw, 52px);
  line-height: 1.1;
  text-wrap: balance;
}

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

.hero__text {
  color: rgba(245, 241, 233, 0.8);
  font-size: 17.5px;
  line-height: 1.82;
  margin: 26px 0 0;
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  margin: 38px 0 0;
  flex-wrap: wrap;
}

.hero__tel {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero__tel-label {
  font: 500 11.5px / 1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 224, 154, 0.72);
}

.hero__tel-link {
  font-family: var(--serif);
  font-size: var(--hero-phone);
  line-height: 1.1;
  color: #fcfaf6;
}

.hero__tel-link: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;
  z-index: 1;
  pointer-events: none;
}

.hero__arc {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(158%, 700px);
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(
    120% 88% at 50% 100%,
    rgba(200, 162, 76, 0.34),
    rgba(200, 162, 76, 0.07) 58%,
    transparent 72%
  );
}

.hero__glow {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: min(132%, 600px);
  height: 120px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(240, 224, 154, 0.3), transparent 70%);
  filter: blur(2px);
}

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

.hero__nameplate {
  position: absolute;
  z-index: 3;
  left: clamp(8px, 2vw, 24px);
  bottom: 0;
  padding: 15px 24px 17px;
  background: var(--ink);
  border-left: 2px solid var(--gold);
  border-top: 1px solid rgba(200, 162, 76, 0.34);
  box-shadow: -14px -14px 34px -18px rgba(0, 0, 0, 0.8);
  pointer-events: auto;
}

.hero__nameplate strong {
  display: block;
  font: 400 20px / 1.2 var(--serif);
  color: #fcfaf6;
}

.hero__nameplate span {
  display: block;
  margin-top: 5px;
  font: 500 11px / 1 var(--sans);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.accolades {
  background: var(--ink-2);
  border-top: 1px solid rgba(200, 162, 76, 0.22);
  border-bottom: 1px solid rgba(200, 162, 76, 0.22);
}

.accolades__inner {
  padding-top: 38px;
  padding-bottom: 38px;
}

.accolades__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.accolades__head p {
  margin: 0;
  font: 500 12px / 1 var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.accolades__head i {
  flex: 1;
  height: 1px;
  background: rgba(200, 162, 76, 0.22);
}

.accolades__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6px clamp(14px, 2.4vw, 40px);
  border-left: 1px solid rgba(245, 241, 233, 0.1);
}

.badge:first-child {
  border-left: 0;
}

.badge img {
  width: auto;
  max-width: 100%;
}

.badge--round img {
  max-height: 92px;
}

.badge--ntl img {
  max-height: 84px;
}

.badge--type img {
  max-height: 46px;
}

.badge--aaj img {
  max-height: 68px;
}

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

.about {
  background: var(--ivory);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
}

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

.about__figure img {
  width: 100%;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

.about__figure::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -18px;
  top: -18px;
  width: 58%;
  height: 58%;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
}

.about__figure::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 42%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.about__body {
  max-width: 62ch;
}

.about__body .rule {
  margin-bottom: 30px;
}

.about__body p {
  font-size: 17px;
}

.about__pull {
  margin: 32px 0 0;
  padding: 24px 30px;
  background: #fffdf9;
  border-left: 2px solid var(--gold);
  font: 400 19px / 1.62 var(--serif);
  color: var(--ink);
}

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

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

.practice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.practice-card {
  background: #fffdf9;
  border: 1px solid rgba(11, 22, 34, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 3px;
}

.practice-card__media {
  position: relative;
  aspect-ratio: 10 / 6.4;
  overflow: hidden;
}

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

.practice-card:hover .practice-card__media img {
  transform: scale(1.045);
}

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(11, 22, 34, 0.5));
}

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

.practice-card__title {
  font-size: 24px;
  line-height: 1.25;
}

.practice-card__body p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.72;
}

.practice-card__more {
  margin-top: auto;
  padding-top: 22px;
  font: 600 13px / 1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card__more i {
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: width 0.24s ease;
}

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

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

.results {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

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

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(11, 22, 34, 0.9), rgba(11, 22, 34, 0.72));
}

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

.results .section__lede {
  color: rgba(245, 241, 233, 0.74);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(200, 162, 76, 0.22);
}

.result {
  padding: 44px 34px 40px;
  border-right: 1px solid rgba(200, 162, 76, 0.22);
  display: flex;
  flex-direction: column;
}

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

.result__amount {
  display: block;
  font: 400 clamp(30px, 2.7vw, 41px) / 1 var(--serif);
  color: var(--gold-lt);
  letter-spacing: -0.01em;
}

.result__label {
  display: block;
  margin: 16px 0 auto;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(245, 241, 233, 0.76);
}

.result__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px auto 0 0;
  align-self: flex-start;
  font: 600 12.5px / 1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.result__link i {
  width: 20px;
  height: 1px;
  background: var(--gold);
  transition: width 0.24s ease;
}

.result__link:hover i {
  width: 34px;
}

.disclaimer {
  margin: 34px 0 0;
  font-size: 13px;
  line-height: 1.7;
  max-width: 84ch;
}

.disclaimer--light {
  color: rgba(245, 241, 233, 0.58);
}

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

.values {
  background: var(--ivory);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value {
  padding: 0 clamp(20px, 2.4vw, 38px);
  border-left: 1px solid var(--ivory-2);
  display: flex;
  flex-direction: column;
}

.value:first-child {
  padding-left: 0;
  border-left: 0;
}

.value:last-child {
  padding-right: 0;
}

.value__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}

.value__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold-dk);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value__title {
  font-size: 22px;
  line-height: 1.3;
  text-wrap: balance;
}

.value p {
  margin: 14px 0 auto;
  font-size: 16px;
}

.value__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  align-self: flex-start;
  font: 600 12.5px / 1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.value__link i {
  width: 20px;
  height: 1px;
  background: var(--gold);
  transition: width 0.24s ease;
}

.value__link:hover i {
  width: 34px;
}

/* ======================= TESTIMONIAL ================================== */

.testimonial {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}

.testimonial__grain {
  position: absolute;
  inset: 0;
  background: url("../assets/images/texture-grain.jpg") center / 560px repeat;
  opacity: 0.045;
  mix-blend-mode: overlay;
}

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

.testimonial__grid {
  display: grid;
  grid-template-columns: minmax(250px, 35%) minmax(0, 1fr);
  gap: clamp(34px, 4.6vw, 76px);
  align-items: center;
}

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

.testimonial__figure img {
  width: 100%;
  border-radius: 2px;
}

.testimonial__figure::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200, 162, 76, 0.5);
  pointer-events: none;
}

.testimonial__body {
  max-width: 74ch;
}

.testimonial__mark {
  font: 400 84px / 0.6 var(--serif);
  color: var(--gold);
  display: block;
  height: 44px;
}

.testimonial__quote {
  margin: 0;
  color: rgba(245, 241, 233, 0.9);
  font: 400 clamp(19px, 1.55vw, 25px) / 1.66 var(--serif);
}

.testimonial__by {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 0;
}

.testimonial__by i {
  width: 34px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.testimonial__by span {
  font: 500 12.5px / 1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
}

.stars svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
}

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

.contact {
  background: var(--ivory);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  gap: clamp(38px, 5vw, 84px);
  align-items: start;
}

.contact__info .rule {
  margin-bottom: 30px;
}

.contact__list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__item svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 4px;
  stroke: var(--gold-dk);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__label {
  display: block;
  font: 600 12px / 1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 7px;
}

.contact__item p {
  margin: 0;
  font-size: 16.5px;
  color: var(--ink);
}

.form {
  background: #fffdf9;
  border: 1px solid rgba(11, 22, 34, 0.08);
  padding: clamp(28px, 3vw, 44px);
  border-radius: 3px;
  box-shadow: 0 26px 60px -40px rgba(11, 22, 34, 0.45);
}

.form__title {
  font-size: 26px;
  line-height: 1.25;
}

.form > p {
  margin: 12px 0 0;
  font-size: 15.5px;
}

.form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 0;
}

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

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

.form__field label {
  font: 600 11.5px / 1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

.form__field input,
.form__field select,
.form__field textarea {
  font: 400 16px / 1.4 var(--sans);
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(11, 22, 34, 0.16);
  border-radius: 2px;
  padding: 0 14px;
  height: 40px;
  width: 100%;
  transition: border-color 0.2s ease;
}

.form__field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%234A5665' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 36px;
}

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

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--gold);
  outline: none;
}

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

.form__note {
  margin: 16px 0 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: #7c8794;
}

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

.footer {
  background: var(--ink);
  color: rgba(245, 241, 233, 0.66);
  border-top: 1px solid rgba(200, 162, 76, 0.2);
}

.footer__inner {
  padding-top: 76px;
  padding-bottom: 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(30px, 4vw, 72px);
  padding-bottom: 52px;
}

.footer__heading {
  color: #fcfaf6;
  font-size: 18px;
  margin-bottom: 22px;
}

.footer p {
  font-size: 15.5px;
  line-height: 1.8;
}

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

.footer .logo {
  margin-bottom: 24px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  font-size: 15.5px;
}

.footer__tel {
  font: 400 26px / 1.2 var(--serif);
  color: var(--gold-lt);
  display: inline-block;
  margin-bottom: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(245, 241, 233, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245, 241, 233, 0.44);
}

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

/* Scale nav / CTA before hamburger takes over */
@media (max-width: 1400px) {
  :root {
    --nav: 14.5px;
    --cta: 18px;
  }

  .btn--sm {
    font-size: 14.5px;
    padding: 12px 22px;
  }
}

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

  .header__nav-list {
    gap: clamp(10px, 1.2vw, 22px);
  }

  .btn--sm {
    font-size: 13.5px;
    padding: 11px 18px;
  }
}

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(11, 22, 34, 0.55);
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .header__overlay[hidden] {
    display: none;
  }

  .header__inner {
    z-index: 2;
    min-height: 82px;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    background: var(--ink);
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 84px 28px 40px;
    background: var(--ink-2);
    border-left: 1px solid rgba(200, 162, 76, 0.22);
    z-index: 2;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

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

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

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

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

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

  .header__nav-phone {
    font: 400 22px / 1.2 var(--serif);
    color: var(--gold-lt);
  }

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

  .accolades__row {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .result:nth-child(1),
  .result:nth-child(2) {
    border-bottom: 1px solid rgba(200, 162, 76, 0.22);
  }

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

  .value:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .value:nth-child(2),
  .value:nth-child(4) {
    padding-right: 0;
  }

  .practice__grid {
    gap: 22px;
  }
}

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

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

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

  .about__figure {
    max-width: 520px;
  }

  .testimonial__figure {
    max-width: 420px;
  }

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

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100vh - var(--site-chrome-height));
    min-height: calc(100dvh - var(--site-chrome-height));
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(32px, 6vw, 48px) clamp(16px, 4vw, 28px) 0;
    display: flex;
    flex-direction: column;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 clamp(20px, 4vw, 32px);
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: min(520px, 70vw);
    margin-top: auto;
  }

  .hero__image {
    height: 100%;
  }
}

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

  .container {
    width: 100%;
  }

  body {
    font-size: 16.5px;
  }

  .section {
    padding: 62px 0;
  }

  .utility {
    font-size: 12.5px;
  }

  .utility__inner {
    padding-top: 9px;
    padding-bottom: 9px;
    justify-content: center;
    text-align: center;
    gap: 8px 20px;
  }

  .logo {
    --lm-w: 38px;
    --lm-h: 44px;
    --l-name: 17px;
    --l-sub: 8.5px;
    --l-gap: 11px;
  }

  .header .logo {
    --lm-w: 30.4px;
    --lm-h: 35.2px;
    --l-name: 13.6px;
    --l-sub: 6.8px;
    --l-gap: 9px;
  }

  .logo__name {
    letter-spacing: 0.13em;
  }

  .logo__sub span {
    letter-spacing: 0.24em;
  }

  .hero__actions {
    gap: 22px;
  }

  .hero__nameplate {
    left: 0;
    bottom: 20px;
    padding: 11px 16px;
  }

  .hero__nameplate strong {
    font-size: 17px;
  }

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

  .badge {
    padding: 6px 14px;
  }

  .badge:nth-child(3) {
    border-left: 0;
  }

  .badge--round img {
    max-height: 74px;
  }

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

  .badge--type img {
    max-height: 38px;
  }

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

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

  .result {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 162, 76, 0.22);
    padding: 32px 24px;
  }

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

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

  .value {
    padding: 0;
    border-left: 0;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 40px;
  }

  .about__figure::before,
  .about__figure::after {
    display: none;
  }

  .about__pull {
    padding: 20px 22px;
    font-size: 17.5px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 15px 22px;
    font-size: 16px;
  }

  .header__cta .btn,
  .header__nav-extras .btn {
    width: 100%;
  }
}

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