/* ============================================================
   QUEENIE-B HONEY — Homepage Styles
   home.css: loader drip, hero, all 24 homepage sections
   ============================================================ */

/* ── LOADER DRIP KEYFRAME ─────────────────────────────────── */
@keyframes dripDraw {
  to { stroke-dashoffset: 0; }
}

/* ── 1. HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--rich-black);
}

/* Full-bleed background video */
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark gradient overlay so text stays readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(12, 6, 0, 0.72) 0%,
    rgba(28, 12, 0, 0.60) 50%,
    rgba(40, 16, 0, 0.55) 100%
  );
}

.hero-bg-hex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0 34L0 84V52l28-16 28 16v32L28 100z' fill='none' stroke='%23F5C200' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px var(--gutter) 120px;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--fa);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(245,194,0,0.65);
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
}

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

.hero-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: rgba(255,248,231,0.65);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

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

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,248,231,0.5);
}

.hero-trust-item svg { color: var(--amber); flex-shrink: 0; }


/* Floating Bees */
.bee-float {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  width: clamp(22px, 2.5vw, 36px);
  opacity: 0.75;
  animation-duration: 14s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes beeFloat1 {
  0%   { transform: translate(0,0)      rotate(-8deg);  }
  20%  { transform: translate(38px,-28px) rotate(6deg);  }
  45%  { transform: translate(70px,-8px)  rotate(-12deg); }
  70%  { transform: translate(20px,-48px) rotate(9deg);  }
  100% { transform: translate(0,0)      rotate(-8deg);  }
}
@keyframes beeFloat2 {
  0%   { transform: translate(0,0)       rotate(5deg);  }
  25%  { transform: translate(-32px,22px) rotate(-9deg); }
  55%  { transform: translate(-60px,-15px) rotate(14deg); }
  80%  { transform: translate(-18px,35px) rotate(-6deg); }
  100% { transform: translate(0,0)       rotate(5deg);  }
}
@keyframes beeFloat3 {
  0%   { transform: translate(0,0)     rotate(-4deg);  }
  30%  { transform: translate(55px,18px) rotate(11deg); }
  60%  { transform: translate(25px,-35px) rotate(-7deg); }
  85%  { transform: translate(65px,-20px) rotate(8deg); }
  100% { transform: translate(0,0)     rotate(-4deg);  }
}
@keyframes beeFloat4 {
  0%   { transform: translate(0,0)      rotate(10deg); }
  35%  { transform: translate(-45px,-22px) rotate(-5deg); }
  65%  { transform: translate(-15px,30px) rotate(13deg); }
  90%  { transform: translate(-50px,12px) rotate(-9deg); }
  100% { transform: translate(0,0)      rotate(10deg); }
}
@keyframes beeFloat5 {
  0%   { transform: translate(0,0)     rotate(-6deg);  }
  20%  { transform: translate(42px,32px) rotate(8deg);  }
  50%  { transform: translate(18px,-40px) rotate(-11deg); }
  75%  { transform: translate(60px,-18px) rotate(6deg); }
  100% { transform: translate(0,0)     rotate(-6deg);  }
}

/* Honey drip at hero bottom */
#honey-drip-svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: auto;
  pointer-events: none;
  z-index: 1;
}

.drip-path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2.5;
  stroke-linecap: round;
}

@keyframes dripLoop {
  0%   { stroke-dashoffset: 0; opacity: 0.8; }
  100% { stroke-dashoffset: -40; opacity: 0.3; }
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  animation: scrollHint 2.2s ease-in-out infinite;
}

.hero-scroll-hint span { font-size: 11px; letter-spacing: 0.12em; color: var(--cream); font-family: var(--fa); }

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid var(--cream);
  border-bottom: 1.5px solid var(--cream);
  transform: rotate(45deg);
}

@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.7; }
}

/* ── 2. MARQUEE SECTION ───────────────────────────────────── */
#marquee-section {
  background: var(--rich-black);
  border-top: 1px solid rgba(245,194,0,0.1);
  border-bottom: 1px solid rgba(245,194,0,0.1);
  padding: 16px 0;
  overflow: hidden;
}

/* ── 3. TRUST BAR ─────────────────────────────────────────── */
#trust-bar {
  background: var(--gold);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-brown);
  white-space: nowrap;
  border-right: 1px solid rgba(61,31,0,0.2);
}

.trust-item:last-child { border-right: none; }

.trust-item svg { flex-shrink: 0; color: var(--dark-brown); }

/* ── 4. STATS BAR ─────────────────────────────────────────── */
#stats-bar {
  background: var(--rich-black);
  padding: 0;
  position: relative;
  overflow: hidden;
}

#stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/bees-blossom.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  pointer-events: none;
}

#bg-paths-stats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
}

#bg-paths-stats path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  will-change: transform;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-cell {
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  text-align: center;
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.stat-cell:last-child { border-right: none; }

.stat-cell:hover { background: rgba(245,194,0,0.04); }

.stat-watermark {
  position: absolute;
  font-family: var(--fa);
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(245,194,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  top: 50%; transform: translateY(-50%);
}

.stat-num {
  font-family: var(--fd);
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,248,231,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--fa);
}

/* ── 5. FEATURED PRODUCTS ─────────────────────────────────── */
#featured-products {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--rich-black);
  box-shadow: 6px 6px 0 var(--rich-black);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--rich-black);
}

.product-card:hover .quick-view-btn { transform: translateY(0); opacity: 1; }

.product-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--dark-brown);
  text-align: center;
  padding: 20px;
  line-height: 1.4;
  opacity: 0.8;
}

.quick-view-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 13px;
  background: rgba(26,26,26,0.88);
  color: var(--gold);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  cursor: pointer;
}

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-category {
  font-family: var(--fa);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--amber);
}

.product-name {
  font-family: var(--fd);
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--rich-black);
  line-height: 1.25;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.variant-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.variant-pill {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.variant-pill:hover,
.variant-pill.active {
  border-color: var(--amber);
  background: rgba(213,134,10,0.07);
  color: var(--amber);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 10px;
}

.product-price {
  font-family: var(--fd);
  font-size: 20px;
  color: var(--rich-black);
}

.product-add-btn {
  padding: 9px 20px;
  font-size: 13px;
}

/* ── 6. HOW IT'S MADE ─────────────────────────────────────── */
#how-its-made {
  background: var(--cream-dark);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}
#how-its-made::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/bees-on-comb.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
#how-its-made .container { position: relative; z-index: 1; }

.hm-wrapper { position: relative; }

.hm-connector-wrap {
  position: absolute;
  top: 48px; left: 0; right: 0;
  pointer-events: none;
  z-index: 0;
}

#hm-connector-svg {
  width: 100%; height: 80px;
  overflow: visible;
}

#hm-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 10 6;
  opacity: 0.5;
}

.hm-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.hm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(32px) scale(0.92);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  background: var(--white);
  border: 2px solid var(--rich-black);
  border-radius: 18px;
  box-shadow: 4px 4px 0 var(--rich-black);
  padding: 22px 14px 18px;
  cursor: default;
}

.hm-step.visible { opacity: 1; transform: none; }

.hm-step:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--rich-black);
}

.hm-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--rich-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.hm-step:hover .hm-icon {
  background: var(--amber);
  transform: scale(1.08);
}

.hm-icon svg { color: var(--amber); }

.hm-num {
  font-family: var(--fa);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hm-name {
  font-family: var(--fd);
  font-size: 15px;
  color: var(--dark-brown);
  line-height: 1.3;
}

.hm-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── 7. PACKAGING STRIP ───────────────────────────────────── */
#packaging-strip {
  background: var(--dark-brown);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
#packaging-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/meadow.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}
#packaging-strip .container { position: relative; z-index: 1; }

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

.packaging-divider { display: none; }

.packaging-col {
  padding: 32px 28px;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--gold);
  border-radius: 20px;
  box-shadow: 5px 5px 0 rgba(245,194,0,0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.packaging-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.packaging-col:hover::before { opacity: 0.28; }
.packaging-col:first-child::before { background-image: url('../assets/wildflowers.jpg'); }
.packaging-col:last-child::before { background-image: url('../assets/flowers-orange.jpg'); }
.packaging-col > * { position: relative; z-index: 1; }

.packaging-col:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(245,194,0,0.45);
}

.packaging-icon {
  width: 56px; height: 56px;
  margin-bottom: 16px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.packaging-title {
  font-family: var(--fd);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--gold);
  margin-bottom: 12px;
}

.packaging-desc {
  font-size: 15px;
  color: rgba(255,248,231,0.65);
  line-height: 1.7;
  margin-bottom: 18px;
}

.packaging-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.packaging-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,248,231,0.6);
  line-height: 1.5;
}

.packaging-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── 8. WILLAMETTE VALLEY ─────────────────────────────────── */
#valley-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.valley-bg {
  position: absolute;
  inset: -30%;
  background-image: url('../assets/meadow.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.30;
  z-index: 0;
  will-change: transform;
}

.valley-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.valley-content { display: flex; flex-direction: column; gap: 22px; }

.valley-title {
  font-family: var(--fd);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.1;
  color: var(--rich-black);
  letter-spacing: -0.02em;
}

.valley-title em { color: var(--amber); font-style: italic; }

.valley-body {
  font-size: clamp(15px, 1.25vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
}

.valley-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.valley-icon-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.valley-icon-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--rich-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rich-black);
}

.valley-icon-item h4 {
  font-family: var(--fd);
  font-size: 15px;
  margin-bottom: 3px;
}

.valley-icon-item p { font-size: 13px; color: var(--text-muted); }

.valley-pull-quote {
  background: var(--dark-brown);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.valley-quote-text {
  font-family: var(--fd);
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
}

.valley-quote-attr {
  font-size: 13px;
  color: rgba(255,248,231,0.45);
  font-family: var(--fa);
  letter-spacing: 0.1em;
}

/* ── 9. HIVE DIFFERENCE ───────────────────────────────────── */
#hive-difference { background: var(--white); padding: var(--section-pad) 0; }

.hive-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border-light);
}

.hive-block:last-child { border-bottom: none; }
.hive-block.reverse { }
.hive-block.reverse .hive-image { order: 2; }
.hive-block.reverse .hive-text  { order: 1; }

.hive-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.hive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.hive-image:hover img {
  transform: scale(1.04);
}

.hive-image-label {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--amber);
  opacity: 0.4;
  text-align: center;
  padding: 24px;
}

.hive-text { display: flex; flex-direction: column; gap: 18px; }

.hive-text h3 {
  font-family: var(--fd);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.2;
  color: var(--rich-black);
}

.hive-text p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  line-height: 1.75;
}

.hive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.hive-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.hive-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── 10. LAB REPORTS TEASER ───────────────────────────────── */
#lab-teaser {
  background: var(--rich-black);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

#lab-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/wildflowers.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}

.lab-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.lab-teaser-title {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.lab-teaser-title em { color: var(--gold); font-style: italic; }

.lab-teaser-body {
  font-size: 15px;
  color: rgba(255,248,231,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.lab-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.lab-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,248,231,0.75);
}

.lab-check svg { color: var(--gold); flex-shrink: 0; }

.lab-table-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.lab-table-preview table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.lab-table-preview th {
  background: rgba(245,194,0,0.08);
  color: var(--gold);
  font-family: var(--fa);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-dark);
}

.lab-table-preview td {
  padding: 12px 16px;
  color: rgba(255,248,231,0.65);
  border-bottom: 1px solid rgba(245,194,0,0.05);
}

.lab-table-preview tr:last-child td { border-bottom: none; }

.lab-pass {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(74,144,60,0.15);
  color: #5ABB4A;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── 11. FARM STORE TEASER ────────────────────────────────── */
#farm-store-teaser {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.farm-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.farm-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.farm-img-photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.farm-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.farm-img-photo:hover img { transform: scale(1.05); }

.farm-img-photo:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2/1;
}

.farm-img-photo:not(:first-child) { aspect-ratio: 1; }

.farm-img-placeholder {
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(61,31,0,0.5);
  text-align: center;
  padding: 12px;
  font-family: var(--fb);
}

.farm-img-placeholder:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2/1;
}

.farm-text { display: flex; flex-direction: column; gap: 18px; }

.farm-text h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  color: var(--rich-black);
}

.farm-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ── 12. HONEY PAIRING GUIDE ──────────────────────────────── */
#pairing-guide {
  background: var(--rich-black);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

#pairing-guide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/6660125/pexels-photo-6660125.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

#pairing-guide .container { position: relative; z-index: 1; }
#pairing-guide .section-header .eyebrow { color: var(--gold); }
#pairing-guide .display-sm { color: var(--cream); }
#pairing-guide .lead { color: rgba(255,248,231,0.65); }

.pairing-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pairing-item {
  border: 2px solid var(--gold);
  border-radius: 16px;
  background: rgba(20,12,0,0.75);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 4px 4px 0 var(--amber);
}

.pairing-item:first-child { border-radius: 16px; }
.pairing-item:last-child  { border-bottom: 2px solid var(--gold); border-radius: 16px; }
.pairing-item.open        { background: rgba(245,194,0,0.1); box-shadow: 5px 5px 0 var(--amber); }

.pairing-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.pairing-trigger-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pairing-swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(0,0,0,0.1);
}

.pairing-variety {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--cream);
}

.pairing-tagline {
  font-size: 13px;
  color: rgba(255,248,231,0.5);
}

.pairing-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transition: transform 0.3s var(--ease-out), background 0.2s;
  flex-shrink: 0;
  color: var(--gold);
}

.pairing-item.open .pairing-icon {
  transform: rotate(45deg);
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

.pairing-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.pairing-content-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,194,0,0.2);
}

.pairing-col {
  padding: 20px 24px;
  border-right: 1px solid rgba(245,194,0,0.15);
}

.pairing-col:last-child { border-right: none; }

.pairing-col-title {
  font-family: var(--fa);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}

.pairing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pairing-chip {
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,194,0,0.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: rgba(255,248,231,0.75);
}

/* ── 13. ABOUT DOUG ───────────────────────────────────────── */
#about-doug {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--cream), var(--cream-dark), rgba(213,134,10,0.12));
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-photo-label {
  font-size: 13px;
  color: var(--text-faint);
}

.about-content { display: flex; flex-direction: column; gap: 22px; }

.about-content h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--rich-black);
  line-height: 1.2;
}

.about-content p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── 14. EDUCATION TEASER ─────────────────────────────────── */
#education-teaser {
  background: var(--dark-brown);
  padding: var(--section-pad) 0;
  background-image: url('../assets/bee-sunflower.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  position: relative;
  overflow: hidden;
}

#bg-paths-education {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  z-index: 0;
}

#bg-paths-education path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  will-change: transform;
}

.edu-inner { position: relative; z-index: 1; }

.edu-courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 52px;
}

.edu-course-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--gold);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--amber);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.edu-course-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--amber);
}

.edu-course-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245,194,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.edu-course-title {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--cream);
}

.edu-course-desc {
  font-size: 13px;
  color: rgba(255,248,231,0.55);
  line-height: 1.6;
}

.edu-course-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(245,194,0,0.1);
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: var(--gold);
  font-family: var(--fa);
  letter-spacing: 0.1em;
  width: fit-content;
  margin-top: auto;
}

.edu-notify-form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.edu-notify-form p {
  font-size: 15px;
  color: rgba(255,248,231,0.65);
}

/* ── 15. TESTIMONIALS ─────────────────────────────────────── */
#testimonials {
  background: var(--rich-black);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/flowers-yellow.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
#testimonials .container { position: relative; z-index: 1; }

.testimonials-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--gold);
  border-radius: 24px;
  box-shadow: 6px 6px 0 rgba(245,194,0,0.25);
  padding: 48px 52px 36px;
}

.testimonials-track {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: all;
  transform: none;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars svg { color: var(--gold); fill: var(--gold); }

.testimonial-quote {
  font-family: var(--fd);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gold);
  font-size: 15px;
}

.testimonial-location {
  font-size: 13px;
  color: rgba(255,248,231,0.4);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testimonials-prev,
.testimonials-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 3px 3px 0 rgba(245,194,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
  background: transparent;
}

.testimonials-prev:hover,
.testimonials-next:hover {
  background: rgba(245,194,0,0.1);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(245,194,0,0.4);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,248,231,0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
}

.testimonials-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── 16. SOCIAL GRID ──────────────────────────────────────── */
#social-grid {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 840px;
  margin: 0 auto 36px;
}

.insta-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}

.insta-tile:hover { transform: scale(1.03); }

.insta-tile-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.insta-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.insta-tile:hover .insta-tile-overlay { opacity: 1; }

.insta-tile-overlay svg { color: var(--white); }

.insta-handle-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.insta-handle {
  font-family: var(--fd);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--rich-black);
}

/* ── 17. VIDEO SECTION ────────────────────────────────────── */
#video-section {
  background: var(--rich-black);
  padding: var(--section-pad) 0;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--dark-brown) 0%, #1A0A00 50%, var(--rich-black) 100%);
  border: 1px solid rgba(245,194,0,0.12);
}
.video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/bees-flying.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}
.video-wrapper > * { position: relative; z-index: 1; }

.video-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.video-label-text {
  font-family: var(--fa);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255,248,231,0.35);
}

.video-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(245,194,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), background 0.2s;
  position: relative;
  z-index: 2;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--gold);
}

.video-play-btn svg { color: var(--dark-brown); margin-left: 4px; }

/* ── 18. SUBSCRIBE & SAVE ─────────────────────────────────── */
#subscribe-save {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.subscribe-card {
  background: var(--white);
  border-radius: 20px;
  border: 3px solid var(--rich-black);
  box-shadow: 6px 6px 0 var(--rich-black);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  position: relative;
}

.subscribe-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--rich-black);
}

.subscribe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(213,134,10,0.08);
  border-radius: var(--radius-pill);
  font-family: var(--fa);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--amber);
  width: fit-content;
}

.subscribe-title {
  font-family: var(--fd);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--rich-black);
}

.subscribe-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.subscribe-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.subscribe-amount {
  font-family: var(--fd);
  font-size: 32px;
  color: var(--rich-black);
}

.subscribe-period {
  font-size: 14px;
  color: var(--text-faint);
}

.subscribe-discount {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(74,144,60,0.1);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: #3A8A30;
  font-weight: 600;
}

.subscribe-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subscribe-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.subscribe-feature svg { color: var(--gold); flex-shrink: 0; }

/* ── 19. AWARDS ───────────────────────────────────────────── */
#awards {
  background: var(--cream-dark);
  padding: var(--section-sm) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.awards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--rich-black);
  box-shadow: 4px 4px 0 var(--rich-black);
  width: 130px;
  text-align: center;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.award-badge:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--rich-black);
}

.award-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--rich-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rich-black);
}

.award-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── 20. FAQ ──────────────────────────────────────────────── */
#faq {
  background: var(--rich-black);
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(245,194,0,0.1);
}

.faq-item:first-child { border-top: 1px solid rgba(245,194,0,0.1); }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  cursor: pointer;
  gap: 16px;
}

.faq-question {
  font-family: var(--fd);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--cream);
  line-height: 1.4;
}

.faq-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(245,194,0,0.2);
  color: rgba(245,194,0,0.6);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
  font-size: 18px;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--dark-brown);
  border-color: var(--gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.faq-answer {
  padding: 4px 4px 24px;
  font-size: 15px;
  color: rgba(255,248,231,0.6);
  line-height: 1.8;
  max-width: 720px;
}

/* ── 21. NEWSLETTER ───────────────────────────────────────── */
#newsletter {
  background: var(--cream);
  padding: var(--section-pad) 0;
  position: relative;
}

#newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/bee-allium.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.08;
  pointer-events: none;
}

.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.newsletter-title {
  font-family: var(--fd);
  font-size: clamp(34px, 4.5vw, 58px);
  color: var(--rich-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.newsletter-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  line-height: 1.65;
}

.newsletter-form { width: 100%; }

.newsletter-privacy {
  font-size: 12px;
  color: var(--text-faint);
}

/* ── RESPONSIVE HOMEPAGE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .hm-steps          { grid-template-columns: repeat(3, 1fr); }
  .hm-connector-wrap { display: none; }
  .hm-step           { opacity: 1; transform: none; }
  .about-grid        { grid-template-columns: 280px 1fr; gap: 48px; }
  .about-photo-wrap  { position: static; }
}

@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-desc         { margin: 0 auto; }
  .hero-actions      { justify-content: center; }
  .hero-trust        { justify-content: center; }
  .hero-visual       { display: none; }
  .valley-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hive-block        { grid-template-columns: 1fr; gap: 32px; }
  .hive-block.reverse .hive-image { order: 0; }
  .hive-block.reverse .hive-text  { order: 0; }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .lab-teaser-grid   { grid-template-columns: 1fr; gap: 40px; }
  .farm-teaser-grid  { grid-template-columns: 1fr; gap: 40px; }
  .about-grid        { grid-template-columns: 1fr; }
  .about-photo-wrap  { max-width: 300px; margin: 0 auto; }
  .packaging-grid    { grid-template-columns: 1fr; gap: 0; }
  .packaging-divider { display: none; }
  .packaging-col     { padding: 28px 0; border-bottom: 1px solid rgba(245,194,0,0.12); }
  .packaging-col:last-child { border-bottom: none; }
  .subscribe-grid    { grid-template-columns: 1fr; }
  .edu-courses       { grid-template-columns: 1fr; }
  .pairing-content-inner { grid-template-columns: 1fr; }
  .pairing-col       { border-right: none; border-bottom: 1px solid var(--border-light); }
  .pairing-col:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .products-grid     { grid-template-columns: 1fr; }
  .hm-steps          { grid-template-columns: repeat(2, 1fr); }
  .insta-grid        { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-cell         { border-bottom: 1px solid var(--border-dark); }
  .stat-cell:nth-child(2) { border-right: none; }
  .trust-bar-inner   { flex-wrap: wrap; }
  .trust-item        { border-right: none; border-bottom: 1px solid rgba(61,31,0,0.15); width: 50%; justify-content: center; }
  .trust-item:last-child, .trust-item:nth-last-child(2) { border-bottom: none; }
  .awards-row        { gap: 8px; }
  .award-badge       { width: 110px; }
}
