/* ==========================================
   FRESH & TASTY JUICES — Main Stylesheet
   Brand: Deep Green #1a4d2e / Gold #f0a500
   ========================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --green-900: #0d2e1a;
  --green-800: #1a4d2e;
  --green-700: #22623a;
  --green-600: #2d7a49;
  --green-100: #e8f5ee;
  --green-50:  #f0faf4;

  --gold-600:  #c8860a;
  --gold-500:  #f0a500;
  --gold-400:  #f5bc30;
  --gold-300:  #fad46a;
  --gold-100:  #fef5d9;

  --white:     #ffffff;
  --off-white: #fafaf8;
  --gray-50:   #f7f7f5;
  --gray-100:  #eeeeea;
  --gray-200:  #d8d8d2;
  --gray-400:  #9a9a94;
  --gray-600:  #5a5a54;
  --gray-900:  #1a1a18;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 36px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 56px rgba(0,0,0,.18);

  --transition-fast:  150ms ease;
  --transition-base:  280ms ease;
  --transition-slow:  500ms ease;

  --section-pad: clamp(40px, 5vw, 64px);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

em { font-style: italic; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 40px);
}

.section { padding: var(--section-pad) 0; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(240, 165, 0, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-tag.light {
  color: var(--gold-400);
  background: rgba(240, 165, 0, 0.18);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--green-800);
  margin-bottom: 12px;
}

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

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

.section-subtitle {
  font-size: 0.98rem;
  color: var(--gray-600);
  max-width: 580px;
}

.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
  border-color: var(--gold-500);
  box-shadow: 0 4px 14px rgba(240, 165, 0, 0.32);
}

.btn-primary:hover {
  background: var(--gold-400);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

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

.btn-flavour {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  padding: 10px 18px;
  font-size: 0.88rem;
  margin-top: auto;
  transition: background var(--transition-base), transform var(--transition-fast);
}

.btn-flavour:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  justify-content: center;
  flex: 1;
}

.btn-whatsapp:hover {
  background: #1db954;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-wa-outline {
  background: transparent;
  color: #25D366;
  border-color: #25D366;
}

.btn-wa-outline:hover {
  background: rgba(37, 211, 102, 0.1);
}

.wa-icon { width: 18px; height: 18px; flex-shrink: 0; }


/* ======================================
   NAVBAR
   ====================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

.navbar.scrolled {
  background: rgba(26, 77, 46, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  padding: 8px 0;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo { display: flex; align-items: center; }

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  transition: transform var(--transition-fast);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition-base);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-home-link {
  color: var(--gold-300);
  font-weight: 600;
}
.nav-home-link:hover {
  color: var(--gold-400);
}

.nav-link.nav-cta {
  background: var(--gold-500);
  color: var(--green-900);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
  background: var(--gold-400);
  color: var(--green-900);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}


/* ======================================
   HERO
   ====================================== */
.hero {
  min-height: calc(100vh - 40px);
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, #1e5e35 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 95px clamp(16px, 3.5vw, 40px) 40px;
  gap: 36px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(240,165,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(240,165,0,0.1);
  top: -120px;
  right: -120px;
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 8px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title-accent {
  color: var(--gold-500);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  margin-bottom: 12px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-desc {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 460px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
}

.hero-image-panel {
  flex: 1;
  max-width: 480px;
  position: relative;
  z-index: 1;
  animation: fadeInRight 0.9s ease 0.3s both;
}

.hero-catalogue-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: rotate(1.2deg);
  transition: transform var(--transition-slow);
}

.hero-catalogue-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  animation: bounce 2s infinite;
  z-index: 1;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}


/* ======================================
   MARQUEE STRIP
   ====================================== */
.marquee-strip {
  background: var(--gold-500);
  overflow: hidden;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-900);
  padding: 0 20px;
}

.marquee-track .sep {
  color: var(--green-700);
  padding: 0 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ======================================
   STORY SECTION
   ====================================== */
.story-section { background: var(--off-white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}

.story-images {
  position: relative;
}

.story-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-img-main img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-img-main:hover img { transform: scale(1.04); }

.story-img-secondary {
  position: absolute;
  bottom: -20px;
  right: -16px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.story-img-secondary img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.story-badge-float {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

.story-content { }

.story-lead {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--green-800);
  margin-bottom: 12px;
  line-height: 1.6;
}

.story-body {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 1.65;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 1px;
}

.value-item p {
  font-size: 0.84rem;
  color: var(--gray-400);
}


/* ======================================
   FLAVOURS SECTION
   ====================================== */
.flavours-section { background: var(--gray-50); }

.flavours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.flavour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.flavour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.flavour-card-header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.passion-bg  { background: linear-gradient(135deg, #f97316, #fb923c, #fde68a); }
.lemon-bg    { background: linear-gradient(135deg, #bef264, #a3e635, #fde047); }
.beetroot-bg { background: linear-gradient(135deg, #be185d, #9d174d, #ec4899); }
.hibiscus-bg { background: linear-gradient(135deg, #dc2626, #b91c1c, #f87171); }

.flavour-emoji {
  font-size: 3.2rem;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.18));
  animation: float 3s ease-in-out infinite;
}

.flavour-card:nth-child(2) .flavour-emoji { animation-delay: 0.5s; }
.flavour-card:nth-child(3) .flavour-emoji { animation-delay: 1s; }
.flavour-card:nth-child(4) .flavour-emoji { animation-delay: 1.5s; }

.flavour-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--white);
  color: var(--green-800);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.flavour-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.flavour-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-800);
}

.flavour-desc {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.flavour-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.flavour-ingredients span {
  font-size: 0.70rem;
  font-weight: 600;
  background: var(--green-50);
  color: var(--green-800);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.flavour-pricing {
  border-top: 1px solid var(--gray-100);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}

.price-size { color: var(--gray-600); }

.price-amount { font-weight: 700; color: var(--green-800); }

.highlight-row {
  background: var(--gold-100);
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  margin: 0 -4px;
}

.highlight-row .price-amount { color: var(--gold-600); }


/* ======================================
   OCCASIONS SECTION
   ====================================== */
.occasions-section { background: var(--off-white); }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.occasion-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.occasion-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.occasion-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.occasion-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}

.occasion-card p {
  font-size: 0.86rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.occasion-card.featured-occasion {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border: 1px solid rgba(240, 165, 0, 0.4);
  box-shadow: var(--shadow-md);
}

.occasion-card.featured-occasion h3 {
  color: var(--gold-400);
}

.occasion-card.featured-occasion p {
  color: rgba(255, 255, 255, 0.9);
}

.occasions-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  height: 250px;
}

.occ-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.occ-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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


/* ======================================
   BUSINESS SECTION
   ====================================== */
.business-section {
  background: linear-gradient(135deg, var(--green-900) 0%, #163d26 60%, var(--green-800) 100%);
  position: relative;
  overflow: hidden;
}

.business-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(240,165,0,0.07);
  top: -200px;
  left: -150px;
  pointer-events: none;
}

.business-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 28px 28px;
}

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

.business-lead {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.65;
}

.supply-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  margin-bottom: 20px;
}

.supply-col ul { display: flex; flex-direction: column; gap: 6px; }

.supply-col li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 7px;
}

.supply-col li::before {
  content: '✓';
  color: var(--gold-500);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.bulk-callout {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 22px;
}

.bulk-callout h4 {
  color: var(--gold-400);
  font-size: 0.90rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bulk-callout p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.business-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.business-image:hover img { transform: scale(1.03); }


/* ======================================
   WHY SECTION
   ====================================== */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.why-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 1px solid var(--gray-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.why-icon {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Farm to bottle */
.farm-to-bottle {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--green-50);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid rgba(26,77,46,0.1);
}

.ftb-content { }

.ftb-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-800);
  margin-bottom: 12px;
}

.ftb-content p {
  font-size: 0.90rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 10px;
}

.text-link {
  color: var(--green-700);
  font-weight: 600;
  border-bottom: 1px solid var(--green-700);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.text-link:hover {
  color: var(--gold-600);
  border-color: var(--gold-600);
}

.ftb-tagline {
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0.02em;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold-500);
}

.ftb-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ftb-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ftb-image:hover img { transform: scale(1.03); }


/* ======================================
   EVENTS STRIP
   ====================================== */
.events-strip {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 60%, var(--gold-400) 100%);
  padding: clamp(36px, 4.5vw, 52px) 0;
}

.events-content {
  display: flex;
  align-items: center;
  gap: 36px;
}

.events-left { flex: 1; }

.events-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--green-900);
  margin-bottom: 8px;
}

.events-desc {
  font-size: 0.98rem;
  color: var(--green-800);
  margin-bottom: 14px;
}

.events-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.events-tags span {
  background: rgba(26,77,46,0.15);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(26,77,46,0.22);
}

.events-note {
  font-size: 0.84rem;
  color: var(--green-800);
  font-style: italic;
}

.events-cta-panel {
  flex-shrink: 0;
  text-align: center;
  background: var(--green-900);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
}

.events-cta-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.events-cta-subtext {
  font-size: 0.92rem;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.events-btn { font-size: 0.94rem; padding: 12px 26px; }


/* ======================================
   ORDER SECTION
   ====================================== */
.order-section { background: var(--gray-50); }

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}

.order-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-type-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border: 1px solid var(--gray-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.order-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-600);
}

.order-type-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.order-type-card h3 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 6px;
}

.order-type-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Contact Panel */
.contact-panel { position: sticky; top: 90px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.contact-logo {
  width: 64px;
  margin: 0 auto 14px;
}

.contact-logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-800);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-800);
  text-align: center;
  margin-bottom: 4px;
}

.contact-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-number-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,77,46,0.12);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.contact-number-link:hover {
  background: var(--green-100);
  transform: translateX(4px);
}

.contact-icon { font-size: 1.25rem; }

.contact-label {
  display: block;
  font-size: 0.68rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-number {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-800);
}

.whatsapp-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.bulk-order-info {
  background: var(--gold-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border: 1px solid var(--gold-300);
}

.bulk-order-info h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.order-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.order-info-tags span {
  font-size: 0.70rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-600);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-300);
}


/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.footer-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 28px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 28px;
  position: relative;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-phone {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-300);
  transition: color var(--transition-fast);
}

.footer-phone:hover { color: var(--gold-500); }

.footer-links-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

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

.footer-links-col a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-links-col a:hover { color: var(--white); }

.footer-parent-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-parent-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  color: var(--gold-400);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-parent-link:hover {
  background: rgba(240,165,0,0.2);
  color: var(--gold-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-bottom p {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-right { color: rgba(255,255,255,0.35); }


/* ======================================
   WHATSAPP FLOAT
   ====================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  background: #25D366;
  border-radius: var(--radius-full);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulseGreen 2.5s infinite;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

.wa-float-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

@keyframes pulseGreen {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,0.42); }
  50%  { box-shadow: 0 6px 36px rgba(37,211,102,0.60); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,0.42); }
}


/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ======================================
   RESPONSIVE — TABLET (<= 1024px)
   ====================================== */
@media (max-width: 1024px) {
  .container { padding: 0 clamp(16px, 3vw, 32px); }
  .flavours-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
  .footer-links-col:last-child { grid-column: span 3; }
  .business-grid { gap: 28px; }
  .farm-to-bottle { gap: 28px; padding: 28px; }
  .order-grid { gap: 24px; }
}


/* ======================================
   RESPONSIVE — SMALL TABLET / MOBILE LANDSCAPE (<= 860px)
   ====================================== */
@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 36px;
    gap: 28px;
  }

  .hero-content { max-width: 100%; }
  .hero-image-panel {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 20px; }
  .hero-catalogue-img { transform: none; }
  .hero-scroll-indicator { display: none; }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-images {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .story-img-main img { height: 260px; }
  .story-img-secondary {
    width: 160px;
    bottom: -12px;
    right: -10px;
  }
  .story-img-secondary img { height: 110px; }

  .business-grid { grid-template-columns: 1fr; }
  .business-image {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .events-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .events-tags { justify-content: center; }
  .events-cta-panel { width: 100%; }

  .order-grid { grid-template-columns: 1fr; }
  .contact-panel { position: static; max-width: 560px; margin: 0 auto; width: 100%; }

  .farm-to-bottle {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .ftb-image {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .ftb-image img { height: 220px; }

  .occasions-images {
    grid-template-columns: 1.2fr 1fr;
    height: 200px;
  }
  .occ-img-3 { display: none; }
}


/* ======================================
   RESPONSIVE — MOBILE (<= 640px)
   ====================================== */
@media (max-width: 640px) {
  :root {
    --section-pad: 36px;
  }

  body { font-size: 15px; }

  .container { padding: 0 16px; }

  /* Navbar Mobile Menu */
  .navbar { padding: 10px 0; }
  .logo-img { width: 42px; height: 42px; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 46, 26, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
    padding: 24px;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .nav-link.nav-cta {
    font-size: 1.1rem;
    padding: 12px 32px;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero */
  .hero {
    padding-top: 75px;
    padding-bottom: 28px;
    gap: 20px;
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1.1;
  }

  .hero-subtitle { font-size: 0.95rem; }
  .hero-desc { font-size: 0.88rem; margin-bottom: 18px; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  .hero-stats {
    gap: 14px;
    margin-bottom: 8px;
  }

  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.68rem; }
  .stat-divider { height: 24px; }

  .hero-image-panel { max-width: 290px; }

  /* Grids to Single Column */
  .flavours-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
  .occasions-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .order-types { grid-template-columns: 1fr; gap: 10px; }
  .supply-list { grid-template-columns: 1fr; gap: 6px; }

  /* Flavour Card */
  .flavour-card-header { height: 100px; }
  .flavour-emoji { font-size: 2.8rem; }
  .flavour-card-body { padding: 14px; }
  .flavour-name { font-size: 1.2rem; }

  /* Occasions Images */
  .occasions-images {
    height: 170px;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .occ-img-2, .occ-img-3 { display: none; }

  /* Business Section */
  .business-lead { font-size: 0.92rem; }
  .bulk-callout { padding: 14px 16px; }

  /* Events Strip */
  .events-strip { padding: 28px 0; }
  .events-title { font-size: 1.5rem; }
  .events-tags span { font-size: 0.74rem; padding: 4px 10px; }
  .events-cta-panel { padding: 20px 18px; }
  .events-cta-text { font-size: 1.25rem; }
  .events-btn { width: 100%; justify-content: center; }

  /* Order & Contact */
  .contact-card { padding: 22px 16px; border-radius: var(--radius-lg); }
  .contact-numbers { gap: 8px; }
  .contact-number-link { padding: 10px 12px; }
  .contact-number { font-size: 0.95rem; }
  .whatsapp-btns { gap: 8px; }
  .btn-whatsapp { padding: 12px 14px; font-size: 0.88rem; width: 100%; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 20px;
  }
  .footer-links-col:last-child { grid-column: span 1; }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 14px 0;
  }

  /* Floating WhatsApp on Mobile */
  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 12px;
    border-radius: 50%;
  }
  .wa-float-label { display: none; }
  .wa-float svg { width: 26px; height: 26px; }
}


/* ======================================
   RESPONSIVE — EXTRA SMALL MOBILE (<= 380px)
   ====================================== */
@media (max-width: 380px) {
  .hero-title { font-size: 2.05rem; }
  .section-title { font-size: 1.65rem; }
  .hero-stats { gap: 8px; }
  .hero-image-panel { max-width: 250px; }
  .story-img-secondary { display: none; }
}

