:root {
  --ink: #11110f;
  --paper: #f4efe5;
  --cream: #fff8ea;
  --acid: #e7ff2f;
  --tomato: #ff5a36;
  --olive: #6d7251;
  --charcoal: #22211e;
  --muted: #7d7569;
  --line: rgba(17, 17, 15, .16);
  --shadow: 0 22px 80px rgba(17, 17, 15, .18);
  --radius: 28px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: .22;
  background-image: radial-gradient(rgba(0,0,0,.25) .65px, transparent .65px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}
.cursor-orb {
  width: 360px;
  height: 360px;
  position: fixed;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231,255,47,.38), rgba(255,90,54,.12) 42%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(18px);
  opacity: .75;
}
.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 18px;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-logo, .logo, .big-logo {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-transform: uppercase;
  border: 3px solid currentColor;
  aspect-ratio: 1;
  display: inline-grid;
  place-content: center;
  line-height: .85;
  font-weight: 900;
  letter-spacing: -.1em;
}
.loader-logo { width: 128px; font-size: 42px; margin-inline: auto; color: var(--acid); }
.loader-logo span, .logo span, .big-logo span { display: block; transform: translateX(-.04em); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 52px);
  backdrop-filter: blur(22px);
  background: rgba(244,239,229,.78);
  border-bottom: 1px solid var(--line);
}
.logo { width: 58px; font-size: 19px; padding-top: 1px; }
.logo.small { width: 46px; font-size: 15px; }
.nav { display: flex; gap: 22px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.nav a { position: relative; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.cart-button, .button, .boutique, .cart-head button {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.cart-button {
  border-radius: 999px;
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.cart-button span {
  display: inline-grid;
  place-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 32px) 64px;
  position: relative;
  z-index: 2;
}
.hero-copy { align-self: center; }
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 830px;
  font-size: clamp(52px, 8.5vw, 112px);
  line-height: .86;
  letter-spacing: -.08em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: .92;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}
h3 { font-size: 24px; letter-spacing: -.04em; }
.hero-lede, .manifesto p, .spec-card p, .city-panel p, .newsletter p, .muted {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.hero-lede { max-width: 610px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: var(--paper); }
.button.primary:hover { background: var(--tomato); color: var(--ink); }
.button.ghost:hover { background: var(--acid); }
.button.full { width: 100%; border-radius: 18px; }

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.hero-stage::before {
  content: '';
  position: absolute;
  inset: 7% -2% 11% 10%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-10deg);
}
.clock {
  position: absolute;
  right: 0;
  top: 18px;
  width: 190px;
  aspect-ratio: 1;
  border: 8px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.clock::before, .clock::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 900;
}
.clock::before { content: '12'; top: 12px; }
.clock::after { content: '6'; bottom: 12px; }
.hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 7px;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: bottom center;
}
.hand.hour { height: 54px; transform: translateX(-50%) rotate(150deg); }
.hand.minute { height: 72px; background: var(--tomato); transform: translateX(-50%) rotate(0deg); }
.pin {
  position: absolute;
  width: 18px;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  border-radius: 50%;
}
.shirt-card {
  width: min(530px, 100%);
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 22px;
  background: linear-gradient(145deg, var(--cream), #e5dccf);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.ticker {
  position: absolute;
  bottom: 48px;
  left: -28px;
  right: -28px;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
  transform: rotate(-3deg);
}
.ticker div {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 24s linear infinite;
}
.ticker span { font-size: 12px; font-weight: 900; letter-spacing: .12em; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

.strip {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 18px;
  border-block: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--paper);
}
.strip span {
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.intro-grid, .lookbook, .drop, .boutiques, .newsletter {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px clamp(18px, 4vw, 32px);
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 28px;
}
.manifesto, .spec-card, .city-panel, .newsletter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,248,234,.52);
  box-shadow: 0 8px 32px rgba(17,17,15,.06);
}
.manifesto { padding: clamp(28px, 5vw, 56px); }
.spec-card { padding: 28px; display: grid; align-content: center; justify-items: start; }
.big-logo { width: 180px; font-size: 58px; margin: 6px 0 28px; }
.section-head { max-width: 850px; margin-bottom: 32px; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 105px;
  gap: 18px;
}
.photo-card {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  box-shadow: 0 12px 46px rgba(17,17,15,.12);
  transform-style: preserve-3d;
}
.photo-card:nth-child(1) { grid-column: span 5; grid-row: span 5; }
.photo-card:nth-child(2) { grid-column: span 4; grid-row: span 3; }
.photo-card:nth-child(3) { grid-column: span 3; grid-row: span 3; }
.photo-card:nth-child(4) { grid-column: span 7; grid-row: span 3; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(244,239,229,.82);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
}
.photo-card::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 16px 62px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: .25s ease;
  padding: 10px 12px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 18px;
  font-size: 12px;
}
.photo-card:hover::after { opacity: 1; transform: translateY(0); }

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 10px 38px rgba(17,17,15,.08);
  display: flex;
  flex-direction: column;
}
.product-media {
  position: relative;
  background: linear-gradient(135deg, #efe4d2, #fbf3e3);
  border-bottom: 1px solid var(--line);
}
.product-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--acid);
  color: var(--ink);
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-body h3 { font-size: 20px; margin-bottom: 0; }
.product-body p { color: var(--muted); line-height: 1.5; font-size: 14px; margin: 0; }
.product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-size: 22px; font-weight: 900; }
.size-row { display: flex; gap: 7px; flex-wrap: wrap; }
.size-row button {
  width: 36px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.size-row button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.lunch-mode {
  max-width: var(--max);
  margin: 0 auto 24px;
  padding: 52px clamp(18px, 4vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.countdown { display: flex; gap: 12px; }
.countdown span {
  width: 118px;
  aspect-ratio: 1;
  border-radius: 28px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.countdown strong { font-size: 42px; line-height: .9; }
.countdown small { display: block; margin-top: 8px; color: rgba(244,239,229,.7); }

.boutique-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.boutique {
  border-radius: 20px;
  min-height: 88px;
  padding: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: transparent;
  transition: .25s ease;
}
.boutique:hover, .boutique.active { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.city-panel {
  margin-top: 16px;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 30px;
  align-items: center;
}
.city-time {
  grid-row: span 2;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 900;
  letter-spacing: -.08em;
  color: var(--tomato);
}
.city-panel h3 { margin: 0 0 8px; font-size: 36px; }
.city-panel p { margin: 0; }

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
}
.newsletter h2 { margin-bottom: 0; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--ink);
  border-radius: 999px;
  min-height: 52px;
  padding: 0 18px;
  background: var(--paper);
}
.form-message { grid-column: 2; margin: -10px 0 0; font-size: 13px; color: var(--olive); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--cream);
  z-index: 90;
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 80px rgba(17,17,15,.2);
  padding: 22px;
  transform: translateX(104%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-panel.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; }
.cart-head h2 { margin: 0; font-size: 34px; }
.cart-head button { width: 42px; height: 42px; border-radius: 50%; font-size: 28px; line-height: 1; }
.cart-items { display: grid; gap: 10px; overflow: auto; flex: 1; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 18px; }
.cart-item img { width: 64px; aspect-ratio: 1; object-fit: cover; border-radius: 12px; background: var(--paper); }
.cart-item h4 { margin: 0 0 4px; font-size: 14px; }
.cart-item p { margin: 0; color: var(--muted); font-size: 12px; }
.cart-item button { border: 0; background: transparent; cursor: pointer; font-size: 20px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 18px; border-top: 1px solid var(--line); padding-top: 16px; }
.cart-total strong { font-size: 26px; }
.cart-panel small { color: var(--muted); line-height: 1.4; }
.toast {
  position: fixed;
  z-index: 95;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: .25s ease;
  font-weight: 800;
  font-size: 13px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--paper);
}
.footer p { margin: 0; color: rgba(244,239,229,.68); font-size: 13px; }
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 42px; }
  .hero-stage { min-height: 520px; }
  .clock { right: 12px; width: 140px; }
  .intro-grid, .newsletter, .lunch-mode { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-grid { grid-auto-rows: 90px; }
  .photo-card:nth-child(n) { grid-column: span 6; grid-row: span 4; }
  .photo-card:nth-child(4) { grid-column: span 12; grid-row: span 3; }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); }
  .city-panel { grid-template-columns: 1fr; }
  .form-message { grid-column: auto; }
}
@media (max-width: 620px) {
  .site-header { gap: 10px; }
  .logo { width: 52px; font-size: 17px; }
  h1 { font-size: 58px; }
  .hero-stage { min-height: 440px; }
  .clock { width: 112px; border-width: 6px; }
  .ticker { bottom: 26px; }
  .products { grid-template-columns: 1fr; }
  .photo-grid { display: block; }
  .photo-card { height: 420px; margin-bottom: 16px; }
  .photo-card.wide { height: 320px; }
  .countdown { width: 100%; }
  .countdown span { flex: 1; width: auto; border-radius: 20px; }
  .countdown strong { font-size: 30px; }
  .newsletter-form { flex-direction: column; }
  .boutique-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}
