:root {
  --ink: #15171a;
  --ink-2: #1d2126;
  --ink-3: #2a2f35;
  --gold: #bfa46f;
  --gold-lt: #d9c294;
  --bone: #f6f4ef;
  --stone: #eae6dc;
  --body: #4e5258;
  --rule: rgba(191, 164, 111, 0.32);
  --serif: "Baskervville", Georgia, "Times New Roman", serif;
  --sans: "Albert Sans", "Helvetica Neue", Arial, sans-serif;
  --pad: 45px;
  --container-max: 1780px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 90px;
}

*,
*::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: 17px;
  line-height: 1.72;
  font-weight: 380;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.008em;
}

h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

p {
  margin: 0;
}

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

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

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

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

.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 26px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 560;
  line-height: 1.35;
  padding: 19px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #15171a;
  white-space: nowrap;
  max-width: 100%;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  background: var(--gold-lt);
}

.btn--ink {
  background: var(--ink);
  color: var(--bone);
}

.btn--ink:hover {
  background: var(--ink-3);
}

/* Header */
.header {
  position: relative;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(191, 164, 111, 0.22);
}

.header__overlay {
  display: none;
}

.header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 34px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.header__logo {
  flex-shrink: 0;
}

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

.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: inline-block;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 450;
  color: #e6e2d8;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav-link:hover {
  color: var(--gold-lt);
  border-color: var(--gold);
}

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 12px;
  padding-left: 26px;
  border-left: 1px solid rgba(191, 164, 111, 0.2);
  flex-shrink: 0;
}

.header__tel {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.header__tel:hover {
  color: #fff;
}

.header__cta .btn {
  font-size: clamp(14px, 1.15vw, 18px);
  padding: clamp(12px, 1.1vw, 19px) clamp(18px, 1.8vw, 28px);
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: #e6e2d8;
  cursor: pointer;
  z-index: 3;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s 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);
}

/* Hero */
.hero {
  position: relative;
  background: var(--ink);
  color: #dcd9d1;
  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-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #15171a 24%,
    rgba(21, 23, 26, 0.9) 48%,
    rgba(21, 23, 26, 0.48) 76%,
    rgba(21, 23, 26, 0.72) 100%
  );
}

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

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

.hero__title {
  font-size: clamp(36px, 3.5vw, 57px);
  line-height: 1.1;
  color: #fbf9f4;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.62;
  color: #bcb8ae;
  max-width: 58ch;
}

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

.hero__tel {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-lt);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.hero__tel small {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: #8e8a80;
  letter-spacing: 0;
}

.hero__tel:hover {
  color: #fff;
}

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

.hero__plate {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(398px, 90%);
  height: 85%;
  border: 1px solid var(--rule);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(191, 164, 111, 0.12),
    rgba(191, 164, 111, 0) 64%
  );
}

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

/* Accolades strip — natural height, not in hero viewport calc */
.accolades {
  background: var(--stone);
  border-bottom: 1px solid rgba(21, 23, 26, 0.08);
}

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

.accolades__cell {
  padding: 34px 30px;
  border-left: 1px solid rgba(21, 23, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 152px;
}

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

.accolades__badge {
  width: auto;
  flex: 0 0 auto;
  opacity: 0.82;
}

.accolades__badge--mdaf {
  height: 84px;
}

.accolades__badge--ntl {
  height: 68px;
}

.accolades__badge--super {
  height: 38px;
}

.accolades__badge--aaj {
  height: 52px;
}

/* Sections */
.section {
  padding: 104px 0;
}

.section--stone {
  background: var(--stone);
}

.section--bone {
  background: var(--bone);
}

.section__title {
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.14;
}

.section__lede {
  font-size: 18px;
  line-height: 1.74;
  margin-top: 20px;
  max-width: 66ch;
}

.section__lede--compact {
  margin-top: 0;
  max-width: 46ch;
}

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

/* About / two-column */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.about__figure {
  position: relative;
}

.about__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about__figure::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 118px;
  height: 118px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
}

.about__facts {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(21, 23, 26, 0.12);
}

.about__facts-item {
  display: flex;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(21, 23, 26, 0.12);
  font-size: 17px;
}

.about__facts-label {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  flex: 0 0 auto;
  min-width: 128px;
}

.about .btn {
  margin-top: 36px;
}

/* Practice cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.card {
  background: #fff;
  border: 1px solid rgba(21, 23, 26, 0.09);
  display: flex;
  flex-direction: column;
}

.card__media {
  height: 238px;
  overflow: hidden;
}

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

.card__body {
  padding: 34px 34px 38px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-size: 26px;
  line-height: 1.24;
  margin-bottom: 14px;
}

.card__text {
  font-size: 16.5px;
  line-height: 1.68;
}

.link-more {
  margin-top: auto;
  padding-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
}

.link-more::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.link-more:hover::after {
  width: 44px;
}

/* Results */
.results {
  position: relative;
  background: var(--ink);
  color: #c9c5bb;
  padding: 104px 0;
}

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

.results::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 23, 26, 0.8),
    rgba(21, 23, 26, 0.94)
  );
}

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

.results__title {
  color: #fbf9f4;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--rule);
}

.results__item {
  padding: 38px 34px 34px;
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}

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

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

.results__topic {
  font-size: 16px;
  line-height: 1.5;
  color: #a7a29a;
  min-height: 48px;
}

.results__label {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}

.results__value {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.12;
  color: #fbf9f4;
  margin-top: 8px;
}

.results__item .link-more {
  color: #dcd9d1;
}

.results__disclaimer {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  font-size: 13.5px;
  line-height: 1.62;
  color: #8a857c;
  max-width: 98ch;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid rgba(21, 23, 26, 0.14);
}

.value {
  padding: 38px 34px 36px;
  border-left: 1px solid rgba(21, 23, 26, 0.14);
  display: flex;
  flex-direction: column;
}

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

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

.value__title {
  font-size: 23px;
  line-height: 1.26;
  margin-bottom: 14px;
}

@media (min-width: 1121px) {
  .value__title {
    min-height: 2.52em;
  }
}

.value__text {
  font-size: 16.5px;
  line-height: 1.68;
}

/* Testimonial */
.testimonial {
  background: var(--ink-2);
  color: #c9c5bb;
  padding: 100px 0;
}

.testimonial__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__title {
  color: #fbf9f4;
  font-size: clamp(28px, 2.3vw, 38px);
  margin-bottom: 32px;
}

.testimonial__quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.66;
  color: #e4e0d6;
  font-style: italic;
}

.testimonial__by {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* Contact */
.contact {
  background: var(--bone);
  padding: 104px 0;
}

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

.contact__info-list {
  margin: 34px 0 0;
  border-top: 1px solid rgba(21, 23, 26, 0.12);
}

.contact__info-list dt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  padding-top: 20px;
}

.contact__info-list dd {
  margin: 4px 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(21, 23, 26, 0.12);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.55;
}

.contact__info-list dd a:hover {
  color: var(--gold);
}

.contact__steps-title {
  margin-top: 46px;
  font-size: 24px;
}

.contact__steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.contact__steps-item {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(21, 23, 26, 0.12);
}

.contact__steps-num {
  flex: 0 0 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}

.contact__steps-item b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 3px;
}

.contact__steps-item div {
  font-size: 16px;
  line-height: 1.66;
}

.form {
  background: var(--ink);
  padding: 46px;
  border-top: 3px solid var(--gold);
}

.form__title {
  color: #fbf9f4;
  font-size: 27px;
  margin-bottom: 8px;
}

.form__note {
  font-size: 15.5px;
  color: #938f86;
  margin-bottom: 28px;
}

.form__field {
  margin-bottom: 18px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0.03em;
  color: #b4afa4;
  margin-bottom: 8px;
}

.form__input,
.form__select {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background: #22262b;
  border: 1px solid #343a41;
  border-radius: 3px;
  color: #f1eee7;
  font-size: 16px;
}

.form__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #bfa46f 50%),
    linear-gradient(135deg, #bfa46f 50%, transparent 50%);
  background-position: calc(100% - 19px) 18px, calc(100% - 14px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form__textarea {
  width: 100%;
  height: 120px;
  padding: 11px 14px;
  background: #22262b;
  border: 1px solid #343a41;
  border-radius: 3px;
  color: #f1eee7;
  font-size: 16px;
  resize: vertical;
  font-family: var(--sans);
}

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

.form__input::placeholder,
.form__textarea::placeholder {
  color: #6b675f;
}

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

.form__fine {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #7c7870;
}

/* Footer */
.footer {
  background: #101215;
  color: #9a958c;
  padding: 78px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr) minmax(0, 0.9fr);
  gap: 60px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(191, 164, 111, 0.2);
}

.footer__logo img {
  width: 262px;
  height: auto;
  max-width: none;
  margin-bottom: 24px;
}

.footer__blurb {
  font-size: 16px;
  line-height: 1.7;
  max-width: 46ch;
}

.footer__heading {
  font-size: 20px;
  color: #f1eee7;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list-item {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

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

.footer__tel {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 14px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding: 26px 0 34px;
  font-size: 13.5px;
  color: #6f6b64;
}

/* Progressive header scaling before hamburger */
@media (max-width: 1400px) {
  .header__inner {
    gap: 22px;
  }

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

  .header__cta {
    gap: 16px;
    margin-left: 6px;
    padding-left: 18px;
  }
}

@media (max-width: 1300px) {
  .accolades__cell {
    padding: 28px 18px;
  }

  .accolades__badge {
    max-width: 100%;
    height: auto !important;
  }

  .hero__visual {
    width: 44%;
  }
}

/* Mobile nav — hamburger below 1200px */
@media (max-width: 1200px) {
  :root {
    --pad: 32px;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(21, 23, 26, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

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

  .header__overlay[hidden] {
    display: none;
  }

  .header.is-open .header__overlay[hidden] {
    display: block;
  }

  .header__toggle {
    display: inline-flex;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin-left: 0;
    padding: 84px 28px 40px;
    z-index: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-left: 1px solid rgba(191, 164, 111, 0.22);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
  }

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

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

  .header__nav-link {
    display: block;
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(191, 164, 111, 0.18);
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(191, 164, 111, 0.18);
  }

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

  .header__nav-extras .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    font-size: 16px;
    padding: 14px 16px;
  }

  .header__cta {
    display: none;
  }

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

  .about__image {
    height: 460px;
  }

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

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

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

  .accolades__cell:nth-child(3),
  .accolades__cell:nth-child(4) {
    border-top: 1px solid rgba(21, 23, 26, 0.1);
  }

  .results__grid,
  .values {
    grid-template-columns: 1fr 1fr;
  }

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

  .results__item:nth-child(2),
  .value:nth-child(2) {
    padding-right: 0;
  }

  .results__item:nth-child(3),
  .results__item:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .value:nth-child(3),
  .value:nth-child(4) {
    border-top: 1px solid rgba(21, 23, 26, 0.14);
  }

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

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

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

  .hero__title {
    font-size: clamp(32px, 4.2vw, 44px);
  }
}

@media (max-width: 860px) {
  .section,
  .results,
  .contact,
  .testimonial {
    padding: 72px 0;
  }

  .hero__visual {
    width: 42%;
  }

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

  .card__media {
    height: 210px;
  }

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

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

  .hero__inner {
    height: auto;
  }

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

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

  .hero__plate {
    left: 0;
    transform: none;
    width: 290px;
    height: 410px;
    border-top-left-radius: 145px;
    border-top-right-radius: 145px;
  }

  .hero__image {
    height: 440px;
    width: auto;
  }
}

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

  body {
    font-size: 16px;
  }

  .container {
    width: 100%;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .hero__actions {
    gap: 20px;
  }

  .hero__tel {
    font-size: 22px;
  }

  .hero__image {
    height: 360px;
  }

  .hero__plate {
    width: 238px;
    height: 338px;
    border-top-left-radius: 119px;
    border-top-right-radius: 119px;
  }

  .results__grid,
  .values,
  .accolades__inner,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .results__item,
  .value {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .results__item {
    border-top: 1px solid var(--rule);
  }

  .value {
    border-top: 1px solid rgba(21, 23, 26, 0.14);
  }

  .results__item:first-child,
  .value:first-child {
    border-top: 0;
  }

  .accolades__cell {
    border-left: 0;
    border-top: 1px solid rgba(21, 23, 26, 0.1);
    min-height: 0;
    padding: 26px 0;
  }

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

  .about__facts-label {
    min-width: 100px;
  }

  .about__image {
    height: 340px;
  }

  .about__figure::after {
    left: -8px;
    top: -8px;
    width: 76px;
    height: 76px;
  }

  .footer__logo img {
    width: min(262px, 100%);
  }
}
