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

:root {
  --forest:   #1C501C;
  --mid:      #2E7D32;
  --lime:     #82C846;
  --cream:    #FCFAF0;
  --cream2:   #F5F3E8;
  --charcoal: #181E14;
  --grey:     #F0F2EC;
  --white:    #FFFFFF;
  --sans:     'Helvetica Neue', Arial, sans-serif;
  --serif:    'Georgia', 'Times New Roman', serif;
  --nav-h:    68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── NAV ─────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(252, 250, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 80, 28, 0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--forest); }

.btn-nav {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--mid); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: 0.2s;
}

.mob-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid rgba(28,80,28,0.1);
  padding: 8px 0 16px;
}
.mob-menu.open { display: flex; }

.mob-menu a {
  display: block;
  padding: 14px 6%;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(28,80,28,0.06);
}
.mob-menu a:last-child { border-bottom: none; }

.btn-mob {
  margin: 12px 6% 0;
  background: var(--forest);
  color: var(--white) !important;
  text-align: center;
  border-radius: 40px;
  padding: 13px !important;
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  margin-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 8%;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130,200,70,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--forest);
  margin-bottom: 22px;
}
.eyebrow-pod { width: 18px; height: auto; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero h1 em { color: var(--forest); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: #4a5a40;
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--forest);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--mid); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  padding: 11px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

/* hero right side */
.hero-packs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.pack-float {
  width: 340px;
  max-width: 100%;
  filter: drop-shadow(0 10px 28px rgba(28,80,28,0.18));
  animation: float 4s ease-in-out infinite;
}
.pack-float.p2 { animation-delay: -1.3s; margin-left: 36px; }
.pack-float.p3 { animation-delay: -2.6s; }

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

.hero-pea {
  position: absolute;
  opacity: 0.8;
}
.hp1 { width: 22px; top: 6%;  right: 10%; }
.hp2 { width: 14px; top: 40%; left: 2%; }
.hp3 { width: 18px; bottom: 12%; right: 4%; }

.hero-vine {
  position: absolute;
  width: 90px;
  bottom: 0; right: -20px;
  opacity: 0.5;
}

/* ── TICKER ───────────────────────────────────────────────────────── */
.ticker {
  background: var(--forest);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  padding: 0 20px;
}
.ticker-track .dot { color: var(--lime); padding: 0 4px; }

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

/* ── SECTION BASE ─────────────────────────────────────────────────── */
section { padding: 96px 8%; }

.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--forest);
  margin-bottom: 16px;
}
.centered { text-align: center; }

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.sec-body {
  font-size: 1rem;
  color: #5a6a50;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.centered.sec-body { margin-left: auto; margin-right: auto; }

/* ── ABOUT ────────────────────────────────────────────────────────── */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cracker-img {
  width: 85%;
  max-width: 420px;
  border-radius: 50%;
}

/* ── PRODUCTS ─────────────────────────────────────────────────────── */
.products {
  background: var(--cream2);
}
.products-inner { max-width: 960px; margin: 0 auto; }

.flavour-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 56px;
}

.flavour-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 2px 20px rgba(28,80,28,0.07);
}
.flavour-card.reverse { direction: rtl; }
.flavour-card.reverse > * { direction: ltr; }

.flavour-card img {
  width: 100%;
  object-fit: contain;
  max-height: 130px;
  filter: drop-shadow(0 6px 16px rgba(28,80,28,0.15));
  transition: transform 0.3s;
}
.flavour-card:hover img { transform: scale(1.03); }

.flavour-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.flavour-info p {
  font-size: 0.95rem;
  color: #5a6a50;
  line-height: 1.7;
  margin-bottom: 16px;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}
.badges li {
  background: var(--cream2);
  border: 1px solid rgba(28,80,28,0.15);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── STOCKISTS ────────────────────────────────────────────────────── */
.stockists { background: var(--grey); }

.stockist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.stockist-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  text-decoration: none;
  color: var(--charcoal);
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.stockist-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,80,28,0.1);
}

.stockist-logo-wrap {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nw { background: #cc0000; }
.pk { background: #f5d800; }
.fs { background: #e8640a; }

.store-letter {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}
.pk .store-letter { color: #1a1a1a; }

.stockist-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stockist-info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}
.stockist-info span {
  font-size: 12px;
  color: #7a8a70;
}

.stockist-arrow {
  font-size: 18px;
  color: var(--forest);
  font-weight: 300;
  transition: transform 0.2s;
}
.stockist-card:hover .stockist-arrow { transform: translateX(4px); }

/* ── INSTAGRAM ────────────────────────────────────────────────────── */
.instagram { background: var(--cream); text-align: center; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 36px;
}

.ig-cell {
  aspect-ratio: 1;
  background: var(--grey);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(28,80,28,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ig-cell:hover img { transform: scale(1.04); transition: 0.3s; }

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 40px;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}
.btn-ig:hover { background: var(--mid); transform: translateY(-1px); }

.ig-note {
  margin-top: 14px;
  font-size: 12px;
  color: #8a9a7a;
}

/* ── CONTACT ──────────────────────────────────────────────────────── */
.contact { background: var(--forest); color: var(--white); }
.contact .sec-eyebrow { color: var(--lime); }
.contact h2 { color: var(--white); }
.contact .sec-body { color: rgba(255,255,255,0.65); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-details { margin-top: 8px; }

.contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.clabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  min-width: 72px;
  padding-top: 2px;
  flex-shrink: 0;
}
.contact-row a { color: var(--lime); text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }

.contact-note {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 28px;
}
.contact-note h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.divider {
  width: 36px; height: 2px;
  background: var(--lime);
  margin: 20px 0;
}

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer {
  background: #0e160d;
  color: rgba(255,255,255,0.38);
  text-align: center;
  padding: 36px 5%;
  font-size: 13px;
}
.footer-logo {
  height: 28px;
  width: auto;
  margin: 0 auto 14px;
  opacity: 0.55;
  filter: brightness(10);
}
footer p { margin-bottom: 6px; }
footer a { color: rgba(255,255,255,0.38); text-decoration: none; }
footer a:hover { color: var(--lime); }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 48px 6% 60px; }
  .hero-packs { order: -1; justify-content: center; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .pack-float { width: 180px; }
  .pack-float.p2 { margin-left: 0; }
  .hero-vine { display: none; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .cracker-img { max-width: 300px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 6%; }
  .flavour-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .flavour-card.reverse { direction: ltr; }
  .stockist-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .pack-float { width: 140px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .pack-float { animation: none; }
  .ticker-track { animation-play-state: paused; }
}
