/* ============================================================
   Hastings, Cohan & Walsh, LLP
   Type: Libre Caslon Display / Public Sans
   ============================================================ */

:root {
  --ink: #0b1220;
  --navy: #10192a;
  --navy-2: #16263f;
  --navy-3: #1d3050;
  --brass: #c0a062;
  --brass-lt: #dfc792;
  --brass-dk: #9c7f45;
  --bone: #f5f3ee;
  --bone-2: #eae6dd;
  --paper: #ffffff;
  --slate: #5c6675;
  --slate-dk: #39424f;
  --line: rgba(192, 160, 98, 0.3);
  --line-dk: rgba(11, 18, 32, 0.12);

  --ff-display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --ff-body: "Public Sans", "Helvetica Neue", Arial, sans-serif;

  --pad: 45px;
  --container-max: 1824px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 136px;
}

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

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

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

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

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

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

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

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

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

h1 {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.14;
}

h3 {
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1.28;
}

p {
  margin: 0 0 1.15em;
}

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

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

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

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

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

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

.rule {
  height: 3px;
  width: 74px;
  background: linear-gradient(
    to bottom,
    var(--brass) 0 1px,
    transparent 1px 2px,
    var(--brass) 2px 3px
  );
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  padding: 20px 40px;
  border-radius: 999px;
  border: 1px solid var(--brass);
  background: var(--brass);
  color: var(--ink);
  white-space: nowrap;
  max-width: 100%;
  cursor: pointer;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.btn:hover {
  background: var(--brass-lt);
  border-color: var(--brass-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(192, 160, 98, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--brass-lt);
  border-color: rgba(223, 199, 146, 0.55);
}

.btn--ghost:hover {
  background: rgba(223, 199, 146, 0.1);
  color: var(--brass-lt);
  border-color: var(--brass-lt);
  box-shadow: none;
}

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

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

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

.topbar {
  background: var(--ink);
  border-bottom: 1px solid rgba(192, 160, 98, 0.16);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.62);
  font-weight: 500;
}

.topbar__address,
.topbar__inner > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

/* ============================================================
   HEADER & NAV
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 18, 32, 0.96);
  border-bottom: 1px solid rgba(192, 160, 98, 0.18);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: saturate(140%) blur(9px);
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.8vw, 34px);
  min-height: 92px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex: 0 0 auto;
  display: block;
}

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

.header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(192, 160, 98, 0.4);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.header__toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1.5px;
  margin-left: -10px;
  background: var(--brass-lt);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.header__toggle-bar:nth-child(1) {
  transform: translateY(-6px);
}

.header__toggle-bar:nth-child(2) {
  transform: translateY(0);
}

.header__toggle-bar:nth-child(3) {
  transform: translateY(6px);
}

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

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

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

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

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

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

.header__nav-link {
  display: block;
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.86);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: #fff;
}

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

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  flex-shrink: 0;
}

.header__phone {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.35vw, 21px);
  color: var(--brass-lt);
  white-space: nowrap;
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(12px, 0.95vw, 15px);
  padding: clamp(10px, 0.85vw, 14px) clamp(16px, 1.5vw, 28px);
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--ink) 4%,
    rgba(11, 18, 32, 0.9) 34%,
    rgba(11, 18, 32, 0.48) 62%,
    rgba(11, 18, 32, 0.66) 100%
  );
}

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

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

.hero__title {
  color: #fff;
  font-size: clamp(40px, 4.5vw, 66px);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.5);
}

.hero__amp {
  color: var(--brass-lt);
  font-style: italic;
}

.hero__tagline {
  font-family: var(--ff-display);
  font-size: clamp(21px, 1.75vw, 29px);
  color: var(--brass-lt);
  margin: 16px 0 0;
  letter-spacing: 0.005em;
}

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

.hero__phone {
  font-family: var(--ff-display);
  font-size: 24px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

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

.hero__phone svg {
  flex: none;
  width: 17px;
  height: 17px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.7;
}

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

.hero__actions .btn {
  padding-left: 30px;
  padding-right: 30px;
  flex: 0 0 auto;
}

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

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

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

.accolades {
  background: var(--navy);
  border-top: 1px solid rgba(192, 160, 98, 0.18);
  border-bottom: 1px solid rgba(192, 160, 98, 0.1);
}

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

.accolades__label {
  flex: 0 0 auto;
  max-width: 186px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  line-height: 1.7;
}

.accolades__row {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  align-items: center;
}

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

.accolades__item {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__item img {
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.accolades__item--seal img {
  height: 84px;
}

.accolades__item--ntl img {
  height: 68px;
}

.accolades__item--aaj img {
  height: 58px;
}

.accolades__item--sl img {
  height: 44px;
}

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

.about {
  background: var(--paper);
  padding: 118px 0;
}

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

.about__media {
  position: relative;
  z-index: 0;
}

.about__image {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 3px;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 16px 16px -16px -16px;
  border: 1px solid var(--brass);
  opacity: 0.5;
  border-radius: 3px;
  z-index: -1;
}

.about__stamp {
  position: absolute;
  right: -30px;
  bottom: 44px;
  background: var(--ink);
  color: var(--bone);
  padding: 26px 30px;
  border-top: 2px solid var(--brass);
  max-width: 242px;
}

.about__stamp-title {
  display: block;
  font-family: var(--ff-display);
  font-size: 38px;
  color: var(--brass-lt);
  line-height: 1;
}

.about__stamp-text {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.6;
}

.about__subtitle {
  font-family: var(--ff-display);
  font-size: clamp(21px, 1.6vw, 27px);
  color: var(--brass-dk);
  margin: 0 0 22px;
}

.about__body p {
  color: var(--slate);
  max-width: 64ch;
}

.about__cta {
  margin-top: 34px;
  padding: 24px 30px;
  background: var(--bone);
  border-left: 2px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.about__cta-text {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--ink);
  margin: 0;
  max-width: 46ch;
}

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

.practice {
  background: var(--bone);
  padding: 116px 0;
}

.practice__head {
  max-width: 660px;
  margin-bottom: 56px;
}

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

.practice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  overflow: hidden;
  border: 1px solid var(--line-dk);
  transition:
    transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease;
}

.practice-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(11, 18, 32, 0.16);
  border-color: var(--brass);
}

.practice-card__media {
  position: relative;
  height: 236px;
  overflow: hidden;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.72), rgba(11, 18, 32, 0.06) 62%);
}

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

.practice-card__title {
  margin-bottom: 12px;
}

.practice-card__text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0;
}

.practice-card__more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brass-dk);
}

.practice-card__more svg {
  width: 16px;
  height: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform 0.3s ease;
}

.practice-card:hover .practice-card__more svg {
  transform: translateX(5px);
}

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

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

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

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

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

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

.results__title {
  color: #fff;
}

.results__note {
  font-size: 13.5px;
  color: rgba(245, 243, 238, 0.55);
  max-width: 40ch;
  margin: 0;
}

.ledger {
  margin-top: 44px;
  border-top: 1px solid rgba(192, 160, 98, 0.3);
}

.ledger__row {
  display: grid;
  grid-template-columns: 78px minmax(0, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  padding: 34px 8px;
  border-bottom: 1px solid rgba(192, 160, 98, 0.16);
  transition: background 0.35s ease, padding-left 0.35s ease;
}

.ledger__row:hover {
  background: rgba(192, 160, 98, 0.055);
  padding-left: 20px;
}

.ledger__index {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: rgba(192, 160, 98, 0.75);
}

.ledger__figure {
  font-family: var(--ff-display);
  font-size: clamp(34px, 3.4vw, 52px);
  color: var(--brass-lt);
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.ledger__desc {
  font-size: 16.5px;
  color: rgba(245, 243, 238, 0.82);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.values {
  background: var(--paper);
  padding: 116px 0;
}

.values__head {
  max-width: 640px;
  margin-bottom: 60px;
}

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

.value {
  padding: 0 38px;
  border-left: 1px solid var(--line-dk);
}

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

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

.value__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
}

.value__icon svg {
  width: 23px;
  height: 23px;
  stroke: var(--brass-dk);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value__title {
  margin-bottom: 13px;
}

.value__text {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--slate);
  margin: 0;
}

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

.testimonial {
  position: relative;
  padding: 124px 0;
  background: var(--navy-2);
  overflow: hidden;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-testimonial.jpg");
  background-size: cover;
  background-position: 62% 42%;
}

.testimonial__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 18, 32, 0.95) 0%,
    rgba(11, 18, 32, 0.8) 52%,
    rgba(11, 18, 32, 0.55) 100%
  );
}

.testimonial__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.testimonial__quote {
  font-family: var(--ff-display);
  font-size: clamp(27px, 2.6vw, 42px);
  line-height: 1.26;
  color: #fff;
  margin: 0;
}

.testimonial__body {
  margin-top: 28px;
  font-size: 17.5px;
  line-height: 1.8;
  color: rgba(245, 243, 238, 0.78);
  max-width: 74ch;
}

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

.testimonial__rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--brass);
  flex: none;
}

.testimonial__name {
  font-size: 12.5px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

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

.testimonial__stars svg {
  width: 17px;
  height: 17px;
  fill: var(--brass);
}

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

.contact {
  position: relative;
  background: var(--bone);
  padding: 116px 0;
  overflow: hidden;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 80px;
  align-items: start;
}

.contact__lede {
  color: var(--slate);
  margin-top: 22px;
  max-width: 52ch;
}

.contact-info {
  margin-top: 40px;
  display: grid;
  gap: 26px;
}

.contact-info__row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brass-dk);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__label {
  font-size: 11px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 5px;
}

.contact-info__value {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.45;
}

.contact-info__value a:hover {
  color: var(--brass-dk);
}

.form {
  background: var(--paper);
  padding: 46px;
  border-top: 2px solid var(--brass);
  box-shadow: 0 26px 60px rgba(11, 18, 32, 0.1);
}

.form__title {
  margin-bottom: 6px;
}

.form__note {
  font-size: 13.5px;
  color: var(--slate);
  margin: 0 0 30px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.form__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

.form__input,
.form__select {
  height: 40px;
  padding: 0 14px;
}

.form__textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: var(--bone);
  border: 1px solid var(--line-dk);
  border-radius: 2px;
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--paper);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' fill='none' stroke='%235C6675' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

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

.form__fine {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--slate);
}

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

.footer {
  position: relative;
  background: var(--ink);
  color: rgba(245, 243, 238, 0.7);
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-footer.jpg");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.14;
}

.footer__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.9), rgba(11, 18, 32, 0.97));
}

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

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 56px;
  padding: 86px 0 62px;
}

.footer__logo img {
  width: 236px;
  height: auto;
  max-width: none;
}

.footer__blurb {
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.75;
  max-width: 38ch;
  color: rgba(245, 243, 238, 0.62);
}

.footer__heading {
  font-size: 12px;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}

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

.footer__link {
  font-size: 15px;
  color: rgba(245, 243, 238, 0.72);
  transition: color 0.22s ease;
}

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

.footer__address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 243, 238, 0.72);
}

.footer__phone {
  display: block;
  margin-top: 18px;
  font-family: var(--ff-display);
  font-size: 23px;
  color: var(--brass-lt);
}

.footer__bottom {
  border-top: 1px solid rgba(192, 160, 98, 0.18);
  padding: 30px 0 44px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.48);
  max-width: 82ch;
  margin: 0;
}

.footer__copy {
  font-size: 12.5px;
  color: rgba(245, 243, 238, 0.48);
  white-space: nowrap;
}

/* ============================================================
   MOTION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal--delay-1 {
  transition-delay: 90ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

.reveal--delay-3 {
  transition-delay: 270ms;
}

.reveal.is-inview {
  opacity: 1;
  transform: none;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-up 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero__content > *:nth-child(1) {
  animation-delay: 0.1s;
}

.hero__content > *:nth-child(2) {
  animation-delay: 0.22s;
}

.hero__content > *:nth-child(3) {
  animation-delay: 0.34s;
}

.hero__content > *:nth-child(4) {
  animation-delay: 0.46s;
}

.hero__content > *:nth-child(5) {
  animation-delay: 0.58s;
}

.hero__visual {
  opacity: 0;
  animation: vanity-in 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
}

@keyframes hero-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes vanity-in {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero__content > *,
  .hero__visual {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .practice-card,
  .practice-card__image,
  .ledger__row,
  .btn {
    transition: none !important;
  }
}

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

@media (max-width: 1420px) {
  .about__grid {
    gap: 56px;
  }

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

  .value {
    padding: 0 34px;
  }

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

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(11, 18, 32, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
  }

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

  .header__inner {
    z-index: 2;
  }

  .header__toggle {
    display: flex;
    margin-left: auto;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 84px 28px 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    background: var(--navy);
    border-left: 1px solid rgba(192, 160, 98, 0.22);
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
      visibility 0.35s;
    overflow-y: auto;
  }

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

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

  .header__nav-link {
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(192, 160, 98, 0.16);
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: auto;
    padding-top: 12px;
  }

  .header__nav-extras .header__phone {
    font-size: 22px;
  }

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

  .header__cta {
    display: none;
  }
}

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

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

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

  .accolades__label {
    max-width: none;
  }

  .accolades__row {
    width: 100%;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .header__inner {
    min-height: 88px;
    gap: 16px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about__image {
    height: 480px;
  }

  .about__stamp {
    right: 16px;
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-top: 66px;
  }

  .ledger__row {
    grid-template-columns: 56px minmax(0, 1fr);
    row-gap: 14px;
    column-gap: 24px;
  }

  .ledger__desc {
    grid-column: 2;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  .hero__actions {
    flex-wrap: wrap;
  }
}

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

  body {
    font-size: 16px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
    display: flex;
    flex-direction: column;
  }

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

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

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 400px;
    justify-content: center;
    opacity: 1;
    animation: none;
  }

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

  .topbar__inner .topbar__address {
    display: none;
  }

  .topbar__inner {
    min-height: 0;
    padding: 11px 0;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
    justify-content: flex-start;
  }

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

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

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

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

  .hero__meta {
    gap: 18px;
  }

  .about__image {
    height: 360px;
  }

  .about__stamp {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    max-width: none;
  }

  .about__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__cta .btn {
    width: 100%;
  }

  .form {
    padding: 30px 24px;
  }

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

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

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

  .btn {
    font-size: 18px;
    padding: 17px 30px;
  }

  .results,
  .practice,
  .values,
  .about,
  .contact,
  .testimonial {
    padding: 74px 0;
  }
}

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

  .hero__actions .btn {
    flex: 1 1 100%;
    width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
}
