/* =========================================================
   Vogelsang – Familie Bucher, Ebikon
   "Sonnengereift" – warm editorial orchard
   statisch · mobile-first · responsive
   Design system: see /DESIGN.md (frontend-design methodology)
   ========================================================= */

/* ---------- Design Tokens ----------
   Palette: Forest + Bone + Amber (taste-skill approved "Forest" family).
   Deep forest green carries the surface; bone is a low-chroma off-white
   (not the old cream/parchment); amber replaces the brassy gold.
   Variable NAMES kept stable so inline HTML --c hooks never break. */
:root {
  /* greens — forest, carries major surface */
  --green:        #2f5d34;
  --green-dark:   #1d3c22;
  --pine:         #122b18;   /* deepest dark surfaces (hero/footer) */
  --green-soft:   #6f8f63;
  /* accents */
  --berry:        #8f2d3a;   /* oxblood — real berry accent, AA on bone */
  --berry-dark:   #71222d;
  --gold:         #b5701f;   /* amber — primary warm accent */
  --gold-soft:    #e6b35c;   /* light amber — for accents on dark */
  --gold-deep:    #8a5310;   /* amber that passes AA on bone (text) */
  /* bone neutrals — lower chroma than cream */
  --cream:        #f3f1e9;   /* bone background */
  --cream-2:      #e9e5d9;   /* bone surface */
  --wheat:        #ddd2bb;
  --wood:         #5e4a32;
  --ink:          #232017;
  --ink-soft:     #4d4940;   /* body — ~8:1 on bone */
  --ink-mute:     #767061;
  --white:        #ffffff;
  --sky:          #c4d6cf;
  --line:         rgba(47,93,52,.14);

  /* green-tinted depth (never neutral grey / pure black) */
  --shadow-sm: 0 2px 8px rgba(18,43,24,.06);
  --shadow:    0 10px 30px rgba(18,43,24,.13);
  --shadow-lg: 0 24px 60px rgba(12,28,16,.22);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);

  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  /* warm radial light – atmosphere over a flat fill */
  background-image:
    radial-gradient(120% 80% at 12% -8%, rgba(181,112,31,.07) 0%, transparent 46%),
    radial-gradient(110% 70% at 100% 0%, rgba(47,93,52,.08) 0%, transparent 50%);
  background-attachment: fixed;
  line-height: 1.68;
  font-size: 1.04rem;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* faint paper grain overlay – tactile, printed-almanac feel */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* keep real content above the grain */
.site-header, main, section, footer, .lightbox { position: relative; z-index: 2; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--berry); color: var(--cream); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--green-dark);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.15rem, 5.6vw, 5rem); line-height: 1.05; letter-spacing: -.022em; }
h2 { font-size: clamp(1.85rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h1, h2, h3 { overflow-wrap: break-word; }
/* editorial italic accent on emphasised words */
h1 em, h2 em, h3 em, .ital {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gold-deep);   /* warm amber italic accent on bone */
}
p  { color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.4rem); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-cream2 { background: var(--cream-2); }
.bg-green  { background: var(--pine); color: var(--cream); }
.bg-green h2, .bg-green h3 { color: var(--cream); }
.bg-green p { color: rgba(243,241,233,.82); }
/* white cards/panels inside a dark bg-green section must keep dark text
   (otherwise the on-green light color makes their text invisible on white) */
.bg-green .card h3, .bg-green .panel h3 { color: var(--green-dark); }
.bg-green .panel h4, .bg-green .icon-list h4 { color: var(--ink); }
.bg-green .card p, .bg-green .panel p, .bg-green .icon-list p { color: var(--ink-soft); }
.bg-green .tag { background: var(--wheat); color: var(--wood); }
.center { text-align: center; }
.lead { font-size: clamp(1.08rem, 1.9vw, 1.28rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.62; }
.center .lead { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--berry);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--gold); display: inline-block; border-radius: 2px; }
.center .eyebrow::after { content: ""; width: 24px; height: 2px; background: var(--gold); display: inline-block; border-radius: 2px; }
.bg-green .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.center .section-head { margin-inline: auto; }
/* gold "drawn" underline accent for headings */
.underline-gold { position: relative; display: inline; }
.underline-gold::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.12em; height: .32em;
  background: linear-gradient(var(--gold-soft), var(--gold)); opacity: .55;
  border-radius: 6px; z-index: -1;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .97rem;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(212,162,76,.55); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--berry); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--berry-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--green { background: var(--green); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--green:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { border-color: currentColor; color: var(--green-dark); }
.btn--ghost:hover { background: var(--green-dark); color: var(--cream); border-color: var(--green-dark); transform: translateY(-3px); }
.bg-green .btn--ghost { color: var(--cream); }
.bg-green .btn--ghost:hover { background: var(--cream); color: var(--green-dark); border-color: var(--cream); }
.btn--light { background: var(--cream); color: var(--green-dark); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 1.1rem;
}
.site-header.scrolled {
  background: rgba(250,246,238,.9);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding-block: .6rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; z-index: 2; }
.brand__logo { height: 52px; width: auto; display: block; transition: height .35s var(--ease); }
.site-header.scrolled .brand__logo { height: 42px; }
@media (max-width: 520px) { .brand__logo { height: 40px; } .site-header.scrolled .brand__logo { height: 36px; } }
/* black logo (tree + wordmark) sits directly on the green footer, like the header */
.footer-logo { height: 58px; width: auto; display: block; margin-bottom: .8rem; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--green-dark); letter-spacing: -.01em; }
.brand__sub { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--berry); font-weight: 700; margin-top: 3px; }

/* header text light variant (over dark hero, before scroll) */
.site-header:not(.scrolled).on-dark .brand__name { color: var(--cream); }
.site-header:not(.scrolled).on-dark .nav__link { color: rgba(250,246,238,.92); }
.site-header:not(.scrolled).on-dark .brand__mark .mark-ring { stroke: var(--cream); }
.site-header:not(.scrolled).on-dark .nav-toggle span { background: var(--cream); }

.nav__list { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative;
  padding: .5rem .85rem;
  font-size: .92rem; font-weight: 500;
  color: var(--ink); border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .28rem;
  height: 2px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav__link:hover { color: var(--berry); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--berry); }
.nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { margin-left: .4rem; }
.nav__cta .btn { white-space: nowrap; }

/* mobile toggle */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 110;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav__list {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    background: var(--cream);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: .4rem;
    padding: 2rem clamp(1.5rem,6vw,2.5rem); box-shadow: var(--shadow-lg);
    transform: translateX(105%); transition: transform .4s var(--ease);
  }
  .nav__list.open { transform: translateX(0); }
  .nav__link { width: 100%; font-size: 1.18rem; font-family: var(--font-display); padding: .7rem .5rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1rem 0 0; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(25,48,29,.5); z-index: 95;
    opacity: 0; visibility: hidden; transition: opacity .3s;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  .site-header:not(.scrolled).on-dark .nav__link { color: var(--ink); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
  padding-top: 5rem;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroPan 18s ease-out both; }
@keyframes heroPan { from { transform: scale(1.12); } to { transform: scale(1.04); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,43,24,.42) 0%, rgba(18,43,24,.12) 30%, rgba(18,43,24,.9) 100%),
    radial-gradient(90% 70% at 82% 8%, rgba(181,112,31,.20), transparent 55%),
    radial-gradient(80% 60% at 16% 86%, rgba(18,43,24,.5), transparent 70%);
}
.hero__inner { max-width: min(780px, 100%); padding-block: 4rem; }
.hero h1 { color: var(--cream); text-shadow: 0 2px 30px rgba(0,0,0,.32); }
.hero h1 em { color: var(--gold-soft); }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero__sub {
  font-size: clamp(1.06rem, 2.2vw, 1.35rem);
  color: rgba(250,246,238,.92);
  max-width: min(56ch, 100%); margin: 1.5rem 0 2.3rem; line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* orchestrated hero load (CSS-only, staggered) */
.hero .eyebrow   { animation: heroRise .8s var(--ease) both; }
.hero h1         { animation: heroRise .9s .08s var(--ease) both; }
.hero__sub       { animation: heroRise .9s .18s var(--ease) both; }
.hero__actions   { animation: heroRise .9s .28s var(--ease) both; }
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* page hero (sub pages) */
.page-hero {
  position: relative; padding: clamp(8.5rem,16vw,11.5rem) 0 clamp(3.5rem,6vw,5rem);
  color: var(--cream); overflow: hidden; text-align: center;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,30,18,.55), rgba(25,48,29,.82)); }
.page-hero h1 { color: var(--cream); text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.page-hero h1 em { color: var(--gold-soft); }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--gold-soft); }
.page-hero p { color: rgba(250,246,238,.92); max-width: 60ch; margin: 1.1rem auto 0; font-size: clamp(1.02rem,1.8vw,1.2rem); }
.breadcrumb { font-size: .82rem; color: rgba(250,246,238,.72); margin-top: 1.5rem; }
.breadcrumb a:hover { color: var(--gold-soft); }

/* =========================================================
   GENERIC CARDS / GRIDS
   ========================================================= */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(44,58,35,.14); border-color: rgba(63,107,58,.22); }
.card__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 60%, rgba(25,48,29,.18)); opacity:0; transition:opacity .4s; }
.card:hover .card__media::after { opacity:1; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { font-size: .96rem; }
.tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .32rem .72rem; border-radius: 999px; background: var(--wheat); color: var(--wood); margin-bottom: .7rem;
}

/* split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.split__media--tall img { aspect-ratio: 4/5; }
/* subtle decorative frame offset behind the image */
.split__media::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 2px solid var(--gold-soft); border-radius: var(--radius-lg); opacity: .5;
}
.split--reverse .split__media::before { inset: 14px 14px -14px -14px; }

/* floating badge on images */
.float-badge {
  position: absolute; background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.float-badge--br { right: -10px; bottom: -16px; }
.float-badge--bl { left: -10px; bottom: -16px; }
.float-badge .fb-icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--cream-2); color: var(--berry); }
.float-badge .fb-icon svg { width: 22px; height: 22px; }
.float-badge strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--green-dark); line-height: 1; }
.float-badge span { font-size: .78rem; color: var(--ink-soft); }
@media (max-width: 520px){ .float-badge{ padding:.7rem .8rem } .float-badge strong{font-size:1rem} }

/* =========================================================
   STATS
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); text-align: center; }
@media (max-width: 700px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat__label { font-size: .9rem; letter-spacing: .04em; margin-top: .4rem; }
.bg-green .stat__num { color: var(--gold-soft); }
.bg-green .stat__label { color: rgba(243,241,233,.8); }

/* =========================================================
   FEATURE / HIGHLIGHT BANNER (Wochenmarkt)
   ========================================================= */
.highlight {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; color: var(--cream);
  box-shadow: var(--shadow);
}
.highlight__bg { position: absolute; inset: 0; z-index: 0; }
.highlight__bg img { width: 100%; height: 100%; object-fit: cover; }
.highlight__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(110deg, rgba(86,24,36,.97) 0%, rgba(98,28,42,.92) 55%, rgba(111,34,48,.8) 100%); }
.highlight__inner { position: relative; z-index: 1; padding: clamp(2.4rem,5vw,4.2rem); max-width: 640px; }
.highlight h2 { color: var(--cream); text-shadow: 0 1px 14px rgba(0,0,0,.25); }
.highlight h2 em { color: var(--gold-soft); }
.highlight p { color: #fbeef0; }
.highlight .eyebrow { color: var(--gold-soft); }
.highlight .eyebrow::before { background: var(--gold-soft); }
.market-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; margin: 1.6rem 0 2rem; }
.market-meta div { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.market-meta svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; }

/* =========================================================
   PRODUCT CHIPS / APPLE WALL
   ========================================================= */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  padding: .5rem 1rem; border-radius: 999px; background: #dceccf;
  box-shadow: var(--shadow-sm); font-size: .9rem; font-weight: 600; color: var(--green-dark);
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
  border: 1px solid rgba(47,93,52,.5);
}
.chip:hover { transform: translateY(-3px); background: var(--green); color: var(--cream); border-color: var(--green); }
.bg-cream2 .chip { background: #dceccf; }

/* =========================================================
   SEASON CALENDAR
   ========================================================= */
.season-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
@media (max-width: 900px){ .season-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 540px){ .season-grid{ grid-template-columns: 1fr;} }
.season-card {
  background: var(--white); border-radius: var(--radius); padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); border-top: 5px solid var(--c, var(--green));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.season-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(44,58,35,.14); }
.season-card .s-emoji { font-size: 2rem; }
.season-card .s-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--cream-2); color: var(--c, var(--green)); margin-bottom: .6rem; }
.season-card .s-icon svg { width: 28px; height: 28px; }
.season-card h3 { margin: .5rem 0 .2rem; }
/* small inline icon inside chips */
.chip svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: .4rem; color: var(--green); }
.chip:hover svg { color: currentColor; }
.inline-ic { width: 18px; height: 18px; vertical-align: -3px; margin-right: .35rem; color: var(--berry); }
.season-card .s-month { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); font-weight: 700; }
.season-card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.season-card li { font-size: .94rem; padding-left: 1.3rem; position: relative; color: var(--ink-soft); }
.season-card li::before { content:""; position:absolute; left:0; top:.6em; width:7px; height:7px; border-radius:50%; background: var(--c, var(--green)); }

/* timeline */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 2rem; }
.timeline::before { content:""; position:absolute; left:7px; top:6px; bottom:6px; width:2px; background: linear-gradient(var(--gold), var(--green-soft)); }
.tl-item { position: relative; padding-bottom: 2.2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:""; position:absolute; left:-2rem; top:.3em; width:16px; height:16px; border-radius:50%; background: var(--gold); border:3px solid var(--cream); box-shadow:0 0 0 2px var(--gold); }
.tl-year { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--berry); font-weight: 500; }
.tl-item h3 { margin: .2rem 0 .4rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem .8rem; color: var(--cream); font-size: .9rem; font-weight: 500;
  background: linear-gradient(transparent, rgba(20,30,18,.82)); opacity: 0; transform: translateY(8px); transition: .3s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(16,20,13,.93); display: grid; place-items: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: opacity .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(250,246,238,.15); color: var(--cream); font-size: 1.5rem; }
.lightbox__close:hover { background: rgba(250,246,238,.3); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
@media (max-width: 800px){ .contact-cards{ grid-template-columns:1fr;} }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease);}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(44,58,35,.14); }
.contact-card .cc-icon { width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--cream-2); color: var(--berry); }
.contact-card .cc-icon svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.contact-card a { color: var(--berry); font-weight: 600; word-break: break-word; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { font-size: .95rem; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: clamp(280px, 45vw, 440px); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .7rem 0; border-bottom: 1px dashed rgba(92,85,75,.25); font-size: .98rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--green-dark); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-note { font-size: .86rem; color: var(--ink-soft); margin-top: 1rem; padding: .85rem 1.1rem; background: var(--cream-2); border-radius: var(--radius-sm); border: 1px solid rgba(181,112,31,.28); }

/* info card (re-usable bordered panel) */
.panel { background: var(--white); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2.4rem); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.panel--accent { background: #fbf3f1; border-color: rgba(143,45,58,.20); }
.icon-list { display: flex; flex-direction: column; gap: 1rem; }
.icon-list li { display: flex; gap: .9rem; align-items: flex-start; }
.icon-list .il-ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--cream-2); color: var(--green); display: grid; place-items: center; }
.icon-list .il-ic svg { width: 20px; height: 20px; }
.icon-list h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .15rem; }
.icon-list p { font-size: .92rem; }

/* prose (impressum / datenschutz) */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin: 2.4rem 0 .8rem; }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; color: var(--berry); }
.prose p, .prose li { color: var(--ink-soft); font-size: .98rem; margin-bottom: .7rem; }
.prose ul { padding-left: 1.2rem; list-style: disc; }
.prose a { color: var(--berry); text-decoration: underline; }
.prose strong { color: var(--ink); }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip { position: relative; text-align: center; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.8rem,6vw,4.8rem); }
.cta-strip__bg { position: absolute; inset: 0; z-index: 0; }
.cta-strip__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-strip__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(25,48,29,.86), rgba(25,48,29,.93)); }
.cta-strip > :not(.cta-strip__bg) { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--cream); }
.cta-strip h2 em { color: var(--gold-soft); }
.cta-strip p { color: rgba(250,246,238,.9); max-width: 52ch; margin: 1rem auto 1.8rem; }
.cta-strip .hero__actions { justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--pine); color: rgba(250,246,238,.82);
  padding-top: clamp(3rem,6vw,4.5rem);
  border-radius: clamp(28px, 6vw, 56px) clamp(28px, 6vw, 56px) 0 0;
  margin-top: clamp(2rem, 5vw, 4rem);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.6rem,4vw,3rem); padding-bottom: 3rem; }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr;} }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr;} }
.footer-brand .brand__name { color: var(--cream); }
.footer-brand p { color: rgba(250,246,238,.7); margin-top: 1rem; font-size: .94rem; max-width: 34ch; }
.footer-col h4 { color: var(--cream); font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: rgba(250,246,238,.78); font-size: .95rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; margin-bottom: .8rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(250,246,238,.1); color: var(--cream); transition: background .25s, transform .25s; }
.socials a:hover { background: var(--gold); color: var(--pine); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(250,246,238,.14); padding: 1.4rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .85rem; color: rgba(250,246,238,.6); }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-bottom .credit a { color: var(--gold-soft); font-weight: 600; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay:.08s } .reveal[data-delay="2"]{ transition-delay:.16s }
.reveal[data-delay="3"]{ transition-delay:.24s } .reveal[data-delay="4"]{ transition-delay:.32s }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

/* decorative leaf divider */
.leaf-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); margin: 0 auto; max-width: 300px; }
.leaf-divider::before, .leaf-divider::after { content:""; height:1px; flex:1; background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.leaf-divider svg { width: 26px; height: 26px; }

/* utility */
.mt-1{margin-top:1rem} .mt-2{margin-top:2rem} .mb-0{margin-bottom:0}
.text-berry{color:var(--berry)} .maxw-sm{max-width:46ch}

/* =========================================================
   CLICKABLE CARD (opens a modal) + PLAY CUE
   ========================================================= */
.card--action { width: 100%; text-align: left; font: inherit; color: inherit;
  background: var(--white); border: 1px solid var(--line); cursor: pointer; display: block; }
.card__play { position: absolute; inset: auto auto 12px 12px; width: 42px; height: 42px;
  border-radius: 50%; display: grid; place-items: center; background: rgba(143,45,58,.92);
  color: var(--cream); box-shadow: var(--shadow); transition: transform .3s var(--ease); }
.card__play svg { width: 18px; height: 18px; margin-left: 2px; }
.card--action:hover .card__play { transform: scale(1.08); }
.card__more { display: inline-flex; align-items: center; gap: .35rem; margin-top: .7rem;
  color: var(--berry); font-weight: 600; font-size: .9rem; }
.card--action:hover .card__more { gap: .55rem; }

/* =========================================================
   MODAL (Most-Herstellung)
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem); opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease); }
.modal.open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(12,28,16,.78);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.modal__panel { position: relative; z-index: 1; background: var(--cream);
  border-radius: var(--radius-lg); max-width: 880px; width: 100%; max-height: 88vh;
  overflow: auto; box-shadow: var(--shadow-lg); padding: clamp(1.6rem, 4vw, 2.8rem);
  transform: translateY(18px); transition: transform .35s var(--ease); }
.modal.open .modal__panel { transform: none; }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px;
  border-radius: 50%; border: none; background: var(--cream-2); color: var(--ink);
  font-size: 1.55rem; line-height: 1; z-index: 2; }
.modal__close:hover { background: var(--wheat); }
.modal__head { max-width: 60ch; margin-bottom: 1.7rem; padding-right: 2.5rem; }
.modal__head h2 { margin-bottom: .5rem; }
.modal__head h2 em { color: var(--gold-deep); }
.modal__head p { font-size: 1.02rem; }

.most-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.most-step { display: grid; grid-template-columns: 220px 1fr; gap: 1.3rem; align-items: stretch;
  min-height: 188px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.most-step__media { position: relative; min-height: 188px; }
.most-step__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.most-step__body { padding: 1.2rem 1.4rem 1.2rem 0; align-self: center; }
.most-step__no { display: inline-grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; background: var(--green); color: var(--cream);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; margin-bottom: .55rem; }
.most-step__body h3 { font-size: 1.16rem; margin-bottom: .3rem; }
.most-step__body p { font-size: .95rem; }
@media (max-width: 620px) {
  .most-step { grid-template-columns: 1fr; min-height: 0; }
  .most-step__media { min-height: 0; aspect-ratio: 16/9; }
  .most-step__body { padding: 0 1.3rem 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .modal, .modal__panel { transition: none; }
}

/* =========================================================
   INTERACTIVITY UPGRADE v7
   Scroll-Progress · Parallax · Reveal-Varianten · Spotlight ·
   Lightbox-Navigation · Timeline-Draw · Kalender-Stagger ·
   Back-to-top · Hero-Scroll-Cue
   ========================================================= */

/* Zeilenfall: keine einzelnen Waisenwörter in Überschriften */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- Scroll-Progressbar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 130;
  width: 100%; height: 3px; pointer-events: none;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  transform: scaleX(0); transform-origin: left;
}

/* ---------- Reveal-Varianten (werden per JS zugewiesen) ---------- */
.reveal--left  { transform: translateX(-38px); }
.reveal--right { transform: translateX(38px); }
.reveal--zoom  { transform: translateY(22px) scale(.965); }
/* Bild-Wipe: Maske öffnet sich beim Hereinscrollen */
.reveal--mask { transform: translateY(14px); }
.reveal--mask > img {
  clip-path: inset(11% 8% 11% 8% round var(--radius-lg));
  transition: clip-path 1.05s var(--ease);
}
.reveal--mask.in > img { clip-path: inset(0 0 0 0 round var(--radius-lg)); }

/* ---------- Parallax-Flächen (JS bewegt, CSS gibt Reserve) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .page-hero__bg img, .cta-strip__bg img, .highlight__bg img {
    transform: scale(1.14) translateY(0);
    will-change: transform;
  }
}

/* ---------- Spotlight-Hover auf Karten ---------- */
@media (hover: hover) and (pointer: fine) {
  .spot { position: relative; }
  .spot::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    border-radius: inherit; pointer-events: none; opacity: 0;
    background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%),
                rgba(230,179,92,.16), transparent 65%);
    transition: opacity .35s var(--ease);
  }
  .spot:hover::before { opacity: 1; }
}

/* Icon-Micro-Motion */
.s-icon svg, .cc-icon svg, .il-ic svg { transition: transform .35s var(--ease); }
.season-card:hover .s-icon svg { transform: rotate(-8deg) scale(1.12); }
.contact-card:hover .cc-icon svg { transform: scale(1.14); }
.icon-list li:hover .il-ic svg { transform: rotate(-6deg) scale(1.1); }

/* ---------- Lightbox: Navigation, Zähler, Caption ---------- */
.lightbox img { transition: opacity .22s ease; }
.lightbox.switching img { opacity: 0; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: rgba(250,246,238,.14); color: var(--cream);
  display: grid; place-items: center;
  transition: background .25s, transform .25s var(--ease);
}
.lightbox__nav:hover { background: rgba(250,246,238,.3); transform: translateY(-50%) scale(1.07); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: clamp(.6rem, 3vw, 1.6rem); }
.lightbox__nav--next { right: clamp(.6rem, 3vw, 1.6rem); }
.lightbox__caption {
  position: absolute; bottom: 1.3rem; left: 50%; transform: translateX(-50%);
  max-width: 84vw; text-align: center;
  color: rgba(250,246,238,.88); font-size: .93rem; font-weight: 500;
}
.lightbox__count {
  position: absolute; top: 1.7rem; left: 1.7rem;
  color: rgba(250,246,238,.65); font-size: .88rem; letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox img { max-height: 74vh; }
}

/* ---------- Timeline: Linie zeichnet sich, Punkte poppen ---------- */
.timeline::before {
  transform: scaleY(0); transform-origin: top;
  transition: transform 1.7s var(--ease);
}
.timeline.in::before { transform: scaleY(1); }
.timeline .tl-item::before {
  opacity: 0; transform: scale(.35);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.timeline.in .tl-item::before { opacity: 1; transform: scale(1); }
.timeline.in .tl-item:nth-child(1)::before { transition-delay: .1s; }
.timeline.in .tl-item:nth-child(2)::before { transition-delay: .38s; }
.timeline.in .tl-item:nth-child(3)::before { transition-delay: .66s; }
.timeline.in .tl-item:nth-child(4)::before { transition-delay: .94s; }
.timeline.in .tl-item:nth-child(5)::before { transition-delay: 1.22s; }

/* ---------- Saisonkalender: Zellen erscheinen spaltenweise ---------- */
.avail-wrap.will-anim td.on { opacity: 0; transition: opacity .5s var(--ease); }
.avail-wrap.will-anim.in td.on { opacity: 1; }
.avail-wrap.will-anim.in td.on:nth-child(2)  { transition-delay: .05s; }
.avail-wrap.will-anim.in td.on:nth-child(3)  { transition-delay: .10s; }
.avail-wrap.will-anim.in td.on:nth-child(4)  { transition-delay: .15s; }
.avail-wrap.will-anim.in td.on:nth-child(5)  { transition-delay: .20s; }
.avail-wrap.will-anim.in td.on:nth-child(6)  { transition-delay: .25s; }
.avail-wrap.will-anim.in td.on:nth-child(7)  { transition-delay: .30s; }
.avail-wrap.will-anim.in td.on:nth-child(8)  { transition-delay: .35s; }
.avail-wrap.will-anim.in td.on:nth-child(9)  { transition-delay: .40s; }
.avail-wrap.will-anim.in td.on:nth-child(10) { transition-delay: .45s; }
.avail-wrap.will-anim.in td.on:nth-child(11) { transition-delay: .50s; }
.avail-wrap.will-anim.in td.on:nth-child(12) { transition-delay: .55s; }
.avail-wrap.will-anim.in td.on:nth-child(13) { transition-delay: .60s; }

/* ---------- Back-to-top (links unten – rechts sitzt der Chat) ---------- */
.to-top {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--green-dark); color: var(--cream);
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              visibility .3s, background .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--berry); transform: translateY(-3px); }
.to-top:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(212,162,76,.55), var(--shadow); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Galerie: sanfter Einzug der Kacheln ---------- */
.gallery figure { opacity: 0; transform: translateY(24px) scale(.97); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.gallery figure.in { opacity: 1; transform: none; }

/* ---------- Reduced Motion: alles Neue neutralisieren ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal--mask > img { clip-path: none !important; transition: none; }
  .gallery figure { opacity: 1 !important; transform: none !important; }
  .avail-wrap.will-anim td.on { opacity: 1 !important; transition: none; }
  .timeline::before { transform: none !important; }
  .timeline .tl-item::before { opacity: 1 !important; transform: none !important; }
  .scroll-progress { display: none; }
  .page-hero__bg img, .cta-strip__bg img, .highlight__bg img { transform: none !important; }
}

/* =========================================================
   INTERACTIVITY UPGRADE v9
   Header-Hide · Reveal-Stagger · Page-Hero-Entrance ·
   Titel-Wortlauf · Linien-Draw · Karten-Tilt · Magnet-Buttons
   ========================================================= */

/* Header taucht beim Runterscrollen ab, beim Hochscrollen wieder auf */
.site-header {
  transition: background .35s var(--ease), box-shadow .35s var(--ease),
              padding .35s var(--ease), transform .45s var(--ease);
}
.site-header.nav-hidden { transform: translateY(-105%); }

/* Page-Hero: Inhalt steigt gestaffelt ein (wie Home-Hero) */
.page-hero .eyebrow    { animation: heroRise .7s var(--ease) both; }
.page-hero p           { animation: heroRise .8s .34s var(--ease) both; }
.page-hero .breadcrumb { animation: heroRise .8s .48s var(--ease) both; }

/* Titel-Wörter laufen nacheinander ein */
.hw {
  display: inline-block; opacity: 0; transform: translateY(.55em);
  animation: hwUp .75s var(--ease) both;
  animation-delay: calc(.1s + var(--i, 0) * 80ms);
}
@keyframes hwUp { to { opacity: 1; transform: none; } }

/* Goldene Linie zeichnet sich unter Abschnittstiteln */
.head-draw::after {
  content: ""; display: block; width: 58px; height: 3px;
  margin-top: .6rem; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform .85s var(--ease) .12s;
}
.center .section-head .head-draw::after,
.section-head.center .head-draw::after { margin-inline: auto; transform-origin: center; }
.head-draw.in::after { transform: scaleX(1); }

/* ---------- Reduced Motion: v9 neutralisieren ---------- */
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: background .35s, box-shadow .35s; }
  .site-header.nav-hidden { transform: none; }
  .page-hero .eyebrow, .page-hero p, .page-hero .breadcrumb { animation: none; }
  .hw { animation: none; opacity: 1; transform: none; }
  .head-draw::after { transform: none; transition: none; }
}
