:root {
  --ink: oklch(20% 0.035 55);
  --ink-soft: oklch(34% 0.027 58);
  --paper: oklch(92% 0.028 75);
  --paper-deep: oklch(86% 0.036 72);
  --paper-light: oklch(96% 0.018 78);
  --berry: oklch(50% 0.14 34);
  --berry-deep: oklch(39% 0.115 32);
  --moss: oklch(43% 0.055 145);
  --honey: oklch(65% 0.11 75);
  --cream: oklch(92% 0.026 77);
  --line: color-mix(in oklch, var(--ink) 18%, transparent);
  --line-light: color-mix(in oklch, var(--cream) 18%, transparent);
  --shadow-1: 0 8px 24px rgba(40, 22, 11, 0.12);
  --shadow-2: 0 20px 60px rgba(36, 20, 10, 0.2);
  --radius-xs: 4px;
  --radius-sm: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --rail-width: 86px;
  --ribbon-height: 32px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--berry) var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

::selection {
  background: var(--berry);
  color: var(--paper-light);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  background: var(--paper-light);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.demo-ribbon {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto 0;
  height: var(--ribbon-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-inline: 18px;
  background: var(--berry);
  color: oklch(97% 0.015 75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.demo-ribbon a,
.demo-ribbon button {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
}

.demo-contact-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  letter-spacing: inherit;
}

.site-rail {
  position: fixed;
  z-index: 70;
  top: var(--ribbon-height);
  bottom: 0;
  left: 0;
  width: var(--rail-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(239, 231, 216, 0.16);
  background: color-mix(in oklch, var(--ink) 94%, transparent);
  color: var(--cream);
}

.rail-brand {
  min-width: 46px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 14px;
}

.rail-seal {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 231, 216, 0.6);
  border-radius: var(--radius-xs);
  color: var(--cream);
  font-family: "KaiTi", "STKaiti", serif;
  font-size: 22px;
  line-height: 1;
}

.rail-name {
  writing-mode: vertical-rl;
  font-family: "FangSong", "STFangsong", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.rail-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rail-nav a {
  position: relative;
  min-width: 46px;
  min-height: 48px;
  display: grid;
  place-items: center;
  color: rgba(239, 231, 216, 0.48);
  font-family: "Consolas", monospace;
  font-size: 10px;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.rail-nav a::after {
  position: absolute;
  right: -20px;
  width: 8px;
  height: 2px;
  background: var(--berry);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.rail-nav a em {
  position: absolute;
  left: calc(100% + 20px);
  width: max-content;
  padding: 5px 8px;
  border-radius: var(--radius-xs);
  background: var(--ink);
  color: var(--cream);
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 11px;
  font-style: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.rail-nav a.is-active {
  color: var(--cream);
}

.rail-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.rail-coordinates {
  margin-bottom: 22px;
  writing-mode: vertical-rl;
  color: rgba(239, 231, 216, 0.3);
  font-family: "Consolas", monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.mobile-header {
  display: none;
}

main,
footer {
  margin-left: var(--rail-width);
}

section {
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(239, 231, 216, 0.66);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.eyebrow-dark {
  color: var(--berry-deep);
}

.section-index {
  color: color-mix(in oklch, var(--ink) 40%, transparent);
  font-family: "Consolas", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section-index-light {
  color: rgba(239, 231, 216, 0.42);
}

.hero {
  min-height: calc(100vh - var(--ribbon-height));
  margin-top: var(--ribbon-height);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero.webp");
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
  animation: hero-breathe 12s var(--ease-out) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(19, 12, 8, 0.88) 0%, rgba(19, 12, 8, 0.62) 34%, transparent 64%),
    linear-gradient(0deg, rgba(19, 12, 8, 0.76) 0%, transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 52vw);
  padding: clamp(110px, 16vh, 180px) 7vw 160px;
}

.hero h1,
.lots-intro h2,
.origin-copy h2,
.partner-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "KaiTi", "STKaiti", "FangSong", serif;
  font-weight: 400;
  text-wrap: balance;
}

.hero h1 {
  max-width: 650px;
  color: oklch(94% 0.02 78);
  font-size: clamp(58px, 6.4vw, 104px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  color: oklch(69% 0.16 39);
}

.hero-lede {
  max-width: 540px;
  margin: 34px 0 0;
  color: rgba(239, 231, 216, 0.78);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.9;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 40px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.text-link svg {
  width: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
  transition: transform 220ms var(--ease-out);
}

.text-link-light {
  color: var(--cream);
}

.hero-ledger {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 72px);
  bottom: 68px;
  display: flex;
  color: var(--cream);
}

.hero-ledger > div {
  min-width: 138px;
  padding: 10px 20px;
  border-left: 1px solid rgba(239, 231, 216, 0.2);
}

.hero-ledger span,
.hero-ledger strong {
  display: block;
}

.hero-ledger span {
  margin-bottom: 4px;
  color: rgba(239, 231, 216, 0.47);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.hero-ledger strong {
  font-family: "Consolas", monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 30px;
  top: 50%;
  min-width: 44px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(239, 231, 216, 0.5);
}

.hero-scroll span {
  writing-mode: vertical-rl;
  font-family: "Consolas", monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.hero-scroll i {
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(239, 231, 216, 0.24);
}

.hero-scroll i::after {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--cream);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-up 900ms var(--ease-out) 180ms forwards;
}

.reveal-delay-1 {
  animation-delay: 260ms;
}

.reveal-delay-2 {
  animation-delay: 380ms;
}

.reveal-delay-3 {
  animation-delay: 500ms;
}

.lots-section {
  min-height: 100vh;
  padding: clamp(80px, 10vw, 150px) 7vw clamp(90px, 10vw, 150px);
  background:
    linear-gradient(rgba(39, 24, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 24, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.lots-section > .section-index {
  position: absolute;
  right: 7vw;
  top: clamp(82px, 10vw, 152px);
}

.lots-intro {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(320px, 1fr);
  column-gap: 9vw;
  align-items: end;
}

.lots-intro .eyebrow {
  grid-column: 1;
}

.lots-intro h2 {
  grid-column: 1;
  max-width: 540px;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 78px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.lots-intro > p:last-child {
  grid-column: 2;
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
  text-wrap: pretty;
}

.lot-explorer {
  margin-top: 78px;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(480px, 1.15fr);
  gap: 7vw;
  align-items: center;
}

.lot-bag-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
  box-shadow: inset 0 0 80px rgba(83, 53, 31, 0.08);
  perspective: 900px;
}

.lot-bag-stage::before {
  position: absolute;
  inset: 20px;
  border: 1px solid color-mix(in oklch, var(--ink) 10%, transparent);
  border-radius: var(--radius-sm);
  content: "";
  pointer-events: none;
}

.altitude-lines {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}

.altitude-lines span {
  position: absolute;
  left: calc((var(--line) - 1) * 12% - 5%);
  bottom: calc(var(--line) * 8%);
  width: calc(120% - var(--line) * 6%);
  height: calc(40% + var(--line) * 2%);
  border: 1px solid rgba(74, 47, 29, 0.14);
  border-radius: 50%;
  transform: rotate(calc(var(--line) * -3deg));
}

.altitude-line-1 {
  --line: 1;
}

.altitude-line-2 {
  --line: 2;
}

.altitude-line-3 {
  --line: 3;
}

.altitude-line-4 {
  --line: 4;
}

.altitude-line-5 {
  --line: 5;
}

.bag-shadow {
  position: absolute;
  bottom: 58px;
  width: 230px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47, 28, 16, 0.24);
  filter: blur(18px);
  transform: translateX(10px) rotate(-2deg);
}

.coffee-bag {
  --bag-accent: #b9452f;
  position: relative;
  z-index: 2;
  width: 250px;
  height: 350px;
  padding: 46px 22px 26px;
  border-radius: 7px 7px var(--radius-sm) var(--radius-sm);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.12), transparent 23%, rgba(57, 36, 20, 0.11) 78%, transparent),
    repeating-linear-gradient(7deg, transparent 0 3px, rgba(58, 36, 20, 0.025) 3px 4px),
    #b99a6e;
  box-shadow:
    inset 12px 0 18px rgba(255, 255, 255, 0.08),
    inset -18px 0 22px rgba(45, 27, 15, 0.12),
    0 32px 50px rgba(55, 32, 16, 0.25);
  transform: rotateX(var(--bag-rotate-x, 0deg)) rotateY(var(--bag-rotate-y, -8deg)) rotateZ(-2deg);
  transform-style: preserve-3d;
  transition:
    transform 220ms var(--ease-out),
    background-color 240ms ease;
}

.coffee-bag::before,
.coffee-bag::after {
  position: absolute;
  top: 20px;
  height: 9px;
  content: "";
}

.coffee-bag::before {
  right: 12px;
  left: 12px;
  border-top: 2px solid rgba(67, 41, 24, 0.33);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.coffee-bag::after {
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(64, 39, 21, 0.12), transparent 12% 88%, rgba(64, 39, 21, 0.12));
}

.bag-top {
  position: absolute;
  top: -3px;
  right: 7px;
  left: 7px;
  height: 28px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #b89b71, #a98a61);
  clip-path: polygon(2% 0, 98% 0, 100% 80%, 96% 100%, 4% 100%, 0 80%);
}

.bag-label {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 18px;
  border-radius: var(--radius-xs);
  background: var(--paper-light);
  box-shadow: 0 2px 6px rgba(47, 29, 18, 0.2);
  color: var(--ink);
  text-align: center;
  transform: translateZ(8px);
}

.bag-label::before {
  position: absolute;
  inset: 54% 16px auto;
  height: 2px;
  background: var(--bag-accent);
  content: "";
  transition: background-color 240ms ease;
}

.bag-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "KaiTi", serif;
  font-size: 30px;
  line-height: 1;
}

.bag-label p {
  margin: 10px 0 28px;
  font-family: "Georgia", serif;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.bag-label strong {
  margin-top: 19px;
  font-family: "FangSong", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.bag-label > span:not(.bag-mark) {
  margin-top: 7px;
  color: var(--ink-soft);
  font-family: "Consolas", monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bag-label i {
  margin-top: auto;
  color: var(--bag-accent);
  font-family: "Consolas", monospace;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: color 240ms ease;
}

.bag-note {
  position: absolute;
  right: 32px;
  bottom: 28px;
  color: color-mix(in oklch, var(--ink) 50%, transparent);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.lot-list {
  border-top: 1px solid var(--line);
}

.lot-row {
  position: relative;
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 58px 32px;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.lot-row::before {
  position: absolute;
  inset: 0 -18px;
  z-index: -1;
  border-radius: var(--radius-sm);
  background: var(--paper-light);
  box-shadow: var(--shadow-1);
  content: "";
  opacity: 0;
  transform: scaleX(0.97);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.lot-row.is-selected::before {
  opacity: 1;
  transform: scaleX(1);
}

.lot-number,
.lot-score {
  font-family: "Consolas", monospace;
  font-variant-numeric: tabular-nums;
}

.lot-number {
  color: color-mix(in oklch, var(--ink) 45%, transparent);
  font-size: 10px;
}

.lot-main strong,
.lot-main em {
  display: block;
}

.lot-main strong {
  margin-bottom: 5px;
  font-family: "FangSong", "STFangsong", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.lot-main em {
  color: var(--ink-soft);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.lot-score {
  font-size: 12px;
}

.lot-arrow {
  font-size: 22px;
  opacity: 0.35;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.lot-row.is-selected .lot-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.lot-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.65fr;
  margin-top: 28px;
}

.lot-detail > div {
  padding-right: 18px;
}

.lot-detail > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.lot-detail span,
.lot-detail strong {
  display: block;
}

.lot-detail span {
  margin-bottom: 6px;
  color: color-mix(in oklch, var(--ink) 52%, transparent);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.lot-detail strong {
  font-family: "FangSong", serif;
  font-size: 14px;
  font-weight: 600;
}

.origin-section {
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(520px, 1.22fr);
  background: var(--paper-light);
}

.origin-photo-wrap {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.origin-photo-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(25, 15, 9, 0.52));
  content: "";
}

.origin-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  outline-offset: -1px;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.origin-copy {
  position: relative;
  align-self: center;
  padding: 100px 8vw;
}

.origin-copy > .section-index {
  position: absolute;
  top: 56px;
  right: 5vw;
}

.origin-copy h2 {
  color: var(--ink);
  font-size: clamp(50px, 5vw, 82px);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.origin-copy h2 span {
  color: var(--berry);
}

.origin-lede {
  max-width: 580px;
  margin: 36px 0 42px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.05;
  text-wrap: pretty;
}

.trace-list {
  max-width: 620px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trace-list li {
  min-height: 78px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.trace-list li > span {
  font-family: "Consolas", monospace;
  font-size: 10px;
}

.trace-list strong,
.trace-list em {
  display: block;
}

.trace-list strong {
  margin-bottom: 4px;
  font-family: "FangSong", serif;
  font-size: 17px;
}

.trace-list em {
  color: var(--ink-soft);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.06em;
}

.proof-section {
  padding: 76px 7vw 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
}

.proof-heading span {
  color: var(--berry-deep);
  font-family: "Consolas", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.proof-heading strong {
  font-family: "FangSong", serif;
  font-size: 17px;
  font-weight: 600;
}

.proof-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.proof-ledger > div {
  padding: 34px 30px 12px 0;
}

.proof-ledger > div + div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.proof-ledger dt {
  margin-bottom: 4px;
  font-family: "Georgia", serif;
  font-size: clamp(48px, 4.2vw, 68px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-ledger dt i {
  margin-left: 6px;
  color: var(--berry);
  font-family: "FangSong", serif;
  font-size: 16px;
  font-style: normal;
}

.proof-ledger dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.partner-section {
  min-height: 900px;
  padding: 110px 7vw 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(185, 69, 47, 0.2), transparent 27%),
    var(--ink);
  color: var(--cream);
}

.partner-section::before {
  position: absolute;
  right: -12vw;
  bottom: -26vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(239, 231, 216, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 6vw rgba(239, 231, 216, 0.022),
    0 0 0 12vw rgba(239, 231, 216, 0.016);
  content: "";
}

.partner-section > .section-index {
  position: absolute;
  top: 118px;
  right: 7vw;
}

.partner-heading h2 {
  max-width: 700px;
  color: var(--cream);
  font-size: clamp(56px, 6vw, 92px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.partner-options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 86px;
  border-top: 1px solid var(--line-light);
}

.partner-options article {
  min-height: 330px;
  padding: 30px 38px 28px 0;
}

.partner-options article + article {
  padding-left: 38px;
  border-left: 1px solid var(--line-light);
}

.partner-options article > span {
  color: rgba(239, 231, 216, 0.4);
  font-family: "Consolas", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.partner-options h3 {
  margin: 36px 0 14px;
  font-family: "FangSong", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.partner-options p {
  max-width: 330px;
  margin: 0;
  color: rgba(239, 231, 216, 0.6);
  font-size: 13px;
  line-height: 1.9;
  text-wrap: pretty;
}

.partner-options ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.partner-options li {
  position: relative;
  padding-left: 16px;
  color: rgba(239, 231, 216, 0.76);
  font-size: 11px;
  line-height: 2;
}

.partner-options li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--berry);
  content: "";
  transform: translateY(-50%);
}

.partner-cta {
  position: relative;
  z-index: 2;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 0 28px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: "FangSong", serif;
  font-size: 18px;
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.partner-cta i {
  font-family: sans-serif;
  font-size: 28px;
  font-style: normal;
  transition: transform 220ms var(--ease-out);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 8vw;
  padding: 120px 7vw;
  background:
    linear-gradient(110deg, rgba(185, 69, 47, 0.055), transparent 35%),
    var(--paper-light);
}

.contact-copy {
  position: relative;
}

.contact-copy > .section-index {
  margin-bottom: 60px;
}

.contact-copy h2 {
  font-size: clamp(52px, 5vw, 80px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
  text-wrap: pretty;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 44px;
  color: var(--berry-deep);
  font-family: "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.contact-form {
  align-self: center;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-2);
}

.field {
  position: relative;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.field label {
  display: block;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 4px 0 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "FangSong", serif;
  font-size: 18px;
}

.field input:focus {
  outline: 0;
}

.field:focus-within {
  border-bottom-color: var(--berry);
}

.need-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 26px;
  padding: 0;
  border: 0;
}

.need-options legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.need-options label {
  position: relative;
  cursor: pointer;
}

.need-options input {
  position: absolute;
  opacity: 0;
}

.need-options span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 11px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.need-options input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.need-options input:focus-visible + span {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
}

.submit-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 22px;
  border: 0;
  border-radius: var(--radius-xs);
  background: var(--berry);
  box-shadow: 0 10px 22px rgba(132, 50, 34, 0.2);
  color: var(--paper-light);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    background-color 180ms ease,
    transform 160ms ease;
}

.submit-button i {
  font-size: 22px;
  font-style: normal;
}

.submit-button:active {
  transform: scale(0.96);
}

.form-note {
  margin: 16px 0 0;
  color: color-mix(in oklch, var(--ink) 48%, transparent);
  font-size: 9px;
  line-height: 1.7;
}

footer {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 72px 7vw 42px;
  background: var(--berry-deep);
  color: var(--cream);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 231, 216, 0.55);
  border-radius: 50%;
  font-family: "KaiTi", serif;
  font-size: 26px;
}

.footer-brand strong {
  font-family: "FangSong", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

footer > p {
  align-self: center;
  justify-self: end;
  margin: 0;
  color: rgba(239, 231, 216, 0.66);
  font-family: "FangSong", serif;
  font-size: 18px;
}

footer > div {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(239, 231, 216, 0.16);
  color: rgba(239, 231, 216, 0.44);
  font-family: "Consolas", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  width: min(390px, calc(100vw - 32px));
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  box-shadow: var(--shadow-2);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 200ms ease,
    transform 240ms var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
}

.toast p,
.toast strong,
.toast em {
  display: block;
  margin: 0;
}

.toast strong {
  font-size: 13px;
}

.toast em {
  margin-top: 2px;
  color: rgba(239, 231, 216, 0.58);
  font-size: 10px;
  font-style: normal;
}

.service-dialog {
  width: min(800px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--paper-light);
  box-shadow: 0 28px 90px rgba(17, 9, 5, 0.46);
  color: var(--ink);
}

.service-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  animation: dialog-enter 320ms var(--ease-out) both;
}

.service-dialog::backdrop {
  background: rgba(19, 12, 8, 0.76);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  font-family: "Georgia", serif;
  font-size: 25px;
  line-height: 1;
  transition: transform 160ms ease;
}

.dialog-close:active {
  transform: scale(0.96);
}

.dialog-copy {
  padding: 54px 50px 48px;
}

.dialog-copy h2 {
  margin: 0;
  font-family: "KaiTi", "STKaiti", "FangSong", serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.dialog-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
  text-wrap: pretty;
}

.dialog-copy ul {
  margin: 26px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.dialog-copy li {
  position: relative;
  padding-left: 15px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 2;
}

.dialog-copy li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--berry);
  content: "";
  transform: translateY(-50%);
}

.dialog-qr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 70px 42px 42px;
  background: var(--paper-deep);
}

.dialog-qr img {
  width: 100%;
  height: auto;
  aspect-ratio: 731 / 736;
  border-radius: var(--radius-sm);
  background: white;
  outline: 1px solid rgba(39, 24, 15, 0.09);
  outline-offset: -1px;
}

.dialog-qr figcaption {
  text-align: center;
}

.dialog-qr strong,
.dialog-qr span {
  display: block;
}

.dialog-qr strong {
  font-family: "FangSong", serif;
  font-size: 17px;
}

.dialog-qr span {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
}

.noscript-note {
  position: fixed;
  z-index: 200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  background: var(--berry);
  color: white;
  text-align: center;
}

@media (hover: hover) {
  .rail-nav a:hover {
    color: var(--cream);
    transform: translateX(1px);
  }

  .rail-nav a:hover em {
    opacity: 1;
    transform: translateX(0);
  }

  .text-link:hover svg {
    transform: translateX(5px);
  }

  .lot-row:hover .lot-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
  }

  .partner-cta:hover {
    background: var(--cream);
    color: var(--ink);
  }

  .partner-cta:hover i {
    transform: translateX(6px);
  }

  .need-options label:hover span {
    border-color: var(--berry);
    transform: translateY(-1px);
  }

  .submit-button:hover {
    background: var(--berry-deep);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.01);
  }
}

@keyframes scroll-line {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(42px);
  }
}

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

@media (max-width: 1100px) {
  .hero-copy {
    width: min(720px, 68vw);
  }

  .hero-ledger > div {
    min-width: 118px;
    padding-inline: 14px;
  }

  .lot-explorer {
    grid-template-columns: minmax(330px, 0.9fr) minmax(390px, 1.1fr);
    gap: 5vw;
  }

  .origin-section {
    grid-template-columns: minmax(340px, 0.85fr) minmax(450px, 1.15fr);
  }

  .origin-copy {
    padding-inline: 6vw;
  }

  .contact-section {
    grid-template-columns: minmax(350px, 0.85fr) minmax(430px, 1.15fr);
    gap: 5vw;
  }
}

@media (max-width: 900px) {
  :root {
    --rail-width: 0px;
    --ribbon-height: 30px;
  }

  .site-rail {
    display: none;
  }

  .mobile-header {
    position: fixed;
    z-index: 80;
    top: var(--ribbon-height);
    right: 0;
    left: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left));
    background: rgba(31, 20, 13, 0.94);
    color: var(--cream);
    box-shadow: 0 1px 0 rgba(239, 231, 216, 0.12);
  }

  .mobile-brand {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "FangSong", serif;
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .brand-seal {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(239, 231, 216, 0.58);
    border-radius: var(--radius-xs);
    font-family: "KaiTi", serif;
    font-size: 19px;
    line-height: 1;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--cream);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 220ms var(--ease-out);
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: calc(var(--ribbon-height) + 64px) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 32px 8vw calc(32px + env(safe-area-inset-bottom));
    overscroll-behavior: contain;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 220ms var(--ease-out);
  }

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

  .mobile-menu a {
    min-height: 64px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
    font-family: "FangSong", serif;
    font-size: 26px;
  }

  .hero {
    min-height: 780px;
    padding-top: 64px;
  }

  .hero-image {
    background-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(19, 12, 8, 0.86) 0%, rgba(19, 12, 8, 0.56) 53%, transparent 83%),
      linear-gradient(0deg, rgba(19, 12, 8, 0.82) 0%, transparent 54%);
  }

  .hero-copy {
    width: min(720px, 82vw);
    padding: 150px 7vw 240px;
  }

  .hero h1 {
    font-size: clamp(60px, 10vw, 86px);
  }

  .hero-ledger {
    right: 7vw;
    bottom: 92px;
    left: 7vw;
    justify-content: space-between;
  }

  .hero-ledger > div {
    min-width: 0;
    flex: 1;
  }

  .hero-scroll {
    display: none;
  }

  .lots-intro {
    grid-template-columns: 1fr;
  }

  .lots-intro h2,
  .lots-intro > p:last-child {
    grid-column: 1;
  }

  .lots-intro > p:last-child {
    margin-top: 28px;
  }

  .lot-explorer {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lot-bag-stage {
    min-height: 500px;
  }

  .origin-section {
    min-height: 0;
    grid-template-columns: minmax(310px, 0.82fr) minmax(410px, 1.18fr);
  }

  .origin-copy {
    padding: 92px 6vw 78px;
  }

  .origin-copy h2 {
    font-size: clamp(46px, 6.5vw, 64px);
  }

  .proof-ledger dt {
    font-size: clamp(38px, 6vw, 58px);
  }

  .partner-options {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .partner-options article {
    min-height: 0;
    display: grid;
    grid-template-columns: 120px minmax(150px, 0.8fr) minmax(250px, 1.2fr);
    gap: 24px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .partner-options article + article {
    padding-left: 0;
    border-left: 0;
  }

  .partner-options h3,
  .partner-options p,
  .partner-options ul {
    margin: 0;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy > .section-index {
    margin-bottom: 34px;
  }

  .contact-form {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .demo-ribbon {
    justify-content: space-between;
    gap: 10px;
    padding-inline: 12px;
    letter-spacing: 0.05em;
  }

  .desktop-only {
    display: none;
  }

  .hero {
    min-height: max(740px, calc(100svh - var(--ribbon-height)));
  }

  .hero-image {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(19, 12, 8, 0.78) 0%, rgba(19, 12, 8, 0.35) 80%, transparent),
      linear-gradient(0deg, rgba(19, 12, 8, 0.92) 0%, rgba(19, 12, 8, 0.12) 67%);
  }

  .hero-copy {
    width: 100%;
    padding: 130px 22px 280px;
  }

  .hero h1 {
    max-width: 420px;
    font-size: clamp(52px, 16vw, 72px);
    line-height: 1.02;
  }

  .hero-lede {
    max-width: 390px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.85;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-ledger {
    right: 20px;
    bottom: 38px;
    left: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-ledger > div {
    padding: 8px 10px;
  }

  .hero-ledger span {
    font-size: 8px;
    letter-spacing: 0.05em;
  }

  .hero-ledger strong {
    font-size: 9px;
  }

  .lots-section {
    padding: 76px 20px 90px;
    background-size: 36px 36px;
  }

  .lots-section > .section-index {
    top: 80px;
    right: 20px;
  }

  .lots-intro h2 {
    font-size: 48px;
  }

  .lots-intro > p:last-child {
    font-size: 13px;
  }

  .lot-explorer {
    margin-top: 48px;
    gap: 38px;
  }

  .lot-bag-stage {
    min-height: 430px;
  }

  .coffee-bag {
    width: 206px;
    height: 292px;
    padding: 40px 18px 22px;
  }

  .bag-label {
    padding-top: 20px;
  }

  .bag-mark {
    width: 44px;
    height: 44px;
    font-size: 25px;
  }

  .bag-label p {
    margin-bottom: 22px;
  }

  .bag-label strong {
    font-size: 17px;
  }

  .bag-note {
    right: 22px;
    bottom: 20px;
  }

  .lot-row {
    min-height: 100px;
    grid-template-columns: 32px minmax(0, 1fr) 44px 24px;
    gap: 8px;
  }

  .lot-row::before {
    inset-inline: -8px;
  }

  .lot-main strong {
    font-size: 19px;
  }

  .lot-main em {
    max-width: 210px;
    font-size: 9px;
  }

  .lot-score {
    font-size: 10px;
  }

  .lot-detail {
    grid-template-columns: 1.25fr 0.95fr 0.65fr;
  }

  .lot-detail > div {
    padding-right: 9px;
  }

  .lot-detail > div + div {
    padding-left: 9px;
  }

  .lot-detail strong {
    font-size: 11px;
  }

  .origin-section {
    grid-template-columns: 1fr;
  }

  .origin-photo-wrap {
    min-height: 610px;
  }

  .origin-copy {
    padding: 76px 20px 86px;
  }

  .origin-copy > .section-index {
    top: 34px;
    right: 20px;
  }

  .origin-copy h2 {
    font-size: 48px;
  }

  .origin-lede {
    margin-top: 28px;
    font-size: 13px;
  }

  .proof-section {
    padding: 64px 20px 70px;
  }

  .proof-heading {
    display: block;
  }

  .proof-heading strong {
    display: block;
    margin-top: 14px;
  }

  .proof-ledger {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-ledger > div {
    padding: 28px 18px 22px 0;
  }

  .proof-ledger > div + div {
    padding-left: 18px;
  }

  .proof-ledger > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-ledger > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .proof-ledger dt {
    font-size: 46px;
  }

  .partner-section {
    min-height: 0;
    padding: 84px 20px 72px;
  }

  .partner-section > .section-index {
    top: 88px;
    right: 20px;
  }

  .partner-heading h2 {
    font-size: 52px;
  }

  .partner-options {
    margin-top: 54px;
  }

  .partner-options article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .partner-options h3 {
    font-size: 27px;
  }

  .partner-options p {
    font-size: 12px;
  }

  .partner-options ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    margin-top: 8px;
  }

  .partner-cta {
    padding-inline: 14px;
  }

  .contact-section {
    gap: 54px;
    padding: 84px 20px 92px;
  }

  .contact-copy h2 {
    font-size: 50px;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: var(--radius-sm);
  }

  .need-options span {
    padding-inline: 13px;
  }

  footer {
    min-height: 330px;
    grid-template-columns: 1fr;
    padding: 60px 20px 32px;
  }

  footer > p {
    justify-self: start;
  }

  footer > div {
    display: grid;
    gap: 7px;
  }

  .toast {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .service-dialog {
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100svh - 28px);
    overflow-y: auto;
    border-radius: var(--radius-sm);
  }

  .service-dialog[open] {
    grid-template-columns: 1fr;
  }

  .dialog-copy {
    padding: 42px 24px 28px;
  }

  .dialog-copy h2 {
    font-size: 44px;
  }

  .dialog-copy > p:not(.eyebrow) {
    font-size: 12px;
  }

  .dialog-copy ul {
    margin-top: 20px;
    padding-top: 14px;
  }

  .dialog-qr {
    padding: 26px 60px 30px;
  }
}

@media (max-width: 380px) {
  .demo-ribbon {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-ledger > div {
    padding-inline: 7px;
  }

  .lot-main em {
    max-width: 170px;
  }

  .need-options {
    gap: 7px;
  }

  .need-options span {
    padding-inline: 10px;
    font-size: 10px;
  }
}

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

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

  .hero-image {
    transform: none;
  }
}
