:root {
  --color-bg: #fffaf2;
  --color-bg-alt: #f7efe3;
  --color-primary: #c67b27;
  --color-primary-dark: #8a5214;
  --color-accent: #f0b429;
  --color-text: #1f130a;
  --color-muted: #6f5a45;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius-lg: 20px;

  --font-display: "DM Serif Display", serif;
  --font-body: "Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1100px;
  --header-height: 72px;
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0 0 0.75rem;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =======================
   Header & Navigation
======================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

/* Desktop nav (default) */
.main-nav {
  /* inline nav on desktop; overlay on mobile via media query */
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none; /* hidden on desktop */
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  margin: 4px 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

/* Mobile-only bee wrapper (hidden on desktop) */
.mobile-nav-lottie {
  display: none;
}

/* =======================
   Hero
======================= */

.hero {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(
    circle at top right,
    #ffe6b0 0%,
    #fffaf2 40%,
    #fef4e6 100%
  );
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    background 0.12s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.05);
}

.btn-ghost:hover {
  background: #fff;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-visual lottie-player {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-badge {
  position: absolute;
  right: 0.5rem;
  bottom: -0.75rem;
  background: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

/* =======================
   Sections (generic)
======================= */

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  max-width: 38rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-muted);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.section-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.section-text p {
  color: var(--color-muted);
}

.verse {
  margin-top: 1.2rem;
  font-style: italic;
  color: var(--color-primary-dark);
}

.section-media {
  display: flex;
  justify-content: center;
}

.image-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: #fff; background-image: none; }

.image-card-bottle { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: #fff; background-image: none; aspect-ratio:9/16; }


.image-card-about {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-image: url("../images/hero-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px; /* required unless content gives height */
}


.image-card--honeycomb img {
  object-fit: cover;
}

/* Center the decorative bee Lottie in section headers */
.section-lottie {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-family: var(--font-display);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--color-muted);
}

.card-grid--products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

/* =======================
   Orchard section with sequence
======================= */

.section-image {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #000;
  min-height: 60vh;
}

/* Canvas that plays the sequence */
.orchard-sequence {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Dark overlay + content */
.section-image-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35)
  );
  padding: 4rem 0;
}

.section-image-overlay p {
  max-width: 32rem;
}

/* =======================
   Contact / Notes
======================= */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.note {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
}

/* =======================
   Footer
======================= */

.site-footer {
  padding: 1.75rem 0 2rem;
  background: #1a1208;
  color: #f7efe3;
  font-size: 0.9rem;
}

.footer-inner {
  text-align: center;
}

.footer-note {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.35rem;
}

/* =======================
   Scroll Animations
======================= */

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   Responsive Nav (mobile overlay)
======================= */

@media (max-width: 1100px) {
  .hero-inner,
  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-visual {
    order: -1;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-grid--products {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Full-screen mobile nav overlay (Oxygen-style easing) */
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* hidden off top by default */
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;

    transition:
      transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
      opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }

  /* Center links in a column */
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .main-nav a {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
  }

  .main-nav a::after {
    bottom: -0.35rem;
  }

  /* Show overlay when header has nav-open */
  .site-header.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Hamburger visible on mobile */
  .nav-toggle {
    display: inline-block;
  }

  /* Animate hamburger into X when open */
  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Mobile Lottie styles (only visible on mobile) */
  .mobile-nav-lottie {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.75rem;
  }

  .mobile-nav-lottie lottie-player {
    width: 120px;
    max-width: 40vw;
  }
}

/* ============================
   MOBILE MENU OVERLAY
============================ */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);

  transition:
    transform 0.55s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Close Button */
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 3rem;
  line-height: 1;
  color: #1f130a;
  cursor: pointer;
}

/* Mobile nav list */
.mobile-menu-overlay ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  text-align: center;
}

.mobile-menu-overlay li {
  margin-bottom: 1.2rem;
}

.mobile-menu-overlay a {
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mobile-menu-lottie lottie-player {
   width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
}

/* Hide desktop nav on mobile */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }
}

/* Show desktop nav normally */
@media (min-width: 1101px) {
  .mobile-menu-overlay {
    display: none;
  }
}
