

:root {
  
  --surface: #F6F2EE;
  --surface-2: #FFFFFF;
  --anchor: #3A322C;
  --anchor-ink: #F2EBE4;
  --anchor-ink-soft: #C4B6A9;
  --ink: #2B2420;
  --ink-soft: #5E534C;
  --accent: #B34A16;
  --accent-rgb: 179 74 22;
  --accent-bright: #E9762F;
  --accent-ink: #FFFFFF;
  --focus: #2B2420;
  --line: #E2D9D1;
  --accent-deep: #B34A16;
  --line-strong: #8A7F76;

  --font-text: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Consolas,
               "Liberation Mono", monospace;

  --radius: 4px;
  --radius-plate: 2px;
  --section-y: 56px;
  --header-h: 56px;
  --bar-h: 56px;
  --maxw: 1140px;
  --measure: 62ch;

  --shadow: 0 1px 2px rgb(0 0 0 / .05), 0 4px 14px rgb(0 0 0 / .04);
  --shadow-lift: 0 2px 4px rgb(0 0 0 / .06), 0 10px 24px rgb(0 0 0 / .07);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  
  color-scheme: light;
  
  -webkit-tap-highlight-color: transparent;
  
  scroll-padding-top: calc(var(--header-h) + 1rem);
  scroll-padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom) + .5rem);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.6;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom));
}

h1, h2, h3, p, ul, ol {
  margin: 0;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}

img, svg {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.plate :focus-visible,
.footer :focus-visible,
.skip-link:focus {
  outline-color: var(--anchor-ink);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 50;
  padding: .75rem 1.25rem;
  background: var(--anchor);
  color: var(--anchor-ink);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

.header-sentinel {
  height: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: height 150ms ease, padding 150ms ease;
}

.site-header.is-compact {
  height: calc(var(--header-h) - 8px);
  padding: 0 .75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  
  white-space: nowrap;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.site-header nav {
  display: flex;
}

.lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 .5rem;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
}

.lang.is-current {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-deep);
}

.hero {
  background: var(--surface);
}

.hero__inner {
  padding-top: 1.5rem;
  padding-bottom: var(--section-y);
}

.hero h1 {
  font-size: clamp(30px, 8vw, 52px);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 700;
  max-width: 30ch;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero__lead {
  margin-top: .75rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero__lead-key {
  color: var(--ink);
  font-weight: 600;
}

.plate {
  
  --accent-deep: var(--accent-bright);
  position: relative;
  margin-top: 1.5rem;
  background: var(--anchor);
  color: var(--anchor-ink);
  border-radius: var(--radius-plate);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.plate--repeat {
  background: transparent;
  border: 1px solid var(--line);
}

.plate__cross {
  position: absolute;
  width: 16px;
  height: 16px;
  color: var(--accent-deep);
}

.plate__cross--tl { top: 0; left: 0; transform: translate(-50%, -50%); }
.plate__cross--tr { top: 0; right: 0; transform: translate(50%, -50%); }
.plate__cross--bl { bottom: 0; left: 0; transform: translate(-50%, 50%); }
.plate__cross--br { bottom: 0; right: 0; transform: translate(50%, 50%); }

.plate__phone {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-top: 0;
  font-family: var(--font-mono);
  font-size: 27px;
  font-weight: 600;
  color: var(--anchor-ink);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.plate__phone:hover {
  text-decoration: underline;
}

.plate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.plate__actions .btn {
  flex: 1 1 100%;
}

.facts {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fact {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .375rem .75rem;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.fact::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: var(--accent-deep);
  transform: rotate(45deg);
}

.hero__inner,
.section__inner,
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 1rem;
}

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

.section--light {
  background: var(--surface);
}

.section--white {
  background: var(--surface-2);
}

.section--dark {
  background: var(--anchor);
  --ink: var(--anchor-ink);
  --ink-soft: var(--anchor-ink-soft);
  --line: rgb(255 255 255 / .40);
  --focus: var(--anchor-ink);
  --accent-deep: var(--accent-bright);
  --line-strong: rgb(255 255 255 / .40);
  color: var(--ink);
}

.section--dark .contact-card {
  background: rgb(255 255 255 / .06);
}

.section__title {
  font-size: clamp(22px, 4.6vw, 36px);
  line-height: 1.2;
  font-weight: 600;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.section__lead {
  margin-top: .75rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.steps__list {
  list-style: none;
  margin-top: 1.5rem;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: steps;
}

.steps__item {
  counter-increment: steps;
}

.steps__item::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  margin-bottom: .5rem;
}

.steps__item p {
  margin-top: .5rem;
  max-width: var(--measure);
  color: var(--ink-soft);
}

.cards {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.card__badge {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgb(var(--accent-rgb) / .12);
  color: var(--accent-deep);
}

.card__icon {
  width: 40px;
  height: 40px;
}

.card h3 {
  margin-top: .75rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin-top: .75rem;
  display: grid;
  gap: .375rem;
}

.card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 7px;
  height: 7px;
  background: var(--accent-deep);
  transform: rotate(45deg);
}

.card__more {
  margin-top: .75rem;
}

.card__more summary {
  display: flex;
  align-items: center;
  gap: .375rem;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  list-style: none;
}

.card__more summary::-webkit-details-marker {
  display: none;
}

.card__more-hide {
  display: none;
}

.card__more[open] .card__more-show {
  display: none;
}

.card__more[open] .card__more-hide {
  display: inline;
}

.card__more summary::after {
  content: "+";
  font-family: var(--font-mono);
}

.card__more[open] summary::after {
  content: "\2212";
}

.chips {
  list-style: none;
  margin-top: 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

.chip {
  display: flex;
  align-items: center;
  gap: .625rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  font-size: 18px;
}

.chip__icon {
  width: 24px;
  height: 24px;
  color: var(--accent-deep);
  flex-shrink: 0;
}

.chip__title {
  min-width: 0;
}

.pricing__rate {
  font-family: var(--font-mono);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 1.25rem;
}

.pricing__points {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.pricing__points li {
  position: relative;
  padding-left: 1.25rem;
  max-width: var(--measure);
  color: var(--ink-soft);
}

.pricing__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 7px;
  height: 7px;
  background: var(--accent-deep);
  transform: rotate(45deg);
}

.pricing__note {
  margin-top: 1rem;
  max-width: var(--measure);
  color: var(--ink-soft);
  font-size: 16px;
}

.why__grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why__item h3 {
  position: relative;
  padding-top: 1rem;
}

.why__item h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-deep);
}

.why__item p {
  margin-top: .5rem;
  max-width: var(--measure);
  color: var(--ink-soft);
}

@keyframes form-flash {
  from { opacity: 1; }
  to { opacity: 0; }
}

#form {
  position: relative;
}

#form:target::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  pointer-events: none;
  background: var(--accent-deep);
  animation: form-flash 900ms ease-out forwards;
}

.botcheck {
  display: none !important;
}

.form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.form__field {
  display: grid;
  gap: .375rem;
}

.form__field label {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.label__opt {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
}

.form input,
.form textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: .75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color 120ms;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--ink-soft);
  opacity: 1;
}

.form textarea {
  resize: vertical;
  min-height: 8rem;
}

.form input:focus-visible,
.form textarea:focus-visible {
  border-color: var(--ink);
}

.form__error {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.form__error::before {
  content: "!";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: .05em;
  border-radius: 50%;
  background: var(--accent-deep);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] {
  border-color: var(--accent-deep);
}

.h-captcha {
  min-height: 85px;
}

.form__fallback {
  margin-top: .75rem;
  padding: .875rem 1rem;
  background: var(--surface);
  border-left: 4px solid var(--accent-deep);
  font-size: 16px;
  line-height: 1.45;
}

.form__fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .75rem;
}

.js .form__nojs {
  display: none;
}

html:not(.js) #request-form {
  display: none;
}

.form__privacy {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.4;
}

.form__status {
  max-width: 42rem;
  margin: 1rem 0 0;
}

.form__status:empty {
  margin: 0;
}

.form__status.status--error {
  background: var(--surface);
  border-left: 4px solid var(--accent-deep);
  padding: .875rem 1rem;
  color: var(--ink);
}

#form-error-call {
  margin-top: .75rem;
}

.form__success {
  margin-top: 1.5rem;
  max-width: 42rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  gap: .75rem;
}

.form__success h3::before {
  content: "\2713\00a0";
  color: var(--accent-deep);
}

.form__success p {
  color: var(--ink-soft);
}

.contact-cards {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 120ms, transform 150ms ease, box-shadow 150ms ease;
}

.contact-card:hover {
  border-color: var(--ink-soft);
}

.contact-card__logo {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: .75rem;
}

.contact-card__logo--wa { color: #25D366; }
.contact-card__logo--tg { color: #26A5E4; }
.contact-card__logo--mail { color: var(--accent-deep); }

.contact-card h3 {
  color: var(--ink);
}

.contact-card p {
  margin-top: .5rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 120ms, border-color 120ms, transform 150ms, box-shadow 150ms;
  touch-action: manipulation;
}

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

.btn--primary:hover {
  filter: brightness(.94);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn--ghost:hover {
  border-color: var(--accent-deep);
}

.btn--quiet {
  background: transparent;
  border-color: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn--quiet:hover {
  text-decoration-thickness: 2px;
}

.header-cta {
  min-height: 44px;
  padding: .375rem .75rem;
  font-size: 15px;
  white-space: nowrap;
}

.btn--wide {
  width: 100%;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.btn[aria-busy="true"] {
  cursor: progress;
}

.footer {
  background: var(--anchor);
  color: var(--anchor-ink);
  border-top: 1px solid rgb(255 255 255 / .40);
}

.footer__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: grid;
  gap: 1rem;
}

.footer__address {
  font-style: normal;
  font-family: var(--font-mono);
  display: grid;
  gap: .375rem;
  overflow-wrap: anywhere;
}

.footer__address a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
}

.footer__brand {
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 600;
}

.footer__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .25rem;
}

.footer__channels a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}

.footer__logo {
  width: 32px;
  height: 32px;
}

.footer__logo--wa { color: #25D366; }
.footer__logo--tg { color: #26A5E4; }

.footer__logo--mail { color: var(--accent-bright); }

.footer__langs {
  display: flex;
  gap: .5rem;
}

.footer__langs .lang {
  color: var(--anchor-ink-soft);
}

.footer__langs .lang.is-current {
  color: var(--anchor-ink);
  opacity: 1;
  border-bottom-color: var(--accent-bright);
}

.footer__privacy,
.footer__copy {
  font-size: 15px;
  color: var(--anchor-ink-soft);
}

.footer__privacy a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer__made {
  font-size: 13px;
  color: var(--anchor-ink-soft);
  text-align: right;
}

.footer__made a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
}

.mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  gap: .5rem;
  padding: .375rem .5rem;
  padding-bottom: calc(.375rem + env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--line);
  transition: transform 160ms, visibility 160ms;
}

.mobilebar .btn {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding-inline: .5rem;
  font-size: 16px;
  white-space: nowrap;
}

.mobilebar.is-hidden {
  visibility: hidden;
  transform: translateY(100%);
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.card:hover,
.contact-card:hover,
.btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

@media (max-width: 359px) {
  .hero__inner {
    padding-top: 1rem;
  }

  .plate {
    padding: 1rem;
  }

  
  .site-header {
    padding: 0 .75rem;
  }

  .lang {
    min-width: 38px;
  }
}

@media (min-width: 480px) {
  .plate__actions .btn {
    flex: 1 1 auto;
  }

  .why__grid,
  .cards,
  .chips {
    grid-template-columns: repeat(2, 1fr);
  }

  
  .chips {
    grid-auto-rows: 1fr;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  html {
    scroll-padding-bottom: 0;
  }

  .site-header {
    padding: 0 1.5rem;
  }

  .site-header.is-compact {
    padding: 0 1.25rem;
  }

  :root {
    --section-y: 96px;
    --header-h: 64px;
  }

  body {
    font-size: 19px;
    line-height: 1.6;
  }

  .hero__inner {
    padding-top: 3rem;
    padding-bottom: var(--section-y);
  }

  .plate {
    padding: 2.25rem;
  }

  .plate__phone {
    font-size: 34px;
  }

  .hero__inner,
  .section__inner,
  .footer__inner {
    padding-inline: 1.5rem;
  }

  h3 {
    font-size: 22px;
  }

  .card {
    padding: 1.5rem;
  }

  .card__badge {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .card__icon {
    width: 48px;
    height: 48px;
  }

  .card li {
    font-size: 18px;
  }

  .steps__item::before {
    font-size: 64px;
  }

  .steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

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

  .why__grid {
    gap: 2rem;
  }

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

  .footer__inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobilebar {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero__inner,
  .section__inner,
  .footer__inner {
    padding-inline: 2rem;
  }

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

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

@media print {
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

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

.legal-page {
  
  padding-bottom: 0;
}

.legal__top,
.legal,
.legal__foot {
  max-width: 78ch;
  margin-inline: auto;
  padding-inline: 1rem;
}

.legal__top {
  padding-block: .5rem;
  border-bottom: 1px solid var(--line);
}

.legal__back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
}

.legal__back:hover {
  color: var(--accent);
}

.legal {
  padding-block: 2.5rem 3rem;
}

.legal__title {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.legal__updated {
  margin-top: .5rem;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-soft);
}

.legal__section {
  margin-top: 2.5rem;
}

.legal__section h2 {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.legal__section p {
  margin-top: 1rem;
  max-width: var(--measure);
}

.legal__section a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.legal__list {
  margin-top: .5rem;
  padding-left: 1.5rem;
  max-width: var(--measure);
}

.legal__foot {
  padding-block: 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
}

.legal__company {
  display: grid;
  gap: .25rem;
  font-family: var(--font-mono);
  font-style: normal;
  overflow-wrap: anywhere;
}

.legal__brand {
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 600;
}

.legal__company a {
  color: inherit;
}

.legal__copy {
  margin-top: 1rem;
}

.legal__made {
  margin-top: .25rem;
  font-size: 13px;
  text-align: right;
}

.legal__made a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
}
