/* ============================================
   BIOHOF BLESSING — AWARD-LEVEL DESIGN SYSTEM
   ============================================ */

:root {
  --c-bg: #f5f2ec;
  --c-bg-alt: #eae5db;
  --c-dark: #1a1a18;
  --c-dark-soft: #2a2a26;
  --c-cream: #faf8f4;
  --c-green: #3a6b4a;
  --c-green-light: #5a9068;
  --c-green-dark: #243d2e;
  --c-accent: #c8a96e;
  --c-accent-warm: #d4b87a;
  --c-text: #3a3a36;
  --c-text-secondary: #6b6b63;
  --c-text-muted: #9a9a90;
  --c-border: rgba(0,0,0,0.08);
  --c-white: #ffffff;

  --f-serif: 'DM Serif Display', Georgia, serif;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-display: 'Space Grotesk', 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
ul, ol { list-style: none; }
button { cursor: none; }

::selection {
  background: var(--c-green);
  color: var(--c-cream);
}

/* --- Grain Overlay --- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* --- Custom Cursor --- */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--c-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(58, 107, 74, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s, background 0.3s;
}

.cursor.hovering {
  width: 50px;
  height: 50px;
  background: var(--c-green);
  mix-blend-mode: normal;
  opacity: 0.15;
}

.cursor-follower.hovering {
  width: 60px;
  height: 60px;
  border-color: var(--c-green);
}

/* --- Loader --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: var(--c-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.loader.done {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.loader-inner { text-align: center; }

.loader-text {
  display: flex;
  gap: 0.05em;
  font-family: var(--f-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--c-cream);
  margin-bottom: 2rem;
}

.loader-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: loaderChar 0.5s var(--ease-out-expo) forwards;
}

.loader-word:nth-child(1) { animation-delay: 0.05s; }
.loader-word:nth-child(2) { animation-delay: 0.1s; }
.loader-word:nth-child(3) { animation-delay: 0.15s; }
.loader-word:nth-child(4) { animation-delay: 0.2s; }
.loader-word:nth-child(5) { animation-delay: 0.25s; }
.loader-word:nth-child(6) { animation-delay: 0.3s; }

@keyframes loaderChar {
  to { opacity: 1; transform: translateY(0); }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: var(--c-accent);
  border-radius: 2px;
  animation: loaderBar 1.8s var(--ease-in-out) forwards;
}

@keyframes loaderBar {
  0% { width: 0%; }
  60% { width: 80%; }
  100% { width: 100%; }
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  color: var(--c-cream);
  transition: color 0.4s;
}

.navbar.scrolled .nav-logo { color: var(--c-dark); }

.nav-center {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  border-radius: 100px;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--c-cream);
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link {
  color: var(--c-text-secondary);
}

.navbar.scrolled .nav-link:hover {
  color: var(--c-green);
  background: rgba(58, 107, 74, 0.06);
}

.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  color: var(--c-cream);
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--c-cream);
  color: var(--c-dark);
  border-color: var(--c-cream);
}

.navbar.scrolled .nav-cta {
  border-color: var(--c-dark);
  color: var(--c-dark);
}

.navbar.scrolled .nav-cta:hover {
  background: var(--c-dark);
  color: var(--c-cream);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 110;
}

.nav-toggle span {
  width: 28px;
  height: 1.5px;
  background: var(--c-cream);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.navbar.scrolled .nav-toggle span { background: var(--c-dark); }

.nav-toggle.active span:first-child { transform: rotate(45deg) translate(2.5px, 2.5px); }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(2.5px, -2.5px); }
.nav-toggle.active span { background: var(--c-cream) !important; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--c-green-dark);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  padding: 2rem clamp(2rem, 6vw, 6rem);
  width: 100%;
}

.mobile-link {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--c-cream);
  padding: 0.4rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-link::before {
  content: attr(data-index);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-right: 1rem;
  vertical-align: super;
}

.mobile-link:hover { color: var(--c-accent); }

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 2;
}

.mobile-menu-footer a { color: var(--c-accent); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--c-green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.1);
  transition: transform 8s linear;
  filter: saturate(0.7);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 61, 46, 0.3) 0%, rgba(26, 26, 24, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(2rem, 6vw, 8rem);
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-tag-line {
  width: 40px;
  height: 1px;
  background: var(--c-accent);
  display: block;
}

.hero-tag-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-inner {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 1.05;
  color: var(--c-cream);
  transform: translateY(110%);
  animation: revealUp 1s var(--ease-out-expo) forwards;
}

.title-line:nth-child(2) .title-inner {
  animation-delay: 0.15s;
}

@keyframes revealUp {
  to { transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(250, 248, 244, 0.6);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* --- Main CTA Button --- */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  background: var(--c-cream);
  color: var(--c-dark);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-green);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}

.btn-main:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-text, .btn-arrow {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.btn-main:hover .btn-text,
.btn-main:hover .btn-arrow { color: var(--c-cream); }

.btn-arrow {
  display: flex;
  transition: transform 0.3s var(--ease-out-expo), color 0.4s;
}

.btn-main:hover .btn-arrow { transform: translate(3px, -3px); }

.btn-ghost {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(250, 248, 244, 0.6);
  padding: 0.9rem 0.5rem;
  position: relative;
  transition: color 0.3s;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0.7rem;
  left: 0.5rem;
  right: 0.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-ghost:hover { color: var(--c-cream); }
.btn-ghost:hover::after { transform: scaleX(1); transform-origin: left; }

/* Hero Bottom */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 clamp(2rem, 6vw, 8rem) 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.hero-scroll-indicator {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--c-cream);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

.hero-stats-row {
  display: flex;
  gap: 3rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-stat-num {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  background: var(--c-green-dark);
  padding: 1.2rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.marquee-dot {
  font-size: 0.4rem;
  color: var(--c-accent);
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(5rem, 12vw, 10rem) 0;
}

.section-dark {
  background: var(--c-dark);
  color: var(--c-cream);
}

.section-cream {
  background: var(--c-cream);
}

/* --- Eyebrow --- */
.eyebrow {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green);
  display: block;
  margin-bottom: 1.5rem;
}

.eyebrow-light { color: var(--c-accent); }

/* --- Headings --- */
.heading-xl {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--c-dark);
  letter-spacing: -0.01em;
}

.heading-xl em {
  font-style: italic;
  color: var(--c-green);
}

.heading-xxl {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-light { color: var(--c-cream); }

/* --- Text --- */
.text-lg {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--c-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.text-body {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.text-light-muted { color: rgba(250, 248, 244, 0.5); }

/* --- Split Section --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.section-intro {
  max-width: 680px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* --- Wide Image --- */
.wide-image {
  position: relative;
  margin: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21/9;
}

.wide-image-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.wide-image-inner img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
}

.wide-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,26,24,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 3vw, 3rem);
}

.overlay-stats {
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
}

.overlay-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--c-cream);
}

.overlay-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   PRODUCTS
   ============================================ */
.product-showcase {
  display: flex;
  flex-direction: column;
}

.product-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s var(--ease-out-expo);
}

.product-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-item:hover {
  padding-left: 1.5rem;
}

.product-num {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.05em;
  width: 2rem;
}

.product-name {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 0.3rem;
}

.product-desc {
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.4);
  max-width: 500px;
  line-height: 1.6;
}

.product-tag {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 100px;
}

/* ============================================
   QUOTE
   ============================================ */
.section-quote {
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: var(--c-bg);
  overflow: hidden;
}

.big-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.big-quote p {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  line-height: 1.4;
  color: var(--c-dark);
  margin-bottom: 2rem;
}

.big-quote footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-line {
  width: 40px;
  height: 1px;
  background: var(--c-accent);
}

.big-quote cite {
  font-style: normal;
  font-family: var(--f-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* ============================================
   ANIMALS – DUO CARDS
   ============================================ */
.cards-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.duo-card {
  background: var(--c-cream);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--c-border);
  transition: all 0.5s var(--ease-out-expo);
}

.duo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.duo-card--accent {
  background: var(--c-green-dark);
  border-color: transparent;
  color: var(--c-cream);
}

.duo-card-top {
  margin-bottom: 1.5rem;
}

.duo-tag {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 0.75rem;
  display: block;
}

.duo-card--accent .duo-tag { color: var(--c-accent); }

.duo-title {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.duo-text {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.duo-card--accent .duo-text { color: rgba(250,248,244,0.6); }

.duo-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.duo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-text-secondary);
}

.check-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
  position: relative;
}

.check-mark::after {
  content: '';
  position: absolute;
  left: 6.5px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--c-cream);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-accent);
  transition: gap 0.3s var(--ease-out-expo);
}

.card-link:hover { gap: 0.8rem; }

/* ============================================
   HOFLADEN
   ============================================ */
.hofladen-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* Schedule */
.schedule-block {
  background: var(--c-bg);
  border-radius: 16px;
  padding: 1.8rem;
  margin: 2rem 0;
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
}

.schedule-header h3 {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.schedule-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.schedule-day {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 110px;
}

.schedule-divider {
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.schedule-time {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  font-variant-numeric: tabular-nums;
}

/* Automat Badge */
.automat-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--c-green-dark);
  border-radius: 14px;
  color: var(--c-cream);
}

.automat-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  position: relative;
}

.automat-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.automat-info strong {
  display: block;
  font-size: 0.9rem;
}

.automat-info span {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Info Cards */
.info-card {
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.info-card--market {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
}

.info-card--trust {
  background: var(--c-green-dark);
  color: var(--c-cream);
}

.info-card-number {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
}

.info-card--trust p { color: rgba(250,248,244,0.6); }

.bioland-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge-pill {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   SUSTAINABILITY
   ============================================ */
.sustain-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 4rem);
}

.sustain-item {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 20px;
  border: 1px solid var(--c-border);
  transition: all 0.5s var(--ease-out-expo);
  background: var(--c-cream);
}

.sustain-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: var(--c-green-light);
}

.sustain-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-green);
  transition: all 0.4s;
}

.sustain-item:hover .sustain-icon-wrap {
  background: var(--c-green);
  color: var(--c-cream);
}

.sustain-item h3 {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--c-dark);
}

.sustain-item p {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-label {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}

.contact-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,248,244,0.6);
}

.contact-block a {
  transition: color 0.3s;
}

.contact-block a:hover {
  color: var(--c-accent);
}

.contact-map-full {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.6) contrast(1.1);
  transition: filter 0.5s;
}

.contact-map-full:hover iframe {
  filter: grayscale(0) contrast(1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.5);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  color: var(--c-cream);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--c-cream); }

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-highlight {
  color: var(--c-accent) !important;
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-anim] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-anim="fade-up"] { transform: translateY(50px); }
[data-anim="scale-in"] { transform: scale(0.95); }

[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .split-section,
  .contact-layout,
  .hofladen-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }

  .nav-center, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .cards-duo {
    grid-template-columns: 1fr;
  }

  .sustain-trio {
    grid-template-columns: 1fr;
  }

  .hero-stats-row {
    gap: 1.5rem;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

  .product-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .product-num { display: none; }

  .product-tag {
    justify-self: start;
    margin-top: 0.5rem;
  }

  .wide-image { aspect-ratio: 16/9; }

  .overlay-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .hero-stats-row {
    width: 100%;
    justify-content: space-between;
  }

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