/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #0a1f12;
  --green-dark: #0f2a1d;
  --green-mid: #1a4a2e;
  --gold: #d4a843;
  --gold-light: #e8c06a;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --coral: #e85d45;
  --white: #ffffff;
  --black: #0a0a0a;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  mix-blend-mode: normal;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  background: var(--green-deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--green-dark);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  padding-right: 32px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-headline em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.7;
  max-width: 420px;
  line-height: 1.7;
}

/* === CAN ILLUSTRATIONS === */
.can-cluster {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding-left: 32px;
}

.can {
  position: relative;
}

.can-inner {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.seltzer-can {
  width: 100px;
  height: 200px;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  border: 2px solid var(--gold);
}

.seltzer-can::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30px;
  background: var(--gold);
  border-radius: 10px 10px 0 0;
}

.gummy-can {
  width: 120px;
  height: 160px;
  background: var(--gold);
  border-radius: 16px;
  transform: rotate(6deg);
}

.can-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--cream);
  opacity: 0.6;
  margin-top: 36px;
}

.seltzer-can .can-label { color: var(--gold); }

.can-sub {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  margin-bottom: 8px;
}

.gummy-can .can-sub { color: var(--green-deep); opacity: 0.5; }

.can-flavor {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}

.seltzer-can .can-flavor { color: var(--gold); }
.gummy-can .can-flavor { color: var(--green-deep); }

/* === HERO STATS === */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1280px;
  margin: 48px auto 0;
  width: 100%;
  padding-top: 48px;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 168, 67, 0.3);
}

/* === PRODUCTS === */
.products {
  background: var(--cream);
  padding: 100px 48px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.1;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--cream-dark);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-deep);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.product-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.seltzer-visual {
  background: var(--green-deep);
}

.product-can {
  width: 90px;
  height: 180px;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  border-radius: 12px;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  gap: 4px;
}

.product-can::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: var(--gold);
  border-radius: 10px 10px 0 0;
}

.product-can-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 32px;
}

.product-can-name {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
}

.product-can-flavor {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.gummy-visual {
  background: var(--gold);
}

.gummy-pile {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gummy {
  width: 56px;
  height: 68px;
  background: var(--green-deep);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  transform: rotate(-5deg);
}

.g1 { transform: rotate(-12deg) translateY(-8px); }
.g2 { transform: rotate(-4deg) translateY(4px); }
.g3 { transform: rotate(2deg); }
.g4 { transform: rotate(-2deg) translateY(6px); }
.g5 { transform: rotate(8deg) translateY(-4px); }

.product-info {
  padding: 32px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.9rem;
  color: #4a5a50;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-features li {
  font-size: 0.82rem;
  color: var(--green-mid);
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--green-dark);
  padding: 100px 48px;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
}

.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 36px;
  border: none;
}

.manifesto-sub {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.65;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* === INGREDIENTS === */
.ingredients {
  background: var(--cream);
  padding: 80px 48px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ingredient-col {
  text-align: center;
}

.ingredient-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.ingredient-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.ingredient-desc {
  font-size: 0.85rem;
  color: #5a6a5e;
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  background: var(--green-deep);
  padding: 120px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-tag {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  padding: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.4;
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.25;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { padding-right: 0; }
  .can-cluster { padding-left: 0; justify-content: center; }
  .product-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .navbar { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .products, .manifesto, .ingredients, .closing, .footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 600px) {
  .ingredients-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .can-cluster { flex-direction: column; align-items: center; }
}