﻿:root {
  --ink: #251815;
  --muted: #6f625d;
  --paper: #fff9f0;
  --cream: #f4e8d2;
  --berry: #671d34;
  --berry-dark: #40111f;
  --leaf: #3f5f39;
  --gold: #c28c32;
  --rose: #d9a6a4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(50, 23, 16, 0.18);
  --font-display: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(37, 24, 21, 0.92), rgba(64, 17, 31, 0.73) 46%, rgba(37, 24, 21, 0.12)),
    url("../assets/fruchtweine.jpg") center/cover;
  color: var(--white);
  position: relative;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  font-size: 1.35rem;
}

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
}
.nav-links a:hover { color: var(--rose); }
.nav-toggle { display: none; }

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 42px 0 92px;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 700;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; margin: 0; letter-spacing: 0; font-weight: 700; }
h1 { font-size: clamp(3rem, 8vw, 5.7rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.hero-text {
  margin-top: 24px;
  max-width: 640px;
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.86);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
}
.button-primary { background: var(--gold); border-color: var(--gold); color: #20120d; }
.button-secondary { color: var(--white); background: rgba(255,255,255,0.08); }
.hero-media {
  margin: 0;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  border: 10px solid rgba(255,255,255,0.88);
}
.hero-media img { aspect-ratio: 4 / 3; object-fit: cover; }

.intro-band {
  width: min(1050px, calc(100% - 32px));
  margin: -54px auto 0;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
}
.stat { padding: 26px 28px; border-right: 1px solid #eadcc9; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 1.7rem; color: var(--berry); line-height: 1.1; }
.stat span { display: block; margin-top: 6px; font-family: var(--font-body); color: var(--muted); font-size: 0.92rem; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 96px 0; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 62px; align-items: start; }
.split p + p, .exchange p + p { margin-top: 16px; }
.split p, .exchange p { font-family: var(--font-body); color: var(--muted); }
.more-text { margin-top: 16px; }
.read-more-button { margin-top: 24px; cursor: pointer; }
.read-more-button:hover { filter: brightness(1.05); }
.note-panel, .contact-card, .sample-box {
  background: var(--berry-dark);
  color: var(--white);
  padding: 32px;
  box-shadow: var(--shadow);
}
.note-panel p, .contact-card p { color: rgba(255,255,255,0.82); margin-top: 14px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading.narrow { display: block; max-width: 680px; }
.gallery-section { padding-top: 60px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: var(--white);
  box-shadow: 0 14px 45px rgba(50, 23, 16, 0.12);
  min-height: 100%;
}
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card div:not(.text-only-card), .text-only-card { padding: 26px; }
.product-card p { margin-top: 12px; color: var(--muted); font-family: var(--font-body); }
.product-card.featured { grid-column: span 1; }
.text-only-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--leaf), #263f29);
  color: var(--white);
}
.text-only-card p { color: rgba(255,255,255,0.82); }

.process-section {
  width: 100%;
  max-width: none;
  background: #efe1c8;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline li { background: rgba(255,255,255,0.7); padding: 24px; min-height: 230px; }
.timeline span { font-family: var(--font-body); color: var(--gold); font-weight: 800; }
.timeline strong { display: block; margin-top: 18px; font-size: 1.18rem; }
.timeline p { margin-top: 10px; font-family: var(--font-body); color: var(--muted); }

.prices { padding-bottom: 66px; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-grid article {
  background: var(--white);
  border-top: 4px solid var(--berry);
  padding: 22px;
  min-height: 140px;
  box-shadow: 0 12px 34px rgba(50, 23, 16, 0.1);
}
.price-grid span { display: block; font-family: var(--font-body); color: var(--muted); min-height: 48px; }
.price-grid strong { display: block; margin-top: 18px; font-size: 1.22rem; color: var(--berry); }
.sample-box { margin-top: 18px; background: var(--leaf); }
.sample-box p { margin-top: 10px; color: rgba(255,255,255,0.86); font-family: var(--font-body); }
.exchange {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
  border-top: 1px solid #e4d4bd;
}
.contact-card .button { margin-top: 22px; }
.footer {
  padding: 34px 16px;
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-body);
}
.footer a { color: var(--rose); text-decoration: none; font-weight: 700; }

@media (max-width: 900px) {
  .nav { position: relative; }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.08);
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 0 auto; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    padding: 18px;
    background: rgba(37, 24, 21, 0.96);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 20px; }
  .hero-media { transform: none; max-width: 620px; }
.intro-band, .split, .product-grid, .timeline, .price-grid, .exchange { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid #eadcc9; }
  .stat:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .price-grid span { min-height: auto; }
}

@media (max-width: 560px) {
  .site-header { min-height: auto; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .hero { min-height: auto; padding-bottom: 86px; }
  .hero-text { font-size: 1.08rem; }
  .hero-actions, .footer { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .note-panel, .contact-card, .sample-box { padding: 24px; }
}
.reveal {
  opacity: 1;
  transform: none;
}
.animations-ready .reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1800ms ease, transform 1800ms cubic-bezier(0.16, 0.74, 0.18, 1);
  will-change: opacity, transform;
}
.animations-ready .reveal-from-left { transform: translateX(-360px) scale(0.9); }
.animations-ready .reveal-from-right { transform: translateX(360px) scale(0.9); }
.animations-ready .hero-media.reveal-from-right { transform: translateX(360px) scale(0.9) rotate(1.5deg); }
.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.animations-ready .hero-media.reveal.is-visible { transform: rotate(1.5deg) scale(1); }

@media (max-width: 900px) {
  .animations-ready .reveal-from-left { transform: translateX(-180px) scale(0.92); }
  .animations-ready .reveal-from-right { transform: translateX(180px) scale(0.92); }
  .animations-ready .hero-media.reveal-from-right { transform: translateX(180px) scale(0.92); }
  .animations-ready .hero-media.reveal.is-visible { transform: none; }
}




:root {
  --ticker-height: clamp(46px, 8vw, 68px);
}
body {
  padding-bottom: var(--ticker-height);
}
.contact-ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  height: var(--ticker-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #40111f;
  color: #fff9f0;
  border-top: 3px solid #c28c32;
  box-shadow: 0 -12px 34px rgba(37, 24, 21, 0.26);
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 4.6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.contact-ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: contactTicker 14s linear infinite;
}
.contact-ticker-track span {
  display: inline-flex;
  align-items: center;
  padding-right: clamp(42px, 10vw, 90px);
}
@keyframes contactTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
