:root {
  --bg: #0b0d0c;
  --surface: #131614;
  --surface-strong: #1b1e1a;
  --ivory: #f5f0e6;
  --paper: #e6dfd1;
  --muted: #aaa69d;
  --gold: #d5aa57;
  --gold-bright: #efd08d;
  --green: #557a68;
  --line: rgba(245, 240, 230, 0.13);
  --gold-line: rgba(213, 170, 87, 0.34);
  --content: 1440px;
  --topbar-height: 72px;
  --topbar-height-mobile: 64px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 8px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  color: #0b0d0c;
  background: var(--gold-bright);
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  height: var(--topbar-height);
  min-height: var(--topbar-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 12, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.hero-proof,
.info-strip,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  width: max-content;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: #11130f;
  font-size: 18px;
}

.nav {
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.admin-link {
  transition: color 160ms ease;
}

.nav a:hover,
.admin-link:hover {
  color: var(--gold-bright);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
}

.mobile-label {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  height: calc(100svh - 150px);
  min-height: 580px;
  max-height: 760px;
  align-items: center;
  overflow: hidden;
  padding: 54px max(24px, calc((100vw - var(--content)) / 2));
  isolation: isolate;
  grid-template-columns: minmax(0, 1fr);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("/assets/vblesk-hero.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.88) 0%, rgba(5, 7, 6, 0.62) 34%, rgba(5, 7, 6, 0.18) 64%, rgba(5, 7, 6, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.08) 0%, rgba(5, 7, 6, 0.58) 100%);
}

.hero-content {
  min-width: 0;
  position: relative;
  width: min(720px, 48vw);
  margin-inline: 0;
  padding-left: 24px;
  text-align: left;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.72);
}

.hero-content::before {
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(239, 208, 141, 0), rgba(239, 208, 141, 0.94), rgba(239, 208, 141, 0));
  content: "";
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 8px;
  color: #fffaf0;
  font-size: 88px;
  line-height: 0.96;
  font-weight: 900;
}

.hero-tagline {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 22px;
  font-weight: 800;
}

.lead {
  max-width: 610px;
  margin: 0;
  color: var(--paper);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #11130f;
  background: var(--gold-bright);
  box-shadow: 0 14px 38px rgba(213, 170, 87, 0.2);
}

.primary:hover {
  background: #f7d997;
}

.ghost {
  border-color: rgba(245, 240, 230, 0.34);
  color: var(--ivory);
  background: rgba(11, 13, 12, 0.55);
}

.hero-proof {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 24px;
  margin-top: 28px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  animation: proof-pulse 3.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(85, 122, 104, 0);
  transform-origin: center;
  vertical-align: 1px;
}

.hero-proof span:nth-child(2)::before {
  animation-delay: 0.45s;
}

.hero-proof span:nth-child(3)::before {
  animation-delay: 0.9s;
}

@keyframes proof-pulse {
  0%, 100% {
    opacity: 0.4;
    box-shadow: 0 0 0 0 rgba(85, 122, 104, 0);
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(85, 122, 104, 0.13);
    transform: scale(1.18);
  }
}

.info-strip {
  min-height: 112px;
  justify-content: space-between;
  gap: 28px;
  padding: 24px max(24px, calc((100vw - var(--content)) / 2));
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.info-strip > div {
  min-width: 170px;
  text-align: left;
}

.info-strip span,
.footer > div span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.info-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--ivory);
  font-size: 15px;
}

.info-link,
.text-link {
  color: var(--gold-bright);
  font-weight: 850;
}

.info-link span,
.text-link span {
  margin-left: 8px;
}

.section,
.booking-section,
.care-section,
.value-band,
.final-cta {
  padding-inline: max(24px, calc((100vw - var(--content)) / 2));
}

.section {
  padding-block: 104px;
}

.section-heading {
  width: 100%;
  margin-bottom: 42px;
  text-align: left;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 72px;
}

.split-heading > p {
  max-width: none;
  margin-inline: 0;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  background: linear-gradient(180deg, #151915 0%, #111411 100%);
  transition: background 180ms ease;
  text-align: left;
}

.service-card::before {
  width: 34px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--gold);
  content: "";
}

.service-card:hover {
  background: var(--surface-strong);
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.58;
}

.service-card span {
  margin-top: auto;
  color: var(--gold-bright);
  font-weight: 850;
}

.care-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 0;
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  padding-left: 0;
  padding-block: 0;
  background: var(--surface-strong);
}

.care-media {
  height: auto;
  min-height: 640px;
  margin: 0;
}

.care-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-copy {
  display: flex;
  width: 100%;
  max-width: 620px;
  margin-inline: auto 0;
  flex-direction: column;
  justify-content: center;
  padding: 86px 0 86px 72px;
  text-align: left;
}

.care-copy h2 {
  margin-bottom: 22px;
}

.care-lead {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.65;
}

.care-points {
  margin: 20px 0 34px;
  border-top: 1px solid var(--line);
}

.care-points > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.care-points strong {
  color: var(--gold-bright);
}

.care-points span {
  color: var(--muted);
  line-height: 1.5;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
  background: #101310;
}

.value-band > div {
  padding: 0 42px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.value-band > div:first-child {
  padding-left: 0;
}

.value-band > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.value-band span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.value-band strong {
  font-size: 22px;
}

.value-band p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  min-width: 0;
  align-items: start;
  gap: 84px;
  padding-block: 104px;
  background: var(--bg);
}

.booking-copy {
  width: 100%;
  max-width: 540px;
  min-width: 0;
  margin-inline: 0;
  text-align: left;
}

.booking-copy h2 {
  margin-bottom: 22px;
}

.booking-copy > p:last-of-type {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.booking-contact {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.booking-contact span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.booking-contact a {
  color: var(--gold-bright);
  font-size: 20px;
  font-weight: 850;
}

.telegram-booking {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 430px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(213, 170, 87, 0.28);
  border-radius: 6px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(213, 170, 87, 0.15), rgba(85, 122, 104, 0.12)),
    rgba(19, 22, 20, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.telegram-booking:hover {
  border-color: rgba(239, 208, 141, 0.62);
  background:
    linear-gradient(135deg, rgba(213, 170, 87, 0.22), rgba(85, 122, 104, 0.17)),
    rgba(27, 30, 26, 0.96);
  transform: translateY(-2px);
}

.telegram-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(239, 208, 141, 0.46);
  border-radius: 50%;
  color: #11130f;
  background: var(--gold-bright);
  box-shadow: 0 12px 30px rgba(213, 170, 87, 0.18);
}

.telegram-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.telegram-booking strong,
.telegram-booking small {
  display: block;
  min-width: 0;
}

.telegram-booking strong {
  color: var(--gold-bright);
  font-size: 16px;
  font-weight: 900;
}

.telegram-booking small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-inline: 0;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-form > *,
.booking-form label {
  min-width: 0;
  max-width: 100%;
}

.booking-slot-panel {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(245, 240, 230, 0.14);
  border-radius: 6px;
  background: #0d100e;
}

.slot-panel-head {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 4px;
}

.slot-panel-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.slot-panel-head strong {
  min-width: 0;
  max-width: 100%;
  color: var(--gold-bright);
  font-size: 14px;
  overflow-wrap: anywhere;
  text-align: right;
}

.date-picker,
.time-picker {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 8px;
}

.date-picker {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}

.time-picker {
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
}

.date-option,
.time-option {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 50px;
  place-items: center;
  border: 1px solid rgba(245, 240, 230, 0.14);
  border-radius: 4px;
  color: var(--ivory);
  background: rgba(19, 22, 20, 0.88);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.date-option {
  align-content: center;
  gap: 3px;
}

.time-option {
  align-content: center;
  gap: 2px;
}

.date-option span,
.time-option span {
  max-width: 100%;
  overflow: hidden;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.date-option small {
  max-width: 100%;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.date-option.active,
.time-option.active {
  border-color: var(--gold);
  color: #11130f;
  background: var(--gold-bright);
}

.date-option.active small {
  color: rgba(17, 19, 15, 0.72);
}

.date-option:hover:not(.active),
.time-option:hover:not(.active):not(:disabled) {
  border-color: var(--gold-line);
  background: var(--surface-strong);
}

.time-option:disabled {
  color: rgba(245, 240, 230, 0.3);
  cursor: not-allowed;
  background: rgba(11, 13, 12, 0.62);
}

.time-option small {
  max-width: 100%;
  overflow: hidden;
  color: rgba(245, 240, 230, 0.42);
  font-size: 10px;
  font-weight: 850;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.time-option.occupied {
  border-color: rgba(210, 171, 91, 0.18);
}

.slot-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: 4px;
  color: var(--muted);
  background: rgba(19, 22, 20, 0.72);
  text-align: center;
}

label {
  display: grid;
  gap: 8px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(245, 240, 230, 0.16);
  border-radius: 4px;
  color: var(--ivory);
  background: #0d100e;
  outline: none;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

input[type="date"],
input[type="time"] {
  min-inline-size: 0;
  max-inline-size: 100%;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(213, 170, 87, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-bright);
  font-weight: 750;
}

.calendar-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.calendar-actions[hidden] {
  display: none;
}

.calendar-actions span {
  color: var(--paper);
  font-size: 14px;
  font-weight: 850;
}

.calendar-actions .button {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.final-cta {
  padding-block: 94px;
  text-align: center;
  background: var(--surface-strong);
}

.final-cta h2 {
  margin: 0 auto 30px;
}

.footer {
  min-height: 112px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 24px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  background: #080a09;
  text-align: left;
}

.footer > div {
  display: flex;
  justify-content: flex-start;
  gap: 28px;
}

.footer-brand span:last-child {
  color: var(--ivory);
  font-size: 17px;
}

.admin-link {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-content {
    width: min(720px, 100%);
  }

  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 42px;
  }

  .service-grid,
  .value-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-band > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px;
  }

  .value-band > div:first-child {
    padding-left: 30px;
  }

  .care-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .care-section {
    padding-inline: max(24px, calc((100vw - var(--content)) / 2));
  }

  .care-media {
    height: 520px;
    min-height: 520px;
    margin-inline: max(-24px, calc((var(--content) - 100vw) / 2));
  }

  .care-copy {
    max-width: 760px;
    margin-inline: 0;
    padding: 72px 0;
  }

  .booking-copy {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .topbar {
    height: var(--topbar-height-mobile);
    min-height: var(--topbar-height-mobile);
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 12px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
    justify-self: start;
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-self: end;
    padding: 0 13px;
    font-size: 13px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    height: calc(100svh - 128px);
    min-height: 570px;
    max-height: 700px;
    align-items: center;
    padding: 40px 18px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 6, 0.9) 0%, rgba(5, 7, 6, 0.62) 58%, rgba(5, 7, 6, 0.36) 100%),
      linear-gradient(180deg, rgba(5, 7, 6, 0.1) 0%, rgba(5, 7, 6, 0.72) 100%);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-left: 18px;
    overflow-wrap: anywhere;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .eyebrow,
  .hero-tagline,
  .lead {
    margin-inline: 0;
    white-space: normal;
  }

  h1 {
    font-size: 52px;
  }

  .hero-tagline {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
    white-space: normal;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    gap: 8px 12px;
    width: 100%;
    text-align: left;
  }

  .hero-proof span {
    min-width: 0;
  }

  .info-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 26px 18px;
  }

  .info-strip > div {
    width: 100%;
  }

  .section,
  .booking-section,
  .care-section,
  .value-band,
  .final-cta {
    padding-inline: 18px;
  }

  .section,
  .booking-section,
  .final-cta {
    padding-block: 72px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  h2 {
    font-size: 34px;
  }

  .service-grid,
  .value-band,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .care-media {
    height: 410px;
    min-height: 410px;
    margin-inline: -18px;
  }

  .care-copy {
    padding: 58px 0;
  }

  .care-points > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .value-band {
    padding-block: 30px;
  }

  .value-band > div,
  .value-band > div:first-child {
    padding: 28px 0;
  }

  .booking-section {
    gap: 42px;
  }

  .booking-form {
    padding: 20px;
  }

  .telegram-booking {
    max-width: 100%;
    margin-top: 22px;
    padding: 14px;
  }

  .telegram-icon {
    width: 42px;
    height: 42px;
  }

  .calendar-actions {
    grid-template-columns: 1fr;
  }

  .calendar-actions .button {
    width: 100%;
  }

  .booking-slot-panel {
    padding: 14px;
  }

  .slot-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .slot-panel-head strong {
    text-align: left;
  }

  .date-picker,
  .time-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer,
  .footer > div {
    align-items: center;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-proof span::before {
    animation: none;
  }
}
