:root {
  --ink: #101010;
  --paper: #f7f2ea;
  --pink: #ff5a99;
  --hot-pink: #ed38ad;
  --aqua: #00bfd5;
  --acid: #85e916;
  --cream: #fff6df;
  --line: 2px solid var(--ink);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 76px;
  padding: 11px 4vw;
  border-bottom: var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: var(--paper);
}

.brand-mark { text-decoration: none; font-weight: 900; line-height: .85; }
.brand-mark span { display: block; font-size: clamp(1.35rem, 2.1vw, 2rem); }
.brand-mark small { display: block; margin-top: 7px; font-size: .61rem; font-weight: 800; }

nav { display: flex; gap: 28px; font-size: .7rem; font-weight: 900; }
nav a { text-decoration: none; }
nav a:hover, .text-link:hover { text-decoration: underline; text-decoration-thickness: 2px; }

.header-shop {
  justify-self: end;
  padding: 11px 15px;
  border: var(--line);
  border-radius: 999px;
  background: var(--acid);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.2fr);
  align-items: end;
  border-bottom: var(--line);
  background: var(--pink);
}

.hero-copy {
  align-self: center;
  z-index: 2;
  padding: clamp(42px, 7vw, 110px) 4vw;
}

.eyebrow { margin: 0 0 12px; font-size: .72rem; font-weight: 900; }

.hero h1,
.drop-section h2,
.lookbook h2,
.about h2,
.final-shop h2 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 8rem);
  line-height: .8;
  font-weight: 900;
}

.hero h1 { text-shadow: 4px 4px 0 var(--cream); }
.hero-subtitle { margin: 28px 0; font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: 700; line-height: 1.45; }

.solid-button, .outline-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 48px;
  padding: 0 18px;
  border: var(--line);
  border-radius: 6px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 900;
}

.solid-button:hover { background: var(--hot-pink); color: var(--ink); }

.hero-art { height: min(90vh, 900px); align-self: end; display: flex; justify-content: center; }
.hero-art img { width: min(100%, 800px); height: 100%; object-fit: contain; object-position: bottom center; }
.hero-side-note { position: absolute; right: 2vw; top: 11%; margin: 0; font-size: .7rem; font-weight: 900; line-height: 1.05; text-align: right; }

.ticker { overflow: hidden; border-bottom: var(--line); background: var(--acid); }
.ticker div { display: flex; width: max-content; gap: 24px; padding: 15px 0; animation: scroll 22s linear infinite; font-size: .82rem; font-weight: 900; }
@keyframes scroll { to { transform: translateX(-50%); } }

.drop-section { padding: clamp(60px, 10vw, 150px) 4vw; background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 22px; margin-bottom: 42px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -9px; }
.section-heading h2 { font-size: clamp(3rem, 7vw, 6.5rem); }
.text-link { align-self: end; font-size: .78rem; font-weight: 900; text-underline-offset: 5px; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { min-width: 0; }
.product-image { position: relative; height: clamp(300px, 40vw, 560px); overflow: hidden; border: var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.product-image img { width: 83%; height: 83%; object-fit: contain; }
.product-image--dark { background: #111; }
.product-image--aqua { background: var(--aqua); }
.product-image--pink { background: var(--hot-pink); }
.product-image--snake { background: #111; }
.product-image--snake img { width: 100%; height: 100%; object-fit: contain; }
.product-number { position: absolute; right: 12px; top: 10px; padding: 5px 8px; border: var(--line); border-radius: 999px; background: var(--paper); font-size: .67rem; font-weight: 900; }
.product-meta { min-height: 74px; padding: 14px 0; border-bottom: var(--line); display: flex; justify-content: space-between; gap: 15px; }
.product-meta p { margin: 0; font-size: .65rem; font-weight: 700; }
.product-meta .product-name { margin-bottom: 6px; font-size: .79rem; font-weight: 900; }
.product-meta a { flex: 0 0 32px; height: 32px; border: var(--line); border-radius: 50%; display: grid; place-items: center; text-decoration: none; font-weight: 900; }
.product-meta a:hover { background: var(--acid); }

.lookbook { min-height: 820px; display: grid; grid-template-columns: 1.1fr .9fr; border-top: var(--line); border-bottom: var(--line); background: var(--aqua); }
.lookbook-photo { min-height: 540px; border-right: var(--line); }
.lookbook-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lookbook-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(40px, 6vw, 90px); }
.lookbook h2 { font-size: clamp(3rem, 6vw, 7rem); }
.lookbook-copy > p:not(.eyebrow) { max-width: 380px; margin: 35px 0; font-size: 1rem; line-height: 1.55; font-weight: 700; }
.outline-button { width: fit-content; background: var(--cream); color: var(--ink); }
.outline-button:hover { background: var(--hot-pink); }

.about { min-height: 570px; padding: clamp(58px, 10vw, 150px) 4vw; display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; background: var(--cream); }
.about h2 { font-size: clamp(3.5rem, 7vw, 7rem); }
.about-detail { align-self: end; max-width: 470px; }
.about-detail p { margin: 0 0 24px; font-size: 1.05rem; line-height: 1.5; font-weight: 700; }

.final-shop { min-height: 440px; padding: 50px 4vw; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: var(--line); background: var(--hot-pink); }
.final-shop h2 { font-size: clamp(3.5rem, 8vw, 9rem); text-shadow: 4px 4px 0 var(--cream); }
.round-shop-link { flex: 0 0 168px; height: 168px; border: var(--line); border-radius: 50%; background: var(--acid); display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; font-size: 1.1rem; font-weight: 900; line-height: 1; text-align: center; }
.round-shop-link b { margin-top: 8px; font-size: 1.4rem; }
.round-shop-link:hover { transform: rotate(10deg); background: var(--cream); }

.site-footer { min-height: 82px; padding: 20px 4vw; display: flex; align-items: center; justify-content: space-between; gap: 15px; background: var(--ink); color: var(--cream); font-size: .67rem; font-weight: 900; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--acid); }

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; gap: 12px; }
  nav { display: none; }
  .header-shop { padding: 9px 12px; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 52px 6vw 28px; }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 5.5rem); }
  .hero-art { height: min(68vh, 640px); }
  .hero-side-note { top: auto; right: 6vw; bottom: 18px; }
  .drop-section { padding: 70px 6vw; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .text-link { justify-self: start; }
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-image { height: min(92vw, 510px); }
  .lookbook { min-height: 0; grid-template-columns: 1fr; }
  .lookbook-photo { height: min(135vw, 720px); border-right: 0; border-bottom: var(--line); }
  .lookbook-copy { min-height: 530px; padding: 55px 6vw; }
  .about { min-height: 0; padding: 70px 6vw; grid-template-columns: 1fr; gap: 60px; }
  .final-shop { min-height: 440px; padding: 60px 6vw; align-items: flex-start; flex-direction: column; }
  .round-shop-link { align-self: flex-end; flex-basis: 140px; height: 140px; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 26px 6vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker div { animation: none; }
  .round-shop-link:hover { transform: none; }
}
