:root {
  --ink: #191813;
  --paper: #f5f0e7;
  --acid: #dfff00;
  --pink: #ff4fa3;
  --muted: #716d63;
  --line: rgba(25, 24, 19, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

img { display: block; width: 100%; }

.marquee {
  overflow: hidden;
  background: var(--ink);
  color: white;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  padding: .65rem 0;
  white-space: nowrap;
}

.marquee div { width: max-content; animation: drift 24s linear infinite; }
.marquee span { color: var(--acid); margin: 0 1rem; }

@keyframes drift { to { transform: translateX(-50%); } }

.site-header {
  padding: 2.2rem 5vw 1.8rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow, .kicker, .product-number {
  margin: 0 0 .65rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand, .footer-brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: .9;
}

.brand em, .footer-brand em { color: var(--pink); font-weight: 500; }
.tagline { margin: .8rem 0 0; color: var(--muted); font-size: .9rem; }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: 8vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.kicker { color: #80682a; }
h1, h2, h3 { font-family: "Playfair Display", serif; font-weight: 600; }
h1 { font-size: clamp(3.5rem, 6.3vw, 7rem); line-height: .91; letter-spacing: -.045em; margin: 0 0 2rem; }
h1 em { color: var(--pink); font-weight: 500; }
.hero-text { max-width: 30rem; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

.hero-image { margin: 0; position: relative; min-height: 640px; overflow: hidden; background: #cbc5bb; }
.hero-image img { height: 100%; object-fit: cover; object-position: center top; }
.hero-image figcaption {
  position: absolute; right: 1rem; bottom: 1rem; background: var(--acid); padding: .7rem 1rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; transform: rotate(-1deg);
}

.stamp {
  position: absolute; right: 3vw; bottom: 3vw; width: 112px; height: 112px;
  border: 1px solid var(--ink); border-radius: 50%; display: grid; place-content: center;
  text-align: center; transform: rotate(8deg); font-size: .56rem; letter-spacing: .12em;
}
.stamp strong { display: block; font-family: "Playfair Display", serif; font-size: 1.7rem; }

.catalog { padding: 8rem 5vw; }
.section-heading { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.section-heading h2 { font-size: clamp(3rem, 6vw, 5.5rem); margin: 0; letter-spacing: -.04em; }
.section-heading > p:last-child { color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.product-card { position: relative; border: 1px solid var(--line); background: #faf7f1; }
.image-wrap { aspect-ratio: 3 / 4; overflow: hidden; background: #ddd; }
.image-wrap img { height: 100%; object-fit: cover; transition: none; }
.product-info { padding: 1.4rem; }
.product-info h3 { font-size: 1.65rem; margin: 0 0 .5rem; }
.product-info > p:not(.product-number) { color: var(--muted); line-height: 1.55; min-height: 4.8rem; font-size: .9rem; }
.product-number { color: #8c7a3d; }
.price { display: flex; justify-content: space-between; align-items: end; padding-top: 1rem; border-top: 1px solid var(--line); }
.price s { color: var(--muted); font-size: .75rem; }
.price strong { font-family: "Playfair Display", serif; font-size: 1.25rem; }
.badge { position: absolute; z-index: 2; left: .8rem; top: .8rem; background: var(--acid); padding: .45rem .65rem; font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.fine-print { margin: 2rem 0 0; color: var(--muted); text-align: center; font-size: .7rem; }

.manifesto { background: var(--pink); padding: 8rem 5vw; text-align: center; }
.manifesto p { text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; }
.manifesto h2 { font-size: clamp(3.4rem, 8vw, 8rem); line-height: .92; margin: 1rem 0 2rem; letter-spacing: -.04em; }
.manifesto span { font-size: .78rem; }

footer { background: var(--ink); color: white; padding: 5rem 5vw; text-align: center; }
.footer-brand { margin-bottom: 2rem; }
footer p { color: #a9a59c; font-size: .75rem; line-height: 1.7; margin: .2rem; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .site-header { padding-block: 1.7rem; }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { padding: 5rem 7vw 6rem; }
  .hero-image { min-height: 560px; }
  .stamp { bottom: 1.5rem; right: 1.5rem; width: 92px; height: 92px; }
  .product-grid { grid-template-columns: 1fr; }
  .catalog { padding: 6rem 5vw; }
  .product-info > p:not(.product-number) { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) { .marquee div { animation: none; } }
