/* =========================================================================
   HINTERSCHACHNERHOF — "Goldene Raute · Erbhof-Edition"
   Design system: fir-green + parchment + heraldic gold, Fraunces + Inter.
   ========================================================================= */

:root{
  /* ---- palette ---- */
  --fir:        #1F3A2E;   /* Tannengrün — primary brand */
  --forest:     #16271F;   /* Waldschatten — deepest grounds */
  --paper:      #F4EDE0;   /* Pergament — page ground */
  --linen:      #EAE0CE;   /* Leinen — cards / sub-bands */
  --gold:       #B68A3E;   /* Erbhof-Gold — CTAs, decorative accents, dark grounds */
  --gold-ink:   #71561F;   /* darker bronze — gold TEXT on light grounds (AA) */
  --gold-bright:#D8AF5E;   /* Medaillen-Gold — medals only */
  --crest-blue: #2E5A86;   /* Wappen-Blau — crest */
  --meat:       #8A3324;   /* Speck-Rot — rare emphasis */
  --ink:        #2A2018;   /* Tinte — text on paper */
  --muted:      #5F5341;   /* Muted char — captions/meta on paper */
  --on-dark:    #F4EDE0;   /* text on fir/forest */
  --on-dark-mut:#CBBFA6;   /* muted text on dark */
  --rule:       #C9B79A;   /* Sepia hairline */
  --rule-dark:  #36513f;   /* hairline on fir */
  --whatsapp:   #25D366;
  --whatsapp-d: #1da851;

  /* ---- type ---- */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --script:"Caveat", "Segoe Script", cursive;

  /* ---- layout ---- */
  --container: 1200px;
  --reading: 720px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 11vw, 128px);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 72px;

  --shadow-soft: 0 8px 28px rgba(22,39,31,.10);
  --shadow-card: 0 1px 0 rgba(22,39,31,.04);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------- reset / base ---------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 16px); -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family:var(--sans);
  font-size:clamp(16.5px,1vw+15px,18.5px);
  line-height:1.65;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
  font-feature-settings:"tnum" 0;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }
h1,h2,h3{ font-family:var(--serif); font-weight:600; line-height:1.1; margin:0; letter-spacing:-.005em; }
p{ margin:0 0 1em; }
ul,ol{ margin:0; padding:0; list-style:none; }

:focus-visible{ outline:3px solid var(--gold-ink); outline-offset:3px; border-radius:3px; }
.section-fir :focus-visible, .contact-cta :focus-visible, .site-footer :focus-visible,
.medal-rail :focus-visible, .hero :focus-visible{ outline-color:var(--gold-bright); }

.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:var(--gutter); }

.skip-link{
  position:absolute; left:8px; top:-60px; z-index:200;
  background:var(--fir); color:var(--on-dark);
  padding:10px 16px; border-radius:8px; text-decoration:none; font-weight:600;
  transition:top .2s var(--ease);
}
.skip-link:focus{ top:8px; }

.overline{
  font-family:var(--sans); font-weight:600; font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--gold-ink);
  margin:0 0 .8rem;
}
.overline-light{ color:var(--gold-bright); }
.muted{ color:var(--muted); }
.muted-light{ color:var(--on-dark-mut); }
.small{ font-size:.85em; }
.light{ color:var(--on-dark); }
.tnum{ font-feature-settings:"tnum" 1; }

.signature{
  font-family:var(--script); font-size:2rem; color:var(--gold-ink);
  margin:.4rem 0 0; line-height:1;
}
.signature-light{ color:var(--gold-bright); }

/* ---------------- buttons ---------------- */
.btn{
  --bg:var(--gold); --fg:#fff;
  display:inline-flex; align-items:center; gap:.55em; justify-content:center;
  font-family:var(--sans); font-weight:600; font-size:1rem;
  padding:.85em 1.4em; border-radius:999px; border:1.5px solid transparent;
  text-decoration:none; cursor:pointer; white-space:nowrap;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.btn svg{ width:1.2em; height:1.2em; flex:none; }
.btn-sm{ padding:.6em 1.1em; font-size:.92rem; }
.btn-block{ display:flex; width:100%; }

.btn-gold{ background:var(--gold); color:#241B10; box-shadow:0 6px 18px rgba(182,138,62,.32); }
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(182,138,62,.42); background:#c2954a; }

.btn-outline{ background:transparent; color:var(--fir); border-color:var(--rule); }
.btn-outline:hover{ transform:translateY(-2px); border-color:var(--gold); color:var(--gold); }

.btn-whatsapp{ background:var(--whatsapp); color:#06371d; box-shadow:0 6px 18px rgba(37,211,102,.30); }
.btn-whatsapp:hover{ transform:translateY(-2px); background:#2ee06f; box-shadow:0 10px 26px rgba(37,211,102,.4); }

.btn-whatsapp-outline{ background:transparent; color:#fff; border-color:var(--whatsapp); }
.btn-whatsapp-outline:hover{ background:var(--whatsapp); color:#06371d; transform:translateY(-2px); }

/* ---------------- header ---------------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  background:rgba(244,237,224,.82); backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled{
  background:rgba(244,237,224,.96);
  border-bottom-color:var(--rule);
  box-shadow:0 4px 18px rgba(22,39,31,.07);
}
.header-inner{ display:flex; align-items:center; gap:1.5rem; height:var(--header-h); }

.brand{ display:flex; align-items:center; gap:.65rem; text-decoration:none; color:var(--fir); margin-right:auto; }
.brand-crest{ width:38px; height:38px; flex:none; display:grid; place-items:center; }
.brand-crest svg{ width:100%; height:100%; }
.brand-crest-lg{ width:64px; height:64px; }
.brand-words{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{ font-family:var(--serif); font-weight:600; font-size:1.32rem; color:var(--fir); }
.brand-sub{ font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); font-weight:600; }

.main-nav{ display:flex; gap:1.6rem; }
.main-nav a{
  text-decoration:none; color:var(--ink); font-weight:500; font-size:.98rem;
  padding:.3em 0; position:relative;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background:var(--gold); transition:right .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after{ right:0; }

.nav-toggle, .nav-close{
  display:none; background:none; border:none; color:var(--fir); cursor:pointer;
  width:44px; height:44px; padding:8px; border-radius:8px;
}
.nav-toggle svg, .nav-close svg{ width:100%; height:100%; }

/* ---------------- mobile drawer ---------------- */
.drawer-backdrop{
  position:fixed; inset:0; z-index:110; background:rgba(22,39,31,.5);
  backdrop-filter:blur(2px); opacity:0; transition:opacity .3s var(--ease);
}
.drawer-backdrop.open{ opacity:1; }
.mobile-drawer{
  position:fixed; top:0; right:0; z-index:120; height:100dvh; width:min(86vw,360px);
  background:var(--paper); padding:18px 22px 32px;
  transform:translateX(100%); transition:transform .32s var(--ease);
  display:flex; flex-direction:column; gap:.4rem; box-shadow:-12px 0 40px rgba(22,39,31,.25);
  overflow-y:auto;
}
.mobile-drawer.open{ transform:none; }
.drawer-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1rem; }
.mobile-drawer nav{ display:flex; flex-direction:column; }
.mobile-drawer nav a{
  text-decoration:none; color:var(--ink); font-family:var(--serif); font-size:1.35rem;
  padding:.7rem 0; border-bottom:1px solid var(--rule);
}
.mobile-drawer .btn{ margin-top:.8rem; }

/* ---------------- hero ---------------- */
.hero{
  position:relative; min-height:clamp(560px,92vh,860px);
  display:flex; align-items:center;
  color:var(--on-dark); overflow:hidden; isolation:isolate;
  padding-top:var(--header-h);
}
.hero-media{ position:absolute; inset:0; z-index:-2; }
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.92) contrast(1.02) brightness(.92);
}
.hero-grade{
  position:absolute; inset:0;
  background:
    radial-gradient(120% 85% at 70% 18%, rgba(22,39,31,.18), transparent 60%),
    linear-gradient(180deg, rgba(22,39,31,.55) 0%, rgba(22,39,31,.28) 38%, rgba(22,39,31,.62) 100%),
    linear-gradient(0deg, rgba(31,58,46,.55), rgba(31,58,46,.22));
  mix-blend-mode:multiply;
}
.hero-contour{ position:absolute; inset:0; width:100%; height:100%; opacity:.10; }

.hero-content{ position:relative; max-width:760px; padding-top:2rem; padding-bottom:3rem; }
.hero-seal{ display:inline-block; width:118px; height:118px; margin-bottom:1.4rem; filter:drop-shadow(0 4px 10px rgba(0,0,0,.3)); }
.hero-seal svg{ width:100%; height:100%; }
.seal-ring{ font-family:var(--sans); font-size:8.7px; font-weight:600; letter-spacing:.12em; }

.hero-title{
  font-size:clamp(2.5rem,6.4vw,4.6rem);
  font-variation-settings:"opsz" 144, "SOFT" 30;
  line-height:1.04; letter-spacing:-.01em;
  margin:.2rem 0 1rem; text-shadow:0 2px 20px rgba(0,0,0,.28);
}
.hero-lead{
  font-size:clamp(1.05rem,1.4vw,1.28rem); max-width:38ch; color:#f0e9da;
  margin-bottom:1.8rem; text-shadow:0 1px 10px rgba(0,0,0,.3);
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:.9rem; }

.scroll-cue{
  display:inline-flex; align-items:center; gap:.5rem; margin-top:2.4rem;
  color:var(--gold-bright); text-decoration:none; font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase; font-weight:600;
}
.scroll-cue svg{ width:1.3em; height:1.3em; animation:bob 1.8s var(--ease) infinite; }
@keyframes bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(5px);} }

/* ---------------- medal rail ---------------- */
.medal-rail{ position:relative; background:var(--fir); color:var(--on-dark); border-block:1px solid var(--rule-dark); overflow:hidden; }
.rail-viewport{ overflow:hidden; }
.rail-track{ display:flex; width:max-content; animation:marquee 46s linear infinite; }
.rail-track:hover, .rail-track:focus-within{ animation-play-state:paused; }
.rail-track.is-paused{ animation-play-state:paused; }
.rail-toggle{
  position:absolute; top:50%; right:12px; transform:translateY(-50%); z-index:3;
  width:34px; height:34px; border-radius:50%; display:grid; place-items:center;
  background:rgba(22,39,31,.9); border:1px solid var(--rule-dark); color:var(--gold-bright); cursor:pointer;
}
.rail-toggle:hover{ background:var(--forest); }
.rail-toggle svg{ width:15px; height:15px; }
.rail-toggle .ic-play{ display:none; }
.rail-toggle[aria-pressed="true"] .ic-pause{ display:none; }
.rail-toggle[aria-pressed="true"] .ic-play{ display:block; }
.rail-group{ display:flex; flex:none; }
.rail-group li{
  display:inline-flex; align-items:center; gap:.6em;
  padding:1.05rem 2.2rem; font-size:.95rem; font-weight:500; white-space:nowrap;
  border-right:1px solid var(--rule-dark); color:#ece3d0;
  font-feature-settings:"tnum" 1;
}
.rail-medal{ width:1.45em; height:1.45em; color:var(--gold-bright); flex:none; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---------------- sections ---------------- */
.section{ padding-block:var(--section-y); position:relative; }
.section-paper{ background:var(--paper); color:var(--ink); }
.section-leinen{ background:var(--linen); color:var(--ink); }
.section-fir{ background:var(--fir); color:var(--on-dark); }
.section-fir::before{
  content:""; position:absolute; inset:0; opacity:.05; pointer-events:none;
  background-image:radial-gradient(circle at 50% 0, var(--gold-bright), transparent 60%);
}

.section-head{ max-width:var(--reading); margin:0 auto clamp(2.4rem,5vw,3.6rem); text-align:center; }
.section-title{ font-size:clamp(1.85rem,3.6vw,3rem); font-variation-settings:"opsz" 72; }
.section-title.light{ color:var(--on-dark); }
.section-intro{ margin-top:1rem; color:var(--muted); font-size:1.08rem; }
.section-intro.light{ color:var(--on-dark-mut); }

/* ---------------- plates (framed photos) ---------------- */
.plate{ margin:0; }
.plate img{
  border-radius:var(--radius-sm);
  border:1px solid var(--rule); padding:6px; background:var(--linen);
  box-shadow:var(--shadow-soft);
  filter:saturate(1.03) contrast(1.01);
}
.section-fir .plate img{ background:#23402f; border-color:var(--rule-dark); }
.plate figcaption{
  font-family:var(--serif); font-style:italic; font-size:.95rem;
  color:var(--muted); margin-top:.7rem; text-align:center;
}
.section-fir .plate figcaption{ color:var(--on-dark-mut); }
.plate-wide{ max-width:920px; margin:0 auto clamp(2rem,4vw,3rem); }

/* ---------------- story ---------------- */
.story-grid{
  display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(2rem,5vw,4rem);
  align-items:start; max-width:1080px; margin-inline:auto;
}
.story-prose{ font-size:1.12rem; }
.reading{ max-width:var(--reading); }
.dropcap{
  float:left; font-family:var(--serif); font-weight:600; font-size:4.4rem;
  line-height:.78; padding:.06em .12em 0 0; color:var(--gold-ink);
}
.story-aside{ display:flex; flex-direction:column; gap:1.4rem; }
.rauten-motif{ text-align:center; }
.rauten-motif svg{ width:100%; max-width:240px; height:auto; }
.raute-active{ color:var(--crest-blue); }

.stat-row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--rule); border:1px solid var(--rule); border-radius:var(--radius);
  overflow:hidden; margin:clamp(2.6rem,5vw,3.6rem) auto 0; max-width:1080px;
}
.stat-row li{ background:var(--paper); padding:1.4rem 1rem; text-align:center; }
.stat-num{
  display:block; font-family:var(--serif); font-weight:600; font-size:clamp(1.5rem,3vw,2.1rem);
  color:var(--fir); font-feature-settings:"tnum" 1;
}
.stat-label{ display:block; font-size:.82rem; color:var(--muted); margin-top:.3rem; }

.timeline{
  max-width:var(--reading); margin:clamp(2.4rem,5vw,3.4rem) auto 0;
  border-left:2px solid var(--rule); padding-left:1.6rem;
}
.timeline li{ position:relative; padding:0 0 1.5rem; }
.timeline li:last-child{ padding-bottom:0; }
.timeline li::before{
  content:""; position:absolute; left:calc(-1.6rem - 7px); top:.35em;
  width:12px; height:12px; border-radius:50%; background:var(--gold); border:2px solid var(--paper);
}
.tl-year{ display:block; font-family:var(--serif); font-weight:600; color:var(--fir); font-feature-settings:"tnum" 1; }
.tl-text{ display:block; color:var(--muted); font-size:.98rem; }

/* ---------------- awards / trophy cabinet ---------------- */
.award-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.4rem; }
.award-card{
  background:#22402f; border:1px solid var(--rule-dark); border-radius:var(--radius);
  padding:1.8rem 1.6rem; position:relative; text-align:center; overflow:hidden;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.award-card:hover{ transform:translateY(-4px); box-shadow:0 16px 38px rgba(0,0,0,.28); border-color:var(--gold); }
.award-card h3{ color:var(--on-dark); font-size:1.4rem; margin:.3rem 0 .2rem; }
.award-seal{ width:60px; height:60px; margin:0 auto; filter:drop-shadow(0 4px 8px rgba(0,0,0,.35)); }
.award-champ{
  background:linear-gradient(180deg,#284a37,#1d3829);
  border:1.5px solid var(--gold-bright);
  box-shadow:0 0 0 1px rgba(216,175,94,.25), 0 14px 34px rgba(0,0,0,.3);
}
.champ-ribbon{
  position:absolute; top:14px; right:-34px; transform:rotate(45deg);
  background:var(--meat); color:#fff; font-size:.62rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; padding:.35em 2.6em;
}
.chip-list{ display:flex; flex-wrap:wrap; gap:.45rem; justify-content:center; margin-top:1rem; }
.chip{
  font-size:.78rem; font-weight:600; padding:.34em .75em; border-radius:999px;
  background:rgba(244,237,224,.10); color:#e7dec9; border:1px solid var(--rule-dark);
  font-feature-settings:"tnum" 1;
}
.chip-gold{ background:rgba(216,175,94,.16); color:var(--gold-bright); border-color:rgba(216,175,94,.5); }
/* chips inside light product plates */
.section-paper .chip{ background:#fff6; color:var(--muted); border-color:var(--rule); }
.section-paper .chip-gold{ background:rgba(182,138,62,.12); color:var(--gold-ink); border-color:rgba(182,138,62,.5); }

/* ---------------- products ---------------- */
.plates{ display:flex; flex-direction:column; gap:clamp(2.8rem,6vw,5rem); }
.product-plate{
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(1.6rem,4vw,3.4rem);
  align-items:center;
}
.product-plate.plate-reverse .plate{ order:2; }
.plate-text{ position:relative; }
.plate-text h3{ font-size:clamp(1.7rem,3vw,2.3rem); margin:.2rem 0 .6rem; color:var(--fir); }
.plate-text p{ color:var(--ink); font-size:1.08rem; }
.cat-seal{
  display:inline-grid; place-items:center; width:46px; height:46px; border-radius:50%;
  border:1px solid var(--gold); color:var(--gold); margin-bottom:.4rem;
}
.cat-seal svg{ width:24px; height:24px; }

/* ---------------- genuss band ---------------- */
.genuss-band{
  position:relative; min-height:clamp(320px,46vw,500px);
  display:flex; align-items:center; justify-content:center; text-align:center;
  color:var(--on-dark); overflow:hidden; isolation:isolate;
}
.genuss-bg{
  position:absolute; inset:0; z-index:-2; background-size:cover; background-position:center;
  background-attachment:fixed;
}
.genuss-band::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(22,39,31,.72), rgba(22,39,31,.6));
}
.accent-quote{
  font-family:var(--serif); font-style:italic; font-weight:400;
  font-size:clamp(1.5rem,3.4vw,2.6rem); line-height:1.3; max-width:18ch; margin:0 auto;
  text-shadow:0 2px 18px rgba(0,0,0,.4);
}
.accent-quote.small{ font-size:clamp(1.2rem,2.4vw,1.6rem); color:var(--gold); text-shadow:none; max-width:24ch; }

/* ---------------- buy grid ---------------- */
.buy-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.4rem; }
.buy-card{
  background:var(--linen); border:1px solid var(--rule); border-radius:var(--radius);
  padding:1.8rem; position:relative; overflow:hidden;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.buy-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.buy-icon{ width:40px; height:40px; color:var(--gold); margin-bottom:.7rem; }
.buy-card h3{ font-size:1.32rem; color:var(--fir); margin-bottom:.4rem; }
.buy-card p{ color:var(--muted); font-size:.98rem; margin-bottom:.6rem; }
.buy-meta{ display:flex; align-items:center; gap:.5em; font-size:.9rem; color:var(--fir); font-weight:500; font-feature-settings:"tnum" 1; }
.buy-meta svg{ width:1.15em; height:1.15em; color:var(--gold); flex:none; }
.buy-links{ display:flex; flex-wrap:wrap; gap:.4rem 1rem; }
.buy-links a{ color:var(--gold-ink); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.buy-links a:hover{ text-decoration:underline; }

.buy-feature{ background:var(--fir); border-color:var(--rule-dark); color:var(--on-dark); }
.buy-feature h3{ color:var(--on-dark); }
.buy-feature p{ color:var(--on-dark-mut); }
.buy-feature .buy-icon{ color:var(--gold-bright); }
.buy-feature .buy-meta{ color:#ece3d0; }
.badge-247{
  position:absolute; top:1.2rem; right:1.2rem;
  background:var(--gold-bright); color:#16271f; font-size:.72rem; font-weight:700;
  padding:.34em .8em; border-radius:999px; letter-spacing:.03em;
  box-shadow:0 0 0 0 rgba(216,175,94,.6); animation:pulse 2.4s var(--ease) infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(216,175,94,.55); }
  70%{ box-shadow:0 0 0 12px rgba(216,175,94,0); }
  100%{ box-shadow:0 0 0 0 rgba(216,175,94,0); }
}
/* photo cards */
.buy-market, .buy-map{ grid-column:span 2; display:grid; grid-template-columns:1.2fr 1fr; gap:0; padding:0; }
.buy-photo{ margin:0; position:relative; overflow:hidden; }
.buy-photo img{ width:100%; height:100%; min-height:230px; object-fit:cover; filter:saturate(1.02); }
.buy-photo-text{ padding:1.8rem; }
.map-pin{ position:absolute; top:42%; left:46%; color:var(--gold-bright); width:40px; height:40px; filter:drop-shadow(0 3px 6px rgba(0,0,0,.5)); animation:bob 2s var(--ease) infinite; }
.map-pin svg{ width:100%; height:100%; }

/* ---------------- order panel ---------------- */
.order-panel{
  display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(2rem,5vw,4rem);
  align-items:center; background:var(--paper); border:1px solid var(--rule);
  border-radius:var(--radius); padding:clamp(1.8rem,4vw,3rem); box-shadow:var(--shadow-soft);
}
.order-actions{ display:flex; flex-wrap:wrap; gap:.9rem; margin-top:1.4rem; }
.order-list{ display:flex; flex-direction:column; gap:1.1rem; }
.order-list li{ display:flex; gap:1rem; align-items:flex-start; }
.order-list svg{ width:30px; height:30px; color:var(--gold); flex:none; margin-top:2px; }
.order-list strong{ display:block; font-family:var(--serif); font-size:1.15rem; color:var(--fir); }
.order-list span{ color:var(--muted); font-size:.95rem; }

/* ---------------- erleben ---------------- */
.erleben-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.4rem; margin-bottom:clamp(2rem,4vw,3rem); }
.erleben-card{
  background:var(--linen); border:1px solid var(--rule); border-radius:var(--radius);
  padding:2rem 1.7rem; transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.erleben-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.erleben-ic{ display:inline-grid; place-items:center; width:54px; height:54px; border-radius:14px; background:var(--fir); color:var(--gold-bright); margin-bottom:1rem; }
.erleben-ic svg{ width:28px; height:28px; }
.erleben-card h3{ font-size:1.4rem; color:var(--fir); margin-bottom:.5rem; }
.erleben-card p{ color:var(--muted); }
.erleben-photos{ display:grid; grid-template-columns:1fr 1fr; gap:1.3rem; margin-bottom:1.3rem; }
.erleben-pano{ margin-bottom:clamp(2rem,4vw,3rem); }
.tiere-photo{ max-width:560px; margin:0 auto 1.6rem; }

.tiere{ text-align:center; max-width:880px; margin-inline:auto; }
.tiere-lead{ color:var(--muted); font-weight:500; margin-bottom:1rem; }
.tiere-list{ display:flex; flex-wrap:wrap; gap:.7rem; justify-content:center; }
.tiere-list li{
  display:inline-flex; align-items:center; gap:.5em;
  background:var(--linen); border:1px solid var(--rule); border-radius:999px;
  padding:.5em 1em; font-size:.95rem; font-weight:500; color:var(--ink);
}
.tiere-num{ font-family:var(--serif); font-weight:700; color:var(--gold-ink); font-feature-settings:"tnum" 1; }
.tiere .accent-quote{ margin-top:1.8rem; color:var(--fir); }

/* ---------------- family ---------------- */
.family-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.plate-portrait img{ width:100%; }
.family-text p{ font-size:1.1rem; }

/* ---------------- contact ---------------- */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,5vw,3.5rem); max-width:1000px; margin-inline:auto; }
.contact-list{ display:flex; flex-direction:column; gap:1.4rem; }
.contact-list li{ display:flex; gap:1rem; align-items:flex-start; }
.contact-list svg{ width:30px; height:30px; color:var(--gold); flex:none; margin-top:3px; }
.contact-list strong{ display:block; font-family:var(--serif); font-size:1.05rem; color:var(--fir); margin-bottom:.1rem; }
.contact-list a{ color:var(--ink); text-decoration:none; overflow-wrap:anywhere; }
.contact-list li > div{ min-width:0; }
.footer-contact p{ overflow-wrap:anywhere; }
.contact-list a:hover{ color:var(--gold-ink); }
.contact-action{ display:block; margin-top:.5rem; color:var(--gold-ink)!important; font-weight:600; font-size:.92rem; }
.contact-cta{
  background:var(--fir); color:var(--on-dark); border-radius:var(--radius);
  padding:2.2rem; text-align:center; box-shadow:var(--shadow-soft);
}
.contact-cta p{ color:var(--on-dark-mut); }
.contact-seal{ width:72px; height:72px; margin-bottom:.6rem; }
.social-row{ display:flex; gap:.8rem; justify-content:center; margin-top:1.2rem; }
.social-row a{
  display:grid; place-items:center; width:44px; height:44px; border-radius:50%;
  border:1px solid var(--rule-dark); color:var(--gold-bright); transition:.2s var(--ease);
}
.social-row a:hover{ background:var(--gold-bright); color:var(--forest); transform:translateY(-2px); }
.social-row svg{ width:22px; height:22px; }

/* ---------------- footer ---------------- */
.site-footer{ background:var(--forest); color:var(--on-dark-mut); padding-top:clamp(3rem,6vw,4.5rem); }
.footer-inner{ display:grid; grid-template-columns:1.4fr 1fr 1.4fr; gap:2.5rem; padding-bottom:2.5rem; border-bottom:1px solid var(--rule-dark); }
.footer-name{ font-family:var(--serif); font-size:1.5rem; color:var(--on-dark); margin:.6rem 0 .3rem; }
.footer-tag{ max-width:32ch; font-size:.92rem; }
.footer-nav{ display:flex; flex-direction:column; gap:.6rem; }
.footer-nav a{ color:var(--on-dark-mut); text-decoration:none; }
.footer-nav a:hover{ color:var(--gold-bright); }
.footer-contact a{ color:var(--gold-bright); text-decoration:none; }
.footer-contact .social-row{ justify-content:flex-start; margin-top:1rem; }
.footer-bottom{
  display:flex; flex-wrap:wrap; gap:.5rem 1.5rem; justify-content:space-between;
  padding-block:1.6rem; font-size:.85rem;
}
.footer-bottom a{ color:var(--on-dark-mut); }
.footer-bottom a:hover{ color:var(--gold-bright); }
.footer-signoff{ font-family:var(--script); font-size:1.3rem; color:var(--gold-bright); }

/* ---------------- mobile sticky bar ---------------- */
.sticky-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:90; display:none;
  grid-template-columns:1fr 1fr; gap:1px; background:var(--rule-dark);
  box-shadow:0 -4px 20px rgba(0,0,0,.18); transform:translateY(110%); transition:transform .3s var(--ease);
}
.sticky-bar.show{ transform:none; }
.sticky-bar a{
  display:flex; align-items:center; justify-content:center; gap:.5em;
  padding:1rem; text-decoration:none; font-weight:600; font-size:.95rem;
  background:var(--fir); color:var(--on-dark);
}
.sticky-bar svg{ width:1.3em; height:1.3em; }
.sticky-wa{ background:var(--whatsapp)!important; color:#06371d!important; }

/* ---------------- reveal animation ---------------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------------- sortiment (full product range) ---------------- */
.sortiment{ margin-top:clamp(3rem,6vw,5rem); border-top:1px solid var(--rule); padding-top:clamp(2.4rem,5vw,3.6rem); }
.sortiment-title{ font-size:clamp(1.6rem,3vw,2.2rem); color:var(--fir); text-align:center; }
.sortiment-note{ max-width:62ch; margin:.8rem auto 2.2rem; text-align:center; color:var(--muted); }
.sortiment-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:1.2rem; }
.sortiment-card{ background:var(--linen); border:1px solid var(--rule); border-radius:var(--radius); padding:1.4rem 1.5rem; }
.sortiment-card h4{ font-family:var(--serif); font-weight:600; font-size:1.2rem; color:var(--fir); margin:0 0 .8rem; padding-bottom:.6rem; border-bottom:1px solid var(--rule); }
.sortiment-card ul{ display:flex; flex-direction:column; gap:.45rem; }
.sortiment-card li{ position:relative; padding-left:1.1rem; color:var(--ink); font-size:.96rem; }
.sortiment-card li::before{ content:""; position:absolute; left:0; top:.6em; width:5px; height:5px; border-radius:50%; background:var(--gold); }
.sortiment-cta{ display:flex; flex-wrap:wrap; gap:.9rem; justify-content:center; margin-top:2.2rem; }

/* ---------------- aktuelles ---------------- */
.aktuell-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(258px,1fr)); gap:1.4rem; }
.aktuell-card{ background:var(--paper); border:1px solid var(--rule); border-left:4px solid var(--gold); border-radius:var(--radius-sm); padding:1.6rem 1.7rem; }
.aktuell-tag{ display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-ink); margin-bottom:.5rem; }
.aktuell-card h3{ font-size:1.3rem; color:var(--fir); margin-bottom:.4rem; }
.aktuell-card p{ color:var(--muted); font-size:.96rem; margin:0; }

/* ---------------- partner & freunde ---------------- */
.partner-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; max-width:1000px; margin-inline:auto; }
.partner-grid a{
  display:flex; align-items:center; justify-content:space-between; gap:.6rem;
  background:var(--paper); border:1px solid var(--rule); border-radius:var(--radius-sm);
  padding:1rem 1.2rem; text-decoration:none; color:var(--fir);
  font-family:var(--serif); font-size:1.06rem; font-weight:500;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.partner-grid a:hover{ transform:translateY(-2px); box-shadow:var(--shadow-soft); border-color:var(--gold); }
.partner-grid svg{ width:17px; height:17px; color:var(--gold); flex:none; }

/* ---------------- vcard / QR ---------------- */
.vcard{ display:flex; flex-wrap:wrap; align-items:center; gap:1rem; margin-top:1.4rem; padding-top:1.4rem; border-top:1px solid var(--rule-dark); text-align:left; }
.vcard-qr{ width:92px; height:92px; border-radius:8px; background:#fff; padding:5px; flex:none; }
.vcard-text{ flex:1 1 140px; }
.vcard-text p{ font-size:.9rem; color:var(--on-dark-mut); margin:0 0 .6rem; }
.contact-cta .btn-outline{ color:var(--on-dark); border-color:var(--rule-dark); }
.contact-cta .btn-outline:hover{ color:var(--gold-bright); border-color:var(--gold-bright); }

/* ---------------- handwerk (production diashows) ---------------- */
.handwerk-rows{ display:flex; flex-direction:column; gap:clamp(2.6rem,5vw,4.2rem); }
.handwerk-row{ display:grid; grid-template-columns:1.3fr .7fr; gap:clamp(1.6rem,4vw,3rem); align-items:center; }
.handwerk-row.reverse .slideshow{ order:2; }
.handwerk-blurb h3{ font-size:clamp(1.5rem,2.6vw,2rem); color:var(--fir); margin:.2rem 0 .6rem; }
.handwerk-blurb p{ color:var(--muted); }

/* slideshow / diashow */
.slideshow{ position:relative; }
.ss-track{ position:relative; aspect-ratio:3/2; border:1px solid var(--rule); padding:6px; background:var(--linen); border-radius:var(--radius-sm); box-shadow:var(--shadow-soft); overflow:hidden; }
.ss-slide{ position:absolute; inset:6px; margin:0; opacity:0; transition:opacity .6s var(--ease); pointer-events:none; }
.ss-slide.is-active{ opacity:1; pointer-events:auto; }
.ss-slide img{ width:100%; height:100%; object-fit:cover; border-radius:4px; display:block; }
.ss-slide figcaption{ position:absolute; left:0; right:0; bottom:0; padding:2.4rem 1.1rem .85rem; font-family:var(--serif); font-style:italic; color:var(--on-dark); font-size:1.02rem; background:linear-gradient(transparent, rgba(22,39,31,.55) 45%, rgba(22,39,31,.88)); border-radius:0 0 4px 4px; }
.ss-btn{ position:absolute; top:50%; transform:translateY(-50%); z-index:2; width:42px; height:42px; border-radius:50%; border:1px solid var(--rule); background:rgba(244,237,224,.92); color:var(--fir); cursor:pointer; display:grid; place-items:center; transition:background .2s var(--ease), color .2s var(--ease); }
.ss-btn:hover{ background:#fff; color:var(--gold-ink); }
.ss-btn svg{ width:22px; height:22px; }
.ss-prev{ left:14px; } .ss-next{ right:14px; }
.ss-ui{ display:flex; align-items:center; justify-content:center; gap:.9rem; margin-top:1rem; }
.ss-dots{ display:flex; gap:.5rem; }
.ss-dot{ width:9px; height:9px; border-radius:50%; border:1px solid var(--gold); background:transparent; padding:0; cursor:pointer; transition:background .2s var(--ease); }
.ss-dot.is-current{ background:var(--gold); }
.ss-play{ width:34px; height:34px; border-radius:50%; border:1px solid var(--rule); background:var(--paper); color:var(--fir); cursor:pointer; display:grid; place-items:center; }
.ss-play svg{ width:15px; height:15px; }
.ss-count{ font-size:.8rem; color:var(--muted); font-feature-settings:"tnum" 1; min-width:3.4em; text-align:center; }
.sr-only{ position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ===================== responsive ===================== */
@media (max-width:1000px){
  .story-grid, .product-plate, .order-panel, .family-grid, .contact-grid{ grid-template-columns:1fr; }
  .handwerk-row{ grid-template-columns:1fr; }
  .handwerk-row.reverse .slideshow{ order:0; }
  .erleben-photos{ grid-template-columns:1fr; }
  .product-plate.plate-reverse .plate{ order:0; }
  .family-grid .plate-portrait{ max-width:460px; margin-inline:auto; }
  .buy-market, .buy-map{ grid-column:span 1; grid-template-columns:1fr; }
  .buy-photo img{ min-height:200px; }
}
@media (max-width:860px){
  .main-nav, .header-cta{ display:none; }
  .nav-toggle{ display:grid; place-items:center; }
  .nav-close{ display:grid; place-items:center; }
  .sticky-bar{ display:grid; }
  .stat-row{ grid-template-columns:repeat(2,1fr); }
  body{ padding-bottom:62px; } /* reserve space so the sticky bottom bar never covers the footer */
  .genuss-bg{ background-attachment:scroll; }
}
@media (max-width:480px){
  .award-grid, .buy-grid, .erleben-grid{ grid-template-columns:1fr; }
  .champ-ribbon{ font-size:.56rem; }
  .hero-actions .btn, .order-actions .btn{ width:100%; }
}

/* ===================== reduced motion ===================== */
@media (prefers-reduced-motion: reduce){
  .rail-track{ animation:none; flex-wrap:wrap; width:100%; }
  .rail-toggle{ display:none; } /* nothing to pause when motion is reduced */
  .ss-slide{ transition:none; } /* instant slide change, no cross-fade */
  .rail-group[aria-hidden="true"]{ display:none; }
  .rail-group{ flex-wrap:wrap; }
  .badge-247, .scroll-cue svg, .map-pin{ animation:none; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .btn:hover, .award-card:hover, .buy-card:hover, .erleben-card:hover{ transform:none; }
  .genuss-bg{ background-attachment:scroll; }
}

/* print */
@media print{
  .site-header,.sticky-bar,.scroll-cue,.medal-rail,.mobile-drawer,.drawer-backdrop{ display:none!important; }
  body{ color:#000; background:#fff; }
}
