/* FaceForma: restrained premium layer for the static site. */
:root {
  --ff-ink: #20272a;
  --ff-paper: #f7f2eb;
  --ff-coral: #f77656;
  --ff-muted: #aeb7b5;
}

/* Home page procedure guide */
.cosmetology-guide {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  background: #f9f5f0;
}

.cosmetology-guide__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cosmetology-guide__header {
  max-width: 850px;
}

.cosmetology-guide__eyebrow {
  margin: 0 0 0.75rem;
  color: #f77656;
  font-family: "PT Root UI", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cosmetology-guide__title {
  max-width: 800px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.13;
  text-wrap: balance;
}

.cosmetology-guide__lead {
  max-width: 720px;
  margin-top: 1.7rem;
  font-family: "PT Root UI", sans-serif;
  font-size: clamp(16px, 1.65vw, 18px);
  line-height: 1.6;
  color: #4f5d66;
}

.cosmetology-guide__lead p + p,
.cosmetology-guide__details-body p + p {
  margin-top: 1rem;
}

.cosmetology-guide__methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.cosmetology-guide__method {
  min-height: 200px;
  padding: clamp(1.4rem, 2.3vw, 2rem);
  border: 1px solid #e4d9d0;
  border-radius: 16px;
  background: #fff;
}

.cosmetology-guide__method-number {
  display: block;
  color: #f77656;
  font-family: "PT Root UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.cosmetology-guide__method h3,
.cosmetology-guide__cta h3 {
  margin: 1.7rem 0 0.75rem;
  color: #2b3944;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.cosmetology-guide__method p {
  margin: 0;
  font-family: "PT Root UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #65737d;
}

.cosmetology-guide__content {
  max-width: 960px;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.cosmetology-guide__block + .cosmetology-guide__block {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.cosmetology-guide__block h3,
.cosmetology-guide__faq > h3 {
  margin: 0 0 1.4rem;
  color: #2b3944;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.23;
  text-wrap: balance;
}

.cosmetology-guide__block p,
.cosmetology-guide__details-body,
.cosmetology-guide__faq p,
.cosmetology-guide__steps {
  font-family: "PT Root UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4f5d66;
}

.cosmetology-guide__block p + p {
  margin-top: 1rem;
}

.cosmetology-guide__table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid #e4d9d0;
  border-radius: 14px;
  background: #fff;
}

.cosmetology-guide__table {
  width: 100%;
  min-width: 730px;
  border-collapse: collapse;
  font-family: "PT Root UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #4f5d66;
}

.cosmetology-guide__table th,
.cosmetology-guide__table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ece4dd;
}

.cosmetology-guide__table th {
  color: #2b3944;
  font-size: 13px;
  font-weight: 500;
  background: #fffaf5;
}

.cosmetology-guide__table tr:last-child td {
  border-bottom: 0;
}

.cosmetology-guide__details,
.cosmetology-guide__faq details {
  margin-top: 1rem;
  border: 1px solid #e4d9d0;
  border-radius: 14px;
  background: #fff;
}

.cosmetology-guide__details summary,
.cosmetology-guide__faq summary {
  position: relative;
  padding: 1.35rem 4rem 1.35rem 1.4rem;
  cursor: pointer;
  list-style: none;
  color: #2b3944;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.cosmetology-guide__details summary::-webkit-details-marker,
.cosmetology-guide__faq summary::-webkit-details-marker {
  display: none;
}

.cosmetology-guide__details summary::after,
.cosmetology-guide__faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.35rem;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f77656;
  color: #fff;
  font-family: "PT Root UI", sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cosmetology-guide__details[open] summary::after,
.cosmetology-guide__faq details[open] summary::after {
  content: "−";
  transform: translateY(-50%);
  background: #34424d;
}

.cosmetology-guide summary:focus-visible,
.cosmetology-guide__table-wrap:focus-visible {
  outline: 3px solid rgba(247, 118, 86, 0.45);
  outline-offset: 3px;
}

.cosmetology-guide__details-body {
  padding: 0 1.4rem 1.5rem;
}

.cosmetology-guide__details-body ul,
.cosmetology-guide__steps {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.cosmetology-guide__details-body li + li,
.cosmetology-guide__steps li + li {
  margin-top: 0.8rem;
}

.cosmetology-guide__notice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid #f77656;
  background: #fff7f2;
  color: #4f5d66;
}

.cosmetology-guide__details .cosmetology-guide__steps {
  padding: 0 1.4rem 1.5rem 2.6rem;
}

.cosmetology-guide__faq {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.cosmetology-guide__faq details {
  margin-top: 0.75rem;
}

.cosmetology-guide__faq p {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
}

.cosmetology-guide__cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 18px;
  background: #34424d;
  color: #fff;
}

.cosmetology-guide__cta .cosmetology-guide__eyebrow {
  color: #f99a81;
}

.cosmetology-guide__cta h3 {
  max-width: 560px;
  margin-top: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}

.cosmetology-guide__cta p:not(.cosmetology-guide__eyebrow) {
  max-width: 600px;
  margin: 0;
  font-family: "PT Root UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.cosmetology-guide__cta .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .cosmetology-guide {
    padding: 4rem 0;
  }

  .cosmetology-guide__methods {
    grid-template-columns: 1fr;
  }

  .cosmetology-guide__method {
    min-height: 0;
  }

  .cosmetology-guide__method h3 {
    margin-top: 1.1rem;
  }

  .cosmetology-guide__details summary,
  .cosmetology-guide__faq summary {
    padding: 1.15rem 3.6rem 1.15rem 1.1rem;
    font-size: 16px;
  }

  .cosmetology-guide__details summary::after,
  .cosmetology-guide__faq summary::after {
    right: 1rem;
  }

  .cosmetology-guide__details-body,
  .cosmetology-guide__faq p {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .cosmetology-guide__details .cosmetology-guide__steps {
    padding-left: 2.2rem;
    padding-right: 1.1rem;
  }

  .cosmetology-guide__cta {
    display: block;
  }

  .cosmetology-guide__cta .btn {
    display: inline-flex;
    margin-top: 1.5rem;
  }
}

.faceforma-header {
  position: relative;
  z-index: 20;
  background: var(--ff-ink);
  border: 0;
  color: var(--ff-paper);
  box-shadow: 0 8px 26px rgba(20, 27, 28, 0.12);
}

.faceforma-header .header__container {
  min-height: 82px;
  max-width: 1320px;
  margin: 0 auto;
}

.faceforma-header .logo__title,
.faceforma-header .menu__link,
.faceforma-header .menu__location {
  color: var(--ff-paper);
}

.faceforma-header .logo__subtitle {
  color: rgba(247, 242, 235, 0.6);
}

.faceforma-header .menu__link::before {
  background: var(--ff-coral);
}

.faceforma-header .faceforma-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(247, 118, 86, 0.78);
  border-radius: 0;
  background: transparent;
  color: var(--ff-paper);
  font-family: "PT Root UI", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.faceforma-header .faceforma-header__cta:hover {
  background: var(--ff-coral);
  color: #fff;
}

.faceforma-locations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  margin: 1.5rem 1rem 3.125rem;
  padding: 2.2rem;
  background: var(--ff-ink);
  color: var(--ff-paper);
}

.faceforma-locations__eyebrow {
  margin-bottom: 1.35rem;
  color: var(--ff-coral);
  font-family: "PT Root UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faceforma-locations__grid {
  display: grid;
  gap: 0.9rem;
}

.faceforma-locations__card {
  padding: 1rem 0;
  border-top: 1px solid rgba(247, 242, 235, 0.18);
}

.faceforma-locations__card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ff-paper);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

.faceforma-locations__card p {
  margin: 0;
  color: rgba(247, 242, 235, 0.7);
  font-family: "PT Root UI", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.faceforma-locations__link {
  align-self: flex-start;
  margin-top: 1.1rem;
  color: var(--ff-paper);
  font-family: "PT Root UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.faceforma-locations__link::after {
  content: " →";
  color: var(--ff-coral);
}

.faceforma-map {
  position: relative;
  height: 280px;
  margin: 1.5rem 1rem 3.125rem;
  overflow: hidden;
  border: 1px solid #e7dfd7;
}

.faceforma-map iframe {
  position: static !important;
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 767.98px) {
  .faceforma-header .header__container {
    padding: 0 1.5rem;
  }

  .faceforma-header .header__logo {
    padding: 0;
  }

  .faceforma-header .header__menu {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2vw, 2.25rem);
    padding: 0 0 0 2.25rem;
    border-left: 1px solid rgba(247, 242, 235, 0.13);
  }

  .faceforma-header .menu__list {
    margin: 0 -0.48rem;
  }

  .faceforma-header .menu__item {
    padding: 0 0.48rem;
  }

  .faceforma-header .menu__link {
    padding: 2rem 0;
    font-family: "PT Root UI", sans-serif;
    font-size: 13px;
    letter-spacing: 0.015em;
  }

  .faceforma-header .menu__location {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    color: rgba(247, 242, 235, 0.82);
    font-family: "PT Root UI", sans-serif;
    font-size: 12px;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .faceforma-header .menu__location::before {
    display: none;
  }

  .faceforma-locations {
    align-self: start;
    min-height: 340px;
    margin: 0;
    padding: 3.1rem clamp(2.2rem, 5vw, 5.2rem);
  }

  .faceforma-locations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem;
  }

  .contacts:has(.faceforma-locations) {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(440px, 1.35fr);
    max-width: 1280px;
    margin: 4.5rem auto;
    padding: 0 1.5rem;
  }

  .contacts:has(.faceforma-locations) .contacts__container {
    min-width: 0;
  }

  .contacts:has(.faceforma-locations) .contacts__info {
    max-width: none;
    min-height: 340px;
    padding: 3rem clamp(2rem, 4vw, 4.2rem);
    border: 1px solid #e7dfd7;
    background: #fff;
  }

  .contacts:has(.faceforma-locations) .contacts__address span {
    font-size: clamp(32px, 3.3vw, 46px);
  }

  .contacts:has(.faceforma-map) {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(440px, 1.35fr);
    max-width: 1280px;
    margin: 4.5rem auto;
    padding: 0 1.5rem;
  }

  .contacts:has(.faceforma-map) .contacts__container {
    min-width: 0;
  }

  .contacts:has(.faceforma-map) .contacts__info {
    align-self: start;
    max-width: none;
    padding: 1.75rem clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid #e7dfd7;
    background: #fff;
  }

  .contacts:has(.faceforma-map) .contacts__title {
    font-size: 18px;
  }

  .contacts:has(.faceforma-map) .contacts__address {
    margin-top: 0.4rem;
    font-size: 18px;
    line-height: 1.45;
  }

  .contacts:has(.faceforma-map) .contacts__address span {
    font-size: 31px;
    line-height: 1.18;
  }

  .contacts:has(.faceforma-map) .contacts__list {
    margin-top: 1rem;
  }

  .contacts:has(.faceforma-map) .contacts__list-item {
    font-size: 18px;
  }

  .contacts:has(.faceforma-map) .contacts__list-caption {
    margin-bottom: 0.15rem;
    font-size: 13px;
  }

  .faceforma-map {
    align-self: start;
    height: 340px;
    margin: 0;
  }
}

@media (min-width: 1199.98px) {
  .faceforma-header .header__container {
    min-height: 108px;
  }

  .faceforma-header .logo__icon {
    width: 50px;
  }

  .faceforma-header .logo__title {
    font-size: 36px;
  }

  .faceforma-header .menu__link {
    padding: 2.75rem 0;
    font-size: 15px;
  }

  .faceforma-header .menu__location {
    font-size: 13px;
  }

  .faceforma-header .faceforma-header__cta {
    min-height: 48px;
    padding-right: 1.3rem;
    padding-left: 1.3rem;
    font-size: 13px;
  }
}

@media (max-width: 991.97px) and (min-width: 767.98px) {
  .faceforma-header .header__menu {
    gap: 1rem;
    padding-left: 1.25rem;
  }

  .faceforma-header .menu__location {
    display: none;
  }
}

@media (max-width: 767.97px) {
  .faceforma-header .header__container {
    padding: 0;
  }

  .faceforma-header .header__logo {
    border-left: 1px solid rgba(247, 242, 235, 0.12);
  }

  .faceforma-header .header__mobile-phone {
    border-left: 1px solid rgba(247, 242, 235, 0.12);
    color: var(--ff-paper);
  }

  .faceforma-header .icon-menu::before,
  .faceforma-header .icon-menu::after,
  .faceforma-header .icon-menu span {
    background-color: var(--ff-paper);
  }

  .faceforma-header.active::before,
  .faceforma-header .menu {
    background: var(--ff-ink);
    border-color: rgba(247, 242, 235, 0.12);
  }

  .faceforma-header .menu__list {
    color: var(--ff-paper);
  }

  .faceforma-header .menu__location {
    margin-top: 2.25rem;
    padding: 0;
    color: rgba(247, 242, 235, 0.78);
    font-size: 13px;
  }

  .faceforma-header .menu__location::before {
    display: none;
  }

  .faceforma-header .faceforma-header__cta {
    margin-top: 2rem;
  }

  .faceforma-locations {
    margin: 1.25rem 1rem 2.5rem;
  }

  .faceforma-map {
    margin: 1.25rem 1rem 2.5rem;
  }
}

/* Standalone service guide: non-surgical face lifting */
.faceforma-landing { background: #fbf8f4; color: #34424d; }
.faceforma-lift-hero { padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6.5rem); background: #f2e9e0; overflow: hidden; }
.faceforma-lift-hero__container, .faceforma-lift-toc__container, .faceforma-lift-article { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; }
.faceforma-lift-hero__container { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(300px, .72fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.faceforma-lift__eyebrow { margin: 0 0 .85rem; color: var(--ff-coral); font-family: "PT Root UI", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.faceforma-lift-hero h1, .faceforma-lift-section h2, .faceforma-lift-cta h2 { margin: 0; color: #2b3944; font-size: clamp(34px, 4.6vw, 60px); font-weight: 500; line-height: 1.08; letter-spacing: -.025em; text-wrap: balance; }
.faceforma-lift-hero__lead { max-width: 650px; margin: 1.55rem 0 0; font-family: "PT Root UI", sans-serif; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.58; color: #55636c; text-wrap: pretty; }
.faceforma-lift-hero__button { display: inline-flex; margin-top: 2rem; }
.faceforma-lift-hero__media { position: relative; min-height: 410px; border-radius: 22px; overflow: hidden; background: #d9c8bb; box-shadow: 20px 24px 0 rgba(247, 118, 86, .14); }
.faceforma-lift-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.faceforma-lift-toc { position: sticky; top: 0; z-index: 4; border-bottom: 1px solid #e7ddd4; background: rgba(251, 248, 244, .94); backdrop-filter: blur(12px); }
.faceforma-lift-toc__container { display: flex; gap: 1.35rem; overflow-x: auto; padding-top: .9rem; padding-bottom: .9rem; scrollbar-width: thin; }
.faceforma-lift-toc a { flex: 0 0 auto; color: #65737d; font-family: "PT Root UI", sans-serif; font-size: 14px; white-space: nowrap; text-decoration: none; }
.faceforma-lift-toc a:hover { color: var(--ff-coral); }
.faceforma-lift-article { width: min(920px, calc(100% - 2rem)); padding: clamp(3.5rem, 8vw, 7rem) 0; }
.faceforma-lift-article__intro { max-width: 730px; margin-bottom: clamp(3.5rem, 7vw, 6rem); padding-left: clamp(1.25rem, 3vw, 2.5rem); border-left: 2px solid var(--ff-coral); font-family: "PT Root UI", sans-serif; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: #46545d; }
.faceforma-lift-article__intro p + p, .faceforma-lift-section > p + p { margin-top: 1rem; }
.faceforma-lift-section + .faceforma-lift-section { margin-top: clamp(4rem, 9vw, 7.5rem); }
.faceforma-lift-section h2, .faceforma-lift-cta h2 { max-width: 790px; font-size: clamp(29px, 3.6vw, 45px); line-height: 1.14; }
.faceforma-lift-section > p, .faceforma-lift-section li, .faceforma-lift-faq p, .faceforma-lift-cta p { max-width: 740px; margin: 1.45rem 0 0; font-family: "PT Root UI", sans-serif; font-size: 17px; line-height: 1.65; color: #58666e; }
.faceforma-lift-section h3 { margin: 2.8rem 0 0; color: #2b3944; font-size: clamp(21px, 2.6vw, 28px); font-weight: 500; line-height: 1.25; }
.faceforma-lift-methods, .faceforma-lift-columns, .faceforma-lift-steps, .faceforma-lift-cost-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.25rem; }
.faceforma-lift-methods section, .faceforma-lift-columns > div, .faceforma-lift-steps section, .faceforma-lift-cost-grid > div { padding: 1.6rem; border: 1px solid #e4d9d0; border-radius: 16px; background: #fffdfa; }
.faceforma-lift-methods span, .faceforma-lift-steps span { color: var(--ff-coral); font-family: "PT Root UI", sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .08em; }
.faceforma-lift-methods h3, .faceforma-lift-columns h3, .faceforma-lift-steps h3 { margin: 1.5rem 0 .65rem; font-size: 21px; }
.faceforma-lift-methods p, .faceforma-lift-columns p, .faceforma-lift-steps p, .faceforma-lift-cost-grid span { margin: 0; font-family: "PT Root UI", sans-serif; font-size: 15px; line-height: 1.55; color: #65737d; }
.faceforma-lift-cost-grid strong { display: block; margin-bottom: .8rem; color: #2b3944; font-family: "PT Root UI", sans-serif; font-size: 16px; font-weight: 500; }
.faceforma-lift-table-wrap { margin-top: 2rem; overflow-x: auto; border: 1px solid #e4d9d0; border-radius: 16px; background: #fffdfa; }
.faceforma-lift-table-wrap table { width: 100%; min-width: 640px; border-collapse: collapse; font-family: "PT Root UI", sans-serif; font-size: 15px; line-height: 1.45; }
.faceforma-lift-table-wrap th { padding: 1rem 1.15rem; background: #f2e9e0; color: #34424d; font-weight: 500; text-align: left; }
.faceforma-lift-table-wrap td { padding: 1rem 1.15rem; color: #5d6b73; vertical-align: top; border-top: 1px solid #eee5dd; }
.faceforma-lift-note { margin-top: 1.5rem; padding: 1.2rem 1.35rem; border-radius: 12px; background: #fbe8e0; font-family: "PT Root UI", sans-serif; font-size: 15px; line-height: 1.55; color: #725347; }
.faceforma-lift-note strong { color: #b6543a; }
.faceforma-lift-faq details { margin-top: .8rem; border-bottom: 1px solid #dfd5cc; }
.faceforma-lift-faq summary { position: relative; padding: 1.15rem 2.4rem 1.15rem 0; color: #2b3944; font-family: "PT Root UI", sans-serif; font-size: 18px; font-weight: 500; line-height: 1.35; cursor: pointer; list-style: none; }
.faceforma-lift-faq summary::-webkit-details-marker { display: none; }
.faceforma-lift-faq summary::after { content: "+"; position: absolute; top: 1rem; right: .25rem; color: var(--ff-coral); font-size: 26px; font-weight: 300; }
.faceforma-lift-faq details[open] summary::after { content: "−"; }
.faceforma-lift-faq details p { padding: 0 1.75rem 1.4rem 0; }
.faceforma-lift-cta { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-top: clamp(4rem, 8vw, 7rem); padding: clamp(2rem, 5vw, 4rem); border-radius: 22px; background: #2e3b42; }
.faceforma-lift-cta h2 { color: var(--ff-paper); }
.faceforma-lift-cta p { color: rgba(247, 242, 235, .75); }
.faceforma-lift-cta .faceforma-lift__eyebrow { color: #ff9a7e; }
.faceforma-lift-cta .btn { flex: 0 0 auto; }
.faceforma-lift-article__disclaimer { margin: 1.25rem 0 0; font-family: "PT Root UI", sans-serif; font-size: 13px; line-height: 1.5; color: #78848a; }
@media (max-width: 767.97px) { .faceforma-lift-hero__container { grid-template-columns: 1fr; } .faceforma-lift-hero__media { min-height: 320px; order: -1; } .faceforma-lift-methods, .faceforma-lift-columns, .faceforma-lift-steps, .faceforma-lift-cost-grid { grid-template-columns: 1fr; } .faceforma-lift-cta { display: block; } .faceforma-lift-cta .btn { margin-top: 1.6rem; } .faceforma-lift-section > p, .faceforma-lift-section li, .faceforma-lift-faq p, .faceforma-lift-cta p { font-size: 16px; } }
