:root {
  --bg: #1a1008;
  --bg-warm: #231509;
  --fg: #f5efe6;
  --fg-muted: #c4b49a;
  --accent: #d4883e;
  --accent-light: #e9a85c;
  --card-bg: #2a1c0e;
  --card-border: #3d2a16;
  --serif: 'DM Serif Display', serif;
  --sans: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 80%, rgba(212,136,62,0.08) 0%, transparent 60%);
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bean {
  position: absolute;
  width: 20px;
  height: 30px;
  background: var(--accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.12;
}

.bean-1 { top: 15%; left: 10%; transform: rotate(25deg); width: 24px; height: 36px; }
.bean-2 { top: 60%; right: 8%; transform: rotate(-35deg); width: 18px; height: 28px; }
.bean-3 { bottom: 20%; left: 20%; transform: rotate(60deg); width: 16px; height: 24px; }

.steam {
  position: absolute;
  width: 2px;
  height: 60px;
  background: linear-gradient(to top, transparent, rgba(212,136,62,0.15));
  border-radius: 2px;
  animation: steamRise 3s ease-in-out infinite;
}

.steam-1 { bottom: 30%; right: 15%; animation-delay: 0s; }
.steam-2 { bottom: 25%; right: 18%; animation-delay: 1s; height: 45px; }
.steam-3 { bottom: 35%; right: 12%; animation-delay: 2s; height: 50px; }

@keyframes steamRise {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-20px); }
}

/* PROMISE */
.promise {
  padding: 5rem 2rem;
  background: var(--bg-warm);
}

.promise-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.promise-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.promise-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.promise-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--accent-light);
}

.promise-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* PRODUCTS */
.products {
  padding: 5rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.products h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-category {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.product-category:hover {
  border-color: var(--accent);
}

.product-swatch {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.swatch-flavored { background: linear-gradient(90deg, #d4883e, #e9a85c, #c46b2a); }
.swatch-origin { background: linear-gradient(90deg, #3d6b3a, #5a8f56, #2d4f2b); }
.swatch-blends { background: linear-gradient(90deg, #5c3d2e, #8b5e4b, #3d2a1e); }
.swatch-tea { background: linear-gradient(90deg, #7b4a8a, #a66bb5, #5c3568); }

.product-category h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.product-category p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  font-weight: 600;
  color: var(--accent-light);
  font-size: 0.95rem;
}

/* STORY */
.story {
  padding: 6rem 2rem;
  background: var(--bg-warm);
}

.story-inner {
  max-width: 640px;
  margin: 0 auto;
}

.story h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.story p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,136,62,0.06) 0%, transparent 50%);
}

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

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 3rem 1.5rem;
  }
  
  .promise-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .story,
  .closing {
    padding: 4rem 1.5rem;
  }
}