/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600&display=swap');

/* Font Face declarations for provided local fonts */
@font-face {
  font-family: 'Eyesome';
  src: url('Fonts to use/Eyesome-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NewIconScript';
  src: url('Fonts to use/New-Icon-Script-Exfont1157.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Custom Design Tokens */
:root {
  /* Color System */
  --bg-primary: #1C3226;      /* Rich dark forest green matching the logo */
  --bg-secondary: #264334;    /* Slightly lighter forest green for cards/header */
  --bg-tertiary: #13241B;     /* Deeper green for contrast sections */
  --bg-dark: #0D1A13;         /* Almost black-green for footer */
  
  --text-primary: #FAF6F0;    /* Warm cream for highly readable headings */
  --text-muted: #AEC1B6;      /* Soft sage gray for readable body text */
  --text-light: #FAF6F0;      /* Warm white text for dark mode sections */

  --color-gold: #D49B41;      /* Primary honey accent */
  --color-gold-hover: #E8AF58;/* Bright honey gold */
  --color-gold-light: #2D4C3D;/* Translucent green-gold tint */
  --color-sage: #81A88D;      /* Organic secondary accent green */
  --color-sage-light: #2A4839;/* Light sage green background */

  --border-color: rgba(250, 246, 240, 0.1);
  --border-color-dark: rgba(250, 246, 240, 0.15);
  --border-thick: 1px solid var(--border-color);

  /* Typography Scale */
  --font-serif: 'Eyesome', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-script: 'NewIconScript', cursive;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Layout */
  --max-width: 1400px;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
}

/* --- Section Themes --- */
.theme-dark-green {
  background-color: #1C3226 !important;
  color: #FAF6F0 !important;
}
.theme-dark-green .section-title,
.theme-dark-green h1,
.theme-dark-green h2,
.theme-dark-green h3,
.theme-dark-green h4 {
  color: #FAF6F0 !important;
}
.theme-dark-green p,
.theme-dark-green .section-subtitle,
.theme-dark-green .heritage-body,
.theme-dark-green .heritage-lead,
.theme-dark-green .brand-description,
.theme-dark-green .variety-desc,
.theme-dark-green .product-item-desc {
  color: #AEC1B6 !important;
}

.theme-light-green {
  background-color: #264334 !important;
  color: #FAF6F0 !important;
}
.theme-light-green .section-title,
.theme-light-green h1,
.theme-light-green h2,
.theme-light-green h3,
.theme-light-green h4 {
  color: #FAF6F0 !important;
}
.theme-light-green p,
.theme-light-green .section-subtitle,
.theme-light-green .heritage-body,
.theme-light-green .heritage-lead,
.theme-light-green .brand-description,
.theme-light-green .variety-desc,
.theme-light-green .product-item-desc {
  color: #AEC1B6 !important;
}
.theme-light-green .variety-card,
.theme-light-green .brand-card,
.theme-light-green .product-item-card {
  background-color: #1C3226 !important;
  border-color: rgba(250, 246, 240, 0.1) !important;
}

.theme-beige {
  background-color: #F5F1EA !important; /* Soft premium beige */
  color: #2C2A29 !important;
}
.theme-beige .section-title,
.theme-beige h1,
.theme-beige h2,
.theme-beige h3,
.theme-beige h4,
.theme-beige .brand-name {
  color: #2C2A29 !important;
}
.theme-beige p,
.theme-beige .section-subtitle,
.theme-beige .heritage-body,
.theme-beige .heritage-lead,
.theme-beige .brand-description,
.theme-beige .variety-desc,
.theme-beige .product-item-desc,
.theme-beige .info-block-item p {
  color: #5E5A56 !important;
}
.theme-beige .variety-card,
.theme-beige .brand-card,
.theme-beige .product-item-card {
  background-color: #FFFDFB !important; /* Ivory background for cards on beige */
  border-color: rgba(44, 42, 41, 0.08) !important;
}
.theme-beige .brand-features li,
.theme-beige .operating-hours-box li,
.theme-beige .operating-hours-box li span.day {
  color: #2C2A29 !important;
}
.theme-beige .operating-hours-box {
  background-color: #FFFDFB !important;
  border-color: rgba(44, 42, 41, 0.08) !important;
}
.theme-light-green .filter-btn {
  border-color: rgba(250, 246, 240, 0.15) !important;
  color: #AEC1B6 !important;
}
.theme-light-green .filter-btn:hover,
.theme-light-green .filter-btn.active {
  background-color: #FAF6F0 !important;
  color: #264334 !important;
  border-color: #FAF6F0 !important;
}

/* CSS Resets & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(44, 42, 41, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(44, 42, 41, 0.3);
}

/* Helper Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
}

.text-center { text-align: center; }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-md { margin-bottom: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

/* Decorative fonts and details */
.script-highlight {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-gold);
  line-height: 0.8;
  display: inline-block;
  transform: rotate(-3deg);
}

.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  display: block;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation / Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(48, 82, 65, 0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(250, 246, 240, 0.1);
  transition: var(--transition-fast);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-fast);
}

header.scrolled .nav-container {
  height: 65px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(250, 246, 240, 0.15);
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 38px;
  width: 38px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.cta-button-nav {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--text-primary);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.cta-button-nav:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

/* Mobile Navigation Hamburger */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 25px;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero-left {
  background-color: var(--bg-primary); /* Dark Green */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 100px 80px 60px 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 520px;
  width: 100%;
  text-align: left;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.hero-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background-color: var(--text-primary);
  color: #1C3226; /* Dark green text inside button */
  padding: 1rem 2.2rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--text-primary);
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-secondary {
  padding: 1rem 2.2rem;
  border: 1px solid rgba(250, 246, 240, 0.25);
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: rgba(250, 246, 240, 0.05);
}

.hero-right {
  height: 100%;
  position: relative;
  z-index: 1;
  background-color: #0D1A13;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 135px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: floatBadge 6s ease-in-out infinite alternate;
}

.badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.16); /* Scale up to crop out the black square background */
}

@keyframes floatBadge {
  0% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) translateY(-10px) rotate(3deg); }
}

/* --- Section Layouts --- */
.section {
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid rgba(44, 42, 41, 0.05);
}

.section-header {
  max-width: 700px;
  margin: 0 auto var(--spacing-lg) auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --- Heritage / About Section --- */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.heritage-visual {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 550px;
}

.h-img-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
  z-index: 2;
}

.h-img-2 {
  grid-column: 5 / 13;
  grid-row: 5 / 13;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
  z-index: 1;
}

.h-img-1 img, .h-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.h-img-1:hover img, .h-img-2:hover img {
  transform: scale(1.04);
}

.heritage-content {
  padding-left: var(--spacing-md);
}

.heritage-lead {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.heritage-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  border-top: 1px solid rgba(44, 42, 41, 0.08);
  padding-top: var(--spacing-md);
}

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-gold);
}

.stat-item p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- Dual Brands Showcase --- */
.brands-showcase {
  background-color: var(--bg-secondary);
}

.brands-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.brand-card {
  background-color: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  border: var(--border-thick);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.brand-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: var(--transition-fast);
}

.brand-card.highveld::after {
  background-color: var(--color-gold);
}

.brand-card.littlebee::after {
  background-color: var(--color-sage);
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44, 42, 41, 0.05);
  border-color: rgba(44, 42, 41, 0.15);
}

.brand-image-wrapper {
  height: 350px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brand-logo-badge {
  position: absolute;
  bottom: -25px;
  right: var(--spacing-md);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  z-index: 10;
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.brand-card:hover .brand-image {
  transform: scale(1.05);
}

.brand-info {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-tag {
  font-size: 0.75rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  background-color: var(--bg-tertiary);
  color: var(--text-muted);
}

.brand-card.highveld .brand-tag {
  background-color: var(--color-gold-light);
  color: var(--color-gold-hover);
}

.brand-card.littlebee .brand-tag {
  background-color: var(--color-sage-light);
  color: var(--color-sage);
}

.brand-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.brand-features {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid rgba(44, 42, 41, 0.05);
  padding-top: var(--spacing-sm);
}

.brand-features li {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-features li::before {
  content: "•";
  color: var(--color-gold);
  font-size: 1.2rem;
}

.brand-card.littlebee .brand-features li::before {
  color: var(--color-sage);
}

/* --- Honey Varieties Tasting Gallery --- */
.varieties-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(44, 42, 41, 0.1);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-md);
}

.variety-card {
  background-color: var(--bg-secondary);
  border: var(--border-thick);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.variety-card:hover {
  box-shadow: 0 15px 40px rgba(44, 42, 41, 0.04);
  border-color: rgba(44, 42, 41, 0.15);
}

.variety-image-box {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.variety-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.variety-card:hover .variety-image-box img {
  transform: scale(1.05);
}

.variety-color-bar {
  height: 4px;
  width: 100%;
}

.variety-details {
  padding: var(--spacing-md);
}

.variety-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--spacing-xs);
}

.variety-name {
  font-size: 1.4rem;
  color: var(--text-primary);
}

.variety-tasting-scale {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold-hover);
  font-weight: 600;
}

.variety-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.tasting-notes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(44, 42, 41, 0.05);
  padding-top: var(--spacing-xs);
}

.note-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background-color: var(--bg-primary);
  color: var(--text-muted);
  border: 1px solid rgba(44, 42, 41, 0.04);
}

/* --- Bee Products & Farm Shop --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.product-item-card {
  background: var(--bg-secondary);
  border: var(--border-thick);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-item-card:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 42, 41, 0.15);
  box-shadow: 0 15px 45px rgba(0,0,0,0.03);
}

.product-item-img {
  height: 280px;
  overflow: hidden;
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-item-card:hover .product-item-img img {
  transform: scale(1.05);
}

.product-item-info {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-item-title {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

.product-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

/* --- Pollination Services Section --- */
.pollination-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.pollination-section .section-title {
  color: var(--text-light);
}

.pollination-section .section-subtitle {
  color: rgba(250, 246, 240, 0.7);
}

.pollination-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.pollination-content {
  padding-right: var(--spacing-md);
}

.pollination-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.85);
  margin-bottom: var(--spacing-md);
}

.pollination-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.highlight-box {
  background: rgba(250, 246, 240, 0.04);
  border: 1px solid rgba(250, 246, 240, 0.08);
  padding: var(--spacing-sm);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.highlight-box:hover {
  background: rgba(250, 246, 240, 0.07);
}

.highlight-box h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.highlight-box p {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.75);
}

.pollination-visual {
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.pollination-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.pollination-visual:hover img {
  transform: scale(1.04);
}

/* --- Contact & Farm Shop Visit --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--spacing-lg);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block-item h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.info-block-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-block-item a:hover {
  color: var(--color-gold-hover);
}

.operating-hours-box {
  background-color: var(--bg-secondary);
  border: var(--border-thick);
  padding: var(--spacing-md);
  border-radius: 8px;
  margin-top: 2rem;
}

.operating-hours-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
  border-bottom: 1px solid rgba(44, 42, 41, 0.08);
  padding-bottom: var(--spacing-xs);
}

.operating-hours-box ul {
  list-style: none;
}

.operating-hours-box li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.operating-hours-box li span.day {
  font-weight: 500;
  color: var(--text-primary);
}

/* Premium Form Styles */
.contact-form-panel {
  background: var(--bg-secondary);
  border: var(--border-thick);
  padding: var(--spacing-md);
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.02);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(44, 42, 41, 0.12);
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: var(--bg-secondary);
  box-shadow: 0 5px 15px rgba(212, 155, 65, 0.05);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  font-size: 0.85rem;
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  color: var(--color-sage);
  display: block;
}

/* --- Footer --- */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-lg) 0 var(--spacing-md) 0;
  border-top: 1px solid rgba(250, 246, 240, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
  max-width: 320px;
  line-height: 1.7;
}

.footer-links h4, .footer-subscribe h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 0.6rem;
}

.footer-nav-list a {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
  transition: var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-subscribe p {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
  margin-bottom: var(--spacing-sm);
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.subscribe-input {
  flex-grow: 1;
  background-color: rgba(250, 246, 240, 0.05);
  border: 1px solid rgba(250, 246, 240, 0.1);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: white;
}

.subscribe-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.subscribe-btn {
  background-color: var(--color-gold);
  color: var(--bg-dark);
  font-weight: 600;
  padding: 0 1.2rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.subscribe-btn:hover {
  background-color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.05);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.5);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon-link {
  color: rgba(250, 246, 240, 0.6);
  font-size: 0.9rem;
}

.social-icon-link:hover {
  color: var(--color-gold);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  :root {
    --spacing-xl: 5rem;
  }

  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    height: auto;
    min-height: 100vh;
  }

  .hero-left {
    justify-content: center;
    padding: 120px 24px 80px 24px;
  }

  .hero-right {
    height: 350px;
  }

  .hero-center-badge {
    width: 100px;
    height: 100px;
    top: 60%;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .heritage-visual {
    height: 450px;
  }

  .heritage-content {
    padding-left: 0;
  }

  .brands-container {
    grid-template-columns: 1fr;
  }

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

  .pollination-grid {
    grid-template-columns: 1fr;
  }

  .pollination-visual {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* JS will toggle active class */
  }

  .burger {
    display: flex;
  }

  /* Mobile overlay navigation */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(48, 82, 65, 0.88);
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid var(--border-color);
    gap: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* Flying Bee styling */
.flying-bee {
  position: fixed;
  left: 0;
  width: 55px;
  height: auto;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.9;
  transform: translate(105vw, 0); /* Start hidden offscreen to the right */
}

/* Path 1: Higher altitude, 16-second flight */
.flying-bee.path-1 {
  animation: flyBeePath1 16s linear forwards;
}

/* Path 2: Lower altitude, slower 19-second flight */
.flying-bee.path-2 {
  animation: flyBeePath2 19s linear forwards;
}

@keyframes flyBeePath1 {
  0% {
    transform: translate(105vw, 0) scale(1) rotate(0deg);
    top: 25vh;
  }
  25% {
    transform: translate(75vw, -6vh) scale(0.95) rotate(-10deg);
    top: 25vh;
  }
  50% {
    transform: translate(45vw, 5vh) scale(1.05) rotate(8deg);
    top: 25vh;
  }
  75% {
    transform: translate(15vw, -4vh) scale(0.95) rotate(-6deg);
    top: 25vh;
  }
  100% {
    transform: translate(-15vw, 0) scale(1) rotate(0deg);
    top: 25vh;
  }
}

@keyframes flyBeePath2 {
  0% {
    transform: translate(105vw, 0) scale(0.9) rotate(-5deg);
    top: 60vh;
  }
  33% {
    transform: translate(70vw, -12vh) scale(0.95) rotate(10deg);
    top: 60vh;
  }
  66% {
    transform: translate(35vw, 8vh) scale(0.9) rotate(-8deg);
    top: 60vh;
  }
  100% {
    transform: translate(-15vw, 0) scale(0.9) rotate(0deg);
    top: 60vh;
  }
}

