
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #F5F0E8;
  --chocolate: #3C3228;
  --sage: #A8BA9F;
  --caramel: #C69C6D;
  --slate: #8198A0;
  --bordeaux: #A55F5F;
  --warm-gray: #8B7D6B;
  --light-border: rgba(60,50,40,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--chocolate);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--light-border);
}
nav .logo { font-weight: 700; font-size: 18px; letter-spacing: 2px; }
nav .logo span { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: 14px; display: block; letter-spacing: 0; opacity: 0.6; margin-top: -4px; }
nav .links { display: flex; gap: 28px; align-items: center; }
nav .links a {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; transition: opacity 0.2s;
}
nav .links a:hover { opacity: 0.5; }
nav .links .cta-nav {
  background: var(--chocolate); color: var(--cream);
  padding: 10px 20px;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 140px 40px 80px;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(42px, 9vw, 100px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 12px;
}
.hero .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--warm-gray);
  margin-bottom: 16px;
}
.hero .sub {
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--warm-gray);
  margin-bottom: 40px;
}
.hero .email-box {
  display: flex; gap: 0;
  border: 1px solid var(--chocolate);
  max-width: 400px; width: 100%;
}
.hero .email-box input {
  flex: 1; padding: 14px 18px;
  border: none; background: transparent;
  font-family: 'Inter'; font-size: 13px;
  outline: none;
}
.hero .email-box button {
  padding: 14px 24px; background: var(--chocolate); color: var(--cream);
  border: none;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer;
}

/* SECTIONS */
.section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--warm-gray);
  margin-bottom: 48px;
  text-align: center;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  padding: 32px 28px;
  min-height: 400px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(60,50,40,0.15); }
.product-card .top .brand { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; opacity: 0.7; margin-bottom: 10px; }
.product-card .top .name { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.product-card .top .flavor { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; opacity: 0.8; }
.product-card .mid { margin: 28px 0; }
.product-card .mid .benefit { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; margin-bottom: 10px; }
.product-card .mid .ingredients { font-size: 11px; line-height: 1.8; opacity: 0.75; }
.product-card .bot { display: flex; justify-content: space-between; align-items: flex-end; }
.product-card .bot .price { font-size: 14px; font-weight: 600; }
.product-card .bot .count { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.5; }
.card-focus { background: var(--sage); color: var(--chocolate); }
.card-boost { background: var(--caramel); color: var(--chocolate); }
.card-reset { background: var(--slate); color: var(--cream); }
.card-spark { background: var(--bordeaux); color: var(--cream); }

/* PRODUCT IMAGES GRID */
.product-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}
.product-img-card img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 16px;
  border-radius: 4px;
}
.product-img-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 4px;
}
.product-img-card .price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-img-card button {
  padding: 10px 28px;
  background: var(--chocolate);
  color: var(--cream);
  border: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}

/* MANIFESTO */
.manifesto { text-align: center; max-width: 700px; margin: 0 auto; }
.manifesto h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 20px; line-height: 1.2; }
.manifesto p { font-size: 15px; color: var(--warm-gray); margin-bottom: 48px; }
.pillars { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.pillar { text-align: center; }
.pillar .icon { width: 56px; height: 56px; border: 1.5px solid var(--chocolate); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 20px; }
.pillar h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* INVESTORS */
.investors { background: var(--chocolate); color: var(--cream); padding: 100px 40px; }
.investors-inner { max-width: 1000px; margin: 0 auto; }
.investors .section-label { color: rgba(245,240,232,0.5); }
.investors h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); margin-bottom: 40px; text-align: center; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; margin-bottom: 48px; }
.stat h3 { font-family: 'Playfair Display', serif; font-size: 34px; margin-bottom: 6px; }
.stat p { font-size: 12px; opacity: 0.6; line-height: 1.5; }
.investors .cta { text-align: center; }
.investors .cta a { display: inline-block; padding: 14px 36px; border: 1px solid var(--cream); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.2s; }
.investors .cta a:hover { background: var(--cream); color: var(--chocolate); }

/* FOOTER */
footer { padding: 60px 40px 40px; border-top: 1px solid var(--light-border); max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; }
footer .col h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
footer .col a, footer .col p { display: block; color: var(--warm-gray); font-size: 13px; margin-bottom: 8px; transition: color 0.2s; }
footer .col a:hover { color: var(--chocolate); }

/* PRODUCT PAGE */
.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 140px 40px 80px; max-width: 1200px; margin: 0 auto; }
.product-hero .product-image img { width: 100%; border-radius: 4px; box-shadow: 0 20px 60px rgba(60,50,40,0.15); }
.product-hero .info .brand { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 12px; }
.product-hero .info h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 56px); margin-bottom: 8px; }
.product-hero .info .flavor { font-family: 'Playfair Display', serif; font-style: italic; font-size: 20px; color: var(--warm-gray); margin-bottom: 20px; }
.product-hero .info .price { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.product-hero .info .sub-price { font-size: 13px; color: var(--warm-gray); margin-bottom: 32px; }
.product-hero .info .btn {
  display: inline-block; padding: 10px 24px; background: var(--chocolate); color: var(--cream);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.product-hero .info .btn-secondary {
  display: inline-block; padding: 10px 24px; border: 1px solid var(--chocolate);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .product-hero .info .btn, .product-hero .info .btn-secondary {
    display: block; width: 100%; text-align: center; margin-left: 0; margin-bottom: 10px;
  }
}
.product-hero .info .benefits { margin-top: 32px; }
.product-hero .info .benefits li { list-style: none; font-size: 13px; padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.product-hero .info .benefits li::before { content: '¹3'; font-weight: 700; }

/* TABS */
.tabs { max-width: 800px; margin: 0 auto; padding: 0 40px 80px; }
.tab-nav { display: flex; gap: 32px; border-bottom: 1px solid var(--light-border); margin-bottom: 32px; }
.tab-nav a { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding-bottom: 12px; border-bottom: 2px solid transparent; }
.tab-nav a.active { border-bottom-color: var(--chocolate); }
.tab-content h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 20px; }
.tab-content p, .tab-content li { font-size: 14px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 10px; }
.tab-content ul { padding-left: 0; list-style: none; }
.tab-content table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 20px; }
.tab-content table td { padding: 12px 0; border-bottom: 1px solid var(--light-border); }
.tab-content table td:last-child { text-align: right; font-weight: 600; }

/* STORY */
.story-hero { padding: 140px 40px 60px; text-align: center; max-width: 900px; margin: 0 auto; }
.story-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); margin-bottom: 20px; }
.story-hero p { font-size: 18px; color: var(--warm-gray); line-height: 1.7; }
.story-img { max-width: 1000px; margin: 0 auto 80px; padding: 0 40px; }
.story-img img { width: 100%; border-radius: 4px; }
.story-body { max-width: 700px; margin: 0 auto; padding: 0 40px 100px; }
.story-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin: 48px 0 20px; }
.story-body p { font-size: 15px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 16px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; padding: 0 40px 100px; }
.faq-item { border-bottom: 1px solid var(--light-border); padding: 24px 0; }
.faq-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; cursor: pointer; }
.faq-item p { font-size: 14px; color: var(--warm-gray); line-height: 1.7; }

/* FAQ colors */
.faq-focus h3 { color: var(--sage); }
.faq-boost h3 { color: var(--caramel); }
.faq-reset h3 { color: var(--slate); }
.faq-spark h3 { color: var(--bordeaux); }

/* CONTACT */
.contact-form { max-width: 600px; margin: 0 auto; padding: 0 40px 100px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; margin-bottom: 16px;
  border: 1px solid var(--light-border); background: transparent;
  font-family: 'Inter'; font-size: 14px; outline: none;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  padding: 14px 36px; background: var(--chocolate); color: var(--cream);
  border: none; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  nav .links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .section { padding: 60px 20px; }
  .product-hero { grid-template-columns: 1fr; padding: 100px 20px 60px; }
  .product-hero .info .btn-secondary { margin-left: 0; margin-top: 10px; display: block; }
  footer { padding: 40px 20px; flex-direction: column; gap: 24px; }
  .tab-nav { gap: 16px; overflow-x: auto; }
  .pillars { gap: 32px; }
}
