/* BILIGAL STYLE v48 - Bees headline changed to sentence case */
:root {
  --yellow: #fedd01;
  --gold: #fdc500;
  --blue-nav: #004ed0;
  --blue-dark: #033c9b;
  --blue-headline: #0042b4;
  --navy: #002159;
  --navy2: #00225b;
  --black: #000000;
  --red: #cd0404;
  --ribbon-text: #f5f5f6;
  --cream-top: #fff198;
  --cream-bottom: #fffcfc;
  --divider: #dbdcdf;

  --font-display: 'Cinzel', serif;
  --font-body: 'Lora', serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--navy2);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; text-shadow: 1px 2px 3px rgba(0,0,0,0.18); }

.container { max-width: 1366px; margin: 0 auto; padding: 0 66px; }
.section { padding: 56px 0; }
.narrow { max-width: 700px; }

.section-fade { background: linear-gradient(180deg, var(--cream-top), var(--cream-bottom)); border-top: 3px solid var(--divider); }

.eyebrow {
  font-family: var(--font-display);
  font-variant: small-caps;
  letter-spacing: 0.03em;
  font-size: 22px;
  color: var(--blue-dark);
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

/* Header */
.site-header { background: var(--yellow); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 34px; }
.logo img { height: clamp(36px, 4.2vw, 44px); display: block; }
.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--blue-nav);
  font-weight: 700;
  font-family: var(--font-display);
  font-variant: small-caps;
  letter-spacing: 0.02em;
  font-size: clamp(14px, 1.46vw, 20px);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.12);
}
.nav a:hover { color: var(--navy); }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue-nav);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--blue-dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Alatsi', sans-serif;
  border: none;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 3px 4px 8px rgba(0,0,0,0.28);
}
.btn:hover { background: var(--navy); }
.btn-white { background: #fff; color: var(--blue-dark); }
.btn-white:hover { background: #f0f0f0; }
.btn-secondary { background: var(--blue-dark); color: #fff; }

/* Hero */
.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 1366 / 668;
  overflow: hidden;
}
.hero-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.08); z-index: 1; }
.hero-headline {
  position: absolute; z-index: 2;
  left: 9.3%; top: 17.2%; width: 40%;
  font-size: 4.29vw; line-height: 1.15; color: #fff; text-shadow: 2px 3px 6px rgba(0,0,0,0.35);
}
.hero-copy {
  position: absolute; z-index: 2;
  left: 9.3%; top: 44.2%; width: 32%;
  font-size: 1.5vw; color: var(--navy2); font-weight: 500; font-family: var(--font-body);
}
.hero-cta {
  position: absolute; z-index: 2;
  left: 9.3%; top: 66.6%;
  font-size: 1.32vw; padding: 0.9vw 2vw;
}
.ribbon {
  position: absolute; z-index: 2;
  left: 69.9%; top: 26.5%; width: 19%;
  aspect-ratio: 260 / 281;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  box-shadow: 3px 4px 10px rgba(0,0,0,0.3);
}
.ribbon-text {
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  color: var(--ribbon-text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.77vw;
  text-align: center;
  line-height: 1.3;
}

/* Story strip */
.story-section-v2 { padding-top: 12px; }
.story-inner { padding-left: 35px; padding-right: 35px; }
.story-eyebrow-quattro { font-family: 'Quattrocento', serif; text-align: left; display: block; margin: 24px 0; padding-left: 14px; }
.story-strip { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.story-strip .story-image {
  width: 100%;
  justify-self: stretch;
  aspect-ratio: 1 / 0.92;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 4px 6px 14px rgba(0,0,0,0.2);
}
.story-strip .story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block; }
.story-text-col { text-align: center; }
.story-strip h2 { font-family: 'Open Sauce Sans', sans-serif; font-weight: 800; font-size: 34px; margin: 6px 0 40px; color: var(--gold); line-height: 1.25; text-shadow: none; }
.story-strip p { color: var(--navy); font-size: 16px; margin-bottom: 12px; }
.story-cta { margin: 24px auto 24px; }

@media (max-width: 700px) {
  .story-section-v2 { padding-top: 40px; padding-bottom: 40px; }
  .story-inner { padding-left: 2.5px; padding-right: 2.5px; }
  .story-eyebrow-quattro { text-align: center; margin: 12px 0 36px; padding-left: 0; }
  .story-strip { gap: 48px; }
  .story-strip .story-image { max-width: 420px; margin: 0 auto; width: 100%; }
  .story-text-col { margin-top: 0; }
  .story-text-col > * { margin-left: auto; margin-right: auto; }
}

/* Why Us (precise) */
.why-us-section-v2 { padding-top: 12px; }
.whyus-inner { padding-left: 35px; padding-right: 35px; }
.whyus-eyebrow-v2 { font-family: var(--font-display); text-align: left; display: block; margin: 24px 0 4px; padding-left: 14px; }
.why-us-precise { position: relative; width: 100%; aspect-ratio: 1366 / 768; overflow: hidden; }
.whyus-headline-p { position: absolute; left: 9.72%; top: 8%; width: 80%; font-size: 2.34vw; color: var(--blue-headline); font-family: 'Open Sauce Sans', sans-serif; font-weight: 800; text-shadow: none; }
.whyus-item-p { position: absolute; display: flex; gap: 18px; align-items: center; width: 38%; }
.whyus-r1c1 { left: 9.72%; top: 27.59%; }
.whyus-r1c2 { left: 50.34%; top: 27.59%; }
.whyus-r2c1 { left: 9.72%; top: 63.71%; }
.whyus-r2c2 { left: 50.6%; top: 63.71%; }
.why-us-icon { width: clamp(70px, 13.2vw, 180px); aspect-ratio: 1 / 1; flex-shrink: 0; border-radius: 50%; overflow: hidden; border: 5px solid var(--yellow); }
.why-us-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.whyus-text-p h3 { font-family: var(--font-display); font-size: 1.39vw; margin-bottom: 6px; color: var(--black); font-weight: 700; }
.whyus-text-p p { color: var(--black); font-size: 1.06vw; font-family: var(--font-body); }

@media (max-width: 700px) {
  .why-us-section-v2 { padding-top: 40px; padding-bottom: 40px; }
  .whyus-inner { padding-left: 2.5px; padding-right: 2.5px; }
  .whyus-eyebrow-v2 { text-align: center; margin: 12px 0 36px; padding-left: 0; }
  .why-us-precise { aspect-ratio: auto; display: flex; flex-direction: column; overflow: visible; padding: 0 24px; gap: 24px; }
  .whyus-headline-p { position: relative; left: auto; top: auto; width: 100%; text-align: center; }
  .whyus-headline-p { font-size: 24px; }
  .whyus-item-p { position: relative; left: auto !important; top: auto; width: 100%; }
  .whyus-text-p h3 { font-size: 17px; }
  .whyus-text-p p { font-size: 14px; }
}

/* Indigenous bees section */
.bees-section-v2 { padding-top: 12px; }
.bees-inner { padding-left: 35px; padding-right: 35px; }
.bees-eyebrow-v2 { font-family: var(--font-display); text-align: left; display: block; margin: 24px 0 4px; padding-left: 14px; }
.bees-headline-v2 { text-align: left; width: 66%; margin-left: 98px; margin-top: 61px; font-size: 2.34vw; color: var(--blue-headline); margin-bottom: 40px; font-family: 'Open Sauce Sans', sans-serif; font-weight: 800; text-shadow: none; }
.bees-grid-v2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; padding-bottom: 40px; }
.bee-card-v2 { display: flex; flex-direction: column; align-items: center; text-align: center; }
.bee-card-v2 h3 { font-family: var(--font-display); font-size: 24px; color: var(--black); margin-bottom: 18px; }
.bee-card-v2 img { display: block; width: 52%; max-width: 260px; height: auto; aspect-ratio: 355/236; object-fit: cover; border-radius: 10px; margin-bottom: 18px; }
.bee-card-v2 p { color: var(--black); font-size: 15px; font-family: var(--font-body); margin-bottom: 20px; max-width: 420px; }
.bee-card-v2 .btn-text { display: inline-block; background: var(--blue-dark); color: #fff; padding: 10px 22px; border-radius: 100px; text-decoration: none; font-family: var(--font-body); font-weight: 600; font-size: 14px; }
.bee-card-v2 .btn-text:hover { background: var(--navy); }

/* Certification badges strip */
.badges-strip { padding: 40px 0; }
.badges-row { display: flex; justify-content: space-evenly; align-items: center; flex-wrap: nowrap; }
.badges-row img { height: 92px; width: auto; object-fit: contain; }

@media (max-width: 700px) {
  .badges-row { padding-left: 2.5px; padding-right: 2.5px; }
  .badges-row img { height: 68px; }
}

/* Coming soon (products page) */
.coming-soon { background: #fff; border-radius: 16px; padding: 40px; text-align: center; margin-bottom: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.coming-soon h2 { margin-bottom: 12px; font-size: 24px; color: var(--blue-headline); }
.coming-soon p { color: var(--navy); margin-bottom: 20px; font-family: var(--font-body); }
.inline-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.inline-form input { padding: 12px 18px; border: 2px solid var(--yellow); border-radius: 100px; min-width: 260px; font-size: 15px; font-family: var(--font-body); }
.form-message { margin-top: 14px; font-size: 14px; font-weight: 600; }
.form-message.success { color: #2e7d32; }
.form-message.error { color: var(--red); }

/* Grids (blog/products) */
.post-grid, .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 24px; }
.post-card { background: #fff; border-radius: 12px; padding: 22px; text-decoration: none; color: var(--navy); display: block; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.post-card h3 { color: var(--navy); margin: 8px 0; font-size: 19px; font-family: var(--font-display); }
.post-card p { color: var(--navy2); font-size: 14.5px; font-family: var(--font-body); }
.post-category { display: inline-block; background: var(--yellow); color: var(--navy); font-family: var(--font-body); font-size: 11px; text-transform: uppercase; font-weight: 600; padding: 5px 12px; border-radius: 100px; margin-bottom: 10px; }

.product-card { background: #fff; border-radius: 12px; padding: 22px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.product-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.product-card.out-of-stock { opacity: 0.7; }
.badge { display: inline-block; background: var(--navy); color: #fff; font-size: 12px; padding: 5px 12px; border-radius: 100px; margin-top: 8px; }

/* Forms */
.form { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.form label { font-weight: 600; font-size: 14px; color: var(--navy); }
.form input, .form textarea { padding: 13px; border: 2px solid var(--divider); border-radius: 10px; font-size: 15px; font-family: var(--font-body); }
.alert { padding: 13px 18px; border-radius: 10px; margin-bottom: 16px; font-weight: 600; }
.alert-success { background: #E4F5EB; color: #2e7d32; }
.alert-error { background: #FFE9E0; color: var(--red); }

/* Blog post */
.post-cover { width: 100%; border-radius: 12px; margin: 20px 0; }
.post-date { color: var(--navy2); font-size: 14px; margin: 6px 0 20px; }
.post-content { font-size: 17px; }
.post-content p { margin-bottom: 16px; }

.category-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.category-filter a { text-decoration: none; padding: 8px 16px; border: 2px solid var(--yellow); border-radius: 100px; color: var(--navy); font-size: 14px; font-weight: 600; }
.category-filter a.active, .category-filter a:hover { background: var(--blue-dark); color: #fff; border-color: var(--blue-dark); }

/* Footer */
.site-footer { }
.footer-badges { padding: 40px 0; background: linear-gradient(180deg, var(--cream-top), var(--cream-bottom)); border-top: 3px solid var(--divider); }
.footer-main { background: var(--yellow); padding: 48px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: center; }
.footer-logo { height: 30px; margin-bottom: 4px; }
.footer-col h4 { font-family: var(--font-display); font-variant: small-caps; font-size: 22px; margin-bottom: 16px; color: var(--navy); font-weight: 700; }
.footer-col a { display: inline-block; color: var(--navy); text-decoration: none; margin: 0 9px 8px; font-weight: 500; font-family: var(--font-display); font-variant: small-caps; font-size: 17px; }
.footer-col a:hover { text-decoration: underline; }
.footer-col address { font-style: normal; color: var(--navy); font-size: 14.5px; line-height: 1.8; font-family: var(--font-body); }
.footer-social-heading { margin-bottom: 9px; }
.footer-social { display: flex; justify-content: center; gap: 10px; margin-top: 8px; }
.footer-social a { width: 38px; height: 38px; display: block; margin: 0; }
.footer-social img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-social a:hover { opacity: 0.8; }
.footer-links-row { margin-top: 24px; }
.footer-links-row h4 { margin-bottom: 11px; }
.footer-bottom { background: var(--navy); }
.footer-bottom-inner { display: flex; justify-content: center; align-items: center; padding: 20px 40px; flex-wrap: wrap; gap: 8px 24px; font-size: 14px; color: #fff; font-family: var(--font-body); text-align: center; }
.footer-bottom-inner a { color: #fff; text-decoration: underline; }

@media (max-width: 700px) {
  .story-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bees-section-v2 { padding-top: 40px; padding-bottom: 40px; }
  .bees-inner { padding-left: 2.5px; padding-right: 2.5px; }
  .bees-eyebrow-v2 { text-align: center; margin: 12px 0 36px; padding-left: 0; }
  .bees-headline-v2 { text-align: center; width: 100%; margin-left: 0; margin-top: 12px; font-size: 24px; margin-bottom: 24px; }
  .bees-grid-v2 { grid-template-columns: 1fr; gap: 40px; padding-bottom: 0; }
  .bee-card-v2 img { max-width: 270px; }
}
@media (max-width: 600px) {
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--yellow);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 24px 20px;
    border-top: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  .nav.open { display: flex; z-index: 100; }
  .nav a { margin: 10px 0; }
  .site-header { position: relative; z-index: 50; }
}
@media (max-width: 600px) {
  .hero-video {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 105px 24px 44px;
    gap: 26px;
  }
  .hero-headline, .hero-copy, .hero-cta {
    position: relative;
    z-index: 5;
    width: auto;
    max-width: 100%;
    left: auto; top: auto;
  }
  .ribbon {
    position: relative;
    z-index: 5;
    left: auto; top: auto;
    width: 150px;
    box-shadow: 3px 4px 10px rgba(0,0,0,0.3);
    margin-top: 16px;
  }
  .ribbon-text { font-size: 26px; }
  .hero-headline { order: 1; font-size: 44px; }
  .hero-copy { order: 2; font-size: 18.5px; }
  .ribbon { order: 3; }
  .hero-cta { order: 4; font-size: 17px; padding: 12px 28px; }
}
