@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Tokens */
  --green-forest: #0B2E14;
  --green-brand: #0BAE03;
  --green-deep: #13780D;
  --orange: #F5A623;
  --gold: #E8AB15;
  --ink: #231F20;
  --gray: #939598;
  --cream: #F7F5F0;
  --white: #ffffff;
  
  /* Additional Utility Colors */
  --cream-dark: #EFECE3;
  --green-forest-light: #164220;
  --shadow-sm: 0 4px 6px -1px rgba(11, 46, 20, 0.05), 0 2px 4px -1px rgba(11, 46, 20, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 46, 20, 0.1), 0 4px 6px -2px rgba(11, 46, 20, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(11, 46, 20, 0.15), 0 10px 10px -5px rgba(11, 46, 20, 0.04);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  --font-display: var(--font-primary);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Layout Spacing */
  --section-padding: 70px 0;
  --section-padding-mobile: 40px 0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--green-forest);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background-color: var(--green-brand);
  border-radius: var(--radius-full);
}

h2.center-align {
  display: block;
  text-align: center;
}

h2.center-align::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
}

p.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--ink);
}

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

a:hover {
  color: var(--green-brand);
}

/* Utilities / Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-forest { color: var(--green-forest); }
.text-orange { color: var(--orange); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-forest { background-color: var(--green-forest); color: var(--cream); }
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }

/* Badges & Trust Markers */
.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: var(--green-forest-light);
  color: var(--gold);
  border: 1px solid rgba(232, 171, 21, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge.light {
  background-color: rgba(11, 174, 3, 0.1);
  color: var(--green-deep);
  border-color: rgba(11, 174, 3, 0.2);
}

/* Buttons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  outline: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--green-brand);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 174, 3, 0.3);
}

.btn-primary:hover {
  background-color: var(--green-deep);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(19, 120, 13, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn-secondary:hover {
  background-color: var(--orange);
  color: var(--green-forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.2);
}

/* Focus Indicator */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 46, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 0;
  background-color: var(--green-forest);
  box-shadow: var(--shadow-lg);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  transition: var(--transition-smooth);
}

header.scrolled .header-container {
  padding: 6px 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 64px;
  width: auto;
  transition: var(--transition-smooth);
}

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

.nda-badge-micro {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  background-color: transparent;
  color: var(--gold);
  border: 1px solid rgba(232, 171, 21, 0.6);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-brand);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--white);
}

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

.nav-link.active {
  color: var(--white);
  font-weight: 600;
}

.nav-cart-btn::after {
  display: none !important;
}

.nav-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--white);
  color: var(--green-forest) !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.cart-icon {
  width: 18px;
  height: 18px;
  stroke: var(--green-forest);
  transition: var(--transition-smooth);
}

.nav-cart-btn:hover {
  background-color: var(--cream);
  color: var(--green-deep) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.nav-cart-btn:hover .cart-icon {
  stroke: var(--green-deep);
  transform: scale(1.05);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background-color: var(--cream);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  padding-top: 130px;
  padding-bottom: 70px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, var(--green-forest-light) 0%, var(--green-forest) 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(11, 174, 3, 0.03) 2px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background-color: var(--green-brand);
  border-radius: 50%;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 span {
  color: var(--orange);
}

.hero-subhead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(247, 245, 240, 0.9);
  margin-bottom: 2rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.product-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(11, 174, 3, 0.2) 0%, rgba(11, 174, 3, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.product-img {
  max-width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
  animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* About Section */
.about {
  padding: var(--section-padding);
  background-color: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  padding-right: 20px;
}

.about-details {
  margin-top: 2rem;
  display: grid;
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: rgba(11, 174, 3, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
}

.detail-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-forest);
  margin-bottom: 4px;
}

.detail-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 450px;
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--green-forest);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  z-index: 10;
}

.about-badge-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Product Section */
.product {
  padding: var(--section-padding);
  background-color: var(--white);
}

.product-intro {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 4rem;
}

.ingredient-card {
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--green-brand);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
  border-color: rgba(11, 174, 3, 0.2);
}

.ingredient-card:hover::before {
  transform: scaleX(1);
}

.ingredient-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--cream-dark);
}

.ingredient-card:hover .ingredient-icon-wrapper {
  background-color: rgba(11, 174, 3, 0.08);
  border-color: rgba(11, 174, 3, 0.15);
  transform: scale(1.08);
}

.ingredient-icon {
  width: 40px;
  height: 40px;
  color: var(--green-deep);
}

.ingredient-card h3 {
  color: var(--green-forest);
  margin-bottom: 12px;
}

.ingredient-card p {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0;
}

/* Product Meta (Format, Regulatory, Badges) */
.product-meta {
  background-color: var(--green-forest);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.meta-col {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 10px;
}

.meta-col:last-child {
  border-right: none;
}

.meta-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: var(--gold);
}

.meta-icon {
  width: 26px;
  height: 26px;
}

.meta-col h4 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.meta-col p {
  margin-bottom: 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.meta-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.meta-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(11, 174, 3, 0.15);
  color: var(--white);
  border: 1px solid rgba(11, 174, 3, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.meta-badge-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-brand);
}

/* Team Section */
.team {
  padding: var(--section-padding);
  background-color: var(--cream);
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Featured Group Photo Banner */
.team-banner {
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  position: relative;
}

.team-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px;
  transition: var(--transition-smooth);
}

.team-banner:hover .team-banner-img {
  transform: scale(1.02);
}

.team-banner-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 46, 20, 0.9) 0%, rgba(11, 46, 20, 0.4) 60%, transparent 100%);
  padding: 30px 40px 20px 40px;
  color: var(--white);
}

.team-banner-caption h3 {
  color: var(--gold);
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.team-banner-caption p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: rgba(247, 245, 240, 0.85);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 174, 3, 0.15);
}

.avatar-wrapper {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-forest) 0%, var(--green-forest-light) 100%);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  border: 3px solid var(--white);
  box-shadow: 0 4px 10px rgba(11, 46, 20, 0.15);
  transition: var(--transition-smooth);
  overflow: hidden; /* Ensure image circular boundary */
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-card:hover .avatar-wrapper {
  background: linear-gradient(135deg, var(--green-brand) 0%, var(--green-deep) 100%);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(11, 174, 3, 0.25);
}

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--green-forest);
  line-height: 1.3;
}

.team-card p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* Partners Section */
.partners {
  padding: 50px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.partners-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.partner-logo-wrapper {
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  filter: grayscale(100%) opacity(70%);
}

.partner-logo-wrapper:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.06);
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-right: 20px;
}

.contact-details-list {
  display: grid;
  gap: 30px;
  margin-top: 2.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon-wrapper {
  width: 52px;
  height: 52px;
  background-color: rgba(11, 174, 3, 0.1);
  color: var(--green-deep);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--green-forest);
  font-weight: 500;
  line-height: 1.5;
}

.contact-value a {
  color: inherit;
}

.contact-value a:hover {
  color: var(--green-brand);
}

/* Contact Form */
.contact-form-card {
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}

.contact-form-card h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-forest);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark);
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--green-brand);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 174, 3, 0.12);
  outline: none;
}

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

/* Form success message styling */
.form-status {
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.form-status.success {
  background-color: rgba(11, 174, 3, 0.12);
  color: var(--green-deep);
  border: 1px solid rgba(11, 174, 3, 0.25);
  display: block;
}

.form-status.error {
  background-color: rgba(245, 166, 35, 0.12);
  color: var(--orange);
  border: 1px solid rgba(245, 166, 35, 0.25);
  display: block;
}

/* Footer */
footer {
  background-color: var(--green-forest);
  padding: 80px 0 40px 0;
  color: var(--cream);
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 52px;
  width: auto;
  align-self: flex-start;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(247, 245, 240, 0.75);
  margin-bottom: 0;
  max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--orange);
}

.footer-nav {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-nav-link {
  color: rgba(247, 245, 240, 0.75);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.footer-nav-link:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-info {
  display: grid;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(247, 245, 240, 0.75);
}

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

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item a {
  color: inherit;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background-color: var(--gold);
  color: var(--green-forest);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-social-link svg {
  transition: var(--transition-smooth);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.55);
}



/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for scroll animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-meta {
    padding: 32px;
    gap: 24px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .partner-logo-wrapper {
    width: 150px;
    height: 75px;
  }
}

@media (max-width: 868px) {
  /* Header & Navigation */
  .nav-menu {
    position: fixed;
    top: 88px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 88px);
    background-color: var(--green-forest);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  header.scrolled .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .nav-menu.open {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Grid layouts collapse to single column */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-bottom: 60px;
  }
  
  .hero-eyebrow {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1; /* product image shows above text on mobile */
  }
  
  .product-img {
    max-height: 380px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .about-badge {
    position: static;
    margin-top: 20px;
    max-width: 100%;
    padding: 16px 20px;
  }
  
  .ingredients-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 3rem auto;
  }
  
  .product-meta {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 24px;
  }
  
  .meta-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
  }
  
  .meta-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-brand .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 568px) {
  body {
    font-size: 1rem;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  
  .hero {
    padding-top: 130px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .btn {
    width: 100%;
    padding: 12px 24px;
  }
  
  .btn-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .about-badge {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .team-banner-caption {
    padding: 16px;
  }
  
  .team-banner-caption h3 {
    font-size: 1.2rem;
  }
  
  .team-banner-caption p {
    font-size: 0.8rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .partner-logo-wrapper {
    width: 130px;
    height: 65px;
  }
  
  .contact-form-card {
    padding: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .product-img {
    animation: none;
  }
  .fade-in-up {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .team-card:hover, .ingredient-card:hover, .partner-logo-wrapper:hover, .btn:hover {
    transform: none !important;
  }
}
