:root {
  --primary: oklch(0.65 0.16 330);
  --primary-strong: oklch(0.42 0.145 332);
  --primary-soft: oklch(0.945 0.035 332);
  --accent: oklch(0.49 0.165 253);
  --accent-soft: oklch(0.935 0.04 253);
  --background: oklch(1 0 0);
  --surface: oklch(0.97 0.008 332);
  --stage: oklch(0.115 0.006 332);
  --ink: oklch(0.165 0.015 332);
  --copy: oklch(0.31 0.018 332);
  --muted: oklch(0.44 0.018 332);
  --line: oklch(0.875 0.012 332);
  --inverse: oklch(0.985 0.004 332);
  --mood: var(--primary);
  --mood-highlight: oklch(0.85 0.095 332);
  --display: "Chiron Sung HK", "Noto Serif TC", "Songti TC", serif;
  --sans: "Noto Sans TC", "PingFang TC", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 76px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(80px, 9vw, 136px);
  --z-header: 30;
  --z-menu: 40;
  --z-sticky: 20;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--background);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

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

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

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

p {
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.page-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  translate: 0 -160%;
  background: var(--background);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-inline: var(--page-gutter);
  color: var(--inverse);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-bottom: 1px solid var(--line);
  background: var(--background);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.brand-copy small {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-left: 0;
  background: currentColor;
  transition: width 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  width: 12px;
  margin-left: 8px;
}

.nav-cta {
  min-width: 112px;
  justify-content: center;
  padding-inline: 18px;
  background: var(--primary-strong);
  color: var(--inverse);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin-block: 3px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 100svh;
  overflow: hidden;
  background: var(--stage);
  color: var(--inverse);
}

.hero-stage[data-mood="blue"] {
  --mood: oklch(0.55 0.18 253);
  --mood-highlight: oklch(0.84 0.095 253);
}

.hero-stage[data-mood="mono"] {
  --mood: oklch(0.7 0.015 255);
  --mood-highlight: oklch(0.9 0.012 255);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  z-index: 2;
  width: 46%;
  height: 6px;
  background: var(--mood);
  transition: background-color 360ms var(--ease-out);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding: calc(var(--header-height) + 56px) clamp(28px, 5vw, 84px) 112px var(--page-gutter);
}

.brand-note {
  margin-bottom: clamp(22px, 4vh, 42px);
  color: oklch(0.84 0.025 332);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  max-width: 8.8em;
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.04;
}

.hero-copy h1 span {
  display: block;
  color: var(--mood-highlight);
  transition: color 360ms var(--ease-out);
}

.hero-lead {
  max-width: 35em;
  margin-bottom: 30px;
  color: oklch(0.84 0.012 332);
  font-size: clamp(16px, 1.4vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(32px, 5vh, 52px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 12px 20px;
  border: 0;
  border-radius: 0;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  min-width: 188px;
  background: var(--primary-strong);
  color: var(--inverse);
}

.button-primary:hover {
  background: oklch(0.36 0.13 332);
}

.button-quiet {
  border-bottom: 1px solid oklch(0.65 0.02 332);
  color: var(--inverse);
}

.button-light {
  min-width: 168px;
  background: var(--background);
  color: var(--ink);
}

.button-dark {
  min-width: 206px;
  background: var(--stage);
  color: var(--inverse);
}

.mood-picker {
  width: min(100%, 500px);
  margin: 0;
  padding: 0;
  border: 0;
}

.mood-picker legend {
  margin-bottom: 8px;
  color: oklch(0.7 0.018 332);
  font-size: 12px;
}

.mood-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mood-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: oklch(0.82 0.012 332);
  cursor: pointer;
}

.mood-option[aria-pressed="true"] {
  border-bottom-color: currentColor;
  color: var(--inverse);
}

.mood-swatch {
  width: 14px;
  height: 14px;
  border: 1px solid oklch(0.82 0.01 332);
  border-radius: 50%;
}

.mood-swatch-blush {
  background: oklch(0.76 0.12 332);
}

.mood-swatch-blue {
  background: oklch(0.55 0.18 253);
}

.mood-swatch-mono {
  background: oklch(0.26 0.01 255);
}

.mood-description {
  display: grid;
  gap: 2px;
  max-width: 500px;
  margin-top: 18px;
}

.mood-description strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
}

.mood-description span {
  color: oklch(0.7 0.018 332);
  font-size: 14px;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: oklch(0.16 0.01 332);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(0.115 0.006 332 / 0.38), transparent 32%);
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 220ms ease, transform 480ms var(--ease-out), filter 480ms var(--ease-out);
}

.hero-media.is-switching > img {
  opacity: 0.35;
  filter: saturate(0.7);
  transform: scale(1.018);
}

.hero-image-note {
  position: absolute;
  right: var(--page-gutter);
  bottom: 42px;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 8px 10px;
  background: var(--stage);
  color: var(--inverse);
  font-size: 12px;
}

.hero-image-note span {
  color: var(--mood-highlight);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: var(--page-gutter);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: oklch(0.7 0.018 332);
  font-size: 12px;
  text-decoration: none;
}

.promise-strip {
  background: var(--background);
}

.promise-strip ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  list-style: none;
}

.promise-strip li {
  display: grid;
  align-content: center;
  min-height: 138px;
  padding: 26px clamp(0px, 2vw, 34px);
  border-bottom: 1px solid var(--line);
}

.promise-strip li + li {
  border-left: 1px solid var(--line);
}

.promise-strip strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 500;
}

.promise-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.section-intro h2,
.delivery-heading h2,
.story-copy h2,
.contact-main h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.section-intro p,
.delivery-heading p {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--copy);
  font-size: 17px;
}

.section-intro .source-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(20px, 3vw, 40px);
}

.gallery-stack {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.gallery-item {
  margin: 0;
}

.gallery-media {
  overflow: hidden;
  background: var(--surface);
}

.gallery-feature .gallery-media {
  aspect-ratio: 4 / 5;
}

.gallery-stack .gallery-media {
  aspect-ratio: 4 / 3;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--ease-out);
}

.gallery-item:hover .gallery-media img {
  transform: scale(1.018);
}

.gallery-item figcaption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
}

.gallery-item h3 {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 500;
}

.gallery-item p {
  max-width: 44ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-item figcaption a {
  flex: 0 0 auto;
  min-height: 44px;
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 700;
}

.delivery {
  background: var(--primary-soft);
}

.delivery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.delivery-heading h2 {
  max-width: 11em;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  margin-top: 0;
  margin-bottom: clamp(52px, 7vw, 80px);
  list-style: none;
}

.delivery-steps li {
  padding-top: 20px;
  border-top: 1px solid oklch(0.72 0.045 332);
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: var(--primary-strong);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.delivery-steps h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
}

.delivery-steps p {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--copy);
}

.delivery-boundary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 26px;
  background: var(--stage);
  background-clip: content-box;
  color: var(--inverse);
}

.delivery-boundary p {
  max-width: 64ch;
  margin: 0;
  padding: 18px 0 18px clamp(22px, 3vw, 42px);
  color: oklch(0.84 0.012 332);
}

.delivery-boundary strong {
  color: var(--mood-highlight);
}

.delivery-boundary .button {
  margin-right: clamp(22px, 3vw, 42px);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 760px;
  background: var(--stage);
  color: var(--inverse);
}

.story-image {
  min-height: 640px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  display: grid;
  align-items: center;
  padding: clamp(64px, 8vw, 124px) var(--page-gutter);
}

.story-copy > div {
  max-width: 540px;
}

.story-name {
  margin-bottom: 28px;
  color: var(--mood-highlight);
  font-family: var(--display);
  font-size: 18px;
}

.story-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
}

.story-copy p:not(.story-name) {
  max-width: 52ch;
  margin-bottom: 32px;
  color: oklch(0.82 0.012 332);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
}

.contact-section {
  background: var(--primary);
}

.contact-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.contact-main h2 {
  max-width: 10.5em;
  margin-bottom: 18px;
  color: var(--ink);
}

.contact-main p {
  max-width: 50ch;
  margin-bottom: 0;
  color: oklch(0.23 0.035 332);
  font-weight: 500;
}

.contact-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 0;
  margin-top: 72px;
  font-style: normal;
}

.contact-details > div {
  min-width: 0;
  padding: 24px 24px 0 0;
  border-top: 1px solid oklch(0.37 0.07 332 / 0.55);
}

.contact-details span {
  display: block;
  margin-bottom: 10px;
  color: oklch(0.29 0.06 332);
  font-size: 12px;
  font-weight: 700;
}

.contact-details a,
.contact-details p {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 15px;
}

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

.site-footer {
  padding-block: 34px;
  background: var(--stage);
  color: oklch(0.7 0.012 332);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 32px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
}

.footer-inner strong {
  color: var(--inverse);
  font-family: var(--display);
  font-size: 16px;
}

.demo-note {
  text-align: center;
}

.mobile-line-cta {
  display: none;
}

@media (max-width: 1000px) {
  :root {
    --header-height: 68px;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-copy {
    padding-right: 28px;
  }

  .gallery-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  }

  .story {
    min-height: 650px;
  }
}

@media (max-width: 800px) {
  :root {
    --page-gutter: 20px;
    --section-space: 80px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: var(--header-height);
    background: var(--stage);
    color: var(--inverse);
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    z-index: var(--z-menu);
    display: grid;
    gap: 0;
    padding: 18px var(--page-gutter) 28px;
    border-bottom: 1px solid var(--line);
    background: var(--background);
    color: var(--ink);
    overscroll-behavior: contain;
  }

  .site-nav[aria-hidden="true"] {
    display: none;
  }

  .site-nav a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    border-bottom: 0;
    color: var(--inverse);
  }

  .hero-stage {
    display: block;
    min-height: 100svh;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    justify-content: flex-end;
    min-height: 100svh;
    padding: calc(var(--header-height) + 36px) var(--page-gutter) calc(92px + env(safe-area-inset-bottom));
    background: linear-gradient(
      180deg,
      oklch(0.115 0.006 332 / 0.22) 0%,
      oklch(0.115 0.006 332 / 0.44) 34%,
      oklch(0.115 0.006 332 / 0.93) 67%,
      var(--stage) 100%
    );
  }

  .hero-copy h1 {
    max-width: 7.5em;
    font-size: clamp(2.9rem, 12.5vw, 4.2rem);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    max-height: none;
  }

  .hero-media::after {
    background: none;
  }

  .hero-media > img {
    object-position: center top;
  }

  .hero-image-note {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .hero-stage::before {
    z-index: 5;
    width: 100%;
  }

  .mood-description {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .promise-strip ul {
    grid-template-columns: 1fr;
  }

  .promise-strip li {
    min-height: 112px;
    padding-inline: 0;
  }

  .promise-strip li + li {
    border-left: 0;
  }

  .section-intro,
  .delivery-heading {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .section-intro h2,
  .delivery-heading h2,
  .contact-main h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-feature .gallery-media {
    aspect-ratio: 4 / 5;
  }

  .gallery-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-stack .gallery-media {
    aspect-ratio: 4 / 5;
  }

  .gallery-stack .gallery-item figcaption {
    display: grid;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .delivery-boundary {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .delivery-boundary .button {
    margin: 0 22px 22px;
  }

  .story {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-image {
    min-height: 54svh;
  }

  .story-copy {
    padding-block: 80px;
  }

  .contact-main {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .demo-note {
    text-align: left;
  }

  .mobile-line-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: var(--z-sticky);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
    background: var(--primary-strong);
    color: var(--inverse);
    font-weight: 700;
    text-decoration: none;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .hero-copy {
    padding-top: calc(var(--header-height) + 28px);
  }

  .brand-note {
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
  }

  .hero-lead {
    margin-bottom: 20px;
    color: oklch(0.9 0.008 332);
  }

  .hero-actions {
    display: grid;
    width: 100%;
    margin-bottom: 22px;
  }

  .button-primary,
  .button-quiet {
    width: 100%;
  }

  .button-quiet {
    border: 1px solid oklch(0.45 0.015 332);
  }

  .mood-options {
    justify-content: space-between;
    gap: 8px;
  }

  .gallery-stack {
    grid-template-columns: 1fr;
  }

  .gallery-stack .gallery-media {
    aspect-ratio: 4 / 3;
  }

  .gallery-item figcaption {
    display: grid;
  }

  .hero-image-note {
    right: 16px;
    bottom: 20px;
  }
}

@media (hover: none) {
  .gallery-item:hover .gallery-media img,
  .button:hover {
    transform: none;
  }
}

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

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

@media print {
  .site-header,
  .mobile-line-cta,
  .scroll-cue,
  .menu-toggle {
    display: none !important;
  }

  body {
    padding: 0;
  }

  .hero-stage,
  .story,
  .site-footer {
    color: var(--ink);
    background: var(--background);
  }
}
