:root {
  --ink: #131c0d;
  --ink-2: #1e2b15;
  --ink-3: #2c3b21;
  --moss: #5f7f36;
  --moss-dk: #46601f;
  --moss-lt: #7c9a50;
  --sage: #9db27a;
  --stone: #f5f4ef;
  --stone-2: #eae8df;
  --silver: #b8b8b8;
  --silver-lt: #d8d8d4;
  --paper: #ffffff;
  --text: #2a3122;
  --text-mute: #5e6656;
  --serif: "Literata", Georgia, "Times New Roman", serif;
  --sans: "Mulish", "Helvetica Neue", Arial, sans-serif;
  --pad: 45px;
  --container-max: 1680px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 150px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

p {
  margin: 0 0 18px;
}

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);
}

.section {
  padding: 104px 0;
}

.section--tight {
  padding: 78px 0;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--moss);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.eyebrow::after {
  content: "";
  height: 1px;
  background: var(--silver-lt);
  flex: 1 1 auto;
  max-width: 120px;
}

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

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

.eyebrow--light::after {
  background: rgba(184, 184, 184, 0.35);
}

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

.eyebrow--center::after {
  display: none;
}

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

.btn:hover {
  background: var(--moss-dk);
  border-color: var(--moss-dk);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(19, 28, 13, 0.18);
}

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

.btn--sm {
  font-size: 17px;
  padding: 12px 26px;
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  color: #cfd6c4;
  font-size: 13.5px;
  letter-spacing: 0.03em;
}

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

.utility__left {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.utility__item {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.6;
  flex: 0 0 auto;
}

.utility__right {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.utility__right strong {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--stone-2);
}

.header__overlay {
  display: none;
}

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

.header__logo {
  flex-shrink: 0;
}

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

.header__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  z-index: 5;
}

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

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

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

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

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

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

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

.header__nav-link {
  display: block;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(14px, 1.15vw, 20px);
  padding: clamp(10px, 1.1vw, 15px) clamp(16px, 1.8vw, 32px);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 0;
  overflow: hidden;
  background: var(--ink);
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-hero.jpg") center / cover no-repeat;
  opacity: 0.26;
  filter: grayscale(1) contrast(1.12) brightness(0.95);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(19, 28, 13, 0.97) 0%,
    rgba(19, 28, 13, 0.9) 42%,
    rgba(30, 43, 21, 0.62) 68%,
    rgba(30, 43, 21, 0.5) 100%
  );
}

.hero__glow {
  position: absolute;
  right: -6%;
  top: -30%;
  width: 62%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(95, 127, 54, 0.4), rgba(95, 127, 54, 0) 72%);
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 660px);
  padding-inline: clamp(4px, 1.5vw, 16px);
}

.hero__title {
  color: #fff;
  font-size: 62px;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  color: var(--sage);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 31px;
  line-height: 1.25;
  margin-top: 14px;
  letter-spacing: -0.005em;
}

.hero__rule {
  width: 78px;
  height: 2px;
  background: var(--moss-lt);
  margin: 28px 0 24px;
}

.hero__text {
  color: #d5dbcb;
  font-size: 18.5px;
  line-height: 1.72;
  max-width: 560px;
}

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

.hero__phone {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__phone-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  line-height: 1;
}

.hero__phone-number {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.hero__phone svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.5;
}

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

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

.hero__badge {
  position: absolute;
  left: 4%;
  bottom: 12%;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  border-left: 3px solid var(--moss);
  padding: 14px 22px 15px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.hero__badge-number {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.hero__badge-text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 6px;
}

/* ---------- trust strip ---------- */
.trust {
  background: var(--stone);
  border-bottom: 1px solid var(--stone-2);
}

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

.trust__item {
  padding: 30px 34px;
  border-left: 1px solid var(--silver-lt);
}

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

.trust__key {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--moss);
  line-height: 1.1;
}

.trust__value {
  font-size: 14.5px;
  color: var(--text-mute);
  margin-top: 7px;
  line-height: 1.5;
}

/* ---------- accolades ---------- */
.accolades {
  background: var(--paper);
  padding: 60px 0 64px;
}

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

.accolades__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}

.accolades__line {
  height: 1px;
  background: var(--silver-lt);
  flex: 1;
}

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

.accolades__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  width: 100%;
  border-left: 1px solid var(--silver-lt);
}

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

.accolades__image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 0.3s ease;
}

.accolades__image--mdf {
  height: 88px;
}

.accolades__image--ntl {
  height: 69px;
}

.accolades__image--sl {
  height: 60px;
}

.accolades__image--aaj {
  height: 59px;
}

.accolades__slot:hover .accolades__image {
  opacity: 1;
}

/* ---------- about ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: auto;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 56%;
  height: 56%;
  border-left: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  z-index: -1;
}

.about__title {
  font-size: 44px;
  line-height: 1.1;
}

.about__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: var(--moss);
  margin-top: 16px;
  letter-spacing: -0.005em;
}

.about__body {
  margin-top: 28px;
  color: var(--text);
  font-size: 17.5px;
}

.about__callout {
  margin-top: 34px;
  background: var(--stone);
  border-left: 3px solid var(--moss);
  padding: 26px 30px;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
}

.about__callout a {
  color: var(--moss-dk);
  font-weight: 700;
  border-bottom: 1px solid rgba(95, 127, 54, 0.35);
}

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

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

.practice__title {
  font-size: 44px;
}

.practice__intro {
  color: var(--text-mute);
  max-width: 420px;
  font-size: 16.5px;
  margin: 0;
}

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

.practice__card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(19, 28, 13, 0.13);
}

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

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

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

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 28, 13, 0) 45%, rgba(19, 28, 13, 0.42));
}

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

.practice__card-title {
  font-size: 26px;
  line-height: 1.2;
}

.practice__body p {
  margin-top: 14px;
  color: var(--text-mute);
  font-size: 16px;
  line-height: 1.68;
}

.practice__link {
  margin-top: auto;
  padding-top: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  display: flex;
  align-items: center;
  gap: 10px;
}

.practice__link svg {
  width: 16px;
  height: 9px;
  fill: none;
  stroke: var(--moss);
  stroke-width: 1.6;
  transition: transform 0.3s ease;
}

.practice__card:hover .practice__link svg {
  transform: translateX(6px);
}

.practice__card--cta {
  background: var(--ink);
  color: #fff;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.practice__card--cta .practice__card-title {
  color: #fff;
  font-size: 28px;
  line-height: 1.18;
}

.practice__card--cta p {
  color: #c9d1bc;
  font-size: 16px;
  margin-top: 16px;
}

.practice__card--cta .btn {
  margin-top: 26px;
  align-self: flex-start;
}

/* ---------- case results ---------- */
.results {
  position: relative;
  background: var(--ink-2);
  color: #fff;
  overflow: hidden;
}

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

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 28, 13, 0.94), rgba(19, 28, 13, 0.88));
}

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

.results__title {
  color: #fff;
  font-size: 44px;
}

.results__sub {
  color: #c0c9b3;
  margin-top: 14px;
  font-size: 16.5px;
  max-width: 560px;
}

.ledger {
  margin-top: 48px;
  border-top: 1px solid rgba(184, 184, 184, 0.26);
}

.ledger__row {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr) minmax(0, 150px);
  align-items: center;
  gap: 34px;
  padding: 30px 4px;
  border-bottom: 1px solid rgba(184, 184, 184, 0.26);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.ledger__row:hover {
  background: rgba(255, 255, 255, 0.045);
  padding-left: 16px;
}

.ledger__amount {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ledger__tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.ledger__desc {
  font-size: 18px;
  color: #e4e9dc;
  margin-top: 8px;
  line-height: 1.5;
}

.ledger__more {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ledger__more svg {
  width: 16px;
  height: 9px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.6;
  transition: transform 0.3s ease;
}

.ledger__row:hover .ledger__more svg {
  transform: translateX(6px);
}

.results__disclaimer {
  margin-top: 26px;
  font-size: 13px;
  color: #9aa48c;
  letter-spacing: 0.02em;
}

/* ---------- values ---------- */
.values__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.values__title {
  font-size: 44px;
}

.values__intro {
  color: var(--text-mute);
  margin-top: 16px;
  font-size: 16.5px;
}

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

.values__item {
  padding: 0 40px;
  border-left: 1px solid var(--silver-lt);
}

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

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

.values__mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
  border-radius: 50%;
  margin-bottom: 22px;
}

.values__mark svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--moss);
  stroke-width: 1.5;
}

.values__item-title {
  font-size: 23px;
  line-height: 1.26;
}

.values__item p {
  margin-top: 14px;
  color: var(--text-mute);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  background: var(--stone);
  overflow: hidden;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-testimonial.jpg") center / cover no-repeat;
  opacity: 0.08;
  filter: grayscale(1);
}

.testimonial__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__amp {
  font-family: var(--serif);
  font-size: 88px;
  line-height: 0.7;
  color: var(--silver);
  font-style: italic;
}

.testimonial__title {
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 22px;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.48;
  color: var(--ink);
  margin-top: 26px;
  letter-spacing: -0.012em;
}

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

.testimonial__name {
  margin-top: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

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

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

.contact__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(19, 28, 13, 0.97) 0%, rgba(19, 28, 13, 0.9) 46%, rgba(30, 43, 21, 0.78) 100%);
}

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

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

.contact__title {
  color: #fff;
  font-size: 44px;
  line-height: 1.1;
}

.contact__lead {
  color: #cfd6c4;
  margin-top: 18px;
  font-size: 17.5px;
  max-width: 480px;
}

.contact__list {
  margin-top: 38px;
  border-top: 1px solid rgba(184, 184, 184, 0.24);
}

.contact__item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(184, 184, 184, 0.24);
}

.contact__item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.5;
  flex: 0 0 auto;
  margin-top: 4px;
}

.contact__item-key {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.contact__item-value {
  font-size: 17.5px;
  color: #fff;
  margin-top: 5px;
  line-height: 1.5;
}

.contact__item-value--number {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.form-card {
  background: var(--paper);
  padding: 44px 42px 46px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.form-card__title {
  font-size: 27px;
}

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

.form {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.form__field {
  display: grid;
  gap: 7px;
}

.form__field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--stone);
  border: 1px solid var(--stone-2);
  border-radius: 0;
  padding: 0 14px;
  height: 40px;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

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

.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%235E6656' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 38px;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--moss);
  background: #fff;
}

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

.form-card__note {
  font-size: 12.5px;
  color: var(--text-mute);
  margin-top: 16px;
  line-height: 1.6;
}

/* ---------- footer ---------- */
.footer {
  background: #0d1409;
  color: #aeb8a2;
  font-size: 15px;
}

.footer__top {
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
}

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

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

.footer__about {
  margin-top: 22px;
  line-height: 1.7;
  max-width: 330px;
  font-size: 15px;
}

.footer__heading {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer__list a:hover {
  color: #fff;
}

.footer__contact div {
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer__phone {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

.footer__bottom {
  border-top: 1px solid rgba(184, 184, 184, 0.16);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: #7e8874;
  flex-wrap: wrap;
}

.footer__credit {
  color: #5f6a55;
}

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

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

/* ---------- responsive ---------- */
@media (max-width: 1500px) {
  .hero__title {
    font-size: 56px;
  }

  .header__nav,
  .header__nav-list {
    gap: 24px;
  }

  .header__inner {
    gap: 24px;
  }
}

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

  .accolades__image {
    max-height: 74px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle {
    font-size: 27px;
  }

  .about__title,
  .practice__title,
  .results__title,
  .values__title,
  .contact__title {
    font-size: 38px;
  }

  .about__grid {
    gap: 48px;
  }

  .header__nav,
  .header__nav-list {
    gap: 18px;
  }

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

  .btn {
    font-size: 17px;
    padding: 13px 24px;
  }

  .ledger__amount {
    font-size: 34px;
  }

  .accolades__row {
    gap: 22px;
  }

  .accolades__slot {
    height: 80px;
  }
}

@media (max-width: 1200px) {
  .header__toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(19, 28, 13, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

  .header__inner {
    z-index: 2;
    height: 88px;
    gap: 18px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin-left: 0;
    padding: 84px 28px 40px;
    background: var(--paper);
    box-shadow: -16px 0 40px rgba(19, 28, 13, 0.18);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    z-index: 2;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
  }

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

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

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

  .header__nav-link {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--stone-2);
  }

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

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

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

@media (max-width: 1080px) {
  .hero__visual {
    width: 44%;
  }

  .hero__title {
    font-size: 42px;
  }

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

  .trust__item {
    padding: 24px 26px;
  }

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

  .trust__item:nth-child(n + 3) {
    border-top: 1px solid var(--silver-lt);
  }

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

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

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

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

@media (max-width: 860px) {
  :root {
    --pad: 24px;
  }

  .section {
    padding: 70px 0;
  }

  .practice__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

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

  .about__media::after {
    display: none;
  }

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

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

  .accolades__slot {
    height: 84px;
  }

  .ledger__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 24px 0;
  }

  .ledger__more {
    justify-self: start;
  }

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

  .values__item {
    padding: 32px 0 0;
    border-left: 0;
    border-top: 1px solid var(--silver-lt);
  }

  .values__item:first-child {
    border-top: 0;
    padding-top: 0;
  }

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

  .testimonial__quote {
    font-size: 24px;
  }

  .utility__inner {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 12.5px;
  }

  .utility__item {
    overflow: visible;
    white-space: normal;
  }

  .utility__left {
    gap: 8px 18px;
    flex-wrap: wrap;
  }

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

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: clamp(32px, 6vw, 48px) 0 0;
  }

  .hero__inner {
    height: auto;
    display: block;
  }

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

  .hero__veil {
    background: linear-gradient(180deg, rgba(19, 28, 13, 0.96), rgba(30, 43, 21, 0.9));
  }

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

  .hero__image {
    height: auto;
    width: 100%;
    max-width: 440px;
  }

  .hero__badge {
    display: none;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .hero__actions .btn {
    width: 100%;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__subtitle {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .utility__left .utility__item:nth-child(2) {
    display: none;
  }

  .about__title,
  .practice__title,
  .results__title,
  .values__title,
  .contact__title {
    font-size: 30px;
  }

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

  .trust__item {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--silver-lt);
  }

  .trust__item:first-child {
    border-top: 0;
  }

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

  .accolades__slot {
    border-left: 0;
    height: 76px;
  }
}
