:root {
  --ink: #1a1a1a;
  --paper: #fdf6e3;
  --accent: #ff3b30;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ---- Hero with tie-dye background ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 59, 48, 0.95) 0%, rgba(255, 59, 48, 0) 30%),
    radial-gradient(circle at 82% 18%, rgba(64, 122, 255, 0.95) 0%, rgba(64, 122, 255, 0) 28%),
    radial-gradient(circle at 12% 78%, rgba(255, 179, 0, 0.9) 0%, rgba(255, 179, 0, 0) 30%),
    radial-gradient(circle at 88% 78%, rgba(46, 204, 113, 0.9) 0%, rgba(46, 204, 113, 0) 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 87, 158, 0.85) 0%, rgba(255, 87, 158, 0) 40%),
    radial-gradient(circle at 30% 45%, rgba(190, 90, 255, 0.9) 0%, rgba(190, 90, 255, 0) 35%),
    radial-gradient(circle at 70% 55%, rgba(0, 200, 255, 0.9) 0%, rgba(0, 200, 255, 0) 35%),
    radial-gradient(circle at 50% 50%, rgba(35, 35, 50, 0.55) 0%, rgba(35, 35, 50, 0.55) 100%);
  background-size: 140% 140%;
  background-repeat: no-repeat;
}

.hero-inner {
  padding: 0 6vw 12vh;
  width: 100%;
}

.brand {
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.tagline {
  margin-top: 2.2rem;
  font-size: clamp(1.2rem, 3.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.callout {
  margin-top: 1.2rem;
  max-width: 42rem;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: #fff3e0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.cta {
  display: inline-block;
  margin-top: 2.6rem;
  padding: 1.05rem 2.4rem;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

/* ---- Product / Story ---- */
.story {
  background: var(--paper);
  padding: clamp(3.5rem, 8vw, 7rem) 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.jar {
  width: min(320px, 70vw);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.jar img {
  display: block;
  width: 100%;
  height: auto;
}

.statement {
  margin-top: 2.8rem;
  max-width: 46rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  font-weight: 500;
  color: #2c2c2c;
}

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: #ffffff;
  padding: 3rem 6vw;
  text-align: center;
}

.links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
}

.links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.fineprint {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  opacity: 0.55;
}

@media (max-width: 640px) {
  .hero-inner {
    padding-bottom: 8vh;
  }
  .links {
    flex-direction: column;
    gap: 1rem;
  }
}
