@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/space-grotesk-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/noto-sans-sc-400.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/noto-sans-sc-500.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/lato-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/lato-bold.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/lato-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Hex Franklin Tight";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/hex-franklin-tight.woff2") format("woff2");
}

:root {
  --sky: #ddf3ff;
  --ink: rgba(39, 66, 80, 0.92);
  --ink-solid: #294b5c;
  --heading-ink: rgba(64, 78, 84, 0.86);
  --peach: rgba(179, 95, 116, 0.92);
  --peach-solid: #b35f74;
  --tree: rgba(56, 84, 97, 0.86);
  --tree-solid: #385461;
  --white: rgba(255, 249, 247, 0.92);
  --line: rgba(39, 66, 80, 0.18);
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Hex Franklin Tight", system-ui, sans-serif;
  --font-cn: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-body: "Lato", var(--font-cn), system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

::selection {
  background: rgba(179, 95, 116, 0.26);
  color: var(--ink-solid);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  background: #87bedd;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: auto;
  text-shadow: 0 1px 1px rgba(39, 66, 80, 0.14);
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(215, 244, 255, 0.04)),
    linear-gradient(90deg, rgba(215, 244, 255, 0.34) 0%, rgba(215, 244, 255, 0.12) 42%, rgba(215, 244, 255, 0) 80%),
    url("assets/peach-tree-hero.png") center top / cover no-repeat;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.petal-field {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 1;
}

.petal {
  animation: petal-fall var(--duration) linear var(--delay) infinite;
  background: linear-gradient(135deg, var(--sky) 0 18%, var(--peach) 19% 100%);
  border-radius: 100% 0 100% 0;
  filter: drop-shadow(0 4px 5px rgba(39, 66, 80, 0.12));
  height: calc(var(--size) * 0.68);
  left: var(--x);
  opacity: 0;
  position: absolute;
  top: var(--start);
  width: var(--size);
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 88px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  padding: 6px 10px;
  transition: color 220ms ease, transform 220ms var(--ease);
}

.brand:hover {
  color: var(--peach-solid);
  transform: translateY(-2px);
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.primary-nav a,
.text-link {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  position: relative;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.primary-nav a {
  border: 1px solid transparent;
  border-radius: 0;
  padding: 8px 0;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  background: transparent;
  border-color: transparent;
  color: var(--ink-solid);
  transform: translateY(-2px);
}

.primary-nav a.is-active {
  transform: none;
}

.primary-nav a::after {
  background: var(--peach);
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
  width: 100%;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  display: none;
  gap: 10px;
  padding: 8px 0;
  transition: color 220ms ease, transform 220ms var(--ease);
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  color: var(--peach-solid);
  transform: translateX(3px);
}

.nav-toggle-label {
  font-size: 0.875rem;
}

.nav-toggle-icon {
  display: grid;
  gap: 5px;
}

.nav-toggle-icon i {
  background: var(--ink);
  display: block;
  height: 1px;
  transition: transform 200ms var(--ease);
  width: 20px;
}

.hero {
  min-height: 88svh;
  overflow: hidden;
  position: relative;
}

.hero::after {
  border-bottom: 1px solid var(--line);
  bottom: 0;
  content: "";
  left: 48px;
  position: absolute;
  right: 48px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  min-height: 88svh;
  padding-bottom: 64px;
  padding-top: 104px;
}

.hero-copy {
  max-width: 640px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 3;
}

.hero-copy::before {
  background: linear-gradient(180deg, var(--peach) 0%, rgba(56, 84, 97, 0.16) 72%, transparent 100%);
  content: "";
  height: 154px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 1px;
}

.eyebrow,
.section-index {
  color: var(--tree);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  margin: 0;
}

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

h1,
h2 {
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(105deg, #385461 0%, #5f7d85 46%, #8ca6aa 100%);
  background-clip: text;
  background-position: 0% 50%;
  background-size: 100% 100%;
  color: #385461;
  display: inline-block;
  font-family: var(--font-cn);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-synthesis: none;
  max-width: 100%;
  text-shadow: none;
  text-wrap: balance;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 28px;
  margin-top: 18px;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.8vw, 4.75rem);
  letter-spacing: 0.005em;
  line-height: 1.08;
  margin-bottom: 32px;
}

h1 em,
h2 em {
  color: inherit;
  font-style: normal;
  font-weight: 400;
  -webkit-text-fill-color: inherit;
}

.hero-tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}

.hero-tags span {
  color: rgba(39, 66, 80, 0.86);
  font-family: "Lato", var(--font-cn), sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0;
  text-shadow: none;
  white-space: nowrap;
}

.hero-tags span + span {
  margin-left: 0;
}

.hero-tags span:nth-child(2) {
  color: rgba(39, 66, 80, 0.7);
}

.hero-tags span:nth-child(3) {
  color: rgba(39, 66, 80, 0.8);
}

.hero-actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button {
  align-items: center;
  display: inline-flex;
  gap: 18px;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 100px;
  transition: background-color 220ms ease, border-color 220ms ease, border-left-width 220ms var(--ease), box-shadow 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.button-primary {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink-solid);
  font-weight: 500;
  justify-content: flex-start;
  letter-spacing: 0.06em;
  min-height: 44px;
  padding: 8px 0;
  position: relative;
  transition: background 260ms ease, color 260ms ease, letter-spacing 260ms ease, transform 260ms var(--ease);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: radial-gradient(ellipse at 0% 50%, rgba(179, 95, 116, 0.16), transparent 72%);
  color: var(--peach-solid);
  letter-spacing: 0.09em;
  transform: translate3d(6px, -2px, 0);
}

.button-primary:active {
  transform: translate3d(3px, 0, 0);
}

.text-link {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink-solid);
  letter-spacing: 0.06em;
  min-height: 44px;
  padding: 8px 0;
  transition: background 260ms ease, color 260ms ease, letter-spacing 260ms ease, transform 260ms var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  background: radial-gradient(ellipse at 0% 50%, rgba(179, 95, 116, 0.16), transparent 72%);
  color: var(--peach-solid);
  letter-spacing: 0.09em;
  transform: translate3d(6px, -2px, 0);
}

.text-link:active {
  transform: translate3d(3px, 0, 0);
}

.button-primary:focus-visible,
.text-link:focus-visible {
  outline: none;
}

.scroll-cue {
  align-items: center;
  bottom: 34px;
  display: flex;
  height: 36px;
  justify-content: center;
  left: 48px;
  position: absolute;
  z-index: 4;
  transition: transform 220ms var(--ease);
  width: 32px;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  transform: translateY(4px);
}

.scroll-cue span {
  animation: scroll-chevron 2.2s ease-in-out infinite;
  display: block;
  height: 18px;
  position: relative;
  width: 26px;
}

.scroll-cue span::before,
.scroll-cue span::after {
  background: var(--peach-solid);
  content: "";
  height: 1px;
  position: absolute;
  top: 8px;
  width: 16px;
}

.scroll-cue span::before {
  left: 0;
  transform: rotate(45deg);
  transform-origin: right center;
}

.scroll-cue span::after {
  right: 0;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.section {
  padding: 128px 0;
  position: relative;
  scroll-margin-top: 88px;
}

.section::before {
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  transform: scale(1.08);
  transition: opacity 1100ms ease, transform 1600ms var(--ease);
}

.section.is-active::before {
  opacity: 0.62;
  transform: scale(1);
}

#about::before {
  background: radial-gradient(ellipse at 76% 28%, rgba(255, 249, 247, 0.1), transparent 58%);
}

#work::before {
  background: radial-gradient(ellipse at 18% 48%, rgba(221, 243, 255, 0.12), transparent 62%);
}

#contact::before {
  background: radial-gradient(ellipse at 72% 54%, rgba(179, 95, 116, 0.07), transparent 60%);
}

.section:not(:last-of-type)::after {
  background: linear-gradient(180deg, rgba(56, 84, 97, 0.34), rgba(56, 84, 97, 0.12));
  bottom: -139px;
  content: "";
  left: max(48px, calc((100% - var(--container)) / 2 + 50px));
  position: absolute;
  top: 139px;
  width: 1px;
  z-index: 1;
}

.section-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
}

.section-index {
  align-items: center;
  display: flex;
  gap: 10px;
  letter-spacing: 0.16em;
  opacity: 0.88;
  padding-top: 9px;
  transition: color 700ms ease, opacity 700ms ease;
}

.section.is-active .section-index {
  color: var(--ink-solid);
  opacity: 1;
}

.section-index::before {
  background: var(--peach);
  border-radius: 50%;
  content: "";
  display: block;
  flex: 0 0 5px;
  height: 5px;
  width: 5px;
}

.section-content {
  max-width: 760px;
  padding-top: 0;
}

.section-content > * {
  opacity: 0.86;
  transform: translateY(14px);
  transition: opacity 760ms ease, transform 760ms var(--ease);
}

.section.is-active .section-content > * {
  opacity: 1;
  transform: translateY(0);
}

.section.is-active .section-content > *:nth-child(2) {
  transition-delay: 160ms;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.26;
  margin-bottom: 32px;
}

.section-intro {
  color: rgba(39, 66, 80, 0.86);
  font-family: "Lato", var(--font-cn), sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  max-width: 580px;
}

.work-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
}

.work-list li {
  align-items: baseline;
  display: grid;
  column-gap: 16px;
  grid-template-columns: 42px minmax(0, 1fr);
  opacity: 0.84;
  padding: 24px 0;
  position: relative;
  row-gap: 4px;
  transform: translateY(12px);
  transition: opacity 760ms ease, transform 760ms var(--ease);
}

.work-list li:hover {
  transform: translate3d(8px, -2px, 0);
}

.work-list li + li {
  margin-top: 12px;
}

.section.is-active .work-list li {
  opacity: 1;
  transform: translateY(0);
}

.section.is-active .work-list li:nth-child(2) {
  transition-delay: 180ms;
}

.section.is-active .work-list li:hover {
  transition-delay: 0ms;
  transform: translate3d(8px, -2px, 0);
}

.work-list span {
  color: var(--peach-solid);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.work-list small {
  color: rgba(41, 75, 92, 0.7);
  font-family: "Lato", var(--font-cn), sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
  grid-column: 2;
  text-align: left;
}

.work-list strong {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-section {
  padding-bottom: 160px;
}

.contact-content .button {
  margin-top: 8px;
}

.contact-content {
  text-align: left;
}

.contact-content h2 {
  display: table;
  margin-bottom: 32px;
}

.site-footer {
  align-items: center;
  color: var(--tree);
  display: flex;
  font-family: "Lato", var(--font-cn), sans-serif;
  font-size: 0.6875rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding-bottom: 28px;
  padding-top: 28px;
  text-transform: uppercase;
}

.error-page .site-shell {
  display: flex;
  flex-direction: column;
}

.error-page .site-header {
  left: auto;
  position: relative;
  top: auto;
  transform: none;
}

.error-page main {
  align-items: center;
  display: flex;
  flex: 1;
  min-height: calc(100vh - 176px);
}

.error-content {
  max-width: 620px;
  padding: 96px 48px;
  width: 100%;
}

.error-content h1 {
  color: var(--ink-solid);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 20px 0 28px;
}

.error-content h1 em {
  color: var(--peach-solid);
  font-style: normal;
}

.error-content > p:not(.eyebrow) {
  color: var(--ink-solid);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.error-content .text-link {
  display: inline-flex;
}

.qr-dialog {
  background: rgba(255, 249, 247, 0.58);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(39, 66, 80, 0.24);
  color: var(--ink);
  max-width: 420px;
  padding: 0;
  width: calc(100% - 40px);
}

.qr-dialog[open] {
  animation: qr-dialog-in 420ms var(--ease) both;
}

.qr-dialog::backdrop {
  background: rgba(39, 66, 80, 0.42);
  backdrop-filter: blur(4px);
  animation: qr-backdrop-in 320ms ease both;
}

.qr-dialog-inner {
  padding: 40px;
  position: relative;
  text-align: center;
}

.qr-dialog p:last-child {
  color: rgba(39, 66, 80, 0.76);
  font-size: 0.75rem;
  line-height: 1.7;
  margin: 24px auto 0;
  max-width: 270px;
}

.dialog-close {
  background: transparent;
  color: var(--tree);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  padding: 4px;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: color 220ms ease, transform 220ms var(--ease);
}

.dialog-close:hover,
.dialog-close:focus-visible {
  color: var(--peach-solid);
  transform: translateY(-2px);
}

.qr-image {
  background: #fff;
  display: block;
  height: 220px;
  margin: 24px auto 0;
  object-fit: contain;
  width: 220px;
}

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

html.js-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

html.js-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js-ready .site-footer.scroll-reveal {
  transition-delay: 120ms;
}

@keyframes qr-dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes qr-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes petal-fall {
  0% { opacity: 0; transform: translate3d(0, -24px, 0) rotate(0deg) scale(0.55); }
  12% { opacity: 0.9; }
  54% { transform: translate3d(var(--drift), 34vh, 0) rotate(205deg) scale(1); }
  84% { opacity: 0.72; }
  100% { opacity: 0; transform: translate3d(calc(var(--drift) * -0.65), 110vh, 0) rotate(430deg) scale(0.7); }
}

@keyframes scroll-chevron {
  0% { opacity: 0; transform: translateY(-5px); }
  22% { opacity: 1; }
  74% { opacity: 1; transform: translateY(5px); }
  100% { opacity: 0; transform: translateY(9px); }
}

.petal-one { --x: 4%; --start: 12%; --drift: 120px; --size: 18px; --duration: 8s; --delay: -1s; }
.petal-two { --x: 15%; --start: 20%; --drift: -70px; --size: 12px; --duration: 7s; --delay: -4s; }
.petal-three { --x: 26%; --start: 16%; --drift: 150px; --size: 15px; --duration: 9s; --delay: -6s; }
.petal-four { --x: 37%; --start: 28%; --drift: -120px; --size: 11px; --duration: 7.5s; --delay: -2.5s; }
.petal-five { --x: 49%; --start: 13%; --drift: 95px; --size: 19px; --duration: 8.5s; --delay: -5s; }
.petal-six { --x: 58%; --start: 24%; --drift: -145px; --size: 13px; --duration: 6.8s; --delay: -1.5s; }
.petal-seven { --x: 67%; --start: 10%; --drift: 80px; --size: 17px; --duration: 8.8s; --delay: -7s; }
.petal-eight { --x: 74%; --start: 31%; --drift: 140px; --size: 12px; --duration: 7.6s; --delay: -4.5s; }
.petal-nine { --x: 82%; --start: 15%; --drift: -100px; --size: 20px; --duration: 9.2s; --delay: -3s; }
.petal-ten { --x: 90%; --start: 25%; --drift: 75px; --size: 13px; --duration: 6.5s; --delay: -6.2s; }
.petal-eleven { --x: 22%; --start: 35%; --drift: 105px; --size: 10px; --duration: 8.2s; --delay: -7.6s; }
.petal-twelve { --x: 61%; --start: 38%; --drift: -90px; --size: 15px; --duration: 7.8s; --delay: -2.2s; }

@media (max-width: 760px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 12;
  }

  .primary-nav {
    align-items: flex-start;
    background: rgba(215, 244, 255, 0.96);
    display: flex;
    flex-direction: column;
    gap: 20px;
    left: 0;
    opacity: 0;
    padding: 92px 20px 28px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    font-size: 1rem;
  }

  .hero::after {
    left: 20px;
    right: 20px;
  }

  .hero-inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    min-height: 100svh;
    padding-bottom: 96px;
    padding-top: 96px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }

  .hero-copy::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
    letter-spacing: 0.005em;
    line-height: 1.08;
    margin-bottom: 24px;
    margin-top: 16px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    min-height: 52px;
  }

  .hero-tags {
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
  }

  .hero-tags span {
    font-size: 0.625rem;
  }

  .scroll-cue {
    bottom: 24px;
    left: 20px;
    right: auto;
  }

  .section {
    padding: 80px 0;
  }

  .section:not(:last-of-type)::after {
    display: none;
  }

  .section-grid {
    display: block;
  }

  .section-index {
    justify-content: center;
    margin-bottom: 24px;
    padding-top: 0;
    text-align: center;
  }

  .section-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content h2 {
    margin-left: auto;
    margin-right: auto;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 24px;
  }

  .work-list {
    margin-top: 40px;
  }

  .work-list li {
    column-gap: 12px;
    grid-template-columns: 1fr;
    padding: 20px 0;
    row-gap: 4px;
    text-align: center;
  }

  .work-list small {
    grid-column: 1;
    text-align: center;
  }

  .contact-section {
    padding-bottom: 96px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    padding-top: 24px;
    text-align: center;
  }

  .error-content {
    padding: 80px 20px;
  }

  .error-page main {
    min-height: calc(100vh - 144px);
  }

  body::before {
    background-position: 62% top;
  }
}

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

  html.js-ready .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section::before,
  .section-content > *,
  .work-list li,
  .scroll-cue span {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-cue span {
    animation: none;
  }

  .qr-dialog[open],
  .qr-dialog::backdrop,
  h1,
  h2 {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
