:root {
  --ink: #14210e;
  --forest: #22371a;
  --forest-2: #2e4a22;
  --green: #578540;
  --green-lt: #6e9f55;
  --sage: #b7cba6;
  --mist: #f3f6f0;
  --gold: #b8912e;
  --paper: #ffffff;
  --body: #43503d;
  --line: #dce4d6;

  --ff-display: "Literata", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --ff-body: "Jost", "Futura", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 150px;
  --pad: 45px;
}

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

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

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

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

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

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

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

p {
  margin: 0 0 1.1em;
}

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

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

.eyebrow {
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

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

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

.eyebrow--center::before {
  content: "";
  flex: 0 0 54px;
  height: 1px;
  background: var(--gold);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: #1b1405;
  border-color: var(--gold);
}

.btn--gold:hover {
  background: #cba23a;
  border-color: #cba23a;
  transform: translateY(-2px);
}

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

.btn--green:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============ UTILITY STRIP ============ */
.utility {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

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

.utility__left,
.utility__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility__right {
  color: var(--sage);
}

.utility__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

/* ============ HEADER ============ */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 40;
}

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

.header__logo {
  flex-shrink: 0;
}

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

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

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

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

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

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

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.header__nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.005em;
  padding: 8px 0;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__nav-link[aria-current] {
  color: var(--green);
  font-weight: 500;
}

.header__nav-extras {
  display: none;
}

.header__cta {
  flex: 0 0 auto;
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(14px, 1.15vw, 18px);
  padding: 14px 26px;
  white-space: nowrap;
}

.header__overlay {
  display: none;
  pointer-events: none;
}

.header__overlay[hidden] {
  display: none !important;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  background:
    radial-gradient(
      120% 130% at 82% 88%,
      rgba(87, 133, 64, 0.42) 0%,
      rgba(87, 133, 64, 0) 58%
    ),
    linear-gradient(118deg, #14210e 0%, #22371a 46%, #2e4a22 100%);
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__state {
  position: absolute;
  top: 50%;
  left: 60.5%;
  transform: translate(-50%, -52%);
  width: min(1040px, 90%);
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 700px);
  padding: clamp(8px, 1.6vw, 20px) clamp(4px, 1.2vw, 16px) 0 0;
}

.hero__title {
  font-size: clamp(38px, 3.5vw, 58px);
  color: #fff;
  letter-spacing: -0.018em;
}

.hero__subtitle {
  font-family: var(--ff-body);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 20px 0 0;
}

.hero__rule {
  width: 96px;
  height: 2px;
  background: var(--gold);
  margin: 26px 0 24px;
}

.hero__text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.68;
  max-width: 600px;
}

.hero__text strong {
  color: #fff;
  font-weight: 500;
}

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

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

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

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

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

.hero__visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(140, 190, 110, 0.3) 0%,
    rgba(140, 190, 110, 0) 68%
  );
}

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

/* ============ ACCOLADES ============ */
.accolades {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

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

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

.accolades__label {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  flex: 0 0 auto;
  max-width: 150px;
  line-height: 1.5;
}

.accolades__slots {
  display: flex;
  align-items: center;
  gap: 44px 52px;
  flex: 1 1 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1040px;
}

.accolades__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  opacity: 0.62;
  transition: opacity 0.3s ease;
}

.accolades__badge:hover {
  opacity: 1;
}

.accolades__image--advocates {
  width: 95px;
  height: 96px;
}

.accolades__image--trial-lawyers {
  width: 141px;
  height: 73px;
}

.accolades__image--super-lawyers {
  width: 221px;
  height: 53px;
}

.accolades__image--aaj {
  width: 180px;
  height: 61px;
}

/* ============ ABOUT ============ */
.about {
  background: var(--paper);
}

.about__inner {
  padding-top: 104px;
  padding-bottom: 104px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about__figure {
  position: relative;
  max-width: 520px;
}

.about__image {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about__figure::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.about__title {
  font-size: clamp(30px, 2.6vw, 42px);
}

.about__subtitle {
  font-family: var(--ff-body);
  font-size: 19px;
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.05em;
  margin: 14px 0 26px;
}

.about__text {
  font-size: 17px;
}

.about__callout {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--mist);
  border-left: 4px solid var(--gold);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
}

.about__callout a {
  color: var(--green);
  font-weight: 500;
  border-bottom: 1px solid rgba(87, 133, 64, 0.4);
}

/* ============ PRACTICE ============ */
.practice {
  background: var(--mist);
}

.practice__inner {
  padding-top: 104px;
  padding-bottom: 104px;
}

.practice__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.practice__title {
  font-size: clamp(30px, 2.7vw, 44px);
}

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

.practice__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.practice__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 33, 14, 0.14);
  border-color: var(--sage);
}

.practice__thumb {
  position: relative;
  aspect-ratio: 36 / 25;
  overflow: hidden;
  background: var(--forest);
}

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

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

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 33, 14, 0) 42%,
    rgba(20, 33, 14, 0.55) 100%
  );
}

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

.practice__card-title {
  font-size: 21px;
  margin-bottom: 12px;
}

.practice__copy {
  font-size: 15.5px;
  line-height: 1.66;
  margin-bottom: 20px;
  flex: 1;
}

.practice__more {
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice__more span {
  transition: transform 0.25s ease;
  display: inline-block;
}

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

/* ============ CASE RESULTS ============ */
.cases {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.cases__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.cases::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 33, 14, 0.92) 0%,
    rgba(34, 55, 26, 0.8) 100%
  );
}

.cases__inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.cases__head {
  text-align: center;
  margin-bottom: 56px;
}

.cases__title {
  font-size: clamp(30px, 2.7vw, 44px);
  color: #fff;
}

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

.cases__card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(183, 203, 166, 0.24);
  border-radius: 4px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.cases__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.cases__matter {
  font-family: var(--ff-display);
  font-size: 19px;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 22px;
  min-height: 52px;
}

.cases__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 7px;
}

.cases__value {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 24px;
}

.cases__more {
  margin-top: auto;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.cases__more::after {
  content: "→";
  color: var(--gold);
  transition: transform 0.25s ease;
}

.cases__card:hover .cases__more::after {
  transform: translateX(5px);
}

/* ============ VALUES ============ */
.values {
  background: var(--paper);
}

.values__inner {
  padding-top: 104px;
  padding-bottom: 104px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.values__title {
  font-size: clamp(29px, 2.5vw, 40px);
}

.values__lede {
  margin-top: 22px;
  font-size: 16.5px;
}

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

.values__item {
  padding-left: 26px;
  position: relative;
}

.values__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: rotate(45deg);
}

.values__item-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.values__copy {
  font-size: 15.5px;
  line-height: 1.68;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--forest-2);
  color: #fff;
}

.testimonial__inner {
  padding-top: 86px;
  padding-bottom: 86px;
  text-align: center;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0.34em;
  margin-bottom: 26px;
}

.testimonial__quote {
  font-family: var(--ff-display);
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.48;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 400;
}

.testimonial__quote em {
  font-style: italic;
  color: var(--gold);
}

.testimonial__name {
  margin-top: 28px;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ============ CONTACT ============ */
.contact {
  background: var(--mist);
}

.contact__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.contact__title {
  font-size: clamp(29px, 2.5vw, 42px);
}

.contact__text {
  margin-top: 20px;
  font-size: 16.5px;
}

.contact__facts {
  margin-top: 34px;
  display: grid;
  gap: 22px;
}

.contact__fact {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact__fact svg {
  width: 19px;
  height: 19px;
  fill: var(--green);
  flex: 0 0 auto;
  margin-top: 5px;
}

.contact__fact b {
  display: block;
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
}

.contact__fact span {
  font-size: 15.5px;
}

.contact__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 18px 46px rgba(20, 33, 14, 0.07);
}

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

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

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

.field label {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.field input,
.field select {
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  width: 100%;
}

.field textarea {
  height: 120px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  resize: vertical;
  width: 100%;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--sage);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%2343503D' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

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

.contact__fine {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #7c8a76;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.footer__inner {
  padding-top: 72px;
  padding-bottom: 34px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.8fr) minmax(0, 0.85fr);
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(183, 203, 166, 0.2);
}

.footer__logo {
  background: #fff;
  display: inline-block;
  padding: 16px 20px;
  border-radius: 4px;
}

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

.footer__blurb {
  margin-top: 22px;
  max-width: 400px;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}

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

.footer__list a:hover {
  color: var(--sage);
}

.footer__address {
  font-style: normal;
  line-height: 1.8;
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--ff-display);
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

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

.footer__bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1440px) {
  .header__nav-list {
    gap: 20px;
  }

  .header__inner {
    gap: 24px;
  }

  .btn {
    padding: 17px 30px;
  }
}

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

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

  .header__nav-list {
    gap: 16px;
  }

  .header__cta .btn {
    font-size: 15px;
    padding: 13px 20px;
  }
}

@media (max-width: 1240px) {
  .header__nav-link {
    font-size: 13.5px;
  }

  .header__nav-list {
    gap: 12px;
  }

  .header__inner {
    gap: 16px;
  }

  .header__cta .btn {
    font-size: 14px;
    padding: 12px 16px;
  }

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

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

@media (max-width: 1200px) {
  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(20, 33, 14, 0.55);
  }

  .header.is-open .header__overlay:not([hidden]) {
    display: block;
    pointer-events: auto;
  }

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

  .header__toggle {
    display: inline-flex;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }

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

  .header.is-open .header__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: -12px 0 40px rgba(20, 33, 14, 0.12);
  }

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

  .header__nav-item {
    width: 100%;
    border-top: 1px solid var(--line);
  }

  .header__nav-link {
    display: block;
    padding: 15px 0;
    width: 100%;
    font-size: 16px;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .header__nav-phone {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
  }

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

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

  .header__cta {
    display: none;
  }
}

@media (max-width: 1040px) {
  .about__inner,
  .values__inner,
  .contact__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .about__inner {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .about__figure {
    max-width: 560px;
  }

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

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    font-size: 17px;
    padding: 15px 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(16px, 4vw, 28px) 0;
  }

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

  .hero__content {
    max-width: 100%;
    padding: clamp(8px, 3vw, 20px) clamp(4px, 2vw, 12px) 34px 0;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    justify-content: center;
  }

  .hero__image {
    width: min(84vw, 330px);
    height: auto;
    max-height: 72vh;
  }

  .hero__state {
    width: 640px;
    top: 38%;
    left: 50%;
  }

  .hero__actions {
    gap: 18px;
  }

  .utility__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 11px;
    padding-bottom: 11px;
    text-align: left;
  }

  .accolades__row {
    justify-content: center;
  }

  .accolades__label {
    max-width: none;
    text-align: center;
    flex: 1 0 100%;
  }

  .accolades__slots {
    justify-content: center;
    gap: 30px 40px;
    max-width: none;
  }

  .accolades__image {
    width: auto;
    height: auto;
    max-height: 62px;
    max-width: 150px;
  }

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

  .values__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .contact__card {
    padding: 28px;
  }

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

  .footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .practice__inner,
  .cases__inner,
  .values__inner,
  .contact__inner {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .testimonial__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__phone {
    justify-content: center;
  }
}

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

  body {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    font-size: 17px;
  }

  .hero__phone {
    font-size: 24px;
  }

  .accolades__slots {
    gap: 24px 30px;
  }

  .accolades__image {
    max-height: 52px;
    max-width: 124px;
  }

  .footer__logo img {
    width: min(230px, 100%);
    max-width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .practice__card:hover,
  .cases__card:hover,
  .btn:hover {
    transform: none;
  }
}
