:root {
  --paper: #f7f4ee;
  --paper-soft: #ebe5da;
  --ink: #141414;
  --ink-soft: #58524a;
  --line: rgba(20, 20, 20, 0.13);
  --line-strong: rgba(20, 20, 20, 0.24);
  --rose: #ff6f91;
  --peach: #ffb37a;
  --blue: #6b8cff;
  --violet: #a376ff;
  --mint: #79d8c5;
  --shadow: 0 28px 80px rgba(44, 36, 28, 0.16);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 76% 8%, rgba(255, 111, 145, 0.22), transparent 28rem),
    radial-gradient(circle at 18% 34%, rgba(107, 140, 255, 0.17), transparent 34rem),
    var(--paper);
  background-size: 18px 18px, 18px 18px, 100% 100%, 100% 100%, 100% 100%;
  font-family:
    "Inter", "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Noto Sans SC",
    "Microsoft YaHei", system-ui, sans-serif;
  overflow-x: hidden;
}

body.is-layer-light {
  --rose: #ff5f87;
  --blue: #5f84ff;
}

body.is-layer-mask {
  --rose: #1f1f1f;
  --blue: #7b6f60;
}

body.is-layer-grain {
  --rose: #ff8b56;
  --blue: #2bbfb0;
}

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

button {
  color: inherit;
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(20, 20, 20, 0.3) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

.cursor {
  position: fixed;
  z-index: 40;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.65);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: invert(1) grayscale(1);
}

.cursor.is-active {
  opacity: 0.22;
  transform: translate(-50%, -50%) scale(1);
}

.site-header {
  position: fixed;
  top: 18px;
  right: 20px;
  left: 20px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 244, 238, 0.76);
  box-shadow: 0 14px 50px rgba(44, 36, 28, 0.1);
  backdrop-filter: blur(22px) saturate(1.4);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
}

.brand-glyph {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(20, 20, 20, 0.32) 48% 52%, transparent 53%),
    linear-gradient(transparent 47%, rgba(20, 20, 20, 0.32) 48% 52%, transparent 53%),
    linear-gradient(135deg, #ffffff, #ffd7e0 38%, #cdd8ff 72%, #ffffff);
  color: #111;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a,
.nav-toggle {
  min-height: 40px;
  border-radius: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(20, 20, 20, 0.68);
  font-size: 0.88rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(20, 20, 20, 0.055);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 150vh;
  padding-top: 112px;
}

.hero-stage {
  position: sticky;
  top: 94px;
  display: grid;
  place-items: center;
  height: calc(100vh - 112px);
  padding: 0 20px;
}

.ps-window {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  width: min(1120px, 100%);
  min-height: 590px;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.window-bar {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.window-bar span {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(20, 20, 20, 0.16);
  border-radius: 50%;
}

.window-bar span:nth-child(1) { background: #ff8c9d; }
.window-bar span:nth-child(2) { background: #ffc66f; }
.window-bar span:nth-child(3) { background: #7ed7c4; }

.window-bar strong {
  margin-left: 8px;
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
}

.canvas-board {
  position: relative;
  min-height: 548px;
  background:
    linear-gradient(45deg, rgba(20, 20, 20, 0.035) 25%, transparent 25% 75%, rgba(20, 20, 20, 0.035) 75%),
    linear-gradient(45deg, rgba(20, 20, 20, 0.035) 25%, transparent 25% 75%, rgba(20, 20, 20, 0.035) 75%);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  overflow: hidden;
  isolation: isolate;
}

.image-layer {
  position: absolute;
  inset: 10%;
  border-radius: 4px;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 280ms ease, filter 280ms ease;
}

.layer-sky {
  inset: 8% 16% 16% 8%;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.95), transparent 9%),
    radial-gradient(circle at 60% 52%, rgba(255, 111, 145, 0.68), transparent 21%),
    radial-gradient(circle at 74% 22%, rgba(107, 140, 255, 0.62), transparent 20%),
    linear-gradient(135deg, #fbf7f0, #e9edf9 42%, #fbe0df);
  box-shadow: 0 32px 90px rgba(68, 55, 76, 0.2);
}

.layer-light {
  inset: 18% 20% 25% 22%;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.94) 12% 14%, transparent 14% 100%),
    linear-gradient(120deg, transparent 0 30%, rgba(255, 179, 122, 0.72) 30% 36%, transparent 36% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.65) 0 2px, transparent 2px 8px);
  mix-blend-mode: screen;
  filter: blur(0.3px);
}

.layer-flower {
  inset: auto auto 12% 16%;
  width: 38%;
  aspect-ratio: 1.12;
  background:
    radial-gradient(ellipse at 36% 34%, #ff6f91 0 10%, transparent 11%),
    radial-gradient(ellipse at 54% 42%, #ff9eb1 0 15%, transparent 16%),
    radial-gradient(ellipse at 44% 62%, #ffbfcc 0 18%, transparent 19%),
    radial-gradient(ellipse at 67% 66%, #f26f89 0 12%, transparent 13%),
    linear-gradient(130deg, transparent 0 52%, rgba(20, 20, 20, 0.5) 52% 54%, transparent 55%);
  filter: saturate(1.12);
}

.layer-mask {
  inset: 18% 12% 18% 40%;
  border: 1px dashed rgba(20, 20, 20, 0.36);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 14px 14px;
  clip-path: polygon(12% 10%, 100% 0, 82% 84%, 0 100%);
  mix-blend-mode: multiply;
}

.pixel-lens {
  position: absolute;
  z-index: 4;
  left: 64%;
  top: 22%;
  display: grid;
  grid-template-columns: repeat(4, 18px);
  grid-auto-rows: 18px;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(20, 20, 20, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 40px rgba(44, 36, 28, 0.18);
  backdrop-filter: blur(8px);
  transition: transform 260ms ease;
}

.pixel-lens span {
  background: var(--rose);
}

.pixel-lens span:nth-child(3n) { background: var(--blue); }
.pixel-lens span:nth-child(4n) { background: #fff; }
.pixel-lens span:nth-child(5n) { background: var(--peach); }

.layer-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.68);
}

.layer-panel p {
  margin: 0 0 8px;
  color: rgba(20, 20, 20, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.layer-row {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: rgba(20, 20, 20, 0.66);
  cursor: pointer;
}

.layer-row:hover,
.layer-row.is-active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: -8vh;
  padding-bottom: 120px;
}

.kicker,
.section-title span,
.contact-card p {
  color: rgba(20, 20, 20, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-title h2,
.contact-card h2 {
  margin: 0;
  max-width: 1080px;
  font-family:
    "Songti SC", "Noto Serif SC", "Source Han Serif SC", Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero-copy p:not(.kicker) {
  max-width: 760px;
  margin: 30px 0 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.55vw, 1.26rem);
  line-height: 1.9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 30px;
}

.hero-meta span,
.contact-actions a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  color: rgba(20, 20, 20, 0.66);
  font-size: 0.82rem;
}

.studio,
.echo,
.contact {
  padding: 96px 0;
}

.section-title {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-title h2,
.contact-card h2 {
  max-width: 980px;
  font-size: clamp(2.6rem, 5.8vw, 6.4rem);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  align-items: start;
}

.studio-note {
  min-height: 340px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 60px rgba(44, 36, 28, 0.08);
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.note-b {
  margin-top: 90px;
}

.note-c {
  margin-top: 34px;
}

.studio-note svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.studio-note h3,
.essay-copy h3,
.echo-cards h3 {
  margin: 22px 0 0;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  letter-spacing: -0.02em;
}

.studio-note p,
.essay-copy span,
.echo-cards p {
  display: block;
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.works {
  padding: 110px 0;
}

.essay-list {
  display: grid;
  gap: 20vh;
}

.essay {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.essay-two {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.essay-image {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.essay-one .essay-image {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.95), transparent 9%),
    radial-gradient(circle at 70% 36%, rgba(107, 140, 255, 0.62), transparent 18%),
    radial-gradient(circle at 45% 62%, rgba(255, 111, 145, 0.7), transparent 20%),
    linear-gradient(135deg, #fffaf4, #e8eeff 52%, #ffe4d6);
}

.essay-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(120deg, black, transparent 72%);
}

.sample {
  position: absolute;
  width: 92px;
  height: 92px;
  border: 12px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 50px rgba(44, 36, 28, 0.16);
}

.sample-rose {
  right: 18%;
  bottom: 19%;
  background: var(--rose);
}

.sample-blue {
  top: 20%;
  right: 34%;
  background: var(--blue);
}

.sample-ink {
  bottom: 34%;
  left: 16%;
  background: #1b1b1b;
}

.essay-two .essay-image {
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.07) 1px, transparent 1px),
    #f8f6f1;
  background-size: 28px 28px;
}

.ui-fragment {
  position: absolute;
  top: 18%;
  left: 12%;
  width: 64%;
  height: 34%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    linear-gradient(90deg, #141414 0 28%, transparent 28%),
    linear-gradient(135deg, rgba(255, 111, 145, 0.25), rgba(107, 140, 255, 0.22)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(44, 36, 28, 0.12);
}

.ui-fragment.small {
  top: 58%;
  left: 30%;
  width: 46%;
  height: 18%;
  background: rgba(255, 255, 255, 0.82);
}

.ui-fragment.text {
  top: 34%;
  left: 60%;
  width: 24%;
  height: 42%;
  background:
    repeating-linear-gradient(0deg, rgba(20, 20, 20, 0.42) 0 2px, transparent 2px 16px),
    transparent;
  box-shadow: none;
}

.essay-three .essay-image {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 111, 145, 0.5), transparent 24%),
    linear-gradient(135deg, #151515, #34302b);
  color: #fff;
}

.poster-type {
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  mix-blend-mode: difference;
}

.poster-pixels {
  position: absolute;
  inset: 18%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.75) 48% 52%, transparent 52%),
    linear-gradient(transparent 48%, rgba(255, 255, 255, 0.75) 48% 52%, transparent 52%);
  background-size: 34px 34px;
  transform: rotate(-8deg);
}

.essay-copy p {
  margin: 0 0 18px;
  color: rgba(20, 20, 20, 0.48);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.essay-copy h3 {
  max-width: 540px;
  margin-top: 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.essay-copy span {
  max-width: 520px;
  font-size: 1.02rem;
}

.echo-board {
  display: grid;
  grid-template-columns: 230px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.echo-axis {
  display: grid;
  border-right: 1px solid var(--line);
}

.echo-axis span {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.echo-axis span:last-child {
  border-bottom: 0;
}

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

.echo-cards article {
  min-height: 370px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.14)),
    linear-gradient(90deg, rgba(20, 20, 20, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 18px 18px;
}

.echo-cards article:last-child {
  border-right: 0;
}

.echo-cards strong {
  color: var(--rose);
  font-size: 0.82rem;
}

.contact-card {
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 111, 145, 0.26), transparent 24rem),
    radial-gradient(circle at 14% 72%, rgba(107, 140, 255, 0.2), transparent 28rem),
    rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-top: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.contact-actions a {
  min-height: 46px;
  padding: 0 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-actions a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 46px;
  color: rgba(20, 20, 20, 0.48);
  font-size: 0.86rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(247, 244, 238, 0.92);
    box-shadow: 0 20px 60px rgba(44, 36, 28, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 94px;
  }

  .hero-stage {
    position: relative;
    top: auto;
    height: auto;
    padding: 0 10px;
  }

  .ps-window,
  .essay,
  .essay-two,
  .echo-board {
    grid-template-columns: 1fr;
  }

  .ps-window {
    min-height: 0;
  }

  .canvas-board {
    min-height: 520px;
  }

  .layer-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .layer-panel p {
    grid-column: 1 / -1;
  }

  .hero-copy {
    margin-top: 48px;
    padding-bottom: 72px;
  }

  .hero-copy p:not(.kicker),
  .hero-meta {
    margin-left: 0;
    justify-content: flex-start;
  }

  .studio-grid,
  .echo-cards {
    grid-template-columns: 1fr;
  }

  .note-b,
  .note-c {
    margin-top: 0;
  }

  .essay-list {
    gap: 80px;
  }

  .essay-two .essay-copy {
    order: 2;
  }

  .echo-axis {
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .echo-axis span {
    min-height: 62px;
    padding: 0 12px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .echo-cards article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .section-shell,
  .essay,
  .site-footer {
    width: min(100% - 24px, 1240px);
  }

  .hero-copy h1 {
    font-size: 3.2rem;
    letter-spacing: -0.04em;
  }

  .section-title h2,
  .contact-card h2 {
    font-size: 2.45rem;
  }

  .canvas-board {
    min-height: 430px;
  }

  .layer-panel {
    grid-template-columns: 1fr;
  }

  .layer-row {
    justify-content: flex-start;
  }

  .image-layer {
    inset: 12%;
  }

  .layer-flower {
    width: 54%;
  }

  .pixel-lens {
    grid-template-columns: repeat(4, 14px);
    grid-auto-rows: 14px;
    left: 50%;
  }

  .studio,
  .works,
  .echo,
  .contact {
    padding: 68px 0;
  }

  .essay-image {
    min-height: 420px;
  }

  .echo-axis {
    grid-template-columns: 1fr 1fr;
  }

  .echo-axis span {
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
  }
}

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