:root {
  --color-dark-green: #1B4332;
  --color-green: #2D6A4F;
  --color-light-green: #40916C;
  --color-gold: #D4AF37;
  --color-light-gold: #E8C547;
  --color-white: #FFFFFF;
  --color-off-white: #F8F9FA;
  --color-cream: #FDF8E1;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark-green);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--color-off-white);
}

/* Decorative Elements */
.leaf-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.05;
  pointer-events: none;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 67, 50, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.5rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* CSS Flower Logo */
.css-flower {
  width: 40px;
  height: 40px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.css-flower:hover {
  transform: rotate(180deg);
}

.petal {
  position: absolute;
  width: 14px;
  height: 9px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-top: -4.5px;
  transform-origin: 0% 50%;
  box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.4);
}

.petal::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}

.petal:nth-child(1) { transform: rotate(0deg) translateX(5px); }
.petal:nth-child(2) { transform: rotate(72deg) translateX(5px); }
.petal:nth-child(3) { transform: rotate(144deg) translateX(5px); }
.petal:nth-child(4) { transform: rotate(216deg) translateX(5px); }
.petal:nth-child(5) { transform: rotate(288deg) translateX(5px); }

.flower-center {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 0 4px rgba(198, 163, 98, 0.5);
}

nav.scrolled .petal {
  background: rgba(42, 95, 65, 0.7);
}

nav.scrolled .petal::after {
  background: rgba(42, 95, 65, 0.4);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

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

.cta-button {
  background: var(--color-gold);
  color: var(--color-dark-green);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--color-light-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-green) 50%, var(--color-light-green) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero h1 span {
  color: var(--color-gold);
  font-style: italic;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-cta .cta-button.secondary {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.hero-cta .cta-button.secondary:hover {
  background: var(--color-white);
  color: var(--color-dark-green);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  fill: var(--color-white);
  opacity: 0.7;
}

/* Section Styling */
section {
  padding: 6rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-dark-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-green);
  max-width: 600px;
  margin: 0 auto;
}

/* Introduction Story */
.intro-story {
  background: var(--color-cream);
  position: relative;
}

.intro-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--color-off-white), var(--color-cream));
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-dark-green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.story-content p {
  margin-bottom: 1.5rem;
  color: #4a5568;
  font-size: 1.05rem;
}

.story-content .highlight {
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 90%;
  font-weight: 600;
  color: var(--color-dark-green);
}

.story-visual {
  position: relative;
}

.story-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 80px rgba(27, 67, 50, 0.1);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-dark-green), var(--color-gold));
}

.story-icon {
  width: 80px;
  height: 80px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.story-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-green);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-green);
  margin-top: 0.25rem;
}

/* Omega-3 Section */
.omega-section {
  background: var(--color-white);
  position: relative;
}

.omega-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.omega-intro {
  position: sticky;
  top: 120px;
}

.omega-intro h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--color-dark-green);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.omega-intro h2 span {
  color: var(--color-gold);
}

.omega-intro p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.omega-quote {
  background: var(--color-cream);
  border-left: 4px solid var(--color-gold);
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
}

.omega-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-dark-green);
  margin: 0;
}

.benefit-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card {
  background: var(--color-off-white);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateX(10px);
  border-color: var(--color-light-green);
  box-shadow: 0 15px 40px rgba(27, 67, 50, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--color-dark-green), var(--color-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.benefit-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-dark-green);
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #5a6a70;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Collagen Section */
.collagen-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-off-white) 100%);
  position: relative;
}

.collagen-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.collagen-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-dark-green);
  margin-bottom: 1rem;
}

.collagen-hero h2 span {
  color: var(--color-gold);
}

.collagen-hero p {
  font-size: 1.15rem;
  color: var(--color-green);
  max-width: 700px;
  margin: 0 auto;
}

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

.collagen-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.collagen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.collagen-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(27, 67, 50, 0.15);
}

.collagen-card-icon {
  width: 80px;
  height: 80px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.collagen-card:hover .collagen-card-icon {
  background: var(--color-dark-green);
}

.collagen-card-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--color-green);
  transition: fill 0.4s ease;
}

.collagen-card:hover .collagen-card-icon svg {
  fill: var(--color-white);
}

.collagen-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-dark-green);
  margin-bottom: 1rem;
}

.collagen-card p {
  color: #5a6a70;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Timeline/Story Section */
.journey-section {
  background: var(--color-dark-green);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(64, 145, 108, 0.3) 0%, transparent 70%);
}

.journey-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.journey-header .section-label {
  color: var(--color-light-gold);
}

.journey-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-light-green));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 30px);
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 30px);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--color-dark-green), 0 0 0 8px rgba(212, 175, 55, 0.3);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  max-width: 380px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Science Section */
.science-section {
  background: var(--color-white);
}

.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.science-block {
  background: var(--color-off-white);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.science-block::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--color-cream);
  border-radius: 50%;
  opacity: 0.5;
}

.science-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-dark-green);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.science-block h3 .icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.science-block h3 .icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
}

.science-list {
  list-style: none;
}

.science-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.science-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(27, 67, 50, 0.08);
}

.science-list .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--color-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.science-list .check svg {
  width: 14px;
  height: 14px;
  fill: var(--color-white);
}

.science-list span {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.cta-content h2 span {
  color: var(--color-gold);
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .cta-button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.cta-buttons .cta-button.outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.cta-buttons .cta-button.outline:hover {
  background: var(--color-white);
  color: var(--color-dark-green);
}

/* Footer */
footer {
  background: var(--color-dark-green);
  color: var(--color-white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand img {
  width: 60px;
  height: 60px;
}

.footer-brand-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .story-grid,
  .omega-content,
  .science-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .omega-intro {
    position: relative;
    top: 0;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1rem;
  }

  .nav-container {
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 67, 50, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  nav .cta-button {
    display: none;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .css-flower {
    width: 32px;
    height: 32px;
  }

  .petal {
    width: 11px;
    height: 7px;
  }

  .petal::after {
    width: 9px;
    height: 4px;
  }

  .flower-center {
    width: 6px;
    height: 6px;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Sections */
  section {
    padding: 3.5rem 1.25rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Story */
  .story-content h2 {
    font-size: 1.8rem;
  }

  .story-card {
    padding: 2rem;
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Omega */
  .omega-intro h2 {
    font-size: 2rem;
  }

  .benefit-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Collagen */
  .collagen-grid {
    grid-template-columns: 1fr;
  }

  .collagen-card {
    padding: 2rem;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 55px;
    padding-right: 0;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  /* Science */
  .science-block {
    padding: 2rem;
  }

  .science-block h3 {
    font-size: 1.4rem;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

  /* Impressum / Datenschutz */
  .impressum-section {
    padding-top: 6rem;
  }

  .impressum-content h2 {
    font-size: 1.4rem;
  }

  .impressum-content h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

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

  .benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .story-card {
    padding: 1.5rem;
  }

  .omega-quote {
    padding: 1rem 1.25rem;
  }

  .omega-quote p {
    font-size: 1.1rem;
  }

  footer {
    padding: 3rem 1.25rem 1.5rem;
  }
}

/* Animations on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Impressum Page */
.impressum-section {
  padding-top: 10rem;
}

.impressum-content {
  max-width: 800px;
  margin: 0 auto;
}

.impressum-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-dark-green);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.impressum-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-green);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.impressum-content p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
