@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;700;800&display=swap');

:root {
  --bg: #f3f0e8;
  --ink: #111;
  --accent: #d7ff3f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.nav {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  letter-spacing: -0.06em;
}

.logo span { font-family: Inter, sans-serif; font-size: .55em; vertical-align: top; }

.nav-shop {
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .85rem;
}

.hero {
  width: min(1180px, 92%);
  min-height: 72vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 50px;
  padding: 60px 0 100px;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 18px;
}

h1, h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: -.07em;
  line-height: .9;
}

h1 {
  font-size: clamp(4rem, 9vw, 8.5rem);
  max-width: 850px;
}

h1 span { -webkit-text-stroke: 2px var(--ink); color: transparent; }

.intro {
  max-width: 520px;
  line-height: 1.6;
  margin: 30px 0;
  font-size: 1rem;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  background: var(--ink);
  color: var(--bg);
  padding: 17px 22px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .2s, background .2s, color .2s;
}

.shop-btn:hover { transform: translateY(-4px); background: var(--accent); color: var(--ink); }

.hero-art {
  position: relative;
  aspect-ratio: 1;
  min-height: 360px;
  overflow: hidden;
  background: var(--ink);
  display: grid;
  place-items: center;
  transform: rotate(2deg);
}

.hero-art p {
  position: absolute;
  left: 9%;
  bottom: 8%;
  color: white;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: .82;
  letter-spacing: -.08em;
}

.nb-mark {
  z-index: 2;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(6rem, 13vw, 11rem);
  color: var(--accent);
  transform: rotate(-8deg);
  letter-spacing: -.12em;
}

.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-1 { width: 45%; aspect-ratio: 1; background: #ff5ab3; top: -12%; right: -8%; }
.orb-2 { width: 30%; aspect-ratio: 1; background: #68b8ff; bottom: -7%; left: -5%; }
.star { position: absolute; top: 8%; left: 9%; color: white; font-size: 3rem; z-index: 3; }

.statement {
  background: var(--accent);
  padding: 110px max(4%, calc((100% - 1180px) / 2));
}

.statement p { font-weight: 800; letter-spacing: .18em; margin-bottom: 25px; }
.statement h2 { font-size: clamp(3.5rem, 9vw, 8rem); }

.about {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about h2 { font-size: clamp(3rem, 7vw, 6rem); }
.about > p { max-width: 520px; line-height: 1.8; }

footer {
  border-top: 2px solid var(--ink);
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 25px 0 35px;
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  font-weight: 800;
}

footer a { text-decoration: underline; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 35px; }
  .hero-art { min-height: 300px; width: 100%; }
  .about { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.5rem, 17vw, 6rem); }
}
