/* Sanmua — a quiet, paper-inspired journal. No external font dependencies. */
:root {
  color-scheme: light;
  --bg: #f7f7f2;
  --bg-subtle: #eeefe7;
  --surface: #fffefa;
  --surface-hover: #f2f3eb;
  --text: #273b31;
  --text-secondary: #687269;
  --text-tertiary: #737b71;
  --border: #dedfd5;
  --border-strong: #c2c8bb;
  --accent: #315b49;
  --accent-hover: #183f2d;
  --accent-soft: #e7ecdf;
  --font-sans:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  --font-serif: "Songti SC", "STSong", "SimSun", Georgia, serif;
  --font-mono: Consolas, monospace;
  --maxw: 1160px;
  --maxw-prose: 780px;
  --nav-height: 84px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 6px #183f2d05;
  --shadow-md: 0 10px 32px #183f2d08;
}
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #19231e;
  --bg-subtle: #222e26;
  --surface: #202c24;
  --surface-hover: #29372d;
  --text: #e6eadf;
  --text-secondary: #b0bbab;
  --text-tertiary: #9fae99;
  --border: #39453a;
  --border-strong: #54644f;
  --accent: #b7cea4;
  --accent-hover: #d7e7ca;
  --accent-soft: #304032;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-size: 16px;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.75 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
body.has-nav {
  padding-top: var(--nav-height);
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-hover);
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img,
svg,
video {
  max-width: 100%;
}
img {
  height: auto;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  background: var(--surface);
  padding: 12px;
  z-index: 200;
}
.skip-link:focus {
  top: 10px;
}
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-height);
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-nav__inner {
  height: 100%;
  max-width: var(--maxw);
  padding: 0 28px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -1px;
}
.logo-mark {
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg);
  height: 34px;
  width: 34px;
  border-radius: 11px;
  font-family: Georgia, serif;
  font-size: 27px;
}
.brand-note {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-tertiary);
  border-left: 1px solid var(--border);
  padding-left: 20px;
}
.site-nav__links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
}
.site-nav__links a {
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
}
.site-nav__links a:hover,
.site-nav__links .is-active {
  color: var(--accent);
}
.site-nav__links .is-active:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.theme-toggle,
.nav-burger {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 19px;
}
.theme-toggle:hover {
  background: var(--accent-soft);
}
.nav-burger {
  display: none;
}
.page {
  max-width: var(--maxw);
  padding: 52px 28px 0;
  margin: auto;
}
.intro {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 35px;
  padding: 25px 0 57px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.intro h1 {
  font: 500 clamp(46px, 5.3vw, 67px)/1.3 var(--font-serif);
  letter-spacing: 2px;
  margin: 28px 0 23px;
  position: relative;
}
.handwritten {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.handwritten:after {
  content: "";
  height: 7px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 10px;
  background: #b5c99a70;
  transform: rotate(-3deg);
  border-radius: 50%;
}
.asterisk {
  display: inline-block;
  font:
    48px Georgia,
    serif;
  color: #91a879;
  vertical-align: top;
  margin: 10px 0 0 13px;
}
.intro-description {
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
}
.intro-description strong {
  color: var(--text);
  font-weight: 600;
}
.intro-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 28px;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 27px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 7px;
  padding: 11px 19px;
  font-size: 13px;
}
.button-primary:hover {
  background: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-2px);
}
.text-link {
  font-size: 13px;
}
.text-link span {
  margin-left: 12px;
}
.intro-note {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-tertiary);
  margin: 26px 0 0;
}
.desk-art {
  height: 420px;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse, #dce4cf60, transparent 66%);
}
.art-orbit {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
  z-index: -1;
}
.orbit-one {
  width: 345px;
  height: 345px;
}
.orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  opacity: 0.6;
}
.art-label {
  position: absolute;
  top: 4px;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text-tertiary);
  transform: rotate(7deg);
}
.notebook {
  width: 252px;
  height: 320px;
  background-color: #355a46;
  background-image:
    linear-gradient(#ffffff0b 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0b 1px, transparent 1px);
  background-size: 20px 20px;
  color: #e9ead9;
  border-radius: 4px 14px 14px 4px;
  transform: rotate(-10deg);
  box-shadow:
    7px 9px 0 -3px #e3e1d3,
    8px 10px 0 -2px #bac2ad,
    15px 25px 38px #233c3325;
  padding: 30px;
  position: relative;
}
.notebook-spine {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  border-left: 1px solid #112e3460;
  border-right: 1px solid #ffffff12;
  width: 4px;
}
.notebook-number {
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #d5dec6;
}
.notebook-title {
  font: 29px/1.65 var(--font-serif);
  margin-top: 28px;
  letter-spacing: 5px;
}
.notebook-title span {
  display: block;
  font: 8px/2 var(--font-sans);
  letter-spacing: 2px;
  margin-top: 13px;
}
.notebook-owner {
  position: absolute;
  bottom: 24px;
  font:
    italic 12px Georgia,
    serif;
}
.notebook-owner span {
  margin-left: 38px;
}
.sticky-note {
  position: absolute;
  right: 0;
  bottom: 44px;
  transform: rotate(9deg);
  padding: 20px 22px 23px;
  width: 155px;
  background: #e7e8bb;
  color: #3d513b;
  box-shadow: 2px 8px 18px #182e2415;
  font:
    30px/1.1 Georgia,
    serif;
}
.sticky-note:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 45px;
  width: 66px;
  height: 24px;
  background: #faf7df90;
  transform: rotate(-5deg);
}
.sticky-note > span {
  display: block;
  font: 9px var(--font-mono);
  margin-bottom: 17px;
}
.sticky-note i {
  position: absolute;
  right: 13px;
  bottom: 8px;
  font-size: 27px;
}
.art-caption {
  position: absolute;
  bottom: 0;
  left: 82px;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-tertiary);
}
.mood-line {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 1px;
}
.mood-line > span:last-child {
  color: var(--text-tertiary);
}
.mood-line > span:last-child span {
  margin-left: 20px;
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 58px;
  padding-top: 53px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  margin-bottom: 25px;
}
.section-heading .eyebrow {
  margin-bottom: 7px;
}
.section-heading h2 {
  font: 500 29px var(--font-serif);
  margin: 0;
}
.heading-dot {
  color: #839969;
}
.post-count {
  color: var(--text-tertiary);
  font-size: 11px;
}
.journal-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.filters {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.filter {
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 11px;
  border-radius: 5px;
  padding: 6px 10px;
}
.filter:hover {
  background: var(--bg-subtle);
}
.filter.is-active {
  background: var(--accent);
  color: var(--bg);
}
.search-box {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-secondary);
}
.search-box > span {
  font-size: 23px;
}
.search-box input {
  width: 110px;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  color: var(--text);
  padding: 6px 0;
}
.search-box input::placeholder {
  color: var(--text-tertiary);
}
.post-item {
  display: grid;
  grid-template-columns: 1fr 87px;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.post-item:hover {
  color: var(--text);
}
.post-item:hover h3 {
  color: var(--accent);
  transform: translateX(4px);
}
.post-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: var(--text-tertiary);
}
.post-item__tag {
  color: var(--accent);
}
.post-item h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 10px 0;
  transition: transform 0.2s;
}
.post-item__excerpt {
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
}
.post-item__bottom {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  font-size: 10px;
  color: var(--text-tertiary);
}
.post-item__bottom span:last-child {
  color: var(--accent);
}
.post-art {
  align-self: center;
  display: grid;
  place-items: center;
  width: 87px;
  height: 96px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  position: relative;
  overflow: hidden;
  font:
    32px Georgia,
    serif;
}
.post-art:after {
  content: "";
  width: 100px;
  height: 100px;
  border: 1px solid currentColor;
  opacity: 0.12;
  position: absolute;
  transform: rotate(35deg);
  left: 30px;
  top: 25px;
}
.post-art small {
  position: absolute;
  bottom: 9px;
  font: 7px var(--font-mono);
  letter-spacing: 1px;
}
.post-art--code {
  background: var(--bg-subtle);
}
.post-art--life {
  background: color-mix(in srgb, var(--accent-soft), #ccae7520 40%);
}
.post-item--featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  margin-top: 19px;
  padding: 23px;
}
.post-item--featured h3 {
  font-size: 21px;
}
.empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}
.empty-state button {
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--accent);
}
.about-card {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 24px;
}
.about-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.avatar {
  height: 44px;
  width: 44px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font:
    32px Georgia,
    serif;
}
.small-label {
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}
.about-card h2 {
  font-size: 18px;
  margin: 20px 0 10px;
}
.about-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.95;
}
.about-tags {
  display: flex;
  gap: 15px;
  font-size: 10px;
  color: var(--accent);
  margin: 18px 0;
}
.about-link {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-strong);
  padding-top: 15px;
  font-size: 11px;
}
.collections {
  padding-top: 32px;
}
.collections .eyebrow {
  margin-bottom: 6px;
}
.collections h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
}
.collections > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.collection-icon {
  background: var(--bg-subtle);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font:
    22px Georgia,
    serif;
}
.collections strong,
.collections small {
  display: block;
}
.collections strong {
  font-size: 12px;
  font-weight: 500;
}
.collections small {
  font-size: 9px;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.collections > a > span:last-child {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-tertiary);
}
.sidebar-note {
  padding: 25px 20px;
  position: relative;
}
.sidebar-note > span {
  font:
    70px Georgia,
    serif;
  color: var(--border-strong);
  position: absolute;
  top: 14px;
  left: 6px;
}
.sidebar-note p {
  font: 19px/1.8 var(--font-serif);
  letter-spacing: 4px;
  padding-left: 20px;
}
.sidebar-note small {
  color: var(--text-tertiary);
  font:
    italic 11px Georgia,
    serif;
  padding-left: 20px;
}
.closing-note {
  text-align: center;
  padding: 70px 0 55px;
}
.closing-note > span {
  font-size: 30px;
  color: #8e9f7b;
}
.closing-note p {
  font: 16px var(--font-serif);
  letter-spacing: 3px;
}
.closing-note small {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text-tertiary);
}
.site-footer {
  border-top: 1px solid var(--border);
  max-width: 1104px;
  margin: auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  color: var(--text-tertiary);
  font-size: 10px;
  letter-spacing: 0.6px;
}
.site-footer p {
  margin: 0;
}
.site-footer a {
  color: var(--text-secondary);
}
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: 90;
}
.reading-progress {
  height: 2px;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--accent);
  z-index: 101;
  width: 0;
}
.hero {
  padding: 30px 0 45px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
}
.hero__title {
  font: 500 40px/1.4 var(--font-serif);
  margin: 16px 0;
}
.hero__desc {
  color: var(--text-secondary);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-bottom: 90px;
}
.card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: block;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.card h3 {
  margin: 12px 0;
  font-size: 20px;
}
.card p {
  font-size: 14px;
  color: var(--text-secondary);
}
.prose {
  max-width: var(--maxw-prose);
  margin: auto;
  padding: 55px 24px 90px;
  overflow-wrap: anywhere;
}
.prose__header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 25px;
  margin-bottom: 35px;
}
.prose__back {
  font-size: 12px;
  color: var(--text-secondary);
}
.prose__title {
  font: 500 36px/1.5 var(--font-serif);
}
.prose__meta {
  font-size: 12px;
  color: var(--text-tertiary);
}
.prose__meta span + span:before {
  content: " / ";
  margin: 0 10px;
}
.article-body {
  line-height: 1.95;
}
.article-body pre {
  padding: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: auto;
}
.article-body blockquote {
  margin: 20px 0;
  padding: 1px 20px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
}
.article-back {
  display: block;
  max-width: var(--maxw-prose);
  margin: 25px auto 0;
  font-size: 12px;
}
.fade-up {
  opacity: 1;
}
@media (min-width: 1450px) {
  .intro {
    padding-top: 45px;
    padding-bottom: 65px;
  }
}
@media (max-width: 1000px) {
  .brand-note {
    display: none;
  }
  .content-layout {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) 240px;
  }
  .sticky-note {
    right: -8px;
  }
  .desk-art {
    transform: scale(0.9);
  }
  .intro {
    gap: 8px;
  }
  .site-footer {
    margin: 0 28px;
  }
  .site-nav__links {
    gap: 19px;
  }
}
@media (max-width: 760px) {
  :root {
    --nav-height: 70px;
  }
  .page {
    padding: 28px 22px 0;
  }
  .site-nav__inner {
    padding: 0 22px;
    gap: 15px;
  }
  .nav-actions {
    margin-left: auto;
  }
  .nav-burger {
    display: grid;
  }
  .site-nav__links {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav__links.is-open {
    display: flex;
  }
  .site-nav__links a {
    padding: 12px;
  }
  .site-nav__links .is-active:after {
    display: none;
  }
  .intro {
    grid-template-columns: 1fr 0.8fr;
    padding-top: 15px;
    padding-bottom: 40px;
  }
  .intro h1 {
    font-size: 46px;
  }
  .intro .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .desk-art {
    height: 320px;
    transform: scale(0.72);
    transform-origin: center;
  }
  .notebook {
    flex-shrink: 0;
  }
  .orbit-two {
    width: 340px;
    height: 340px;
  }
  .sticky-note {
    right: -45px;
    bottom: -10px;
  }
  .art-caption {
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .art-label {
    top: -28px;
    white-space: nowrap;
  }
  .content-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 35px;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .sidebar-note {
    display: none;
  }
  .collections {
    padding-top: 5px;
  }
  .closing-note {
    padding: 45px 0;
  }
  .intro-description {
    font-size: 12px;
  }
  .intro-actions {
    gap: 15px;
  }
  .button-primary {
    gap: 12px;
    padding: 10px 14px;
  }
  .intro-note {
    font-size: 8px;
    letter-spacing: 1px;
  }
}
@media (max-width: 540px) {
  .intro {
    display: block;
    padding: 12px 0 25px;
  }
  .intro h1 {
    font-size: 51px;
    margin: 25px 0 20px;
  }
  .intro-copy {
    position: relative;
    z-index: 1;
  }
  .intro-description {
    font-size: 13px;
  }
  .intro-actions {
    margin-top: 23px;
  }
  .intro-note {
    font-size: 9px;
    margin-top: 20px;
  }
  .desk-art {
    height: 315px;
    width: 100%;
    margin: 15px auto 10px;
    transform: scale(0.83);
  }
  .notebook {
    width: 235px;
    height: 280px;
  }
  .notebook-title {
    margin-top: 15px;
  }
  .sticky-note {
    right: 0;
    bottom: 0;
  }
  .art-label {
    top: 0;
  }
  .art-caption {
    bottom: -24px;
  }
  .orbit-one {
    width: 285px;
    height: 285px;
  }
  .orbit-two {
    width: 335px;
    height: 335px;
  }
  .mood-line {
    font-size: 10px;
    letter-spacing: 0;
  }
  .mood-line > span:last-child span {
    margin-left: 5px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .journal-tools {
    gap: 8px;
  }
  .search-box {
    width: 100%;
    padding: 3px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-top: 5px;
  }
  .search-box input {
    width: 100%;
    font-size: 12px;
  }
  .filter {
    font-size: 11px;
    padding: 7px 10px;
  }
  .post-item {
    gap: 15px;
    grid-template-columns: 1fr 65px;
    padding: 24px 0;
  }
  .post-art {
    width: 65px;
    height: 80px;
    font-size: 26px;
  }
  .post-item h3,
  .post-item--featured h3 {
    font-size: 17px;
  }
  .post-item--featured {
    padding: 18px 15px;
  }
  .post-item__excerpt {
    font-size: 11px;
  }
  .post-item__meta {
    gap: 8px;
    font-size: 9px;
    flex-wrap: wrap;
  }
  .sidebar {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about-card {
    padding: 25px;
  }
  .about-card p {
    font-size: 13px;
  }
  .collections {
    padding: 0 4px;
  }
  .collections small {
    font-size: 11px;
  }
  .collections strong {
    font-size: 14px;
  }
  .site-footer {
    margin: 0 22px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .back-top {
    right: 12px;
    bottom: 12px;
  }
  .hero__title {
    font-size: 33px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
