/* MobiBlend — лендинг и страницы content/ (styles.css) */

:root {
  --color-background: 245, 245, 220;
  --color-foreground: 2, 9, 18;
  --color-header-bg: 65, 73, 13;
  --color-header-foreground: 252, 252, 252;
  --color-button-header: 2, 9, 18;
  --color-button-header-text: 228, 246, 255;
  --color-button: 61, 66, 27;
  --color-button-text: 252, 252, 252;
  --color-link: 2, 9, 18;
  --footer-text: #5a4022;
  --footer-heading-strong: #8c6239;
  --footer-bg: #faf7f2;
  --page-width: min(100rem, 100% - 3rem);
  --buttons-radius: 40px;
  --font-body-family: "IBM Plex Sans", system-ui, sans-serif;
  --font-heading-family: "IBM Plex Serif", Georgia, serif;
  --font-body-scale: 1.05;
}

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

html {
  font-size: calc(var(--font-body-scale) * 62.5%);
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
}

@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

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

a {
  color: rgb(var(--color-link));
  text-underline-offset: 2px;
}

a:hover {
  opacity: 0.85;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Шапка */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(var(--color-header-bg));
  color: rgb(var(--color-header-foreground));
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.site-header__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-family: var(--font-heading-family);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.brand__text {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  max-width: 22rem;
}

.nav-cta {
  font-family: var(--font-body-family);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--buttons-radius);
  background: rgb(var(--color-button-header));
  color: rgb(var(--color-button-header-text));
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.92;
  color: rgb(var(--color-button-header-text));
}

.nav-cta--secondary {
  background: transparent;
  color: rgb(var(--color-header-foreground));
  border: 2px solid rgba(252, 252, 252, 0.65);
}

.nav-cta--secondary:hover {
  color: rgb(var(--color-header-foreground));
  background: rgba(252, 252, 252, 0.1);
  opacity: 1;
}

.site-header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

/* Состав и применение */
.ingredients-panel {
  background: rgba(var(--color-foreground), 0.03);
}

.ingredients-panel__grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--page-width);
  margin: 0 auto;
}

@media (min-width: 750px) {
  .ingredients-panel__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ingredients-panel__card {
  background: rgb(252, 252, 252);
  border: 2px solid rgba(var(--color-foreground), 0.1);
  padding: 2rem;
}

.ingredients-panel__h {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  color: rgb(var(--color-foreground));
}

.ingredients-panel__list,
.ingredients-panel__steps {
  margin: 0;
  padding-left: 1.5rem;
  font-size: 1.3rem;
  line-height: 1.65;
}

.ingredients-panel__list li,
.ingredients-panel__steps li {
  margin-bottom: 0.75rem;
}

.ingredients-panel__footnote {
  max-width: var(--page-width);
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid rgb(var(--color-button));
  background: rgb(252, 252, 252);
  border: 2px solid rgba(var(--color-foreground), 0.12);
  border-left-width: 4px;
}

.ingredients-panel__footnote p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Hero / контент */
.hero {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 990px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.hero__frame {
  position: relative;
  background: rgb(252, 252, 252);
  border-radius: 0;
  padding: 1rem;
  border: 2px solid rgba(var(--color-foreground), 0.12);
}

.hero__frame--visual {
  padding: 0;
  overflow: hidden;
}

.hero__figure {
  margin: 0;
}

.hero__offer-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 801 / 1024;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  letter-spacing: 0.06rem;
  color: rgba(var(--color-foreground), 0.75);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  color: rgb(var(--color-foreground));
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 52rem;
}

.hero__lead a {
  color: rgb(var(--color-link));
  font-weight: 700;
  text-decoration: underline;
}

.hero__lead a:hover {
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06rem;
  padding: 1.2rem 2.4rem;
  border-radius: var(--buttons-radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 4.5rem;
}

.btn--primary {
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
}

.btn--primary:hover {
  opacity: 0.9;
  color: rgb(var(--color-button-text));
}

.btn--ghost {
  background: transparent;
  color: rgb(var(--color-foreground));
  border: 2px solid rgba(var(--color-foreground), 0.55);
}

.btn--ghost:hover {
  opacity: 0.85;
  color: rgb(var(--color-foreground));
}

.hero__meta {
  font-size: 1.2rem;
}

.hero__meta strong {
  color: rgb(var(--color-foreground));
}

/* Секции */
.section {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.section__title {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: rgb(var(--color-foreground));
  margin: 0 0 2rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.section__subtitle {
  font-family: var(--font-body-family);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(var(--color-foreground), 0.75);
  text-align: center;
  margin: -1rem auto 2rem;
  max-width: 48rem;
}

.features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 750px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: rgb(252, 252, 252);
  border-radius: 0;
  padding: 0;
  border: 2px solid rgba(var(--color-foreground), 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card__fig {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.06);
}

.feature-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-card__body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}

.feature-card__body h3 {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: 1.6rem;
  color: rgb(var(--color-foreground));
  margin: 0 0 0.75rem;
}

.feature-card__body p {
  margin: 0;
}

.features__credit {
  max-width: var(--page-width);
  margin: 1.75rem auto 0;
  padding: 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(var(--color-foreground), 0.6);
  text-align: center;
}

.features__credit a {
  color: rgb(var(--color-link));
  font-weight: 600;
}

.features__credit a:hover {
  opacity: 0.85;
}

/* Сочетание с продуктами */
.pairings {
  background: rgba(var(--color-foreground), 0.025);
  border-top: 1px solid rgba(var(--color-foreground), 0.06);
}

.pairings__grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--page-width);
  margin: 0 auto;
}

@media (min-width: 750px) {
  .pairings__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pairing-card {
  background: rgb(252, 252, 252);
  border: 2px solid rgba(var(--color-foreground), 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pairing-card__fig {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.06);
}

.pairing-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pairing-card__h {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
  padding: 1.25rem 1.25rem 0.5rem;
  color: rgb(var(--color-foreground));
}

.pairing-card__p {
  margin: 0;
  padding: 0 1.25rem 1.5rem;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(var(--color-foreground), 0.85);
}

.pairings__note {
  max-width: 52rem;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  font-size: 1.15rem;
  line-height: 1.55;
  border-left: 4px solid rgb(var(--color-button));
  background: rgb(252, 252, 252);
  border: 2px solid rgba(var(--color-foreground), 0.12);
  border-left-width: 4px;
}

/* Цена — один SKU */
.price-strip {
  background: rgba(var(--color-foreground), 0.04);
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  text-align: center;
}

.price-strip .section__title {
  margin-bottom: 0.75rem;
}

.price-strip__single {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.5;
  color: rgb(var(--color-foreground));
}

.price-strip__amount {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  color: rgb(var(--color-foreground));
  white-space: nowrap;
}

/* Текстовый блок */
.story {
  background: rgb(252, 252, 252);
  border: 2px solid rgba(var(--color-foreground), 0.1);
  border-radius: 0;
  padding: 2.5rem 2rem;
  margin: 0 1.5rem 4rem;
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
}

.story__title {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: rgb(var(--color-foreground));
  margin: 0 0 1.5rem;
}

.story p {
  margin: 0 0 1.25rem;
  max-width: 75rem;
}

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

/* Длинный информационный блок (wellbeing / policy-friendly) */
.wellbeing {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.wellbeing.section {
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
  background: rgba(var(--color-foreground), 0.03);
}

.wellbeing__label {
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.65);
  text-align: center;
  margin: 0 0 0.5rem;
}

.wellbeing .section__title {
  margin-bottom: 1.5rem;
}

.wellbeing__callout {
  max-width: 75rem;
  margin: 0 auto 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid rgb(var(--color-button));
  background: rgb(252, 252, 252);
  border: 2px solid rgba(var(--color-foreground), 0.12);
  border-left-width: 4px;
}

.wellbeing__callout--muted {
  margin-top: 2rem;
  margin-bottom: 0;
  border-left-color: rgba(var(--color-foreground), 0.35);
}

.wellbeing .wellbeing__callout--muted + .wellbeing__callout--muted {
  margin-top: 1.25rem;
}

.wellbeing__callout p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.65;
}

.wellbeing__callout code {
  font-family: var(--font-body-family);
  font-size: 1.05rem;
  background: rgba(var(--color-foreground), 0.08);
  padding: 0.05rem 0.3rem;
}

.wellbeing__body {
  max-width: 75rem;
  margin: 0 auto;
}

.wellbeing__body > p {
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
  line-height: 1.7;
}

.wellbeing__body h3 {
  font-family: var(--font-heading-family);
  font-weight: 500;
  font-size: 1.8rem;
  color: rgb(var(--color-foreground));
  margin: 2rem 0 1rem;
  letter-spacing: 0.02em;
}

.wellbeing__list {
  margin: 0 0 1.5rem;
  padding-left: 2rem;
  font-size: 1.35rem;
  line-height: 1.7;
}

.wellbeing__list li {
  margin-bottom: 0.75rem;
}

.wellbeing__steps {
  margin: 0 0 2rem;
  padding-left: 2rem;
  font-size: 1.35rem;
  line-height: 1.75;
}

.wellbeing__steps li {
  margin-bottom: 1.25rem;
}

.wellbeing__steps li strong {
  color: rgb(var(--color-foreground));
}

.wellbeing__body a {
  text-decoration: underline;
}

/* Футер — как блок .footer на vintagerecipes.in */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  font-family: Georgia, Garamond, "Times New Roman", Times, serif;
  padding: 4rem 1.5rem 3rem;
  margin-top: 0;
}

.site-footer a {
  color: var(--footer-text);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  opacity: 1;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 750px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.site-footer h2 {
  font-family: Georgia, Garamond, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  color: var(--footer-heading-strong);
}

.site-footer p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

.disclaimer {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(90, 64, 34, 0.25);
  grid-column: 1 / -1;
  color: var(--footer-text);
}

.disclaimer a {
  text-decoration: underline;
}

.disclaimer code {
  font-family: var(--font-body-family);
  font-size: 1.05rem;
  background: rgba(90, 64, 34, 0.12);
  padding: 0.05rem 0.3rem;
}

/* Локальное зеркало — в цветах футера магазина */
.footer-bundle {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(90, 64, 34, 0.25);
  text-align: left;
  font-family: var(--font-body-family);
}

.footer-bundle__title {
  font-family: Georgia, Garamond, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--footer-heading-strong);
  margin: 0 0 1rem;
}

.footer-bundle__entity {
  font-size: 1.4rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  color: var(--footer-text);
}

.footer-bundle__entity strong {
  color: var(--footer-text);
}

.footer-bundle__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 0 0 1.25rem;
  font-size: 1.3rem;
}

.footer-bundle__nav a {
  color: var(--footer-text);
  text-decoration: underline;
}

.footer-bundle__nav a:hover {
  opacity: 0.8;
}

.footer-bundle__note {
  font-size: 1.3rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  color: var(--footer-text);
}

.footer-bundle__note code {
  font-family: var(--font-body-family);
  font-size: 1.1rem;
  background: rgba(90, 64, 34, 0.08);
  padding: 0.1rem 0.35rem;
}

.footer-bundle__refs {
  font-size: 1.3rem;
  margin: 0;
}

.footer-bundle__refs a {
  color: var(--footer-text);
  text-decoration: underline;
}

/* Форма заказа и оплаты */
.order-section {
  background: rgba(var(--color-foreground), 0.04);
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

.order-form {
  max-width: 56rem;
  margin: 0 auto;
}

.order-form__group {
  border: 2px solid rgba(var(--color-foreground), 0.12);
  background: rgb(252, 252, 252);
  padding: 1.5rem 1.75rem;
  margin: 0 0 1.5rem;
}

.order-form__legend {
  font-family: var(--font-heading-family);
  font-weight: 600;
  padding: 0 0.5rem;
  color: rgb(var(--color-foreground));
}

.order-form__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0 0.35rem;
  color: rgb(var(--color-foreground));
}

.order-form__group .order-form__label:first-of-type {
  margin-top: 0;
}

.order-form__input,
.order-form__textarea {
  width: 100%;
  font-family: var(--font-body-family);
  font-size: 1.3rem;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(var(--color-foreground), 0.25);
  background: #fff;
}

.order-form__textarea {
  resize: vertical;
  min-height: 6rem;
}

.order-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 549px) {
  .order-form__row {
    grid-template-columns: 1fr;
  }
}

.order-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin: 1.5rem 0;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.order-form__check input {
  margin-top: 0.35rem;
}

.order-form__check a {
  color: rgb(var(--color-link));
  font-weight: 700;
}

.order-form__submit {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto 1rem;
  display: flex;
}

.order-form__fineprint {
  font-size: 1.15rem;
  color: rgba(var(--color-foreground), 0.65);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.5;
}

.order-form__code {
  font-size: 1.05rem;
  background: rgba(var(--color-foreground), 0.08);
  padding: 0.05rem 0.3rem;
}

.order-form__error {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #b42318;
  line-height: 1.4;
}

.order-form__error--check {
  margin-top: 0.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.order-form__input.order-form__input--invalid,
.order-form__textarea.order-form__input--invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 1px rgba(180, 35, 24, 0.25);
}

body.order-modal-open {
  overflow: hidden;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.order-modal[hidden] {
  display: none;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
  cursor: pointer;
}

.order-modal__box {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  width: 100%;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
  text-align: center;
}

.order-modal__title {
  font-family: var(--font-heading-family);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  color: rgb(var(--color-foreground));
}

.order-modal__text {
  font-size: 1.25rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  color: rgba(var(--color-foreground), 0.85);
}

.order-modal__btn {
  min-width: 10rem;
}

/* Футер в стиле content/*.html (Nicepage u-footer / palette-1-dark-3) */
.moo-footer {
  background: #34495e;
  color: rgba(255, 255, 255, 0.92);
  padding: 3rem 1.5rem 3.5rem;
  text-align: center;
}

.moo-footer__sheet {
  max-width: 1140px;
  margin: 0 auto;
}

.moo-footer__entity {
  font-family: Georgia, Garamond, "Times New Roman", Times, serif;
  font-size: 1.35rem;
  line-height: 1.65;
  margin: 0 0 1.75rem;
}

.moo-footer__label {
  font-weight: 700;
}

.moo-footer__entity a {
  color: #aed6f1;
  text-decoration: none;
}

.moo-footer__entity a:hover {
  text-decoration: underline;
  color: #fff;
}

.moo-footer__disclaimer {
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0 auto 1.75rem;
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.88);
}

.moo-footer__policies {
  font-size: 1.3rem;
  line-height: 1.85;
  margin: 0 auto 1.5rem;
}

.moo-footer__policies a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.moo-footer__policies a:hover {
  color: #fff;
}

/* Подстраницы политик (content/*.html) */
.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: 100%;
}

.site-header__nav .nav-cta {
  font-size: 1.05rem;
  padding: 0.55rem 0.9rem;
}

.legal-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.legal-page__article--legacy h3,
.legal-page__article--legacy .u-text {
  font-family: var(--font-body-family);
  color: rgb(var(--color-foreground));
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-page__article--legacy h3 {
  font-family: var(--font-heading-family);
  font-weight: 600;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin: 0 0 1.25rem;
  line-height: 1.25;
}

.legal-page__article--legacy .u-text {
  font-size: 1.2rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.legal-page__article--legacy .u-align-center {
  text-align: center;
}

.legal-page__article--legacy .u-align-left {
  text-align: left;
}
