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

:root {
  --cream: #F5F5F5;
  --white: #FFFFFF;
  --ink: #0A0A0A;
  --ink-light: #3A3A3A;
  --ink-muted: #888888;
  --border: #E0E0E0;
  --green: #111111;
  --green-light: #F0F0F0;
  --green-mid: #333333;
  --accent: #555555;
  --accent-light: #EFEFEF;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.logo img {
  display: block;
  height: 100px;
  width: auto;
}

/* Homepage nav: let the logo hang down out of the bar into the hero below */
nav.nav-hero .logo {
  position: relative;
  align-self: flex-start;
  z-index: 150;
}

nav.nav-hero .logo img {
  height: 100px;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,10.45));
  position: relative;
  top: -20px;
}

@media (max-width: 768px) {
  nav.nav-hero .logo img { height: 80px; }
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex: 1;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-light);
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-actions a {
  font-size: 14px;
  color: var(--ink-light);
  font-weight: 500;
}

.nav-actions a.active { color: var(--ink); font-weight: 600; }

/* NAV — mobile toggle + slide-out menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 84vw;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 20px;
  height: 60px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-light);
  padding: 4px 10px;
}

.mobile-menu-links {
  list-style: none;
  padding: 12px 8px;
  overflow-y: auto;
}

.mobile-menu-links li a {
  display: block;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-light);
  border-radius: 8px;
}

.mobile-menu-links li a:hover { background: var(--cream); }

.mobile-menu-links li a.active {
  color: var(--ink);
  font-weight: 600;
  background: var(--cream);
}

body.menu-open { overflow: hidden; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
}

/* ANNOUNCEMENT BAR */
.announce {
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.announce span {
  opacity: 0.7;
  margin: 0 8px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #111 url('images/hero1.png') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--green);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: #E8E8E8; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: inline-block;
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* PAGE HEADER (inner pages) */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.page-header-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 640px;
}

.varietal-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

/* VARIETAL DETAIL PAGE */
.varietal-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.varietal-image {
  aspect-ratio: 16 / 9;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.varietal-main h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}

.varietal-main h2:first-child { margin-top: 0; }

.varietal-main > p {
  color: var(--ink-light);
  font-size: 15px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.spec-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.spec-item h3 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.spec-item p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--ink-muted);
  font-weight: 400;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.review-stars {
  color: #B8860B;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-card p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.5;
}

.varietal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pack-size-box,
.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.pack-size-box h3,
.info-box h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pack-size-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.pack-size-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pack-size-list li:last-child { border-bottom: none; }

.info-box p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .varietal-layout { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
}

/* SECTIONS */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.view-all {
  font-size: 14px;
  color: var(--green-mid);
  font-weight: 500;
}

.view-all:hover { text-decoration: underline; }

/* CATEGORIES */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
  cursor: pointer;
}

.category-card:hover { border-color: #C5BFB7; transform: translateY(-2px); }

.category-img {
  background: var(--green-light) center center / cover no-repeat;
  aspect-ratio: 4/3;
}

.category-label {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.category-sub {
  padding: 0 14px 12px;
  font-size: 12px;
  color: var(--ink-muted);
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* PRODUCT CARDS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
  cursor: pointer;
}

.product-card:hover { border-color: #C5BFB7; transform: translateY(-2px); }

.product-img {
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.product-info {
  padding: 14px 16px;
}

.product-type {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.product-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-mid);
  margin-top: 8px;
}

.product-cta:hover { text-decoration: underline; }

/* BUNDLES */
.bundles-bg {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bundle-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: border-color 0.15s;
  cursor: pointer;
}

.bundle-card:hover { border-color: #C5BFB7; }

.bundle-img {
  background: var(--green-light);
  border-radius: 8px;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-muted);
  border: 1px solid var(--border);
}

.bundle-info { flex: 1; }

.bundle-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.bundle-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bundle-desc {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.bundle-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-mid);
}

.bundle-price s {
  color: var(--ink-muted);
  font-weight: 400;
  font-size: 13px;
  margin-left: 6px;
}

/* WHOLESALE STRIP */
.wholesale-strip {
  background: var(--green);
  padding: 56px 24px;
  text-align: center;
}

.wholesale-strip h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.wholesale-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  display: inline-block;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

/* EMAIL CAPTURE */
.email-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
  text-align: center;
}

.email-inner {
  max-width: 480px;
  margin: 0 auto;
}

.email-section h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.email-section p {
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.email-form {
  display: flex;
  gap: 10px;
}

.email-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}

.email-form input:focus { border-color: var(--green-mid); }
.email-form input::placeholder { color: var(--ink-muted); }

/* CONTENT PAGES (about / wholesale / learn / contact) */
.content-block {
  max-width: 720px;
}

.content-block p {
  margin-bottom: 16px;
  color: var(--ink-light);
}

.content-block h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}

/* SITEMAP */
.sitemap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sitemap-list a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-light);
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.sitemap-list a:hover {
  color: var(--ink);
  border-color: var(--border);
}

.sitemap-list-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 24px;
}

@media (max-width: 640px) {
  .sitemap-list-columns { grid-template-columns: 1fr 1fr; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green-mid); }

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.contact-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info p {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.contact-info p:last-child { margin-bottom: 0; }

/* LEARN GRID */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.learn-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.15s, transform 0.15s;
  cursor: pointer;
}

.learn-card:hover { border-color: #C5BFB7; transform: translateY(-2px); }

.learn-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.learn-card p {
  font-size: 13px;
  color: var(--ink-muted);
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 16px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  line-height: 1.6;
}

.compliance {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  max-width: 560px;
  line-height: 1.6;
}

/* HOME — COMMERCIAL HERO ADD-ONS */
.hero-ctas .btn-primary,
.hero-ctas .btn-secondary {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 38px; }
  .hero-stats { gap: 24px; }
}

/* HOME — TRUST BAR */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}

.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 600;
  text-align: center;
}

.trust-bar-sep {
  margin: 0 16px;
  color: var(--ink-muted);
  opacity: 0.4;
}

/* HOME — SECTION LABEL + INTRO */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}

.section-label.center { justify-content: center; }

.section-intro {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-intro h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-intro p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* HOME — VALUE PROPS */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.value-card:hover {
  border-color: #C5BFB7;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* HOME — CASE FOR SEED */
.case-section {
  background: var(--ink);
}

.case-section .section-label {
  color: rgba(255,255,255,0.5);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.case-grid h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--white);
}

.case-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  line-height: 1.7;
}

.case-body .btn-secondary {
  margin-top: 8px;
}

@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* HOME — HOW IT WORKS */
.steps-section { background: var(--cream); }

.steps-heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  max-width: 520px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .steps-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .steps-list { grid-template-columns: 1fr; }
}

/* HOME — CLOSING CTA */
.closing-cta {
  background: var(--ink);
  padding: 88px 24px;
  text-align: center;
}

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

.closing-cta .section-label {
  color: rgba(255,255,255,0.55);
}

.closing-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.closing-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* PACK SIZE — RADIO OPTIONS (varietal page) */
.pack-size-options {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pack-size-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s;
}

.pack-size-option:has(input:checked),
.pack-size-option.selected {
  border-color: var(--ink);
  background: var(--cream);
}

.pack-size-option input[type="radio"] {
  accent-color: var(--ink);
  flex-shrink: 0;
}

.pack-size-option-label {
  flex: 1;
  font-weight: 500;
}

.pack-size-option-price {
  font-weight: 600;
  color: var(--ink);
}

/* CART — NAV TOGGLE */
.cart-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.cart-toggle:hover { border-color: #C5BFB7; }

.cart-count {
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* CART — DRAWER */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 300;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cart-overlay.open { display: block; opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: var(--white);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-light);
  padding: 4px 8px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}

.cart-empty {
  color: var(--ink-muted);
  font-size: 14px;
  padding: 24px 0;
  text-align: center;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-item-pack {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.qty-btn:hover { border-color: #C5BFB7; }

.qty-value {
  font-size: 13px;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 2px 6px;
  flex-shrink: 0;
  align-self: flex-start;
}

.cart-item-remove:hover { color: var(--ink); }

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* CART — CHECKOUT MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal-overlay.open { display: block; opacity: 1; }

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  max-width: 92vw;
  max-height: 88vh;
  background: var(--white);
  border-radius: 12px;
  z-index: 401;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  flex-direction: column;
}

.modal.open { display: flex; }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-header h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.modal-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-light);
  padding: 4px 8px;
}

#checkout-form {
  padding: 20px 24px 24px;
  overflow-y: auto;
}

.checkout-note {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}

.checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-light);
}

.checkout-promo-row {
  display: flex;
  gap: 8px;
}

.checkout-promo-row input { flex: 1; }

.checkout-promo-row button {
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s;
}

.checkout-promo-row button:hover { border-color: #C5BFB7; }

.checkout-promo-status {
  font-size: 12px;
  margin-top: 6px;
}

.checkout-promo-status.success { color: #1a7a3c; }
.checkout-promo-status.error { color: #b3261e; }

.checkout-form-row {
  display: flex;
  gap: 16px;
}

.checkout-form-row > div { flex: 1; min-width: 0; }

.checkout-total {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.checkout-discount-row { color: #1a7a3c; }

.checkout-total-row {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.checkout-status {
  font-size: 13px;
  margin: -4px 0 4px;
}

.checkout-status.success { color: #1a7a3c; }
.checkout-status.error { color: #b3261e; }

@media (max-width: 640px) {
  .cart-drawer { width: 100%; max-width: 100vw; }
}

/* AGE VERIFICATION GATE */
.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.open { display: flex; }

body.age-gate-lock { overflow: hidden; }

.age-gate-modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.age-gate-logo {
  display: inline-flex;
  margin-bottom: 20px;
}

.age-gate-logo img {
  height: 56px;
  width: auto;
}

.age-gate-modal h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.age-gate-modal p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.age-gate-decline {
  background: var(--white);
  color: var(--ink-light);
  border: 1.5px solid var(--border);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.age-gate-decline:hover { border-color: #C5BFB7; color: var(--ink); }

.age-gate-disclaimer {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* TESTIMONIALS — FEATURED VIDEO */
.video-feature-wrap {
  max-width: 860px;
  margin: 0 auto 56px;
}

.video-feature {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #111 url('images/hero1.png') center center / cover no-repeat;
  cursor: pointer;
}

.video-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transition: transform 0.15s, background 0.15s;
}

.video-feature:hover .video-play-btn {
  transform: scale(1.06);
  background: var(--white);
}

.video-play-btn::after {
  content: '';
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 6px;
}

.video-feature-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
}

.video-feature-caption .video-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.video-feature-caption h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* TESTIMONIALS — GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--ink-muted);
}

@media (max-width: 860px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
