/* ═══════════════════════════════════════════════
   Imkerei Morscher — Premium Redesign
   Creative Direction: Editorial Alpine Luxury
   ═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Tokens ── */
:root {
  --forest:     #1C2E0E;
  --green:      #2D5016;
  --sage:       #4A6741;
  --gold:       #C9A227;
  --gold-light: #E2C46A;
  --amber:      #C07218;
  --cream:      #F8F3EB;
  --cream2:     #F0E9DA;
  --sand:       #E5DDD0;
  --text:       #2A2018;
  --textmid:    #5C4E3E;
  --textlight:  #9A8878;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Lato', system-ui, sans-serif;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --slow:   cubic-bezier(0.25, 0, 0.1, 1);
  --t:      0.35s;

  --max: 1180px;
  --r:   4px;
  --sh:  0 4px 32px rgba(0,0,0,0.09);
  --sh2: 0 12px 64px rgba(0,0,0,0.16);
}

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Containers ── */
.container        { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 760px;  margin: 0 auto; padding: 0 40px; }

/* ── Shared typography ── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow--light { color: rgba(248,243,235,0.6); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--forest);
  margin-bottom: 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0;
  background: var(--forest);
  transition: box-shadow var(--t) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,243,235,0.85);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 9px 22px;
  border: 1px solid rgba(201,162,39,0.6) !important;
  border-radius: 2px;
  color: var(--gold) !important;
  transition: background var(--t), color var(--t) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--t);
}

/* ══════════════════════════════════════════
   HERO — Editorial Split
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--cream);
  padding-top: 120px;
  display: flex;
  align-items: stretch;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 0;
  width: 100%;
  min-height: calc(100svh - 88px);
}

.hero-text {
  padding: clamp(40px, 7vw, 96px) clamp(32px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  position: relative;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 32px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0 0 36px;
}
.hero-title em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.hero-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--textmid);
  margin: 0 0 44px;
  max-width: 460px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--t), transform var(--t);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-2px);
}

.btn-text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  transition: color var(--t);
  white-space: nowrap;
}
.btn-text span {
  display: inline-block;
  margin-left: 4px;
  transition: transform var(--t);
}
.btn-text:hover { color: var(--gold); }
.btn-text:hover span { transform: translateX(4px); }

.hero-signature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-sig-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-signature p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--sage);
  margin: 0;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s var(--slow);
}
.hero-photo.loaded { transform: scale(1); }

.hero-image-badge {
  position: absolute;
  top: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
  background: rgba(248,243,235,0.94);
  backdrop-filter: blur(8px);
  padding: 22px 24px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid rgba(201,162,39,0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
}
.hero-image-badge .badge-line {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--forest);
}
.hero-image-badge .badge-year {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(45,80,22,0.18);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
}

@media (max-width: 960px) {
  .hero { padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { aspect-ratio: 4 / 5; min-height: 460px; }
  .hero-text { padding: 56px 32px 64px; }
  .hero-cta-row { margin-bottom: 48px; }
}

/* legacy marquee removed (kept empty for safety) */
.marquee-band, .marquee-track { display: none !important; }

/* ══════════════════════════════════════════
   INTRO STATEMENT
══════════════════════════════════════════ */
.intro-section {
  padding: 100px 0 64px;
  text-align: center;
  background: var(--cream);
}

.intro-pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.intro-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 28px;
}
.intro-headline em {
  font-style: italic;
  color: var(--amber);
}

.intro-body {
  font-size: 17px;
  color: var(--textmid);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.intro-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
}
.intro-rule span {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand));
}
.intro-rule span:last-child {
  background: linear-gradient(to left, transparent, var(--sand));
}

/* ══════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════ */
.products-section {
  padding: 80px 0 100px;
  background: var(--cream2);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-card {
  background: white;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh2);
}

.product-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--slow);
}
.product-card:hover .product-photo img { transform: scale(1.06); }

/* Label overlay on photo */
.product-label-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(248,243,235,0.92);
  backdrop-filter: blur(4px);
  padding: 12px 24px;
  text-align: center;
  border-top: 2px solid var(--gold);
  min-width: 130px;
}
.plabel-type {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2px;
}
.plabel-name {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 2px;
}

.product-featured-tag {
  position: absolute;
  top: 18px;
  right: 0;
  background: var(--gold);
  color: var(--forest);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
}

.product-body {
  padding: 24px 28px 28px;
}

.product-body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 10px;
}

.product-body p {
  font-size: 14px;
  color: var(--textmid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--textlight);
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-meta .dot { color: var(--gold); }

.products-footer {
  text-align: center;
  margin-top: 56px;
}

.btn-outline {
  display: inline-block;
  padding: 15px 44px;
  border: 1.5px solid var(--green);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--t), color var(--t);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
}

/* ══════════════════════════════════════════
   STORY: EDITORIAL SPLIT
══════════════════════════════════════════ */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.story-photo-col {
  position: relative;
  overflow: hidden;
}

.story-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--slow);
}
.story-photo-col:hover .story-photo { transform: scale(1.04); }

.story-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 14px 24px;
  background: linear-gradient(transparent, rgba(28,46,14,0.8));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(248,243,235,0.7);
}

.story-text-col {
  background: var(--forest);
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 32px;
}
.story-headline em { font-style: italic; color: var(--gold-light); }

.story-body p {
  font-size: 16px;
  color: rgba(248,243,235,0.72);
  line-height: 1.8;
  margin-bottom: 18px;
}

.story-values {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201,162,39,0.2);
}

.story-values li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,162,39,0.12);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(248,243,235,0.75);
  transition: color var(--t);
}
.story-values li:hover { color: var(--cream); }

.val-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  min-width: 28px;
}

/* ══════════════════════════════════════════
   GALLERY MOSAIC
══════════════════════════════════════════ */
.gallery-section {
  padding: 100px 0 0;
  background: var(--cream);
}

.gallery-mosaic {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--slow), filter 0.4s;
  filter: brightness(0.92) saturate(1.05);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.15);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(28,46,14,0.75));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,243,235,0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   TRUST / CERTIFICATIONS
══════════════════════════════════════════ */
.trust-section {
  padding: 72px 0;
  background: var(--cream);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.trust-label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.trust-label span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand));
}
.trust-label span:last-child {
  background: linear-gradient(to left, transparent, var(--sand));
}
.trust-label p {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--textlight);
  white-space: nowrap;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 44px;
  text-align: center;
  transition: transform var(--t) var(--ease);
}
.trust-item:hover { transform: translateY(-5px); }

.trust-icon {
  width: 68px; height: 68px;
  transition: transform 0.4s var(--slow);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon--wide { width: 104px; }
.trust-item:hover .trust-icon { transform: scale(1.1); }
.trust-icon svg,
.trust-icon img { width: 100%; height: 100%; object-fit: contain; }

.trust-item strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--forest);
  display: block;
  line-height: 1.2;
}
.trust-item span {
  font-size: 11.5px;
  color: var(--textlight);
  display: block;
  line-height: 1.5;
  max-width: 110px;
}

.trust-div {
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--sand), transparent);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PULL QUOTE
══════════════════════════════════════════ */
.quote-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
}
.quote-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,46,14,0.92) 0%, rgba(28,46,14,0.78) 100%);
}

.quote-body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 16px;
  font-weight: 300;
}

.quote-body blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 32px;
}

.quote-body cite {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.quote-body cite::before,
.quote-body cite::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section {
  background: var(--cream2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-info {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 5vw, 80px);
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 32px; }

.contact-block h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-block address,
.contact-block p {
  font-size: 15px;
  color: rgba(248,243,235,0.65);
  line-height: 1.8;
}

.contact-link {
  color: rgba(248,243,235,0.65);
  font-size: 15px;
  transition: color var(--t);
  display: inline-block;
}
.contact-link:hover { color: var(--gold); }

.contact-form-wrap {
  padding: clamp(60px, 8vw, 100px) clamp(40px, 5vw, 80px);
  background: white;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.field label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
}

.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.08);
}
.field textarea { resize: vertical; min-height: 140px; }

.btn-submit {
  padding: 16px;
  background: var(--green);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  width: 100%;
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

/* Form success */
.form-success-msg {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success-msg.show { display: block; }
.form-success-msg p {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--forest);
  margin-top: 16px;
}
.form-success-msg svg { margin: 0 auto; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--forest);
  padding: 64px 40px 40px;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(201,162,39,0.18);
}

.footer-logo {
  height: 96px;
  width: auto;
  display: inline-block;
  opacity: 0.95;
}

.footer-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

.footer-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-nav a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,243,235,0.45);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(248,243,235,0.28);
  line-height: 2;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--slow), transform 0.8s var(--slow);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--slow), transform 0.9s var(--slow);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--slow), transform 0.9s var(--slow);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

/* stagger */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { gap: 16px; }
  .trust-item { padding: 0 28px; }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .product-card--hero { margin-top: 0; }

  .story-section { grid-template-columns: 1fr; }
  .story-photo-col { height: 420px; }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 40px; }

  .trust-item { padding: 0 18px; }
  .trust-item span { max-width: 90px; }
}

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 24px; }
  .nav { padding: 14px 20px; }

  .nav-logo-img { height: 56px; }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--forest);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 200;
    padding: 80px 24px 40px;
  }
  .nav-links.open { display: flex !important; }
  .nav-links a {
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--cream) !important;
  }
  .nav-links a:hover { color: var(--gold) !important; }
  .nav-cta {
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 14px 36px !important;
    margin-top: 12px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 250;
  }

  /* Burger animates to X when menu open */
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .trust-bar { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .trust-item { width: calc(50% - 4px); padding: 20px 16px; }
  .trust-div { display: none; }

  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item--tall, .gallery-item--wide { grid-row: span 1; grid-column: span 1; }

  .field-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 48px 24px; }

  .footer-nav { gap: 16px; }

  .quote-mark { font-size: 80px; }
}

@media (max-width: 480px) {
  .hero-logo { width: 200px; }
  .story-photo-col { height: 300px; }
  .trust-item { width: 100%; flex-direction: row; gap: 16px; text-align: left; padding: 16px 0; }
  .trust-icon { width: 52px; height: 52px; flex-shrink: 0; }
}

/* ── Legal / Impressum page ────────────────────────── */
.legal-page { background: var(--cream); }
.site-header.is-static {
  position: static;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-main {
  padding: 120px 24px 96px;
  min-height: 60vh;
}
.legal-container {
  max-width: 720px;
  margin: 0 auto;
}
.legal-pre {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.legal-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  color: var(--forest);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.legal-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage);
  font-size: 18px;
  margin: 0 0 56px;
}
.legal-section {
  margin: 0 0 40px;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(45,80,22,0.12);
}
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--forest);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.legal-section p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: #3A3A2E;
  margin: 0 0 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(45,80,22,0.3);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.legal-section a:hover { color: var(--gold); }
.legal-back {
  margin: 48px 0 0;
  font-family: var(--sans);
  font-size: 14px;
}
.legal-back a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.legal-back a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .legal-main { padding: 80px 20px 64px; }
  .legal-headline { font-size: 40px; }
  .legal-sub { font-size: 16px; margin-bottom: 40px; }
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.legal-list li {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: #3A3A2E;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(45,80,22,0.1);
}
.legal-list li:last-child { border-bottom: none; }
.legal-list a {
  font-size: 13px;
  color: var(--sage);
  word-break: break-all;
}
.legal-note {
  margin-top: 20px;
  font-size: 13.5px !important;
  color: var(--textmid) !important;
  font-style: italic;
}

/* ══════════════════════════════════════════
   PHOTO-FREE REDESIGN OVERRIDES
══════════════════════════════════════════ */

/* Hero visual: graphic panel instead of photo */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1C2E0E 0%, #2D5016 65%, #1C2E0E 100%);
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-honeycomb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.hero-visual-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
}
.hero-monogram {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(140px, 22vw, 280px);
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 6px 40px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
}
.hero-monogram-sub {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(248,243,235,0.9);
  letter-spacing: 0.05em;
}
.hero-monogram-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.hero-monogram-loc {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(226,196,106,0.85);
}

/* Products: color-block art panels */
.product-art {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-art--creme  { background: linear-gradient(160deg, #E8B547 0%, #C8941F 100%); color: #FFFAF0; }
.product-art--blueten{ background: linear-gradient(160deg, #C07218 0%, #8F4F0F 100%); color: #FFFAF0; }
.product-art--wabe   { background: linear-gradient(160deg, #D9A04E 0%, #9C6A1F 100%); color: #FFFAF0; }
.product-art--wald   { background: linear-gradient(160deg, #3A2515 0%, #1C100A 100%); color: #E2C46A; }

.product-num {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: currentColor;
  opacity: 0.7;
}
.product-hex {
  position: absolute;
  width: 70%;
  height: auto;
  opacity: 0.6;
  transition: transform 6s var(--slow);
}
.product-card:hover .product-hex { transform: rotate(8deg) scale(1.05); }

.product-art-label {
  position: relative;
  z-index: 2;
  background: rgba(248,243,235,0.96);
  padding: 18px 30px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(201,162,39,0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 160px;
}
.product-art-label .plabel-type {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.product-art-label .plabel-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.product-card--hero .product-featured-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
}

/* Story: centered editorial layout */
.story-section {
  display: block !important;
  background: var(--cream);
  padding: clamp(96px, 12vw, 160px) 24px;
  text-align: center;
}
.story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.story-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--forest);
  margin: 16px 0 40px;
  letter-spacing: -0.015em;
}
.story-headline em {
  font-style: italic;
  color: var(--amber);
}
.story-body p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.65;
  color: var(--textmid);
  margin: 0 auto 18px;
  max-width: 600px;
}
.story-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 48px 0;
}
.story-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(201,162,39,0.5);
}
.story-section .story-values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 48px;
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 0;
}
.story-section .story-values li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--textmid);
}
.story-section .story-values .val-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  min-width: 24px;
}
.story-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--sage);
  margin-top: 8px;
}

/* Values section (replaces gallery) */
.values-section {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(96px, 12vw, 140px) 0;
}
.values-section .section-header { margin-bottom: 80px; }
.values-section .eyebrow { color: var(--gold); }
.values-section .section-title { color: var(--cream); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 56px 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.value-card {
  text-align: center;
  color: rgba(248,243,235,0.85);
}
.value-hex {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 96px;
  margin-bottom: 22px;
  color: var(--gold);
}
.value-hex svg { width: 100%; height: 100%; }
.value-num {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--gold);
}
.value-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  margin: 0 0 12px;
  letter-spacing: 0.005em;
}
.value-card p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(248,243,235,0.65);
  max-width: 260px;
  margin: 0 auto;
}

/* Quote section: no background photo */
.quote-section {
  background: var(--cream2) !important;
  padding: clamp(96px, 12vw, 160px) 24px !important;
  position: relative;
  overflow: hidden;
}
.quote-section .quote-bg,
.quote-section .quote-overlay { display: none !important; }
.quote-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background:
    radial-gradient(circle, rgba(201,162,39,0.18) 0%, transparent 60%);
  border-radius: 50%;
}
.quote-section .quote-body {
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-section .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 96px;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 24px;
}
.quote-section blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--forest) !important;
  text-shadow: none !important;
  max-width: 760px;
  margin: 0 auto 32px;
  letter-spacing: -0.005em;
}
.quote-section cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 720px) {
  .story-section .story-values { grid-template-columns: 1fr; gap: 12px; }
  .values-grid { gap: 48px 24px; }
}

/* ══════════════════════════════════════════
   HERO — Full-width Typography (v5)
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--cream);
  padding: 120px clamp(32px, 6vw, 80px) 64px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-grid { display: none; }
.hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(48px, 6vw, 96px);
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.hero-top .hero-eyebrow {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-edition {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  padding: 10px 16px;
  border: 1px solid rgba(45,80,22,0.25);
  border-radius: 2px;
  gap: 4px;
}
.hero-edition-year { color: var(--gold); }

.hero .hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--forest);
  margin: 0;
  text-align: left;
}
.hero .hero-title em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero-bottom-left .hero-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--textmid);
  margin: 0 0 28px;
  max-width: 460px;
}
.hero-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 760px) {
  .hero { padding: 100px 28px 56px; min-height: auto; }
  .hero-inner { gap: 48px; }
  .hero-top { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-edition { align-self: flex-start; }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-bottom-right { align-items: flex-start; }
}

/* ══════════════════════════════════════════
   TRUST — Featured Bio Austria
══════════════════════════════════════════ */
.trust-icon--lg { width: 92px !important; height: 92px !important; }
.trust-item--featured strong {
  color: var(--forest);
  font-weight: 600;
}

/* Values: 3-column grid */
.values-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 880px !important;
}
@media (max-width: 760px) {
  .values-grid--three { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════
   ZERTIFIKATE EINBINDEN
══════════════════════════════════════════ */
.certs-section {
  background: var(--cream);
  padding: clamp(80px, 10vw, 128px) 24px;
}
.certs-inner {
  max-width: 800px;
  margin: 0 auto;
}
.certs-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--sage);
  margin-top: -28px;
}
.certs-iframe-wrap {
  position: relative;
  background: #fff;
  border: 1px solid rgba(45,80,22,0.15);
  box-shadow: 0 8px 36px rgba(0,0,0,0.07);
  border-radius: 3px;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.certs-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}
.certs-note {
  text-align: center;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--textmid);
}
.certs-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(45,80,22,0.3);
  transition: color var(--t);
}
.certs-note a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .certs-iframe-wrap iframe { height: 400px; }
}

/* Certs CTA card replaces the iframe */
.certs-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  background: #fff;
  border: 1px solid rgba(45,80,22,0.15);
  border-radius: 3px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 8px 36px rgba(0,0,0,0.06);
  color: var(--forest);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.certs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.certs-card-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--green);
}
.certs-card-body { flex: 1; }
.certs-card-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--forest);
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}
.certs-card-body p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--textmid);
  margin: 0;
  letter-spacing: 0.02em;
}
.certs-card-arrow {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform var(--t);
}
.certs-card:hover .certs-card-arrow { transform: translateX(6px); }

@media (max-width: 560px) {
  .certs-card { padding: 22px 24px; gap: 18px; }
  .certs-card-icon { width: 52px; height: 52px; }
  .certs-card-body h3 { font-size: 18px; }
}

/* Mandatory compliance text in trust section */
.trust-disclaimer {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  padding: 0 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--textmid);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════
   VERKAUFSSTELLEN
══════════════════════════════════════════ */
.sales-section {
  background: var(--cream2);
  padding: clamp(96px, 12vw, 140px) 0;
}
.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.sales-card {
  background: var(--cream);
  padding: 48px 32px 40px;
  border-radius: 3px;
  text-align: center;
  border: 1px solid rgba(45,80,22,0.10);
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--forest);
}
.sales-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(201,162,39,0.5);
}
.sales-card--primary {
  background: var(--forest);
  color: var(--cream);
  border-color: transparent;
}
.sales-card--primary:hover {
  border-color: var(--gold);
}
.sales-hex {
  width: 56px;
  height: 64px;
  color: var(--gold);
  margin-bottom: 20px;
}
.sales-kicker {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.sales-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
  color: inherit;
}
.sales-address {
  font-family: var(--sans);
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.7;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 20px;
}
.sales-card--primary .sales-address { color: rgba(248,243,235,0.85); }
.sales-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-light);
  margin-top: auto;
}
.sales-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-top: auto;
  transition: color var(--t);
}
.sales-link:hover { color: var(--gold); }
.sales-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform var(--t);
}
.sales-link:hover span { transform: translateX(3px); }

@media (max-width: 800px) {
  .sales-grid { grid-template-columns: 1fr; gap: 18px; }
  .sales-card { padding: 40px 28px 32px; }
}

.sales-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(45,80,22,0.08);
}
.sales-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════════════
   BIO-IMKEREI EXPLAINER
══════════════════════════════════════════ */
.bio-section {
  background: var(--cream);
  padding: clamp(96px, 12vw, 140px) 0;
}
.bio-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.bio-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--textmid);
  max-width: 640px;
  margin: -28px auto 0;
  line-height: 1.55;
}
.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 40px;
  margin-top: 24px;
}
.bio-point {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(45,80,22,0.18);
}
.bio-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.bio-point h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--forest);
  margin: 0 0 12px;
  letter-spacing: 0.005em;
}
.bio-point p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--textmid);
  margin: 0;
}

@media (max-width: 800px) {
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Honeypot — versteckt vor Menschen, sichtbar für Bots */
.field-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form Error */
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(196, 30, 30, 0.08);
  border-left: 3px solid #c41e1e;
  color: #8a1414;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.5;
}
