:root {
  --ink: #14110F;
  --ink-2: #1C1815;
  --panel: #231E19;
  --bronze: #B58B4C;
  --bronze-lt: #D9B67C;
  --bone: #F5F1EA;
  --bone-2: #EBE5DA;
  --body: #4A4239;
  --rule: rgba(181, 139, 76, 0.30);
  --pad: 45px;
  --display: "Petrona", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
}

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

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

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

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

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

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

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

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

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

h1 {
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.13;
}

h3 {
  font-size: 22px;
  line-height: 1.24;
}

p {
  margin: 0 0 18px;
}

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

/* ---------- eyebrow ---------- */
.eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 20px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--bronze);
  flex: none;
  margin-top: 9px;
}

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

.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--bronze);
  flex: none;
  margin-top: 9px;
}

.eyebrow--light,
.cases--dark .eyebrow,
.testimonial--dark .eyebrow {
  color: var(--bronze-lt);
}

.eyebrow--light::before,
.eyebrow--light::after,
.cases--dark .eyebrow::before,
.cases--dark .eyebrow::after,
.testimonial--dark .eyebrow::before,
.testimonial--dark .eyebrow::after {
  background: var(--bronze-lt);
}

/* ---------- 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;
  padding: 19px 38px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  max-width: 100%;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn--primary {
  background: var(--bronze);
  color: #17130F;
}

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

.btn--ghost {
  border-color: rgba(245, 241, 234, 0.42);
  color: var(--bone);
}

.btn--ghost:hover {
  border-color: var(--bronze-lt);
  color: var(--bronze-lt);
}

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

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

.read-more span {
  width: 20px;
  height: 1px;
  background: var(--bronze);
  transition: width 0.25s ease;
}

.read-more:hover span {
  width: 34px;
}

.read-more--light {
  color: var(--bronze-lt);
}

.read-more--light span {
  background: var(--bronze-lt);
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.utility__dot {
  color: var(--bronze);
  margin: 0 10px;
}

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

/* ---------- header ---------- */
.header {
  background: var(--ink-2);
  border-bottom: 1px solid rgba(181, 139, 76, 0.22);
  position: relative;
  z-index: 100;
}

.header__bar {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 36px);
  padding-top: 18px;
  padding-bottom: 18px;
}

.header__brand {
  flex-shrink: 0;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-left: auto;
  flex-wrap: nowrap;
}

.header__nav-link {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: var(--bone);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
}

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

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  right: 0;
}

.header__cta {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  padding: clamp(10px, 1vw, 14px) clamp(16px, 1.6vw, 28px);
}

.header__cta--panel {
  display: none;
}

.header__nav-extras {
  display: none;
}

.header__nav-close {
  display: none;
}

.header__overlay {
  display: none;
}

.header__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(181, 139, 76, 0.35);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

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

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

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(16px, 2.5vw, 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;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 50%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(14, 12, 10, 0.96) 0%,
    rgba(14, 12, 10, 0.90) 34%,
    rgba(18, 15, 12, 0.58) 58%,
    rgba(20, 17, 14, 0.42) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(4px, 1vw, 12px);
  padding-right: clamp(4px, 1vw, 12px);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 600px);
  width: min(100%, 55%);
  color: var(--bone);
  padding: clamp(8px, 1.5vw, 28px) clamp(8px, 2vw, 20px) 0 0;
}

.hero__content h1 {
  color: var(--bone);
  text-wrap: balance;
}

.hero__content h1 em {
  font-style: normal;
  color: var(--bronze-lt);
}

.hero__subtitle {
  color: rgba(245, 241, 234, 0.80);
  font-size: 17px;
  margin: 22px 0 30px;
  max-width: 540px;
}

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

.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__phone-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
}

.hero__phone-link {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.01em;
}

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

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

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

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze) 0%, rgba(181, 139, 76, 0.15) 70%, transparent 100%);
  z-index: 4;
}

/* ---------- accolades ---------- */
.accolades {
  background: var(--bone-2);
  border-bottom: 1px solid rgba(20, 17, 15, 0.08);
}

.accolades .container {
  padding-top: 38px;
  padding-bottom: 38px;
}

.accolades__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.accolades__slot {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
}

.accolades__slot:not(:last-child) {
  border-right: 1px solid rgba(20, 17, 15, 0.10);
}

.accolades__slot img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.accolades__slot--1 img {
  height: 84px;
}

.accolades__slot--2 img {
  height: 68px;
}

.accolades__slot--4 img {
  height: 40px;
}

.accolades__slot--5 img {
  height: 52px;
}

/* ---------- about ---------- */
.about {
  background: var(--bone);
}

.about .container {
  padding-top: 104px;
  padding-bottom: 104px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 104px;
  height: 104px;
  border-left: 3px solid var(--bronze);
  border-top: 3px solid var(--bronze);
}

.about__body h2 {
  margin-bottom: 24px;
  text-wrap: balance;
}

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

.about__special {
  margin-top: 34px;
  padding: 26px 32px;
  background: var(--ink);
  color: var(--bone);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--bronze);
}

.about__special-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-lt);
}

.about__special-link {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  color: var(--bone);
}

.about__special-link:hover {
  color: var(--bronze-lt);
}

/* ---------- practice ---------- */
.practice {
  background: var(--bone-2);
}

.practice .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

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

.practice-card {
  background: var(--bone);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(20, 17, 15, 0.16);
}

.practice-card__thumb {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0) 40%, rgba(20, 17, 15, 0.55) 100%);
}

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

.practice-card__body h3 {
  margin-bottom: 14px;
}

.practice-card__rule {
  width: 38px;
  height: 2px;
  background: var(--bronze);
  margin-bottom: 16px;
}

.practice-card__body p {
  font-size: 15px;
  margin-bottom: 22px;
  flex: 1;
}

/* ---------- cases ---------- */
.cases {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}

.cases__bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.cases__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases__mark {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  opacity: 0.05;
  pointer-events: none;
}

.cases .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.cases h2 {
  color: var(--bone);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(181, 139, 76, 0.34);
}

.case {
  padding: 38px 34px 34px;
  border-right: 1px solid rgba(181, 139, 76, 0.20);
}

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

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

.case__charge {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.28;
  color: var(--bone);
  margin-bottom: 22px;
}

.case__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  margin-bottom: 8px;
}

.case__outcome {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.14;
  color: var(--bronze-lt);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

/* ---------- values ---------- */
.values {
  background: var(--bone);
}

.values .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.value {
  padding-top: 26px;
  border-top: 2px solid var(--bronze);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.value h3 {
  font-size: 21px;
  margin-bottom: 14px;
  text-wrap: balance;
}

.value p {
  font-size: 15px;
  margin-bottom: 22px;
  flex: 1;
}

/* ---------- testimonial ---------- */
.testimonial {
  background: var(--panel);
  color: var(--bone);
}

.testimonial .container {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
}

.testimonial h2 {
  color: var(--bone);
  max-width: 820px;
  margin: 0 auto 44px;
}

.testimonial__quote {
  margin: 0 auto;
  max-width: 900px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.94);
}

.testimonial__mark {
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--bronze);
  display: block;
  margin-bottom: 18px;
}

.testimonial__cite {
  display: block;
  margin-top: 30px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-lt);
}

/* ---------- contact ---------- */
.contact {
  background: var(--bone-2);
}

.contact .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.contact__info h2 {
  margin-bottom: 22px;
  text-wrap: balance;
}

.contact__info > p {
  font-size: 17px;
  margin-bottom: 34px;
  max-width: 460px;
}

.contact__list {
  display: grid;
  gap: 26px;
  border-top: 1px solid rgba(20, 17, 15, 0.12);
  padding-top: 28px;
}

.contact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 6px;
}

.contact__value {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.4;
}

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

.form-card {
  background: var(--ink);
  padding: 44px 42px;
  border-top: 3px solid var(--bronze);
}

.form-card h3 {
  color: var(--bone);
  font-size: 26px;
  margin-bottom: 8px;
}

.form-card__sub {
  color: rgba(245, 241, 234, 0.6);
  font-size: 14px;
  margin-bottom: 28px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.62);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 40px;
  background: rgba(245, 241, 234, 0.06);
  color: var(--bone);
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: 3px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.55;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 241, 234, 0.34);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bronze);
  background: rgba(245, 241, 234, 0.1);
  outline: none;
}

.form-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-card__submit {
  width: 100%;
  margin-top: 10px;
}

.form-card__note {
  font-size: 12px;
  color: rgba(245, 241, 234, 0.44);
  margin-top: 16px;
  line-height: 1.6;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.66);
}

.footer .container {
  padding-top: 72px;
  padding-bottom: 36px;
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 56px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(181, 139, 76, 0.22);
}

.footer__brand img {
  height: 165px;
  width: auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding-top: 8px;
}

.footer__nav a {
  font-size: 15px;
  color: var(--bone);
}

.footer__nav a:hover {
  color: var(--bronze-lt);
}

.footer__contact {
  text-align: right;
  padding-top: 8px;
}

.footer__contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
}

.footer__address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone);
  margin-bottom: 18px;
}

.footer__phone {
  font-family: var(--display);
  font-size: 24px;
  color: var(--bone);
}

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

.footer__bottom {
  padding-top: 28px;
  display: grid;
  gap: 14px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(245, 241, 234, 0.48);
}

.footer__disclaimer {
  max-width: 960px;
}

/* ---------- progressive header scaling before hamburger ---------- */
@media (max-width: 1320px) {
  .header__nav {
    gap: 18px;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .header__cta--bar {
    font-size: 14px;
    padding: 12px 22px;
  }
}

@media (max-width: 1240px) {
  .header__bar {
    gap: 14px;
  }

  .header__nav {
    gap: 14px;
  }

  .header__nav-link {
    font-size: 13px;
  }

  .header__cta--bar {
    font-size: 13px;
    padding: 11px 18px;
  }
}

/* ---------- nav breakpoint: hamburger below 1200px ---------- */
@media (max-width: 1200px) {
  .header__toggle {
    display: flex;
  }

  .header__cta--bar {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(14, 12, 10, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 110;
  }

  .header--nav-open .header__overlay {
    opacity: 1;
    visibility: visible;
  }

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

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

  .header__nav-close {
    display: flex;
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 139, 76, 0.35);
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .header__nav-close-icon {
    position: relative;
    width: 18px;
    height: 18px;
  }

  .header__nav-close-icon::before,
  .header__nav-close-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--bone);
  }

  .header__nav-close-icon::before {
    transform: rotate(45deg);
  }

  .header__nav-close-icon::after {
    transform: rotate(-45deg);
  }

  .header__nav-link {
    font-size: 18px;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(245, 241, 234, 0.08);
  }

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

  .header__nav-phone {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 600;
    color: var(--bone);
  }

  .header__nav-phone:hover {
    color: var(--bronze-lt);
  }

  .header__cta--panel {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

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

  .hero__scrim {
    background: linear-gradient(
      100deg,
      rgba(14, 12, 10, 0.97) 0%,
      rgba(14, 12, 10, 0.9) 50%,
      rgba(18, 15, 12, 0.66) 100%
    );
  }
}

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

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__media img {
    height: 420px;
  }

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

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

  .case {
    border-bottom: 1px solid rgba(181, 139, 76, 0.2);
  }

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

  .case:nth-child(odd) {
    padding-left: 0;
  }

  .accolades__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
  }

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

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

  .footer__contact {
    text-align: left;
  }
}

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

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

@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(12px, 3vw, 20px) 0;
  }

  .hero__inner {
    height: auto;
    align-items: flex-start;
    padding-left: clamp(8px, 2vw, 16px);
    padding-right: clamp(8px, 2vw, 16px);
  }

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

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

  .hero__image {
    height: min(48vh, 360px);
    width: auto;
    max-width: 100%;
  }
}

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

  .utility .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 12px;
  }

  .hero__actions {
    gap: 20px;
  }

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

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

  .accolades__slot {
    height: 78px;
  }

  .accolades__slot--1 img {
    height: 68px;
  }

  .accolades__slot--2 img {
    height: 56px;
  }

  .accolades__slot--4 img {
    height: 32px;
  }

  .accolades__slot--5 img {
    height: 42px;
  }

  .case {
    padding-left: 0 !important;
    padding-right: 0;
    border-right: 0;
  }

  .form-card {
    padding: 32px 24px;
  }

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

  .about .container,
  .practice .container,
  .cases .container,
  .values .container,
  .testimonial .container,
  .contact .container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .footer__brand img {
    height: 130px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    font-size: 16px;
    padding: 15px 24px;
  }
}

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