:root {
  --charcoal: #1B1815;
  --charcoal-soft: #2B2620;
  --rust: #C1502E;
  --rust-dark: #A33F22;
  --gold: #D9A441;
  --cream: #F7F1E6;
  --cream-dark: #EFE5D2;
  --ink: #262220;
  --muted: #6B6259;
  --radius: 14px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Announcement bar */
.announce-bar {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 16px;
}

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--charcoal);
}
.logo span { color: var(--rust); }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: var(--rust); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.icon-btn {
  background: none;
  border: none;
  font-size: 17px;
  cursor: pointer;
  position: relative;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--rust);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: var(--rust-dark); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); }
.btn-small { padding: 9px 18px; font-size: 13px; }

/* Hero */
.hero { padding: 64px 0 40px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--rust);
  margin: 0 0 12px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--charcoal);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 28px;
}
.hero-cta { display: flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-badges span {
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--cream-dark);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-art { position: relative; height: 420px; }
.hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--gold) 0%, var(--rust) 55%, var(--charcoal) 100%);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  opacity: 0.92;
}
.hero-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  width: 190px;
}
.hero-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}
.hero-card-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--charcoal); }
.hero-card-desc { font-size: 13px; color: var(--muted); margin: 4px 0 10px; }
.hero-card-price { font-size: 16px; font-weight: 800; color: var(--charcoal); }

/* Trust strip */
.trust-strip { background: var(--charcoal); padding: 20px 0; }
.trust-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item { color: var(--cream); font-size: 13px; letter-spacing: 0.03em; opacity: 0.92; }

/* Section head */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: 36px;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.section-head.light h2 { color: var(--cream); }
.section-head.light .eyebrow { color: var(--gold); }
.section-sub { color: var(--muted); font-size: 15px; }

/* Flavors */
.flavors { padding: 88px 0; }
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.flavor-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27,24,21,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.flavor-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(27,24,21,0.12); }
.flavor-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
}
.thumb-traditional { background: linear-gradient(135deg, #D9A441, #A33F22); }
.thumb-peri { background: linear-gradient(135deg, #E2622C, #7A1F12); }
.thumb-naked { background: linear-gradient(135deg, #BFAE8C, #6B6259); }
.badge {
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.flavor-body { padding: 22px 22px 24px; }
.flavor-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rust); font-weight: 700; margin: 0 0 6px; }
.flavor-body h3 { font-family: var(--font-head); font-size: 24px; margin: 0 0 8px; color: var(--charcoal); }
.flavor-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0 0 18px; min-height: 44px; }
.flavor-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 18px; font-weight: 800; color: var(--charcoal); }
.price-large { font-size: 26px; font-weight: 800; color: var(--charcoal); }

.bundle-cta {
  margin-top: 40px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bundle-cta h3 { font-family: var(--font-head); font-size: 22px; margin: 0 0 6px; color: var(--charcoal); }
.bundle-cta p { margin: 0; color: var(--muted); font-size: 14px; }
.bundle-price { display: flex; align-items: center; gap: 16px; }

/* Benefits */
.benefits { background: var(--charcoal); padding: 88px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.benefit { text-align: center; padding: 12px; }
.benefit-icon { font-size: 34px; margin-bottom: 16px; }
.benefit h4 { font-family: var(--font-head); font-size: 20px; color: var(--cream); margin: 0 0 10px; }
.benefit p { font-size: 14px; color: rgba(247,241,230,0.72); line-height: 1.6; margin: 0; }

/* Story */
.story { padding: 88px 0; }
.story-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.story-art {
  height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--gold), var(--rust) 60%, var(--charcoal));
}
.story-copy .eyebrow { margin-bottom: 10px; }
.story-copy h2 { font-family: var(--font-head); font-size: 34px; margin: 0 0 18px; color: var(--charcoal); }
.story-copy p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 16px; }

/* Testimonials */
.testimonials { padding: 88px 0; background: var(--cream-dark); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; line-height: 1.6; color: var(--ink); margin: 0 0 14px; }
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--muted); margin: 0 !important; }

/* FAQ */
.faq { padding: 88px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 18px;
  color: var(--rust);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 12px 0 0; }

/* Newsletter */
.newsletter { background: var(--charcoal); padding: 72px 0; text-align: center; }
.newsletter h2 { font-family: var(--font-head); color: var(--cream); font-size: 30px; margin: 0 0 10px; }
.newsletter p { color: rgba(247,241,230,0.72); margin: 0 0 28px; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input {
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  min-width: 280px;
  font-size: 14px;
  font-family: var(--font-body);
}

/* Footer */
.site-footer { background: var(--cream-dark); padding: 56px 0 24px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-logo { display: inline-block; margin-bottom: 12px; }
.footer-col p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal); margin: 0 0 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--rust); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); margin: 0; }
.fine-print { max-width: 560px; text-align: right; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .story-inner { grid-template-columns: 1fr; }
  .story-art { order: -1; height: 240px; }
  .flavor-grid, .benefits-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .hero h1 { font-size: 38px; }
  .fine-print { text-align: left; }
}
