:root {
  --ink: #0a0907;
  --paper: #f0eee7;
  --muted: #918d82;
  --amber: #bf8100;
  --line: rgba(240, 238, 231, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Courier New", Courier, monospace;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

.nav {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  color: var(--amber);
  font: 800 28px/1 Arial, sans-serif;
  letter-spacing: -1.5px;
  text-decoration: none;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--paper); }

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: 80px 0 100px;
}
.eyebrow { color: var(--amber); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 22px; }
h1 { margin: 0; max-width: 680px; font: 700 clamp(58px, 7vw, 112px)/.86 Arial, sans-serif; letter-spacing: -.07em; }
.lede { max-width: 520px; margin: 32px 0; color: #b8b5ad; font: 16px/1.65 Arial, sans-serif; }
.store-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
  padding: 12px 18px;
  border: 1px solid #4f4c45;
  border-radius: 12px;
  color: #d5d2ca;
  background: #15130f;
  cursor: not-allowed;
  user-select: none;
}
.apple { width: 24px; height: 29px; fill: currentColor; flex: none; }
.store-copy { display: grid; gap: 1px; text-align: left; }
.store-copy small { font: 9px/1 Arial, sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.store-copy strong { font: 20px/1.15 Arial, sans-serif; }

.contact-sheet { position: relative; margin: 0; }
.contact-sheet::before {
  content: "WHAT'S IN STORE / 01A—04A";
  position: absolute;
  z-index: 2;
  left: -18px;
  bottom: 24px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--amber);
  font-size: 10px;
  letter-spacing: .12em;
}
.contact-sheet img { display: block; width: 100%; height: auto; filter: contrast(1.04); }
.stamp { position: absolute; right: -13px; top: -16px; width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--amber); font-size: 10px; line-height: 1.2; text-align: center; transform: rotate(8deg); }

.manifesto { border-top: 1px solid var(--line); padding: 110px 0 120px; display: grid; grid-template-columns: .6fr 1.4fr; gap: 60px; }
.manifesto h2 { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.manifesto p { margin: 0; max-width: 860px; font: 500 clamp(30px, 4.2vw, 62px)/1.05 Arial, sans-serif; letter-spacing: -.045em; }
.manifesto em { color: var(--amber); font-style: normal; }

.footer { padding: 34px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--paper); }

.privacy { min-height: calc(100vh - 96px); padding: 80px 0 120px; }
.privacy header { padding-bottom: 54px; border-bottom: 1px solid var(--line); }
.privacy h1 { font-size: clamp(52px, 8vw, 100px); }
.privacy .updated { margin: 22px 0 0; color: var(--amber); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.legal { max-width: 760px; padding-top: 48px; font: 16px/1.7 Arial, sans-serif; color: #c4c1b9; }
.legal h2 { margin: 46px 0 12px; color: var(--paper); font: 700 21px/1.2 Arial, sans-serif; }
.legal p { margin: 0 0 18px; }
.legal a { text-underline-offset: 3px; }

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 1240px); }
  .nav { height: 76px; }
  .nav-links a:first-child { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 64px 0 80px; }
  h1 { font-size: clamp(58px, 20vw, 88px); }
  .contact-sheet { margin: 20px 10px 0; }
  .manifesto { grid-template-columns: 1fr; gap: 26px; padding: 80px 0; }
  .footer { gap: 20px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: rise .8s ease-out both; }
  .contact-sheet { animation: reveal 1s .15s ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } }
  @keyframes reveal { from { opacity: 0; clip-path: inset(0 0 100% 0); } to { clip-path: inset(0); } }
}
