:root {
  --paper: #f3f1ec;
  --ink: #101010;
  --muted: #696763;
  --line: rgba(16, 16, 16, .18);
  --wine: #8f2430;
  --lime: #d7ff36;
  --shell: min(1500px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 37px; height: 37px; object-fit: contain; }
.brand span { font-size: 20px; font-weight: 900; letter-spacing: -.055em; }
.nav nav { display: flex; align-items: center; gap: 34px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.nav nav a { transition: opacity .2s ease; }
.nav nav a:hover { opacity: .5; }
.nav-store { border: 1px solid var(--ink); border-radius: 999px; padding: 12px 17px; }

.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(38px, 6vw, 110px);
  align-items: center;
  padding-block: 72px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--wine); }
.eyebrow.plain { display: block; }
.hero h1 {
  margin: 26px 0 24px;
  font-size: clamp(76px, 9.5vw, 154px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 750;
}
.lead { max-width: 630px; margin: 0; color: #373634; font-size: clamp(18px, 1.5vw, 24px); line-height: 1.45; letter-spacing: -.02em; }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-light { background: white; color: var(--ink); }
.text-link { font-size: 13px; border-bottom: 1px solid currentColor; padding-bottom: 4px; }

.hero-art {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #dedbd4;
  isolation: isolate;
}
.hero-art::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 62% 48%, rgba(255,255,255,.92), transparent 42%), linear-gradient(135deg, transparent 60%, rgba(143,36,48,.18));
  z-index: -2;
}
.hero-art::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(16,16,16,.1); pointer-events: none; }
.hero-art img { position: absolute; z-index: 1; width: 60%; height: 78%; object-fit: contain; right: 2%; bottom: 2%; filter: drop-shadow(0 24px 30px rgba(0,0,0,.14)); transition: transform .5s ease; }
.hero-art:hover img { transform: scale(1.025) rotate(-1deg); }
.art-index, .art-caption { position: absolute; z-index: 3; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.art-index { top: 24px; left: 24px; }
.art-caption { left: 24px; bottom: 24px; }
.art-word { position: absolute; left: 18px; top: 19%; color: var(--wine); font-weight: 900; font-size: clamp(68px, 7.5vw, 120px); line-height: .78; letter-spacing: -.07em; }

.marquee { overflow: hidden; border-block: 1px solid var(--ink); background: var(--lime); }
.marquee-track { display: flex; width: max-content; animation: move 24s linear infinite; }
.marquee-group {
  display: flex;
  flex: none;
  min-width: 100vw;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  padding: 12px 34px 12px 0;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  white-space: nowrap;
}
@keyframes move { to { transform: translateX(-50%); } }

.release { padding-block: 112px 130px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 42px; }
.section-head h2, .manifesto h2 { margin: 0; font-size: clamp(48px, 6vw, 94px); line-height: .95; letter-spacing: -.055em; }
.section-head a { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid currentColor; }
.product-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 18px; }
.product-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.product:hover img { transform: scale(1.035); }
.tone-light { background: #e4e1db; }
.tone-ink { background: #bcb8b0; }
.tone-warm { background: #ded7cf; }
.number { position: absolute; top: 18px; left: 18px; z-index: 1; font-size: 11px; }
.product-meta { display: flex; justify-content: space-between; gap: 16px; padding: 16px 2px 0; font-size: 14px; }
.product-meta span:last-child { color: var(--muted); white-space: nowrap; }

.manifesto {
  min-height: 670px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  color: white;
  background: var(--ink);
  padding: 74px;
  margin-bottom: 110px;
}
.manifesto-mark { align-self: start; width: min(27vw, 340px); aspect-ratio: 1; position: relative; }
.manifesto-mark::before { content: ""; position: absolute; inset: 9%; border-radius: 50%; background: var(--wine); filter: blur(48px); opacity: .42; }
.manifesto-mark img { position: relative; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 28px 48px rgba(0,0,0,.38)); transform: rotate(-7deg); }
.manifesto-copy { align-self: end; max-width: 770px; }
.manifesto .eyebrow { color: #999; }
.manifesto h2 { margin: 20px 0 28px; }
.manifesto-copy > p:not(.eyebrow) { max-width: 610px; color: #c9c7c1; font-size: 19px; line-height: 1.55; }
.manifesto .button { margin-top: 26px; }

.footer { border-top: 1px solid var(--line); padding: 48px 0 28px; }
.footer-brand { display: flex; align-items: center; justify-content: space-between; }
.footer-lockup { display: inline-flex; align-items: center; gap: 11px; }
.footer-lockup img { width: 42px; height: 42px; object-fit: contain; }
.footer-lockup strong { font-size: 24px; letter-spacing: -.055em; }
.footer-brand span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { display: flex; gap: 28px; margin: 65px 0; font-size: clamp(28px, 4vw, 60px); letter-spacing: -.04em; }
.footer-links a { border-bottom: 2px solid transparent; }
.footer-links a:hover { border-color: currentColor; }
.footer-line { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-line span:nth-child(2) { text-align: center; }
.footer-line span:last-child { text-align: right; }

@media (max-width: 900px) {
  :root { --shell: calc(100vw - 32px); }
  .nav { height: 76px; }
  .brand img { width: 34px; height: 34px; }
  .brand span { font-size: 18px; }
  .nav nav a:not(.nav-store) { display: none; }
  .nav-store { padding: 10px 13px; font-size: 10px; }
  .hero { grid-template-columns: 1fr; padding-block: 52px 28px; min-height: 0; }
  .hero h1 { font-size: clamp(68px, 22vw, 108px); }
  .lead { font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }
  .hero-art { min-height: 480px; }
  .hero-art img { width: 70%; }
  .art-word { font-size: 78px; }
  .release { padding-block: 78px 90px; }
  .section-head { align-items: flex-end; }
  .section-head h2 { font-size: 52px; }
  .section-head a { font-size: 10px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-wide { grid-column: 1 / -1; }
  .product-meta { flex-direction: column; gap: 5px; }
  .manifesto { width: 100%; grid-template-columns: 1fr; min-height: 700px; padding: 42px 24px; margin-bottom: 80px; }
  .manifesto-mark { width: 150px; }
  .manifesto h2 { font-size: 53px; }
  .footer-brand { align-items: flex-start; flex-direction: column; gap: 18px; }
  .footer-links { flex-direction: column; gap: 12px; margin: 48px 0; }
}

@media (max-width: 520px) {
  .hero-art { min-height: 420px; }
  .art-word { top: 22%; font-size: 60px; }
  .hero-art img { width: 75%; height: 72%; }
  .product-grid { gap: 12px; }
  .product-meta { font-size: 12px; }
  .manifesto h2 { font-size: 46px; }
  .footer-line { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-line span:nth-child(2) { text-align: right; }
  .footer-line span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
