:root {
  --bg-deep: #0a0a0a;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --fg: #f0ece4;
  --fg-muted: #9a9388;
  --accent: #c8a96e;
  --accent-warm: #d4a053;
  --green-soft: #6b8f71;
  --green-deep: #3d5c42;
  --terra: #b8705a;
  --cream: #f5f0e8;
}

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

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,143,113,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero h1 .green {
  color: var(--green-soft);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 3rem;
}

/* ═══ PHILOSOPHY ═══ */
.philosophy {
  padding: 6rem 2rem;
  background: var(--bg-card);
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.2), transparent);
}

.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 1rem;
}

.philosophy h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.philosophy-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.philosophy-text em {
  color: var(--fg);
  font-style: normal;
  font-weight: 500;
}

/* ═══ BLENDS ═══ */
.blends {
  padding: 6rem 2rem;
}

.blends-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.blend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blend-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.blend-card:hover {
  border-color: rgba(200,169,110,0.15);
}

.blend-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.blend-card.gut::before { background: var(--green-soft); }
.blend-card.energy::before { background: var(--accent-warm); }
.blend-card.sleep::before { background: var(--terra); }

.blend-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.blend-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blend-purpose {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 1rem;
}

.blend-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blend-ingredients {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blend-ingredients li {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}

/* ═══ CULTURE ═══ */
.culture {
  padding: 6rem 2rem;
  background: var(--bg-card);
  position: relative;
}

.culture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,143,113,0.2), transparent);
}

.culture-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.culture-item {
  padding: 2rem;
  background: var(--bg-elevated);
  border-radius: 6px;
  border-left: 3px solid var(--green-soft);
}

.culture-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.culture-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.footer .brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--fg);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: auto; padding-top: 6rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 2rem; }
  .blend-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .philosophy, .blends, .culture { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .blend-card { padding: 2rem 1.5rem; }
}