/* ============ TOKENS ============ */
:root {
  --ink: #0d0d0e;
  --ink2: #15151a;
  --ink3: #1e1d1b;
  --ink4: #232220;
  --bz: #b79a67;
  --bz2: #d9c298;
  --bz-dim: rgba(183, 154, 103, 0.3);
  --paper: #f2f1ee;
  --paper2: #e7e4de;
  --line: #d8d4cc;
  --body: #57544e;
  --body-dk: rgba(244, 241, 235, 0.7);
  --disp: "Lora", Georgia, serif;
  --ui: "Sora", system-ui, sans-serif;
  --pad: 45px;
  --gut: 90px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 104px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

/* ============ LAYOUT ============ */
.container {
  width: min(95%, var(--container-max));
  margin: 0 auto;
}

.section {
  padding: var(--gut) 0;
}

.section__eyebrow {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bz);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.section__eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--bz);
  flex: none;
}

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

.section__title {
  font-size: clamp(30px, 3.05vw, 46px);
  line-height: 1.12;
}

.section__lede {
  max-width: 62ch;
  font-size: 17px;
}

.section__lede--spaced {
  margin-top: 20px;
}

.section__lede--contact {
  margin-top: 18px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid var(--bz);
  background: var(--bz);
  color: #12100c;
  transition: 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

.btn:hover {
  background: var(--bz2);
  border-color: var(--bz2);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(183, 154, 103, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--bz);
}

.btn--ghost:hover {
  background: var(--bz);
  color: #12100c;
}

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

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ============ HEADER ============ */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 60;
}

.header {
  background: rgba(11, 11, 12, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(183, 154, 103, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 104px;
}

.header__logo {
  flex-shrink: 0;
  line-height: 0;
}

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

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

.header__nav-link {
  flex-shrink: 0;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 16px;
  color: #ede9e2;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--bz);
  transition: width 0.3s;
}

.header__nav-link:hover::after,
.header__nav-link--current::after {
  width: 100%;
}

.header__nav-link:hover {
  color: var(--bz2);
}

.header__phone {
  flex-shrink: 0;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 24px;
  color: #f4f1eb;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--bz2);
}

.header__cta {
  flex-shrink: 0;
}

.header__menu-toggle {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(183, 154, 103, 0.4);
  border-radius: 999px;
  width: 52px;
  height: 44px;
  padding: 0;
  color: var(--bz2);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}

.header__menu-toggle-bar,
.header__menu-toggle-bar::before,
.header__menu-toggle-bar::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__menu-toggle-bar {
  position: relative;
}

.header__menu-toggle-bar::before,
.header__menu-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.header__menu-toggle-bar::before {
  top: -6px;
}

.header__menu-toggle-bar::after {
  top: 6px;
}

.header__menu-toggle--active .header__menu-toggle-bar {
  background: transparent;
}

.header__menu-toggle--active .header__menu-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.header__menu-toggle--active .header__menu-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  z-index: 70;
}

.header__overlay--visible {
  opacity: 1;
  visibility: visible;
}

.header__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  height: 100dvh;
  background: rgba(11, 11, 12, 0.98);
  border-left: 1px solid rgba(183, 154, 103, 0.18);
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 28px 28px 40px;
  overflow-y: auto;
}

.header__panel--open {
  transform: translateX(0);
}

.header__panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.header__panel-title {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bz);
  margin: 0;
}

.header__nav-close {
  background: none;
  border: 1px solid rgba(183, 154, 103, 0.4);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  color: var(--bz2);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.header__nav-close:hover {
  border-color: var(--bz);
  color: var(--bz);
}

.header__panel-list {
  list-style: none;
  margin: 0;
  padding: 0 0 20px;
  display: grid;
  gap: 2px;
}

.header__panel-link {
  display: block;
  padding: 13px 0;
  font: 500 16px / 1.2 var(--ui);
  color: #ede9e2;
  border-bottom: 1px solid rgba(183, 154, 103, 0.12);
}

.header__panel-link:hover {
  color: var(--bz2);
}

.header__nav-extras {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.header__nav-extras-phone {
  display: block;
  font: 600 24px / 1 var(--ui);
  color: var(--bz2);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: #0b0b0c url("../assets/images/bg-hero.jpg") center / cover no-repeat;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    94deg,
    #08080a 0%,
    rgba(9, 9, 11, 0.93) 34%,
    rgba(11, 11, 13, 0.62) 58%,
    rgba(13, 13, 15, 0.34) 100%
  );
}

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

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

.hero__title {
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.03;
  color: #fbf8f3;
  letter-spacing: -0.022em;
}

.hero__title-em {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--bz2);
}

.hero__bar {
  width: 78px;
  height: 2px;
  background: var(--bz);
  margin: 26px 0 22px;
}

.hero__text {
  color: var(--body-dk);
  font-size: 17px;
  max-width: 38ch;
  margin: 0 0 32px;
}

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

.hero__phone {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 24px;
  color: #f4f1eb;
  white-space: nowrap;
}

.hero__phone-label {
  display: block;
  font-family: var(--ui);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bz);
  margin-bottom: 2px;
}

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

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

/* ============ ACCOLADES ============ */
.accolades {
  background: var(--ink3);
  border-top: 1px solid rgba(183, 154, 103, 0.2);
  border-bottom: 1px solid rgba(183, 154, 103, 0.2);
}

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

.accolades__item {
  min-height: 132px;
  padding: 26px 24px;
  border-left: 1px solid rgba(183, 154, 103, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.accolades__img {
  width: auto;
  max-width: 100%;
  opacity: 0.86;
  transition: opacity 0.35s;
}

.accolades__item:hover .accolades__img {
  opacity: 1;
}

.accolades__item--seal .accolades__img {
  height: 76px;
}

.accolades__item--stack .accolades__img {
  height: 64px;
}

.accolades__item--wide .accolades__img {
  height: 40px;
}

.accolades__item--mid .accolades__img {
  height: 54px;
}

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

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 4.6vw, 84px);
  align-items: center;
}

.about__figure {
  position: relative;
}

.about__img {
  width: 100%;
  height: auto;
  aspect-ratio: 98 / 122;
  object-fit: cover;
}

.about__figure::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--bz);
  z-index: -1;
}

.about__title {
  font-size: clamp(28px, 2.85vw, 42px);
  line-height: 1.16;
  margin-bottom: 22px;
}

.about__title-quote {
  font-style: italic;
  color: var(--bz);
}

.about__text {
  margin: 0 0 26px;
}

.about__tag {
  font-family: var(--disp);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  border-left: 2px solid var(--bz);
  padding-left: 20px;
  margin: 0 0 30px;
}

/* ============ PRACTICE ============ */
.practice {
  background: var(--ink);
  color: var(--body-dk);
}

.practice__title {
  color: #fbf8f3;
}

.practice__header {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 56px;
}

.practice__sub {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bz);
  margin-top: 16px;
}

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

.card {
  position: relative;
  overflow: hidden;
  background: var(--ink2);
  border: 1px solid rgba(183, 154, 103, 0.16);
  display: block;
  transition: 0.4s;
}

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

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.34) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), filter 0.5s;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 14, 0.12),
    rgba(13, 13, 14, 0.78)
  );
}

.card__body {
  padding: 26px 26px 30px;
}

.card__title {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 600;
  color: #fbf8f3;
  line-height: 1.28;
  margin: 0 0 12px;
}

.card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244, 241, 235, 0.58);
}

.card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bz);
}

.card:hover {
  border-color: var(--bz);
  transform: translateY(-6px);
}

.card:hover .card__img {
  transform: scale(1.07);
  filter: grayscale(0) contrast(1.05);
}

/* ============ CASE RESULTS ============ */
.results {
  position: relative;
  background: #080809 url("../assets/images/bg-results.jpg") center / cover
    no-repeat;
  color: var(--body-dk);
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.76);
}

.results__inner {
  position: relative;
}

.results__header {
  text-align: center;
  margin-bottom: 64px;
}

.results__title {
  color: #fbf8f3;
}

.results__sub {
  font-family: var(--disp);
  font-style: italic;
  font-size: 20px;
  color: var(--bz2);
  margin-top: 14px;
}

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

.plaque {
  padding: 0 clamp(20px, 3vw, 50px);
  border-left: 1px solid rgba(183, 154, 103, 0.26);
  text-align: center;
}

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

.plaque__label {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bz);
  margin-bottom: 20px;
}

.plaque__amount {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1;
  color: #fbf8f3;
  letter-spacing: -0.03em;
  margin: 0;
}

.plaque__amount::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: var(--bz);
  margin: 22px auto 22px;
}

.plaque__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(244, 241, 235, 0.6);
}

.plaque__link {
  color: var(--bz2);
  border-bottom: 1px solid var(--bz-dim);
}

/* ============ VALUES ============ */
.values__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 4.4vw, 80px);
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.values__item {
  background: var(--paper);
  padding: 34px 32px;
}

.values__num {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 600;
  color: var(--bz);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}

.values__item-title {
  font-family: var(--disp);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.32;
  margin: 0 0 10px;
}

.values__item-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--ink2);
  color: var(--body-dk);
}

.testimonial__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(38px, 4.4vw, 78px);
  align-items: center;
}

.testimonial__title {
  color: #fbf8f3;
}

.testimonial__quote {
  margin: 30px 0 0;
  font-family: var(--disp);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.75vw, 27px);
  line-height: 1.56;
  color: #f4f1eb;
}

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

.testimonial__name {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4f1eb;
}

.testimonial__stars {
  font-style: normal;
  color: var(--bz);
  letter-spacing: 0.16em;
  font-size: 15px;
}

.testimonial__img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 7.6;
  object-fit: cover;
  filter: grayscale(0.2);
}

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

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(38px, 4.6vw, 80px);
  align-items: center;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

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

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

.form__label {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7c776f;
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--ui);
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  background: #fcfbf9;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 15px;
  height: 40px;
  width: 100%;
}

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

.form__textarea {
  height: 120px;
  padding: 12px 15px;
  line-height: 1.6;
  resize: vertical;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--bz);
  outline: none;
  background: #fff;
}

.form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form__note {
  font-size: 13px;
  line-height: 1.6;
  color: #807a71;
  margin: 0;
}

.form__note-link {
  color: var(--ink);
  font-weight: 600;
}

.contact__img {
  width: 100%;
  height: auto;
  aspect-ratio: 86 / 108;
  object-fit: cover;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(244, 241, 235, 0.6);
  padding: 74px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 230px;
  margin-bottom: 24px;
  max-width: none;
}

.footer__heading {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bz);
  margin: 0 0 20px;
}

.footer__address {
  font-style: normal;
  line-height: 1.9;
  font-size: 16px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: 16px;
}

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

.footer__phone {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 24px;
  color: #f4f1eb;
  display: block;
  margin-bottom: 8px;
}

.footer__note {
  margin: 0 0 20px;
  font-size: 15px;
}

.footer__bottom {
  border-top: 1px solid rgba(183, 154, 103, 0.18);
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(244, 241, 235, 0.4);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal--in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
  }
}

/* ============ RESPONSIVE — progressive header scaling ============ */
@media (max-width: 1400px) {
  .header__nav {
    gap: 22px;
  }

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

  .header__phone {
    font-size: clamp(18px, 1.6vw, 22px);
  }

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

  .header__inner {
    gap: 24px;
  }
}

@media (max-width: 1280px) {
  .header__nav {
    gap: 16px;
  }

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

  .header__phone {
    font-size: 18px;
  }

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

  .header__inner {
    gap: 18px;
  }
}

/* Hamburger below 1200px */
@media (max-width: 1200px) {
  .header__nav,
  .header__phone,
  .header__cta {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .header__inner {
    height: 88px;
  }

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

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

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

  .accolades__item:nth-child(n + 3) {
    border-top: 1px solid rgba(183, 154, 103, 0.16);
  }
}

@media (max-width: 1000px) {
  :root {
    --gut: 64px;
  }

  .about__inner,
  .values__inner,
  .testimonial__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .about__figure {
    order: 2;
    max-width: 520px;
  }

  .about__figure::after {
    inset: 12px -12px -12px 12px;
  }

  .testimonial__figure,
  .contact__figure {
    order: 2;
    max-width: 560px;
  }

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

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

  .plaque + .plaque {
    border-top: 1px solid rgba(183, 154, 103, 0.26);
    padding-top: 44px;
  }

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

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

@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(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

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

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 clamp(16px, 3vw, 28px);
  }

  .hero__text {
    max-width: 52ch;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: 380px;
    right: auto;
    bottom: auto;
  }

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

@media (max-width: 680px) {
  :root {
    --gut: 52px;
  }

  .container {
    width: min(92%, var(--container-max));
  }

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

  .accolades__item {
    min-height: 106px;
    padding: 22px 14px;
  }

  .accolades__item--seal .accolades__img {
    height: 60px;
  }

  .accolades__item--stack .accolades__img {
    height: 48px;
  }

  .accolades__item--wide .accolades__img {
    height: 30px;
  }

  .accolades__item--mid .accolades__img {
    height: 40px;
  }

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

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

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

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

  .header__inner {
    gap: 14px;
  }

  .hero__visual {
    height: 330px;
  }

  .hero__actions {
    gap: 18px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    font-size: 16px;
    padding: 14px 22px;
    white-space: normal;
  }
}
