:root {
  --bg-deep: #0F1A12;
  --bg-warm: #1A2B1E;
  --bg-card: #223326;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-glow: rgba(212, 168, 83, 0.15);
  --green-soft: #7CB08A;
  --green-muted: #4A7A56;
  --cream: #FAF3E8;
  --cream-muted: #C9B99A;
  --white: #FFFFFF;
  --text-primary: #FAF3E8;
  --text-secondary: #B8C4BA;
  --text-muted: #7A8A7E;
  --accent-warm: #C67B4E;
  --accent-rose: #B86B7A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(124, 176, 138, 0.06) 0%, transparent 70%),
    var(--bg-deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  max-width: 900px;
  text-align: center;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.story::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

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

.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.story-text {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}

/* --- PRODUCTS --- */
.products {
  padding: 6rem 2rem;
  background: var(--bg-deep);
}

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.product-card:hover {
  border-color: rgba(212, 168, 83, 0.35);
  transform: translateY(-2px);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.product-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag-clinical { background: rgba(124, 176, 138, 0.15); color: var(--green-soft); }
.tag-survival { background: rgba(212, 168, 83, 0.15); color: var(--gold-light); }
.tag-wellness { background: rgba(184, 107, 122, 0.15); color: var(--accent-rose); }
.tag-growth { background: rgba(198, 123, 78, 0.15); color: var(--accent-warm); }

/* --- COMMUNITY --- */
.community {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  text-align: center;
}

.community-inner {
  max-width: 800px;
  margin: 0 auto;
}

.community-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar {
  padding: 1.5rem;
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- CLOSING --- */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
    var(--bg-deep);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing h2 em {
  color: var(--gold);
  font-style: italic;
}

.closing p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
}

/* --- FOOTER --- */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  text-align: center;
}

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

.footer .brand {
  color: var(--gold);
  font-weight: 600;
}

/* --- NAV --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 26, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.12);
}

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

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

/* --- HERO ACTIONS --- */
.hero-actions {
  margin-bottom: 3rem;
}

.hero-btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}

.hero-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Nudge hero down to clear fixed nav */
.hero { padding-top: 7rem; }

/* --- PRODUCT CARD LINKS (landing page) --- */
.product-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.product-card-link:hover {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-3px);
}

.product-card-link h3 { color: var(--cream); }

.product-card-more {
  border-style: dashed;
  border-color: rgba(212, 168, 83, 0.2);
}

/* --- STORE HERO --- */
.store-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(212, 168, 83, 0.07) 0%, transparent 70%),
    var(--bg-deep);
  position: relative;
}

.store-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.store-hero-inner {
  max-width: 700px;
  text-align: center;
}

.store-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.store-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.store-hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* --- CATALOG --- */
.store-catalog {
  padding: 4rem 2rem 6rem;
  background: var(--bg-deep);
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.catalog-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-3px);
}

.catalog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  padding: 2rem;
  gap: 0;
}

.catalog-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  width: 52px;
  height: 52px;
  background: var(--gold-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-body {
  flex: 1;
}

.catalog-tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.catalog-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.catalog-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.catalog-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.catalog-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.catalog-card:hover .catalog-cta {
  color: var(--gold-light);
}

/* --- PRODUCT DETAIL --- */
.product-detail-page {
  min-height: 100vh;
  padding: 7rem 2rem 4rem;
  background: var(--bg-deep);
}

.product-detail-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 2.5rem;
}

.breadcrumb-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover { color: var(--gold); }

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.product-detail-icon {
  font-size: 3rem;
  width: 72px;
  height: 72px;
  background: var(--gold-glow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 1.5rem;
}

.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.product-detail-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.product-detail-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Purchase card */
.product-purchase-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 20px;
  padding: 2rem;
  position: sticky;
  top: 80px;
}

.purchase-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.purchase-icon {
  font-size: 1.6rem;
}

.purchase-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

.purchase-includes-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.purchase-includes-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.purchase-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.includes-check {
  color: var(--green-soft);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.purchase-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.purchase-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.purchase-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.purchase-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.purchase-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.purchase-btn-disabled {
  background: var(--bg-warm);
  color: var(--text-muted);
  cursor: not-allowed;
}

.purchase-btn-disabled:hover {
  background: var(--bg-warm);
  transform: none;
}

.purchase-guarantee {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.purchase-link {
  color: var(--gold);
  text-decoration: none;
}

.purchase-link:hover { text-decoration: underline; }

/* --- NOT FOUND --- */
.not-found-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}

.not-found-inner {
  text-align: center;
}

.not-found-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.not-found-inner h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.not-found-inner p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.not-found-btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}

.not-found-btn:hover { background: var(--gold-light); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  .product-purchase-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .story, .products, .community, .closing { padding: 4rem 1.5rem; }
  .community-pillars { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .store-hero { padding: 6rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .nav-inner { padding: 0 1rem; }
}