:root {
  --ink: #54220f;
  --pink: #f75fa8;
  --pink-soft: #ffd2e7;
  --sky: #72d9ee;
  --yellow: #ffd95a;
  --mint: #77ddc2;
  --lavender: #bba1ed;
  --cream: #fffaf0;
  --white: #ffffff;
  --line: rgba(84, 34, 15, 0.18);
  --shadow: 0 12px 0 rgba(84, 34, 15, 0.1);
  --content: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.5;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: var(--content);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--pink-soft);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--sky);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 32% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(84, 34, 15, 0.86));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 64px 0 54px;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.hero-copy p {
  max-width: 590px;
  margin-bottom: 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 56px 0;
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p {
  max-width: 420px;
  margin-bottom: 2px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collection-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 0 rgba(84, 34, 15, 0.12);
}

.collection-card h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.collection-card p {
  max-width: 280px;
}

.card-badge {
  align-self: flex-start;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.card-arrow {
  align-self: flex-end;
  font-size: 2rem;
  font-weight: 900;
}

.card-pink { background: #ffc9e1; }
.card-blue { background: #a6e9f5; }
.card-yellow { background: #ffe584; }
.card-lilac { background: #d8c8f7; }

.fan-band {
  background: var(--pink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.fan-layout {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  color: var(--white);
}

.fan-layout h2 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.fan-layout p {
  max-width: 570px;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.counter-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--yellow);
  text-align: center;
}

.fan-number {
  min-height: 1.05em;
  display: block;
  margin-bottom: 8px;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
}

.fan-label {
  display: block;
  margin-bottom: 18px;
  font-weight: 900;
}

.primary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.primary-button:disabled {
  color: var(--ink);
  background: var(--mint);
  cursor: default;
}

.video-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 48px;
}

.video-layout h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sky);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 32px;
  background: url("assets/happy-collectors.jpg") center / cover;
}

.play-button {
  width: 84px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--yellow);
  font-size: 2rem;
}

.banner-image {
  width: 100%;
  display: block;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.product-hero {
  padding: 96px 0 72px;
  border-bottom: 3px solid var(--ink);
}

.product-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.product-hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.product-hero p {
  max-width: 550px;
  font-size: 1.12rem;
}

.product-visual {
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 50px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-shape {
  width: min(280px, 80%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 5px solid var(--ink);
  border-radius: 44% 56% 52% 48%;
  box-shadow: inset 20px 20px 0 rgba(255, 255, 255, 0.25), 12px 12px 0 rgba(84, 34, 15, 0.12);
  font-size: 5rem;
  font-weight: 900;
  transform: rotate(-5deg);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.feature-item {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
}

.feature-item + .feature-item {
  border-left: 3px solid var(--ink);
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.site-footer {
  padding: 44px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-wrap {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-wrap p {
  margin: 0;
}

@media (max-width: 820px) {
  .nav-wrap {
    min-height: 64px;
  }

  .menu-button {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 6px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-image {
    object-position: 53% center;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 250px;
  }

  .fan-layout,
  .video-layout,
  .product-hero .container {
    grid-template-columns: 1fr;
  }

  .fan-layout {
    gap: 30px;
    padding: 58px 0 66px;
  }

  .video-layout {
    gap: 28px;
  }

  .product-hero {
    padding: 70px 0 60px;
  }

  .product-visual {
    min-height: 360px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-item + .feature-item {
    border-top: 3px solid var(--ink);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  :root {
    --content: min(100% - 22px, 1180px);
  }

  .brand {
    font-size: 1.15rem;
  }

  .brand-mark {
    width: 36px;
  }

  .hero {
    min-height: 540px;
  }

  .hero::after {
    inset: 20% 0 0;
  }

  .hero-copy {
    padding-bottom: 38px;
  }

  h1 {
    font-size: 3rem;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .collection-card {
    padding: 22px;
  }
}

