/* ═══════════════════════════════════════════════
   Das BioWerk GmbH – styles.css
   Design system, layout, components
═══════════════════════════════════════════════ */

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

:root {
  /* ── Extracted from BioWerk GmbH logo ── */
  --green-dark:   #2B5E22;   /* outer circle / ring */
  --green-mid:    #4A8A2E;   /* hills & text */
  --green-light:  #6BAF38;   /* waves & sprouts */
  --green-pale:   #8FC455;   /* lightest hill highlight */
  --yellow:       #F5C520;   /* sun rays */
  --yellow-warm:  #E8921A;   /* sun centre / orange gold */
  --yellow-dark:  #C87A10;   /* hover accent */
  --cream:        #F8F5EE;
  --white:        #ffffff;
  --gray-100:     #f1ede4;
  --gray-200:     #e0dbd0;
  --gray-500:     #78705e;
  --gray-700:     #3a3322;
  --shadow-sm:    0 2px 8px rgba(43, 94, 34, .12);
  --shadow-md:    0 6px 24px rgba(43, 94, 34, .18);
  --shadow-lg:    0 16px 48px rgba(43, 94, 34, .24);
  --radius:       14px;
  --radius-lg:    24px;
  --transition:   .25s ease;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.15; }
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-wrapper { max-width: 1100px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-warm) 100%);
  color: var(--green-dark);
  font-family: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(245, 197, 32, .4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: -.2px;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--yellow-warm) 0%, var(--yellow-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 197, 32, .5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(43, 94, 34, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  border-bottom: 2px solid rgba(245, 197, 32, .3);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .3);
  transition: background var(--transition);
}
#navbar.scrolled { background: rgba(25, 55, 18, .99); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 88px;
  width: 88px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.nav-logo:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(245, 197, 32, .6);
}
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  line-height: 1.15;
}
.nav-logo-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .3px;
}
.nav-logo-text span { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--yellow); background: rgba(255,255,255,.06); }

.nav-cta {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-warm));
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all var(--transition) !important;
  margin-left: 8px;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--yellow-warm), var(--yellow-dark)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 146, 26, .4);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: rgba(43, 94, 34, .98);
  padding: 20px 5vw;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-bottom: 2px solid rgba(245, 197, 32, .35);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  max-height: 900px;
  padding-top: 100px;
  background: linear-gradient(135deg, #1a4214 0%, var(--green-dark) 35%, var(--green-mid) 70%, var(--green-light) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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");
  pointer-events: none;
}

.hero-content {
  padding: 80px 5vw 80px 8vw;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 184, 19, .15);
  border: 1px solid rgba(253, 184, 19, .4);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: '🌱'; }

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
h1 em {
  color: var(--yellow);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 32px;
  font-weight: 500;
}
.campaign-slogan {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.25;
  margin-bottom: 12px;
  text-shadow: 0 4px 16px rgba(245, 197, 32, .25);
  letter-spacing: -0.5px;
}

/* Glassmorphism price tag */
.price-glass {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 197, 32, .35);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .15), 0 0 0 1px rgba(245,197,32,.1);
}
.price-label { font-size: .8rem; font-weight: 700; color: rgba(255, 255, 255, .7); text-transform: uppercase; letter-spacing: .5px; }
.price-amount { font-size: 2.6rem; font-weight: 900; color: var(--yellow); line-height: 1; text-shadow: 0 2px 8px rgba(232,146,26,.3); }
.price-amount small { font-size: 1.6rem; }
.price-unit { font-size: .9rem; color: rgba(255, 255, 255, .6); margin-top: 2px; }
.price-divider { width: 1px; height: 48px; background: rgba(255, 255, 255, .2); flex-shrink: 0; }
.price-period { font-size: .75rem; color: rgba(255, 255, 255, .65); line-height: 1.6; }
.price-period strong { color: var(--yellow); font-size: .85rem; display: block; }

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

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(.85) saturate(1.1);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-dark) 0%, transparent 30%, transparent 70%, rgba(30, 61, 26, .4) 100%);
  pointer-events: none;
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .4);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-down::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(rgba(255, 255, 255, .3), transparent);
  margin-top: 2px;
}

/* ── PARTNERS STRIP ── */
.partners {
  background: var(--white);
  padding: 20px 5vw;
  border-bottom: 1px solid var(--gray-200);
}
.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.partner-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  white-space: nowrap;
}
.partner-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--green-light));
  flex-shrink: 0;
}

/* ── USP SECTION ── */
.usps { padding: 80px 5vw; background: var(--cream); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light), var(--yellow), var(--yellow-warm));
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp-icon { font-size: 2.4rem; margin-bottom: 16px; }
.usp-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.usp-card p  { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }

/* ── PRODUCTS ── */
.products { padding: 80px 5vw; background: var(--white); }
.products-inner { max-width: 1100px; margin: 0 auto; }

.product-tabs { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn {
  padding: 9px 20px;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: all var(--transition);
}
.tab-btn.active { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--white); border-color: var(--green-dark); }
.tab-btn:hover:not(.active),
.tab-btn:focus-visible:not(.active) { border-color: var(--green-dark); color: var(--green-dark); }

.tab-content { display: none; }
.tab-content.active { display: block; }
.table-scroll { overflow-x: auto; }

.order-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.order-table th {
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
}
.order-table th:last-child,
.order-table td:last-child { text-align: right; }
.order-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  vertical-align: top;
}
.order-table tr:last-child td { border-bottom: none; }
.order-table tr:nth-child(even) td { background: var(--gray-100); }
.order-table tr:hover td { background: rgba(253, 184, 19, .08); }

.price-cell { font-weight: 800; color: var(--green-dark); white-space: nowrap; }
.per-kg { font-size: .78rem; color: var(--gray-500); font-weight: 500; display: block; }
.badge-sorte {
  background: rgba(78, 158, 68, .12);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

.transport-note {
  margin-top: 20px;
  background: rgba(245, 197, 32, .1);
  border: 1px solid rgba(245, 197, 32, .4);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .88rem;
  color: var(--gray-700);
}
.transport-note strong { color: var(--green-dark); }

.order-deadline {
  margin-top: 12px;
  background: rgba(45, 90, 39, .07);
  border-left: 4px solid var(--green-dark);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: .88rem;
  color: var(--gray-700);
}

/* ── HERKUNFT ── */
.origin {
  padding: 80px 5vw;
  background: linear-gradient(160deg, #1a4214 0%, var(--green-dark) 60%, #1e4a18 100%);
  color: var(--white);
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.origin .section-label { color: var(--yellow); }
.origin .section-title { color: var(--white); }
.origin-intro { color: rgba(255, 255, 255, .65); margin-bottom: 28px; font-size: .97rem; line-height: 1.75; }

.origin-cards { display: flex; flex-direction: column; gap: 16px; }
.origin-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.origin-card:hover { background: rgba(255, 255, 255, .13); }
.origin-arrow { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.origin-card h4 { font-weight: 800; color: var(--yellow); margin-bottom: 4px; font-size: 1rem; }
.origin-card p  { font-size: .88rem; color: rgba(255, 255, 255, .75); line-height: 1.55; }

.cert-block {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cert-badge {
  background: rgba(245, 197, 32, .15);
  border: 1px solid rgba(245, 197, 32, .45);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .5px;
}
.cert-label { font-size: .78rem; color: rgba(255, 255, 255, .45); }

.origin-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.origin-img img { width: 100%; height: 420px; object-fit: cover; object-position: center top; filter: brightness(.9) saturate(1.1); }

/* ── GALLERY SECTION ── */
.gallery-section {
  padding: 80px 5vw;
  background: var(--white);
  overflow: hidden;
}
.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 94, 34, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── CAMPAIGN ── */
.campaign {
  padding: 60px 5vw;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-warm) 100%);
}
.campaign-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.campaign h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.campaign > .campaign-inner > p { font-size: 1.1rem; color: rgba(45, 90, 39, .8); margin-bottom: 32px; }
.campaign-dates { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.date-box {
  background: linear-gradient(160deg, var(--green-dark), #1a4214);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.d-label { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.d-val   { font-size: 1.4rem; font-weight: 900; color: var(--yellow); margin-top: 4px; }
.date-arrow { font-size: 1.8rem; color: var(--green-dark); }
.stock-note { margin-top: 20px; font-size: .85rem; font-weight: 700; color: rgba(45, 90, 39, .65); }

/* ── ABOUT ── */
.about { padding: 80px 5vw; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.about-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30, 61, 26, .9));
  padding: 32px 20px 20px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
}
.about-img-caption strong { color: var(--yellow); display: block; font-size: 1rem; margin-bottom: 2px; }

.about-content p { color: var(--gray-500); line-height: 1.75; margin-bottom: 16px; font-size: .97rem; }
.mgmt-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.mgmt-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: .88rem;
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
}
.mgmt-chip .role { font-size: .72rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.mgmt-chip .name { font-weight: 800; color: var(--green-dark); }

/* ── CONTACT ── */
.contact { padding: 80px 5vw; background: var(--cream); }
.contact-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro {
  color: var(--gray-500);
  font-size: 1rem;
  margin-bottom: 48px;
  margin-top: -8px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light), var(--yellow));
  opacity: 0;
  transition: opacity var(--transition);
}
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.contact-card:hover::before,
.contact-card:focus-visible::before { opacity: 1; }
.cc-icon { font-size: 2rem; }
.cc-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-500);
}
.cc-value {
  font-size: .92rem;
  font-weight: 700;
  color: var(--green-dark);
  word-break: break-word;
}
.contact-card--address { cursor: default; }
.contact-card--address:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--gray-200); }
.contact-card--address:hover::before { opacity: 0; }

.impressum {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid var(--gray-200);
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.impressum h3 { color: var(--green-dark); font-size: .9rem; font-weight: 800; margin-bottom: 8px; }
.impressum p  { font-size: .78rem; color: var(--gray-500); line-height: 1.75; }

/* Order form box */
.order-form-box {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.order-form-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.order-form-box > p { color: rgba(255, 255, 255, .65); font-size: .88rem; margin-bottom: 28px; }

/* Honeypot hidden */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px;
  letter-spacing: .3px;
}
.form-group label span { color: rgba(253, 184, 19, .8); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
  backdrop-filter: blur(4px);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, .35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(253, 184, 19, .2); }
.form-group select option { background: #2d4a28; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 88px; }

.form-group input.invalid,
.form-group textarea.invalid { border-color: #e55; }

.field-error {
  display: block;
  font-size: .75rem;
  color: #ff8080;
  margin-top: 4px;
  min-height: 1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-warm) 100%);
  color: var(--green-dark);
  font-family: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover,
.btn-submit:focus-visible {
  background: linear-gradient(135deg, var(--yellow-warm) 0%, var(--yellow-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 146, 26, .45);
}
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(45, 90, 39, .3);
  border-top-color: var(--green-dark);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success strong { color: var(--yellow); font-size: 1.1rem; display: block; margin-bottom: 8px; text-shadow: 0 1px 4px rgba(245,197,32,.3); }
.form-success p { color: rgba(255, 255, 255, .75); font-size: .9rem; }

/* ── FOOTER ── */
footer {
  background: #111a0f;
  padding: 40px 5vw 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 52px; width: 52px; object-fit: contain; border-radius: 50%; }
.footer-logo-text { color: var(--white); font-weight: 800; font-size: 1rem; }
.footer-logo-text span { color: var(--yellow); }
.footer-logo img {
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
  border: 2px solid rgba(245,197,32,.4);
}
.footer-tagline { color: rgba(255, 255, 255, .4); font-size: .8rem; margin-top: 2px; }

/* ── FOOTER NAV RESET (overrides any inherited nav styles) ── */
footer nav {
  position: static;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: auto;
  padding: 0;
  border: none;
  box-shadow: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  z-index: auto;
}
footer nav a {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  text-decoration: none;
  transition: color var(--transition);
}
footer nav a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: rgba(255, 255, 255, .3); font-size: .78rem; }
.bio-cert { color: var(--yellow); font-size: .78rem; font-weight: 700; text-shadow: 0 1px 4px rgba(245,197,32,.2); }

/* ── POTATO SHOWCASE ── */
.potato-showcase {
  padding: 80px 5vw;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  overflow: hidden;
}
.potato-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.potato-canvas-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 480px;
}
/* Glowing aura behind the potato */
.potato-canvas-wrap::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,32,.18) 0%, rgba(107,175,56,.10) 50%, transparent 70%);
  animation: aura-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes aura-pulse {
  0%, 100% { transform: scale(1);   opacity: .7; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* Stage: full relative container */
.potato-stage {
  position: relative;
  width: 460px;
  height: 460px;
  z-index: 1;
  perspective: 900px;
}

/* Main potato floater */
.potato-floater {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  animation: potato-float 4s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes potato-float {
  0%   { transform: translateY(0px)   rotateX(2deg)  rotateY(-4deg); }
  25%  { transform: translateY(-18px) rotateX(-2deg) rotateY(4deg); }
  50%  { transform: translateY(-24px) rotateX(3deg)  rotateY(6deg); }
  75%  { transform: translateY(-12px) rotateX(-1deg) rotateY(-2deg); }
  100% { transform: translateY(0px)   rotateX(2deg)  rotateY(-4deg); }
}

.potato-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  filter:
    drop-shadow(0 24px 48px rgba(43,94,34,.22))
    drop-shadow(0 8px 16px rgba(0,0,0,.15))
    brightness(1.04)
    saturate(1.08);
  transition: filter .4s, transform .4s;
}
.potato-main-img:hover {
  transform: scale(1.02);
  filter:
    drop-shadow(0 32px 60px rgba(43,94,34,.28))
    drop-shadow(0 12px 24px rgba(0,0,0,.2))
    brightness(1.07)
    saturate(1.15);
}

/* Orbiting small potatoes – hidden, kept for future use */
.potato-orb { display: none; }

/* Ground shadow */
.potato-ground-shadow {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(43,94,34,.22) 0%, rgba(43,94,34,0) 70%);
  border-radius: 50%;
  animation: shadow-pulse 4s ease-in-out infinite;
}
@keyframes shadow-pulse {
  0%,100% { transform: translateX(-50%) scaleX(1)    opacity(.22); }
  50%     { transform: translateX(-50%) scaleX(.72) opacity(.12); }
}

.potato-desc {
  color: var(--gray-500);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.potato-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.p-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-width: 96px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.p-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.p-stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}
.p-stat-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.in-view { animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s !important; }
.delay-2 { animation-delay: .2s !important; }
.delay-3 { animation-delay: .3s !important; }
.delay-4 { animation-delay: .4s !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; max-height: none; }
  .hero-visual { height: 420px; min-height: auto; order: -1; }
  .hero-content { padding: 40px 5vw 80px; }
  .scroll-down { display: none; }
  .origin-grid,
  .about-grid,
  .contact-inner,
  .potato-showcase-inner { grid-template-columns: 1fr; gap: 36px; }
  .origin-img img { height: 300px; }
  .about-img img  { height: 340px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .potato-canvas-wrap { min-height: 340px; }
  .potato-stage { width: 320px; height: 320px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .price-glass { flex-direction: column; gap: 12px; padding: 16px 20px; text-align: center; }
  .price-divider { width: 100%; height: 1px; }
  .campaign-dates { flex-direction: column; align-items: stretch; }
  .date-arrow { transform: rotate(90deg); text-align: center; }
  .footer-top { justify-content: center; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-img img { height: 280px; }
  .potato-stats { gap: 12px; }
  .p-stat { min-width: 80px; padding: 12px 14px; }
  .p-stat-val { font-size: 1.25rem; }
}

/* ── FOCUS VISIBLE (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
