:root {
  --bg: #0F0A05;
  --bg-warm: #1C1208;
  --bg-card: #251A0D;
  --accent: #D97706;
  --accent-dim: #92610D;
  --accent-glow: rgba(217, 119, 6, 0.15);
  --text: #F5F0E8;
  --text-muted: #9C8E7A;
  --text-dim: #5C4F3D;
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper { overflow: hidden; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  background: rgba(15, 10, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--accent); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(217, 119, 6, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(217, 119, 6, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 3px;
  padding: 5px 10px;
}

.hero-ornament {
  position: relative;
  z-index: 1;
  opacity: 0.4;
}

.bean-icon {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Section common */
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Strains Section */
.strains {
  padding: 100px 40px;
  background: var(--bg-warm);
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

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

.strain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.strain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.strain-card:hover { border-color: rgba(217, 119, 6, 0.3); }
.strain-card:hover::before { opacity: 1; }

.strain-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.strain-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.strain-effect {
  font-size: 11px;
  color: var(--text-muted);
}

.strain-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.strain-origin {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.strain-notes {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.strain-terps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.terp-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 3px;
  padding: 4px 8px;
}

/* Terpenes Section */
.terpenes {
  padding: 100px 40px;
  background: var(--bg);
}

.terpenes-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.terpenes-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.terpenes-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.terp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.terp-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.terp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* Bottle visual */
.bottle-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.bottle {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
  max-width: 260px;
}

.bottle-body {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px 4px 2px 2px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.bottle-body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 4px 4px 0 0;
}

.bottle--citrus .bottle-body::after { background: #C8852A; }
.bottle--earth .bottle-body::after { background: #8B6914; }
.bottle--sweet .bottle-body::after { background: #D4A44A; }

.bottle-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.bottle-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.bottle-cap {
  width: 20px;
  height: 28px;
  background: var(--accent-dim);
  border-radius: 2px;
}

/* Mascot Section */
.mascot {
  padding: 100px 40px;
  background: var(--bg-warm);
}

.mascot-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Bot face */
.bot-face {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  margin: 0 auto;
}

.bot-eyes {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.bot-eye {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(217, 119, 6, 0.5);
  animation: pulse-eye 2s ease-in-out infinite alternate;
}

@keyframes pulse-eye {
  0% { box-shadow: 0 0 12px rgba(217, 119, 6, 0.4); }
  100% { box-shadow: 0 0 24px rgba(217, 119, 6, 0.8); }
}

.bot-mouth {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.bot-mouth-bar {
  width: 6px;
  height: 16px;
  background: var(--accent-dim);
  border-radius: 2px;
}

.bot-antenna {
  width: 2px;
  height: 28px;
  background: var(--accent-dim);
  margin-bottom: 4px;
  position: relative;
}

.antenna-tip {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.bot-body {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  border: 2px solid var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}

.bot-body-inner {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* Mascot text */
.mascot-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.mascot-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.mascot-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mascot-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mf-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.mf-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.mf-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}

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

.closing-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}

.closing-meta {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Footer */
.footer {
  padding: 48px 40px 32px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 900px) {
  .strain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .terpenes-layout,
  .mascot-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    flex-direction: column;
    gap: 40px;
  }
  .hero-ornament { display: none; }
}

@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .strains, .terpenes, .mascot, .closing { padding: 60px 20px; }
  .footer { padding: 40px 20px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
}