:root {
  /* Warm, rich dark foundations (coffee/peat/dark soil) */
  --bg: #14120e;
  --surface: #1e1a15;
  --surface-hover: #29241e;
  --border: #3b342b;

  /* Earthy artisan accents (Warm Sage + Amber Ochre) */
  --accent: #a3b18a;          /* Calming, earthy sage leaf */
  --accent-soft: rgba(163, 177, 138, 0.14);
  --accent-warm: #d4a373;     /* Warm terracotta/leather for highlights */

  /* Text: Natural cream & warm linen instead of harsh cool white */
  --text-main: #f5f0eb;
  --text-muted: #b8aea2;
  --star-color: #e09f3e;

  --radius-lg: 16px;
  --radius-md: 10px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

/* Accessibility: High contrast skip link & outline ring */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 1000;
  border-radius: var(--radius-md);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 20px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-nav {
  position: sticky;
  top: 0;
  background: rgba(14, 19, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent-soft);
  color: var(--accent) !important;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--accent);
  font-weight: 700 !important;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.glow-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  pointer-events: none;
}
.b1 { background: #3a4a34; top: -100px; left: -100px; } /* Deep moss */
.b2 { background: #6b4d32; bottom: 0; right: -50px; }   /* Warm timber/amber */

/* Floating Artisan Sprites */
/* Ambient Floating Craft Sprites */
.hero-sprites {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sprite {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.35;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  animation: artisanDrift 8s ease-in-out infinite alternate;
  user-select: none;
}

@keyframes artisanDrift {
  0% { transform: translateY(0px) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
  100% { transform: translateY(-22px) rotate(-2deg); }
}

/* Individual Spacing Across the Hero */
.s1 { top: 12%; left: 8%; animation-delay: 0s; }
.s2 { top: 20%; right: 12%; animation-delay: -2s; }
.s3 { bottom: 18%; left: 15%; animation-delay: -4s; }
.s4 { bottom: 14%; right: 10%; animation-delay: -1s; }

@keyframes artisanDrift {
  0% { transform: translateY(0px) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
  100% { transform: translateY(-22px) rotate(-2deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.hero-main h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #062112;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
}

/* Premise Section */
.premise-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.premise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.stat-cluster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Product Catalog */
.catalog-section {
  padding: 6rem 0;
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: #062112;
  border-color: var(--accent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14, 19, 17, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.stars { color: var(--star-color); letter-spacing: 2px; }
.rating-val { color: var(--text-muted); font-weight: 600; }

.product-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.maker-byline {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.btn-card {
  background: var(--surface-hover);
  color: #fff;
  border: 1px solid var(--border);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-card:hover {
  background: var(--accent);
  color: #062112;
  border-color: var(--accent);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 260px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

/* Footer & Disclosures */
.site-footer {
  background: #090c0a;
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col .brand { margin-bottom: 1rem; }

.footer-mission {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.legal-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  line-height: 1.5;
}

.legal-box strong { color: var(--text-main); }
.ccpa-notice { margin-top: 0.5rem; }

.footer-links-col h4 {
  color: var(--text-main);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 0.6rem; }
.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-links-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 850px) {
  .hero-grid, .premise-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* Real-Time Live Search Bar */
.search-bar-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-bar-wrap .search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-bar-wrap input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.85rem 1.2rem 0.85rem 3rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}

/* Share Button in Nav */
.nav-share-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-share-btn:hover {
  border-color: var(--accent);
  color: var(--text-main);
}

/* 4-Step Workflow Section */
.workflow-section {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); }

.step-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.step-emoji {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mission Deep Dive Box */
.mission-section {
  padding: 5rem 0;
}

.mission-card {
  background: linear-gradient(145deg, #17201c 0%, #101613 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
}

.mission-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0.5rem 0 1.5rem;
}

.mission-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.manifesto-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-main);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--accent); }

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Floating Share Toast */
.toast {
  position: fixed;
  bottom: -60px;
  right: 24px;
  background: var(--accent);
  color: #062112;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: bottom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.9rem;
}
.toast.show { bottom: 24px; }

h1, h2, .product-card h3, .brand {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}