@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --black: #000;
  --black-soft: #070707;
  --white: #f6f5f1;
  --grey: #9b9a97;
  --line: rgba(255, 255, 255, 0.17);
  --amber: #d87722;
  --amber-pale: #f0c18f;
  --page-x: clamp(1.25rem, 4.3vw, 5rem);
  --body-size: clamp(1.125rem, 1.45vw, 1.375rem);
  --text-secondary: #d3d0ca;
  --text-label: #c3c0ba;
  color-scheme: dark;
  color: var(--white);
  background: var(--black);
  font-family: "DM Sans", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #000;
}

a { color: inherit; }
img { max-width: 100%; }

.boot {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.boot.is-gone { opacity: 0; visibility: hidden; }

.boot img {
  width: clamp(8rem, 18vw, 15rem);
  filter: drop-shadow(0 0 2rem rgba(255, 255, 255, 0.08));
  clip-path: inset(100% 0 0);
  animation: boot-mark 1.05s cubic-bezier(.16, 1, .3, 1) 0.1s forwards;
}

.boot > span {
  position: absolute;
  bottom: 8vh;
  width: min(18rem, 58vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.15);
}

.boot > span i {
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  transform: translateX(-101%);
  animation: boot-line 1.25s cubic-bezier(.65, 0, .35, 1) forwards;
}

@keyframes boot-mark { to { clip-path: inset(0); } }
@keyframes boot-line { to { transform: translateX(101%); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 4.7rem;
  padding: 0 var(--page-x);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(to bottom, rgba(0,0,0,.76), rgba(0,0,0,.22));
  backdrop-filter: blur(16px) saturate(120%);
}

.header-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  text-decoration: none;
}

.header-mark img { width: 2.45rem; height: 2.45rem; object-fit: contain; }
.header-mark span { font: 700 1.15rem/1 "Manrope", sans-serif; letter-spacing: -0.055em; }

.site-header nav { display: flex; gap: clamp(1.5rem, 3vw, 3.3rem); }
.site-header nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a { color: var(--text-secondary); transition: color .3s ease; }
.site-header nav a:hover { color: white; }
.header-cta { justify-self: end; }
.header-cta span { display: inline-block; margin-left: .5rem; transition: transform .3s ease; }
.header-cta:hover span { transform: translate(3px, -3px); }

.section-label {
  margin: 0;
  color: var(--text-label);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  --hero-title-size: clamp(3.75rem, 8.4vw, 9.2rem);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: start;
  min-height: max(100svh, 49rem);
  padding: clamp(7.2rem, 12vh, 9.5rem) var(--page-x) clamp(5rem, 8vh, 8rem);
  overflow: clip;
  isolation: isolate;
  background: #000;
}

.hero::after {
  position: absolute;
  right: var(--page-x);
  bottom: 0;
  left: var(--page-x);
  height: 1px;
  content: "";
  background: var(--line);
}

.hero-kicker {
  margin: 0 0 1.6rem;
  color: var(--text-label);
  font-size: .9375rem;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up .9s ease 1.65s forwards;
}

.hero h1,
.idea h2,
.handoff h2,
.collection h2,
.bread h2,
.community h2,
.closing h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: -.07em;
}

.hero h1 {
  position: relative;
  z-index: 4;
  text-align: center;
  font-size: var(--hero-title-size);
  line-height: 1.08;
  pointer-events: none;
}

.hero h1 span {
  display: block;
  padding: 0 .09em .04em;
  overflow: visible;
}

.hero h1 i {
  display: block;
  font-style: normal;
  opacity: 0;
  transform: translateY(.3em) rotate(1.7deg);
  animation: hero-type 1.25s cubic-bezier(.16, 1, .3, 1) 1.45s forwards;
}

.hero h1 span:nth-child(2) i { animation-delay: 1.56s; }

@keyframes hero-type { to { opacity: 1; transform: none; } }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

.hero-object {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: calc(100% + var(--page-x) * 2);
  max-width: 120rem;
  margin-top: clamp(1rem, 2vw, 2.5rem);
  opacity: 0;
  transform: translateY(2rem) scale(.96);
  animation: hero-object-in 1.35s cubic-bezier(.16, 1, .3, 1) 1.7s forwards;
}

@keyframes hero-object-in {
  to { opacity: 1; transform: none; }
}

.hero-object-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-subline {
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: translateY(1rem);
  animation: fade-up .8s ease 2.2s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 1.4vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 3rem) 0 0;
  font: 500 clamp(1rem, 1.3vw, 1.25rem)/1.4 "Manrope", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-subline span { white-space: nowrap; }
.hero-subline .hero-divider { color: var(--amber); font-weight: 300; }

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: var(--page-x);
  bottom: 1.45rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-label);
  font-size: .875rem;
  line-height: 1.5;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 4rem;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  position: absolute;
  width: 45%;
  height: 100%;
  content: "";
  background: white;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue { from { transform: translateX(-120%); } to { transform: translateX(340%); } }

.idea {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vh, 8rem) var(--page-x);
  overflow: hidden;
  background: #000;
}

.idea-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16rem, .45fr);
  align-items: end;
  gap: 4rem;
  margin-top: clamp(2.5rem, 5vh, 4.5rem);
}

.idea h2,
.handoff h2,
.collection h2,
.community h2,
.closing h2 {
  font-size: clamp(3.6rem, 7.2vw, 8.5rem);
  line-height: 1.02;
}

h2 em { color: #aaa7a2; font-style: normal; }

.idea-copy > p {
  max-width: 28rem;
  margin: 0 0 .8rem;
  color: var(--text-secondary);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: 1.65;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s ease, transform 1.15s cubic-bezier(.16, 1, .3, 1);
}

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

.worlds {
  --chapter-progress: 0;
  position: relative;
  z-index: 3;
  height: 360vh;
  background: #000;
}

.worlds-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.world-media,
.world-image,
.world-vignette { position: absolute; inset: 0; }

.world-image {
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s cubic-bezier(.65,0,.35,1), transform 1.8s cubic-bezier(.16,1,.3,1), filter 1s ease;
}

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

.worlds[data-scene="day"] .world-image-day,
.worlds[data-scene="night"] .world-image-night,
.worlds[data-scene="home"] .world-image-home { opacity: 1; transform: scale(calc(1.035 + var(--chapter-progress) * .025)); }

.worlds[data-scene="home"] .world-image-home img { object-position: 50% 46%; }

.world-vignette {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.25) 100%),
    linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.5) 45%, rgba(0,0,0,.12) 75%);
}

.world-ui {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.5rem, 4vh, 3rem);
  min-height: 100svh;
  padding: clamp(6.5rem, 12vh, 8rem) var(--page-x) clamp(2rem, 4vh, 3rem);
}

.world-footer { display: flex; align-items: center; gap: 2rem; }

.world-progress {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.2);
}

.world-progress i {
  display: block;
  width: calc((var(--scene-index) + var(--chapter-progress)) * 33.333%);
  height: 100%;
  background: white;
  transition: width .1s linear;
}

.world-counter {
  margin: 0;
  font: 400 .875rem/1 "Manrope", sans-serif;
  letter-spacing: .18em;
}

.world-counter span { font-size: 1.6rem; }

.world-chapters {
  display: grid;
  align-self: end;
  grid-template-columns: minmax(0, 1fr);
}

.world-chapter {
  grid-area: 1 / 1;
  align-self: end;
  width: min(44rem, 100%);
  padding: clamp(1.25rem, 2vw, 2rem);
  border-left: 2px solid rgba(255,255,255,.2);
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.72));
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  visibility: hidden;
  opacity: 0;
  transition: opacity .45s ease;
}

.worlds[data-scene="day"] [data-chapter="day"],
.worlds[data-scene="night"] [data-chapter="night"],
.worlds[data-scene="home"] [data-chapter="home"] { visibility: visible; opacity: 1; }

.world-chapter p {
  margin: 0 0 1rem;
  color: var(--amber-pale);
  font-size: .9375rem;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.world-chapter h3 {
  margin: 0 0 1.5rem;
  font: 400 clamp(2.125rem, 3.6vw, 4.2rem)/1.15 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.world-chapter > span {
  display: block;
  max-width: 34rem;
  color: #f0eeea;
  font-size: var(--body-size);
  line-height: 1.65;
}

.handoff {
  position: relative;
  z-index: 4;
  padding: clamp(6rem, 10vh, 9rem) var(--page-x);
  overflow: clip;
  background: #000;
}

.handoff-copy { position: relative; z-index: 5; }
.handoff-copy h2 { margin-top: clamp(3.5rem, 7vh, 6rem); }

.handoff-copy > p:last-child {
  max-width: 28rem;
  margin: 2rem 0 0 auto;
  color: var(--text-secondary);
  font-size: var(--body-size);
  line-height: 1.65;
}

.handoff-facts {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.handoff-facts span {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
  color: var(--text-secondary);
  font-size: var(--body-size);
  line-height: 1.5;
}

.handoff-facts b { color: var(--white); font-weight: 500; white-space: nowrap; }

.collection {
  position: relative;
  z-index: 5;
  padding: clamp(5rem, 10vh, 8rem) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  background: #050505;
}

.collection-head { padding: 0 var(--page-x); }
.collection-head h2 { margin-top: 3.5rem; }

.collection-carousel {
  width: calc(100% - var(--page-x) * 2);
  max-width: 100rem;
  margin: clamp(3rem, 6vh, 5rem) auto 0;
}

.collection-rail {
  position: relative;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.collection-rail::-webkit-scrollbar { display: none; }
.collection-card { flex: 0 0 100%; min-width: 0; scroll-snap-align: start; scroll-snap-stop: always; }

.collection-card figure {
  position: relative;
  aspect-ratio: 2 / 1;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.collection-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.collection-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.collection-card > div {
  display: grid;
  grid-template-columns: .4fr 1fr 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.collection-card span { color: var(--text-label); font-size: .875rem; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; }
.collection-card h3 { margin: 0; font: 500 clamp(1.375rem, 1.8vw, 1.875rem)/1.25 "Manrope", sans-serif; letter-spacing: -.03em; }
.collection-card p { margin: 0; color: var(--text-secondary); font-size: var(--body-size); line-height: 1.6; }

.collection-controls { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.collection-controls[hidden] { display: none; }
.collection-selectors, .collection-navigation { display: flex; align-items: center; gap: .75rem; }
.collection-selectors { flex-wrap: wrap; }
.collection-controls button { min-height: 2.75rem; border: 1px solid var(--line); background: transparent; color: var(--white); font: inherit; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.collection-selectors button { padding: .65rem 1.2rem; border-radius: 2rem; font-size: 1rem; white-space: nowrap; }
.collection-selectors button[aria-pressed="true"] { border-color: var(--white); background: var(--white); color: #000; }
.collection-controls button:hover:not(:disabled) { border-color: var(--white); }
.collection-navigation button { width: 2.75rem; padding: 0; border-radius: 50%; font-size: 1.3rem; }
.collection-navigation button:disabled { opacity: .3; cursor: default; }
.collection-status { min-width: 3.5rem; color: var(--text-label); font-size: .9375rem; text-align: center; }
.collection-rail:focus-visible, .collection-controls button:focus-visible { outline: 2px solid var(--amber-pale); outline-offset: 4px; }

.bread {
  position: relative;
  z-index: 5;
  padding: clamp(5rem, 10vh, 8rem) var(--page-x);
  background: #000;
}

.bread-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, .7fr);
  align-items: end;
  gap: 2rem;
  max-width: 100rem;
  margin: 0 auto clamp(2rem, 4vw, 4rem);
}

.bread-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.bread-copy p {
  max-width: 22rem;
  margin: 0 0 .25rem;
  color: var(--text-secondary);
  font-size: var(--body-size);
  line-height: 1.65;
}

.bread-image {
  position: relative;
  max-width: 100rem;
  aspect-ratio: 192 / 103;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

/* Show the food photography below the source artwork's 200px campaign header. */
.bread-image img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
}

.community {
  --community-progress: 0;
  position: relative;
  z-index: 5;
  display: grid;
  align-items: end;
  min-height: 125svh;
  padding: 8rem var(--page-x) 7rem;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.community-image,
.community-shade { position: absolute; inset: 0; z-index: -2; }
.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(calc(1.16 - var(--community-progress) * .11));
  filter: saturate(.72) contrast(1.06) brightness(.8);
  will-change: transform;
}

.community-shade {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(0,0,0,.96), rgba(0,0,0,.5) 55%, rgba(0,0,0,.3)),
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.2) 70%);
}

.community-copy { max-width: 67rem; }
.community-copy h2 { margin: 2.6rem 0 1.5rem; }
.community-copy p:last-child { max-width: 36rem; margin: 0 0 0 auto; padding: 1.25rem 1.5rem; color: #f0eeea; background: rgba(0,0,0,.78); font-size: var(--body-size); line-height: 1.65; }

.closing {
  position: relative;
  z-index: 6;
  padding: clamp(5rem, 10vh, 8rem) var(--page-x);
  overflow: hidden;
  background: #000;
}

.closing h2 { margin-top: clamp(2.5rem, 5vh, 4.5rem); }
.closing-actions { display: flex; align-items: center; gap: 2.2rem; margin-top: 3rem; }

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(25rem, 72vw);
  min-height: 4.5rem;
  padding: 0 1.6rem;
  border-radius: 4rem;
  background: var(--white);
  color: black;
  gap: 1rem;
  font-size: .9375rem;
  line-height: 1.5;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s ease;
}

.primary-action i { display: grid; flex-shrink: 0; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: #000; color: white; font-style: normal; }
.primary-action:hover { transform: scale(1.025); background: white; }
.text-action { display: inline-flex; align-items: center; min-height: 2.75rem; color: var(--text-secondary); font-size: .9375rem; line-height: 1.5; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-action span { display: inline-block; margin-left: .5rem; transition: transform .3s ease; }
.text-action:hover span { transform: translate(3px,-3px); }

footer {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem var(--page-x) 2rem;
  border-top: 1px solid var(--line);
  color: var(--text-label);
  background: #000;
  font-size: .875rem;
  line-height: 1.6;
  letter-spacing: .06em;
  text-transform: uppercase;
}

footer a { text-decoration: none; overflow-wrap: anywhere; }
footer span:last-child { justify-self: end; }

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
  .header-cta { justify-self: end; }

  .hero { min-height: max(100svh, 43rem); }
  .scroll-cue { display: none; }

  .idea-copy { grid-template-columns: 1fr; gap: 2.5rem; }
  .idea-copy > p { margin-left: 0; }

  .worlds { height: 330vh; }
  .world-vignette { background: linear-gradient(0deg, rgba(0,0,0,.94), rgba(0,0,0,.62) 45%, rgba(0,0,0,.15) 80%); }

  .handoff-copy > p:last-child { margin-left: 0; }

  .collection-card > div { grid-template-columns: 1fr; gap: .55rem; }

  .bread-copy { grid-template-columns: 1fr; gap: 1.5rem; }

  .community { min-height: 105svh; }
  .community-image img { object-position: 44% 50%; }
  .community-copy p:last-child { margin-left: 0; }

  .closing-actions { align-items: flex-start; flex-direction: column; }

  footer { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 1.4rem; }
  footer span:last-child { justify-self: start; }
}

@media (max-width: 520px) {
  .header-mark img { width: 2.15rem; height: 2.15rem; }
  .header-mark span { display: none; }
  .hero { --hero-title-size: clamp(3.4rem, 17vw, 5rem); }
  .hero-kicker { margin-bottom: 1.1rem; }
  .hero-subline { gap: .65rem; letter-spacing: .12em; }
  .idea h2, .handoff h2, .collection h2, .community h2, .closing h2 { font-size: clamp(3.05rem, 14.5vw, 4.5rem); }
  .handoff-facts { grid-template-columns: 1fr; gap: .75rem; }
  .collection-controls { flex-wrap: wrap; gap: 1rem; }
  .collection-selectors { width: 100%; gap: .5rem; }
  .collection-selectors button { flex: 1; padding-inline: .75rem; }
  .collection-navigation { margin-left: auto; }
  .primary-action { width: 100%; }
  footer { grid-template-columns: 1fr; }
}

@media (max-height: 600px) {
  .world-ui { grid-template-rows: 1fr auto; padding-top: 5.5rem; padding-bottom: 1.25rem; gap: 1rem; }
  .world-ui > .section-label { display: none; }
  .world-chapter { padding: 1rem; }
  .world-chapter p { margin-bottom: .5rem; }
  .world-chapter h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: .75rem; }
  .world-chapter > span { line-height: 1.45; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .boot { display: none; }
  .hero h1 i { opacity: 1; transform: none; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-object { opacity: 1; transform: none; }
  .world-image { transform: none !important; }
}
