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

:root {
  --yellow: #F9E869;
  --yellow-light: #FEFCE6;
  --yellow-dark: #F1D64F;
  --off-white: #FAFAF8;
  --cream: #F4F2EC;
  --dark: #2C2C2A;
  --mid: #888780;
  --muted: #B8B5AE;
  --light: #DEDAD2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  border-bottom: 0.5px solid var(--light);
  position: sticky;
  top: 0;
  background: var(--off-white);
  z-index: 100;
}

.nav-logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dark); }

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  font-size: clamp(140px, 24vw, 260px);
  font-weight: 500;
  color: #F1D9D9;
  letter-spacing: -4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--mid);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(56px, 10vw, 104px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 28px;
  color: var(--dark);
}

.hero-title .highlight { color: var(--yellow-dark); }

.hero-sub {
  font-size: 18px;
  color: var(--mid);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--off-white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-cta:hover { background: #444441; }

.hero-badges {
  margin-top: 56px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}

/* SECTION SHARED */
.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.divider { height: 0.5px; background: var(--light); }

/* STORY */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.story-text {
  padding: 100px 80px 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 0.5px solid var(--light);
}

.story-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.story-text p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--mid);
  line-height: 1.8;
}

.story-text p + p { margin-top: 18px; }

.story-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--cream);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-visual-panel {
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 32px;
}

.story-visual-panel img {
  width: 44%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.story-visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--yellow-light);
}

.placeholder-label {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 1px;
  text-align: center;
  padding: 0 24px;
}

.placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WHY STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 56px 48px;
  border-right: 0.5px solid var(--light);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 56px;
  font-weight: 500;
  color: var(--yellow-dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-item h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 240px;
}

/* FLAVORS */
.flavors {
  padding: 100px 64px;
  background: var(--cream);
}

.flavors-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 56px;
  gap: 24px;
}

.flavors-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.flavors-header p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 360px;
  justify-self: end;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.flavor-card {
  background: var(--off-white);
  border: 0.5px solid var(--light);
  border-radius: 16px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.flavor-smiley { width: 64px; height: 64px; flex-shrink: 0; }

.flavor-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
}

.flavor-tag {
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 0.5px solid var(--light);
}

.flavor-tag.launch {
  background: var(--yellow-light);
  border-color: var(--yellow);
  color: var(--yellow-dark);
}

/* COMING SOON */
.coming-soon {
  padding: 120px 64px;
  text-align: center;
  background: var(--dark);
  color: var(--off-white);
}

.coming-soon .section-label { color: var(--yellow); margin-bottom: 20px; }

.coming-soon h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.05;
}

.coming-soon h2 .highlight { color: var(--yellow); }

.coming-soon p {
  font-size: 16px;
  color: #888780;
  max-width: 400px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.progress-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: wrap;
  row-gap: 12px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-label {
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 0.5px solid #444441;
  color: #555553;
  white-space: nowrap;
}

.step-label.active {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(232, 200, 74, 0.08);
}

.step-line {
  width: 32px;
  height: 0.5px;
  background: #444441;
  flex-shrink: 0;
}

/* EMAIL FORM */
.email-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 40px;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid #444441;
  background: #333331;
}

.email-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--off-white);
  min-width: 0;
}

.email-form input::placeholder { color: #666664; }

.email-form button {
  background: var(--yellow);
  border: none;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  cursor: pointer;
  border-radius: 100px;
  margin: 3px;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.email-form button:hover { background: var(--yellow-dark); color: white; }

.form-success {
  display: none;
  background: rgba(232, 200, 74, 0.12);
  border: 1px solid rgba(232, 200, 74, 0.3);
  border-radius: 16px;
  padding: 20px 32px;
  max-width: 440px;
  margin: 0 auto 40px;
  text-align: center;
}

.form-success p {
  font-size: 15px;
  color: var(--yellow);
  margin: 0;
}

.form-error {
  font-size: 12px;
  color: #FF8A80;
  margin-top: -30px;
  margin-bottom: 16px;
  display: none;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.ig-link:hover { background: var(--cream); }

.ig-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* FOOTER */
footer {
  padding: 32px 64px;
  border-top: 0.5px solid var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
}

.footer-links a:hover { color: var(--dark); }

.footer-copy { font-size: 12px; color: var(--light); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .story { grid-template-columns: 1fr; }
  .story-text { padding: 64px 24px; border-right: none; border-bottom: 0.5px solid var(--light); }
  .story-visual { min-height: 360px; }
  .story-visual-placeholder { min-height: 360px; }
  .story-visual-panel { min-height: 360px; padding: 32px 20px; gap: 12px; }
  .stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 0.5px solid var(--light); padding: 40px 24px; }
  .flavors { padding: 64px 24px; }
  .flavors-header { grid-template-columns: 1fr; }
  .flavors-header p { justify-self: start; }
  .flavors-grid { grid-template-columns: repeat(3, 1fr); }
  .coming-soon { padding: 80px 24px; }
  footer { padding: 24px; flex-direction: column; align-items: flex-start; }

  .progress-track {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .step-line {
    width: 0.5px;
    height: 20px;
    background: #444441;
  }

  .progress-step {
    flex-direction: column;
    align-items: center;
  }

  .step-label {
    text-align: center;
  }
}
