:root {
  --ink: #10100f;
  --cream: #fff8e8;
  --paper: #f7f0df;
  --terracotta: #b6532d;
  --butter: #ffef78;
  --sky: #bcdff2;
  --sage: #789286;
  --lavender: #a998cd;
  --line: 2px solid var(--ink);
  --mono: 'DM Mono', ui-monospace, monospace;
  --display: 'Archivo Black', Arial Black, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--terracotta);
  color: var(--ink);
  font-family: var(--mono);
  overflow-x: hidden;
}
.is-japanese body {
  font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', var(--mono);
}
.is-japanese h1,
.is-japanese h2,
.is-japanese h3,
.is-japanese .nav__logo,
.is-japanese .coffee-card__origin strong,
.is-japanese .next-chapter strong {
  letter-spacing: -0.045em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}

::selection {
  background: var(--butter);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: var(--cream);
  border: var(--line);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}

.notice {
  height: 34px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--butter);
  border-bottom: var(--line);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.notice i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 1px solid var(--ink);
}
.notice__jp {
  margin-left: auto;
}

.nav {
  height: 74px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: var(--line);
  background: var(--cream);
  position: relative;
  z-index: 20;
}
.nav__logo {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.07em;
}
.nav nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}
.nav nav a {
  border-bottom: 2px solid transparent;
}
.nav nav a:hover {
  border-color: var(--ink);
}
.nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-switcher {
  display: flex;
  padding: 3px;
  border: var(--line);
  border-radius: 999px;
  background: var(--cream);
}
.language-switcher button {
  min-width: 32px;
  padding: 6px 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 9px;
  font-weight: 500;
  cursor: pointer;
}
.language-switcher button[aria-pressed='true'] {
  background: var(--ink);
  color: var(--cream);
}

.pill {
  border: var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
}
.pill--black {
  background: var(--ink);
  color: var(--cream);
}
.pill:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100svh - 108px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 3vw;
  padding: 54px clamp(22px, 4vw, 68px) 92px;
  overflow: hidden;
  background: var(--terracotta);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(var(--ink) 0.85px, transparent 0.85px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}
.hero__stamp {
  position: absolute;
  top: 22px;
  right: 20px;
  font-family: var(--display);
  font-size: clamp(120px, 19vw, 300px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(16, 16, 15, 0.26);
  transform: rotate(4deg);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 4;
  align-self: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--butter);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
h1 {
  font-family: var(--display);
  font-size: clamp(52px, 6.8vw, 112px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
h1 span {
  display: block;
}
h1 span:nth-child(2) {
  color: var(--butter);
  -webkit-text-stroke: 2px var(--ink);
}
h1 span:nth-child(3) {
  font-size: 0.43em;
  line-height: 1.1;
  letter-spacing: -0.055em;
  margin-top: 20px;
}
.hero__intro {
  max-width: 56ch;
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.6;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(65px, 96px));
  margin-top: 30px;
  border: var(--line);
  width: max-content;
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}
.countdown div {
  padding: 11px 13px 10px;
  border-right: var(--line);
}
.countdown div:last-child {
  border-right: 0;
}
.countdown strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.countdown span {
  font-size: 9px;
}

.hero__object {
  position: relative;
  z-index: 3;
  min-height: min(68vh, 720px);
  width: 100%;
}
#cupScene {
  position: absolute;
  inset: 0;
}
#cupScene canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__object::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sky);
  border: var(--line);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 14px 14px 0 var(--ink);
}
.hero__orbit-label {
  position: absolute;
  z-index: 4;
  padding: 8px 13px;
  background: var(--butter);
  border: var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
}
.hero__orbit-label--top {
  top: 17%;
  left: 8%;
  transform: rotate(-7deg);
}
.hero__orbit-label--bottom {
  bottom: 18%;
  right: 5%;
  transform: rotate(5deg);
  background: var(--lavender);
}

.location-ticket {
  position: absolute;
  z-index: 7;
  right: clamp(20px, 3vw, 50px);
  bottom: 26px;
  width: min(330px, 32vw);
  padding: 14px;
  background: var(--cream);
  border: var(--line);
  transform: rotate(-1.5deg);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 10px;
  line-height: 1.5;
}
.location-ticket__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1.5px dashed var(--ink);
  font-size: 9px;
}
.status {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}
.location-ticket__redacted {
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.04em;
}
.hero__scroll {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 4vw, 68px);
  bottom: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
}
.hero__scroll span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: var(--line);
  border-radius: 50%;
  background: var(--butter);
}

.story-intro {
  min-height: 100svh;
  padding: clamp(80px, 10vw, 150px) clamp(22px, 5vw, 76px);
  background: var(--sky);
  border-top: var(--line);
  position: relative;
  overflow: hidden;
}
.story-intro::after {
  content: '';
  position: absolute;
  width: 270px;
  height: 80px;
  right: -40px;
  top: 45px;
  background: var(--butter);
  border: var(--line);
  transform: rotate(8deg);
}
.story-intro__index {
  font-size: 11px;
  margin-bottom: 28px;
}
.story-intro h2 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  max-width: 12ch;
}
.story-intro h2 em {
  color: var(--terracotta);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}
.story-intro > p {
  width: min(100%, 44ch);
  margin: 28px 0 64px auto;
  font-size: 14px;
  line-height: 1.6;
}

.route-preview {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.route-card {
  min-height: 180px;
  padding: 18px;
  border: var(--line);
  border-radius: 20px;
  box-shadow: 7px 7px 0 var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.route-card span,
.route-card p {
  font-size: 10px;
}
.route-card strong {
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 48px);
  letter-spacing: -0.06em;
}
.route-card--brazil {
  background: var(--sage);
  transform: rotate(-2deg);
}
.route-card--colombia {
  background: var(--butter);
  transform: rotate(1.5deg);
}
.route-card--tokyo {
  background: var(--lavender);
  transform: rotate(-1deg);
}
.route-line {
  width: clamp(35px, 5vw, 78px);
  border-top: 2px dashed var(--ink);
  position: relative;
}
.route-line span {
  position: absolute;
  right: -3px;
  top: -6px;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
}

.kenji-story {
  padding: clamp(90px, 11vw, 170px) clamp(22px, 5vw, 76px);
  background: var(--paper);
  border-top: var(--line);
  overflow: hidden;
}
.kenji-story__header {
  display: grid;
  grid-template-columns: 1fr minmax(400px, 2.2fr);
  gap: 26px;
  align-items: start;
}
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
}
.kenji-story__header h2,
.coffee-selection__heading h2 {
  font-family: var(--display);
  font-size: clamp(52px, 7.2vw, 118px);
  line-height: 0.84;
  letter-spacing: -0.075em;
}
.kenji-story__header h2 em,
.coffee-selection__heading h2 em {
  color: var(--terracotta);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}
.kenji-story__header > p:last-child {
  grid-column: 2;
  width: min(100%, 52ch);
  font-size: 13px;
  line-height: 1.7;
  margin: 12px 0 0 auto;
}

.collage-board {
  position: relative;
  min-height: 1120px;
  max-width: 1320px;
  margin: 90px auto 0;
  background-color: var(--sky);
  background-image: radial-gradient(
    rgba(16, 16, 15, 0.2) 0.7px,
    transparent 0.7px
  );
  background-size: 7px 7px;
  border: var(--line);
  box-shadow: 13px 13px 0 var(--ink);
}
.collage-board::before {
  content: 'TOKYO / SOUTH AMERICA / 2026';
  position: absolute;
  left: 22px;
  bottom: 20px;
  font-size: 9px;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
}
.paper-card,
.photo-card,
.boarding-pass,
.quote-card,
.cupping-card {
  position: absolute;
  border: var(--line);
  box-shadow: 8px 8px 0 rgba(16, 16, 15, 0.95);
  transition: transform 0.28s ease;
}
.paper-card:hover,
.photo-card:hover,
.boarding-pass:hover,
.quote-card:hover,
.cupping-card:hover {
  z-index: 8;
  transform: translateY(-7px) rotate(0deg) !important;
}
.micro {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.tape {
  position: absolute;
  z-index: 4;
  width: 100px;
  height: 28px;
  left: 50%;
  top: -17px;
  transform: translateX(-50%) rotate(-3deg);
  border: 1px solid rgba(16, 16, 15, 0.45);
  opacity: 0.9;
}
.tape--lavender {
  background: var(--lavender);
}
.tape--butter {
  background: var(--butter);
}
.tape--sky {
  background: var(--sky);
}

.founder-note {
  z-index: 3;
  top: 70px;
  left: 6%;
  width: min(330px, 30%);
  padding: 22px;
  background: var(--butter);
  transform: rotate(-3deg);
}
.founder-portrait {
  height: 255px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--terracotta);
  border: var(--line);
  position: relative;
}
.kenji-anime {
  position: absolute;
  z-index: 1;
  width: 107%;
  height: 116%;
  left: 50%;
  top: -3%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: 50% 16%;
  filter: contrast(1.08);
}
.founder-portrait span {
  position: absolute;
  z-index: 3;
  left: 55%;
  top: 169px;
  min-width: 94px;
  padding: 4px 12px 6px;
  transform: translateX(-50%) rotate(-2deg);
  border: 2px solid var(--ink);
  background: var(--butter);
  color: var(--ink);
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
}
.founder-note h3 {
  margin: 7px 0;
  font-family: var(--display);
  font-size: 39px;
  letter-spacing: -0.07em;
}
.founder-note > p:not(.micro) {
  font-size: 11px;
  line-height: 1.55;
}
.signature {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-style: italic;
  transform: rotate(-3deg);
}

.photo-card {
  z-index: 2;
  padding: 14px 14px 12px;
  background: var(--cream);
}
.photo-card--brazil {
  top: 52px;
  right: 5%;
  width: 48%;
  transform: rotate(4deg);
}
.photo-card--colombia {
  left: 8%;
  bottom: 68px;
  width: 45%;
  transform: rotate(-4deg);
}
.photo-art {
  height: 310px;
  border: var(--line);
  overflow: hidden;
  position: relative;
  background: var(--sage);
}
.photo-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}
.photo-art::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(var(--cream) 0.7px, transparent 0.8px);
  background-size: 5px 5px;
  mix-blend-mode: screen;
}
.photo-art--hills {
  background:
    linear-gradient(165deg, var(--sky) 0 42%, transparent 42%),
    radial-gradient(ellipse at 20% 120%, #536f4c 0 48%, transparent 49%),
    radial-gradient(ellipse at 70% 120%, var(--sage) 0 58%, var(--butter) 59%);
}
.photo-art--hills::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(var(--ink) 0.8px, transparent 0.8px);
  background-size: 6px 6px;
}
.photo-art--hills i,
.photo-art--hills b {
  position: absolute;
  width: 44px;
  height: 70px;
  bottom: 28px;
  background: var(--ink);
}
.photo-art--hills i {
  left: 35%;
  clip-path: polygon(40% 0, 60% 0, 60% 45%, 100% 100%, 0 100%, 40% 45%);
}
.photo-art--hills b {
  left: 46%;
  height: 58px;
  opacity: 0.75;
}
.photo-art--cherries {
  background: var(--sage);
}
.photo-art--cherries::before,
.photo-art--cherries::after,
.photo-art--cherries i,
.photo-art--cherries b,
.photo-art--cherries em {
  content: '';
  position: absolute;
  width: 95px;
  height: 95px;
  border: var(--line);
  border-radius: 50%;
  background: var(--terracotta);
}
.photo-art--cherries::before {
  left: 14%;
  top: 21%;
}
.photo-art--cherries::after {
  left: 31%;
  top: 45%;
  background: var(--butter);
}
.photo-art--cherries i {
  left: 48%;
  top: 18%;
}
.photo-art--cherries b {
  right: 7%;
  top: 47%;
  width: 120px;
  height: 120px;
  background: #873923;
}
.photo-art--cherries em {
  right: 25%;
  top: 9%;
  width: 65px;
  height: 65px;
  background: var(--cream);
}
.photo-card footer {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  font-size: 8px;
}

.boarding-pass {
  z-index: 5;
  top: 450px;
  left: 29%;
  width: 47%;
  padding: 18px 22px;
  background: var(--cream);
  transform: rotate(-2deg);
}
.boarding-pass > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
.boarding-pass strong {
  font-family: var(--display);
  font-size: clamp(34px, 4.7vw, 71px);
  letter-spacing: -0.07em;
}
.boarding-pass p:last-of-type {
  font-size: 10px;
}
.barcode {
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 90px;
  height: 25px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 5px,
    var(--ink) 5px 6px,
    transparent 6px 9px
  );
}

.quote-card {
  z-index: 4;
  right: 4%;
  top: 590px;
  width: 34%;
  padding: 27px;
  background: var(--lavender);
  transform: rotate(3deg);
}
.quote-card > span {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.5;
}
.quote-card p {
  font-family: var(--display);
  font-size: clamp(19px, 2.4vw, 33px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.quote-card cite {
  display: block;
  margin-top: 22px;
  font-size: 9px;
  font-style: normal;
}

.cupping-card {
  z-index: 5;
  right: 7%;
  bottom: 55px;
  width: 34%;
  padding: 23px;
  background: var(--cream);
  transform: rotate(2deg);
}
.cupping-card h3 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 43px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.cupping-card li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1.5px solid var(--ink);
  list-style: none;
  font-size: 9px;
}
.cupping-card li b {
  letter-spacing: 3px;
}
.approved {
  width: max-content;
  margin: 18px 0 0 auto;
  padding: 9px 14px;
  border: 3px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta);
  font-family: var(--display);
  font-size: 17px;
  transform: rotate(-8deg);
}

.coffee-selection {
  padding: clamp(90px, 11vw, 170px) clamp(22px, 5vw, 76px) 0;
  background: var(--butter);
  border-top: var(--line);
}
.coffee-selection__heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 30px;
}
.coffee-selection__heading h2 {
  grid-column: 2;
}
.coffee-selection__heading > p:last-child {
  grid-column: 2;
  max-width: 54ch;
  margin: 18px 0 70px auto;
  font-size: 13px;
  line-height: 1.7;
}
.coffee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.coffee-card {
  min-height: 620px;
  padding: clamp(24px, 4vw, 52px);
  border: var(--line);
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.coffee-card--brazil {
  background: var(--sage);
}
.coffee-card--colombia {
  background: var(--lavender);
}
.coffee-card__number {
  position: absolute;
  right: 22px;
  top: 10px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(16, 16, 15, 0.38);
  font-family: var(--display);
  font-size: clamp(110px, 15vw, 250px);
  line-height: 1;
}
.coffee-card__origin {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.coffee-card__origin span {
  font-size: 11px;
}
.coffee-card__origin strong {
  font-family: var(--display);
  font-size: clamp(51px, 6.3vw, 102px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}
.coffee-card dl {
  position: relative;
  border-top: var(--line);
}
.coffee-card dl div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.65);
  font-size: 9px;
}
.coffee-card dd {
  font-weight: 500;
}
.taste {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 22px;
  border-top: var(--line);
  background: var(--cream);
  font-size: 10px;
  text-align: center;
}
.next-chapter {
  margin: 110px calc(clamp(22px, 5vw, 76px) * -1) 0;
  padding: 45px clamp(22px, 5vw, 76px);
  background: var(--ink);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 30px;
  align-items: center;
}
.next-chapter p {
  font-size: 9px;
}
.next-chapter strong {
  font-family: var(--display);
  font-size: clamp(25px, 3.8vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.next-chapter > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  font-size: 25px;
}

.journey-proof {
  --journey-progress: 0;
  position: relative;
  padding: clamp(34px, 5vw, 76px);
  background: var(--paper);
  color: var(--ink);
  border-top: var(--line);
  overflow: hidden;
}
.journey-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: radial-gradient(var(--ink) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
}
.journey-proof__sticky {
  position: relative;
  width: min(1320px, 100%);
  min-height: 820px;
  margin: auto;
  border: var(--line);
  background: var(--sky);
  box-shadow: 12px 12px 0 var(--ink);
  overflow: hidden;
}
.journey-proof__scenes,
.journey-proof__scene {
  position: absolute;
  inset: 0;
}
.journey-proof__scene {
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition:
    opacity 0.3s ease,
    transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1),
    visibility 0s 0.45s;
}
.journey-proof__scene.is-current {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}
.journey-proof__photo {
  position: absolute;
  z-index: 2;
  top: 158px;
  right: 5%;
  width: 56%;
  height: 475px;
  border: var(--line);
  background: var(--cream);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(1.1deg);
}
.journey-proof__photo::before {
  content: 'FIELD PHOTO / FRAME 01';
  position: absolute;
  z-index: 4;
  left: 12px;
  bottom: 10px;
  font-size: 8px;
  letter-spacing: 0.06em;
}
.journey-proof__landscape {
  position: absolute;
  inset: 13px 13px 35px;
  width: calc(100% - 26px);
  height: calc(100% - 48px);
  object-fit: cover;
  border: 1.5px solid var(--ink);
  transform: scale(calc(1.02 + var(--journey-progress) * 0.025));
  filter: saturate(0.78) contrast(1.04);
}
.journey-proof__wash {
  position: absolute;
  z-index: 1;
  inset: 13px 13px 35px;
  background: linear-gradient(90deg, rgba(16, 16, 15, 0.18), transparent 45%);
  pointer-events: none;
}
.journey-proof__branch {
  position: absolute;
  z-index: 3;
  width: 76%;
  right: -16%;
  bottom: -8%;
  transform-origin: 72% 72%;
  transform: translate3d(
      calc(var(--journey-progress) * -2vw),
      calc(var(--journey-progress) * -2.5vh),
      0
    )
    rotate(-4deg);
  filter: drop-shadow(0 16px 15px rgba(0, 0, 0, 0.36));
}
.journey-proof__photo--cutout {
  overflow: hidden;
  background: var(--lavender);
}
.journey-proof__photo--cutout::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(16, 16, 15, 0.45);
  background-image: radial-gradient(
    rgba(16, 16, 15, 0.32) 0.65px,
    transparent 0.65px
  );
  background-size: 7px 7px;
}
.journey-proof__photo--seed {
  background: var(--lavender);
}
.journey-proof__photo--seed::before {
  content: 'ANATOMY / FRAME 02';
}
.journey-proof__photo--roast {
  background: var(--terracotta);
}
.journey-proof__photo--roast::before {
  content: 'ROAST CURVE / FRAME 03';
  color: var(--cream);
}
.journey-proof__photo--grind {
  background: var(--sage);
}
.journey-proof__photo--grind::before {
  content: 'PARTICLE / FRAME 04';
}
.journey-proof__photo--pour {
  background: var(--butter);
}
.journey-proof__photo--pour::before {
  content: 'EXTRACTION / FRAME 05';
}
.journey-proof__cutout {
  position: absolute;
  z-index: 3;
  inset: 1% 1% 5%;
  width: 98%;
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 17px 14px rgba(0, 0, 0, 0.35));
  transform: scale(0.9) rotate(-2deg);
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.journey-proof__scene.is-current .journey-proof__cutout {
  transform: scale(0.95) rotate(0);
}
.journey-proof__cutout--portrait {
  inset: -8% 4% 1%;
  width: 92%;
  height: 106%;
}
.journey-proof__heading {
  position: absolute;
  z-index: 4;
  top: 56px;
  left: 5%;
}
.journey-proof__heading h2 {
  margin-top: 13px;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.81;
  letter-spacing: -0.075em;
}
.journey-proof__heading h2 em {
  color: var(--butter);
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}
.journey-proof__note {
  position: absolute;
  z-index: 5;
  left: 5%;
  top: 330px;
  width: min(350px, 31%);
  padding: 18px;
  border: var(--line);
  background: var(--butter);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1.3deg)
    translateY(calc((1 - var(--journey-progress)) * 8px));
}
.journey-proof__note > span {
  font-size: 9px;
  letter-spacing: 0.08em;
}
.journey-proof__note h3 {
  margin-top: 11px;
  font-family: var(--display);
  font-size: clamp(35px, 4vw, 57px);
  line-height: 0.85;
  letter-spacing: -0.065em;
}
.journey-proof__note p {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid var(--ink);
  font-size: 10px;
  line-height: 1.55;
}
.journey-proof__scene:nth-child(5) .journey-proof__note h3 {
  font-size: 26px;
  letter-spacing: -0.045em;
}
.journey-proof__note--lavender {
  background: var(--lavender);
}
.journey-proof__note--terracotta {
  background: var(--terracotta);
  color: var(--cream);
}
.journey-proof__note--terracotta p {
  border-color: var(--cream);
}
.journey-proof__note--sage {
  background: var(--sage);
}
.journey-proof__meta {
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 8px;
}
.journey-proof__meta > span:first-child {
  margin-right: 12px;
  padding: 7px 10px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
}
.journey-proof__meta b {
  color: var(--terracotta);
  font-family: var(--display);
  font-size: 25px;
}
.journey-proof__meta i {
  width: 38px;
  border-top: 1px solid var(--ink);
}
.journey-proof__rail {
  position: absolute;
  z-index: 6;
  left: 5%;
  right: 5%;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border: var(--line);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}
.journey-proof__rail li {
  border-right: var(--line);
  font-size: 9px;
}
.journey-proof__rail li:last-child {
  border-right: 0;
}
.journey-proof__rail b {
  font-family: var(--display);
  font-size: 20px;
}
.journey-proof__rail .is-current {
  background: var(--terracotta);
  color: var(--cream);
}
.journey-proof__rail button {
  width: 100%;
  min-height: 54px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.journey-proof__rail button:hover {
  background: rgba(182, 83, 45, 0.12);
}
.journey-proof__rail .is-current button:hover {
  background: transparent;
}

.event-day {
  padding: clamp(90px, 11vw, 170px) clamp(22px, 5vw, 76px);
  background: var(--lavender);
  border-top: var(--line);
}
.event-day header {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.7fr;
  gap: 30px;
  align-items: end;
}
.event-day header h2 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 125px);
  line-height: 0.82;
  letter-spacing: -0.075em;
}
.event-day header h2 em {
  color: var(--butter);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}
.event-day header > p:last-child {
  font-size: 12px;
  line-height: 1.6;
}
.event-day__board {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--line);
  box-shadow: 10px 10px 0 var(--ink);
}
.event-day__board article {
  min-height: 330px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-right: var(--line);
  background: var(--cream);
}
.event-day__board article:nth-child(2) {
  background: var(--sage);
}
.event-day__board article:nth-child(3) {
  background: var(--butter);
}
.event-day__board article:nth-child(4) {
  border-right: 0;
  background: var(--terracotta);
  color: var(--cream);
}
.event-day__board span {
  font-size: 9px;
}
.event-day__board strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(55px, 6vw, 90px);
  letter-spacing: -0.06em;
}
.event-day__board p {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  font-size: 10px;
  line-height: 1.5;
}
.event-day__cta {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.event-day__cta div {
  display: grid;
  gap: 8px;
}
.event-day__cta span {
  font-size: 9px;
}
.event-day__cta strong {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 55px);
  letter-spacing: -0.05em;
}
.site-footer {
  position: relative;
  min-height: 52vh;
  padding: 55px clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 35px;
  background: var(--ink);
  color: var(--cream);
  border-top: var(--line);
}
.site-footer > a {
  font-family: var(--display);
  font-size: clamp(70px, 12vw, 160px);
  letter-spacing: -0.075em;
  line-height: 0.7;
}
.site-footer p,
.site-footer button {
  font-size: 9px;
  line-height: 1.7;
}
.site-footer__languages {
  display: flex;
  align-items: start;
  gap: 5px;
}
.site-footer__languages button {
  border: 1px solid var(--cream);
  padding: 5px 8px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}
.site-footer__fine {
  position: absolute;
  left: clamp(22px, 5vw, 76px);
  bottom: 25px;
}

.process-story {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  border-top: var(--line);
}
.process-stage {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.process-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(var(--cream) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
}
.process-stage__heading {
  position: absolute;
  z-index: 3;
  top: clamp(30px, 5vw, 70px);
  left: clamp(22px, 5vw, 76px);
}
.process-stage__heading h2 {
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 105px);
  line-height: 0.82;
  letter-spacing: -0.075em;
}
.process-stage__heading h2 em {
  color: var(--butter);
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--cream);
}
.process-stage__canvas {
  position: absolute;
  z-index: 2;
  width: 61vw;
  height: 90%;
  right: -2vw;
  top: 5%;
}
.process-stage__canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.process-stage__canvas::after {
  content: 'PREPARING THE NEXT DOSE…';
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  padding: 9px 13px;
  border: 1.5px solid var(--cream);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.process-stage__canvas.is-loading::after {
  opacity: 1;
}
.process-stage__canvas.is-loaded::after {
  opacity: 0;
}
.process-stage__canvas.has-load-error::after {
  content: '3D UNAVAILABLE';
  opacity: 1;
}
.process-stage__canvas::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(44vw, 630px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(255, 248, 232, 0.78);
  border-radius: 50%;
  background: #7f3825;
  box-shadow: 9px 9px 0 #c5af62;
  transition: background 0.45s ease;
}
.process-counter {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 62px);
  top: clamp(26px, 4vw, 55px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
}
.process-counter #processCurrent {
  color: var(--butter);
  font-family: var(--display);
  font-size: 28px;
}
.process-counter i {
  width: 50px;
  border-top: 1px solid var(--cream);
}
.process-hint {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 62px);
  bottom: 28px;
  font-size: 9px;
  letter-spacing: 0.08em;
}
.process-steps {
  position: relative;
  z-index: 4;
  width: min(430px, 38vw);
  margin-top: -100svh;
  margin-left: clamp(22px, 5vw, 76px);
  pointer-events: none;
}
.process-step {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(55px, 9vh, 105px);
  opacity: 0.22;
  transform: translateY(24px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.process-step.is-active {
  opacity: 1;
  transform: translateY(0);
}
.process-step > span {
  width: max-content;
  padding: 7px 11px;
  margin-bottom: 13px;
  border: 1.5px solid var(--cream);
  border-radius: 999px;
  background: var(--ink);
  font-size: 9px;
}
.process-step h3 {
  font-family: var(--display);
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.84;
  letter-spacing: -0.07em;
}
.process-step p {
  width: min(100%, 45ch);
  margin-top: 18px;
  padding: 14px;
  border: 1.5px solid var(--cream);
  background: var(--ink);
  font-size: 11px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.drop-dialog {
  width: min(560px, calc(100vw - 32px));
  padding: 34px;
  border: var(--line);
  border-radius: 24px;
  background: var(--butter);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}
.drop-dialog::backdrop {
  background: rgba(16, 16, 15, 0.72);
}
.drop-dialog__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: var(--line);
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
  font-size: 22px;
}
.drop-dialog h2 {
  font-family: var(--display);
  font-size: clamp(45px, 8vw, 78px);
  line-height: 0.82;
  letter-spacing: -0.07em;
}
.drop-dialog > p:not(.eyebrow) {
  margin: 25px 0;
  font-size: 13px;
  line-height: 1.5;
  max-width: 44ch;
}
.drop-dialog label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
}
.drop-dialog__field {
  display: flex;
  gap: 10px;
}
.drop-dialog input {
  min-width: 0;
  flex: 1;
  padding: 12px 15px;
  border: var(--line);
  border-radius: 999px;
  background: var(--cream);
}

@media (max-width: 880px) {
  .nav {
    grid-template-columns: 1fr auto;
  }
  .nav nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 180px;
  }
  .hero__copy {
    padding-top: 18px;
  }
  .hero__object {
    min-height: 55vh;
  }
  .hero__object::before {
    width: min(78vw, 500px);
  }
  .location-ticket {
    width: min(360px, calc(100vw - 44px));
    right: 22px;
  }
  .hero__scroll {
    display: none;
  }
  .route-preview {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .route-line {
    width: 2px;
    height: 36px;
    border-top: 0;
    border-left: 2px dashed var(--ink);
    margin-left: 50%;
  }
  .route-line span {
    right: -5px;
    top: auto;
    bottom: -3px;
  }
  .kenji-story__header,
  .coffee-selection__heading {
    grid-template-columns: 1fr;
  }
  .kenji-story__header h2,
  .kenji-story__header > p:last-child,
  .coffee-selection__heading h2,
  .coffee-selection__heading > p:last-child {
    grid-column: 1;
  }
  .collage-board {
    min-height: auto;
    padding: 55px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }
  .paper-card,
  .photo-card,
  .boarding-pass,
  .quote-card,
  .cupping-card {
    position: relative;
    inset: auto;
    width: auto;
  }
  .boarding-pass,
  .quote-card {
    grid-column: 1 / -1;
  }
  .coffee-grid {
    grid-template-columns: 1fr;
  }
  .next-chapter {
    grid-template-columns: 1fr auto;
  }
  .next-chapter p {
    grid-column: 1 / -1;
  }
  .process-stage__heading h2 {
    font-size: 51px;
  }
  .process-stage__canvas {
    width: 70vw;
    height: 72%;
    right: -12vw;
    top: 14%;
  }
  .process-stage__canvas::before {
    width: min(64vw, 580px);
  }
  .process-steps {
    width: min(370px, 47vw);
  }
  .event-day header {
    grid-template-columns: 1fr;
  }
  .event-day__board {
    grid-template-columns: 1fr 1fr;
  }
  .event-day__board article {
    border-bottom: var(--line);
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .notice span:nth-of-type(2),
  .notice span:nth-of-type(3),
  .notice i {
    display: none;
  }
  .nav {
    height: 66px;
    padding-inline: 16px;
  }
  .nav__logo {
    font-size: 29px;
  }
  .nav__actions > .pill {
    display: none;
  }
  .language-switcher button {
    min-width: 29px;
    padding-inline: 5px;
  }
  .hero {
    padding: 42px 16px 190px;
  }
  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }
  .hero__intro {
    font-size: 12px;
  }
  .countdown {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
  .countdown div {
    padding-inline: 8px;
  }
  .hero__object {
    min-height: 420px;
  }
  .hero__orbit-label--top {
    left: 0;
  }
  .hero__orbit-label--bottom {
    right: 0;
  }
  .story-intro {
    padding-inline: 16px;
  }
  .story-intro h2 {
    font-size: 51px;
  }
  .kenji-story,
  .coffee-selection {
    padding-inline: 16px;
  }
  .kenji-story__header h2,
  .coffee-selection__heading h2 {
    font-size: 48px;
  }
  .collage-board {
    margin-top: 60px;
    padding: 48px 18px;
    grid-template-columns: 1fr;
    box-shadow: 8px 8px 0 var(--ink);
  }
  .boarding-pass,
  .quote-card {
    grid-column: 1;
  }
  .photo-art {
    height: 240px;
  }
  .boarding-pass strong {
    font-size: 38px;
  }
  .barcode {
    display: none;
  }
  .coffee-card {
    min-height: 560px;
    padding: 24px;
  }
  .coffee-card__origin strong {
    font-size: 58px;
  }
  .next-chapter {
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .next-chapter > span {
    width: 45px;
    height: 45px;
  }
  .journey-proof {
    padding: 16px;
  }
  .journey-proof__sticky {
    min-height: 790px;
  }
  .journey-proof__heading {
    top: 28px;
    left: 16px;
  }
  .journey-proof__heading h2 {
    font-size: 43px;
  }
  .journey-proof__photo {
    top: 205px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 335px;
  }
  .journey-proof__branch {
    width: 92%;
    right: -24%;
    bottom: -4%;
  }
  .journey-proof__note {
    left: 28px;
    top: 475px;
    width: min(285px, calc(100% - 56px));
    padding: 14px;
  }
  .journey-proof__note h3 {
    font-size: 34px;
  }
  .journey-proof__scene:nth-child(5) .journey-proof__note h3 {
    font-size: 24px;
  }
  .journey-proof__meta {
    display: none;
  }
  .journey-proof__rail {
    left: 16px;
    right: 16px;
    bottom: 20px;
    grid-template-columns: repeat(5, 1fr);
  }
  .journey-proof__rail li {
    border-right: 1px solid var(--ink);
  }
  .journey-proof__rail button {
    justify-content: center;
    min-height: 48px;
    padding: 8px 4px;
  }
  .journey-proof__rail button span {
    display: none;
  }
  .process-stage__heading {
    top: 25px;
    left: 16px;
  }
  .process-stage__heading h2 {
    font-size: 40px;
  }
  .process-stage__canvas {
    width: 115vw;
    height: 58%;
    right: -27vw;
    top: 16%;
  }
  .process-stage__canvas::before {
    width: 82vw;
    box-shadow: 8px 8px 0 var(--butter);
  }
  .process-counter {
    top: 24px;
    right: 16px;
  }
  .process-counter i {
    width: 26px;
  }
  .process-hint {
    right: 16px;
    bottom: 18px;
  }
  .process-steps {
    width: calc(100% - 32px);
    margin-left: 16px;
  }
  .process-step {
    justify-content: flex-end;
    padding-bottom: 56px;
  }
  .process-step h3 {
    font-size: 43px;
    max-width: 9ch;
  }
  .process-step p {
    width: min(83vw, 360px);
    font-size: 10px;
  }
  .drop-dialog {
    padding: 28px 20px;
  }
  .drop-dialog__field {
    flex-direction: column;
  }
  .event-day {
    padding-inline: 16px;
  }
  .event-day__board {
    grid-template-columns: 1fr;
  }
  .event-day__board article {
    min-height: 280px;
    border-right: 0;
  }
  .event-day__cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }
}

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