/* =========================================================================
   Reitstall Schrackmann — Design "Saentisblick"
   Warm, redaktionell, laendlich. Papierfarben, Serifen-Display, Ocker-Akzent.
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Farben */
  --paper:        #f8f4ec;
  --paper-2:      #f1e9da;
  --paper-3:      #e8dcc6;
  --ink:          #1d2318;
  --ink-2:        #3d4835;
  --ink-3:        #6b7562;
  --forest:       #2d4531;
  --forest-deep:  #1a2a1d;
  --moss:         #7d9a6a;
  --ochre:        #c08a3e;
  --ochre-deep:   #9a6a26;
  --clay:         #a9542f;
  --line:         rgba(29, 35, 24, 0.14);
  --line-soft:    rgba(29, 35, 24, 0.07);
  --line-light:   rgba(248, 244, 236, 0.18);

  /* Typografie */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Karla", "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.34rem + 0.8vw, 2.05rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.5vw, 2.9rem);
  --step-4:  clamp(2.4rem, 1.8rem + 3vw, 4.2rem);
  --step-5:  clamp(3rem, 2rem + 5vw, 6rem);

  /* Raster */
  --wrap:     1220px;
  --wrap-narrow: 780px;
  --gutter:   clamp(1.25rem, 4vw, 3rem);
  --section:  clamp(4rem, 9vw, 8.5rem);

  --radius:   3px;
  --radius-lg: 6px;

  --shadow-soft: 0 1px 2px rgba(29,35,24,.05), 0 12px 30px -18px rgba(29,35,24,.35);
  --shadow-lift: 0 2px 4px rgba(29,35,24,.06), 0 26px 50px -26px rgba(29,35,24,.45);

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

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Feines Papierkorn ueber der ganzen Seite */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--ochre);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--ochre); color: #fff; }

/* ---------- 3. Typografie ------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  font-variation-settings: "SOFT" 20, "WONK" 0;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.display-italic {
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--ochre-deep);
}

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 58ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--ochre); }

.text-body { max-width: 66ch; }
.text-body h2 { font-size: var(--step-2); margin-top: 2.2em; }
.text-body h3 { font-size: var(--step-1); margin-top: 1.8em; }
.text-body h2:first-child, .text-body h3:first-child { margin-top: 0; }
.text-body ul, .text-body ol { padding-left: 0; margin: 0 0 1.3em; list-style: none; }
.text-body ol { counter-reset: li; }
.text-body li { position: relative; padding-left: 1.7rem; margin-bottom: .55em; }
.text-body ul > li::before {
  content: "";
  position: absolute;
  left: .1rem; top: .72em;
  width: .5rem; height: .5rem;
  border: 1px solid var(--ochre);
  transform: rotate(45deg);
}
.text-body ol > li::before {
  counter-increment: li;
  content: counter(li, decimal-leading-zero);
  position: absolute;
  left: 0; top: .12em;
  font-family: var(--font-display);
  font-size: .82em;
  color: var(--ochre-deep);
}
.text-body a { border-bottom: 1px solid var(--ochre); padding-bottom: 1px; transition: background .25s var(--ease); }
.text-body a:hover { background: rgba(192,138,62,.14); }
.text-body strong { font-weight: 700; }
.text-body blockquote {
  margin: 2rem 0;
  padding-left: 1.6rem;
  border-left: 2px solid var(--ochre);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--ink-2);
}

/* ---------- 4. Layout ---------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(2.6rem, 6vw, 5rem); }
.section--paper2 { background: var(--paper-2); }
.section--forest { background: var(--forest-deep); color: var(--paper); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--paper); }

.rule {
  border: 0;
  height: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 3px;
  margin: 0;
}

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .split--even { grid-template-columns: 1fr 1fr; }
  .split--flip > :first-child { order: 2; }
}

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .78rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--forest); color: var(--paper); }
.btn-primary:hover { background: var(--forest-deep); }

.btn-ochre { background: var(--ochre); color: #211a08; }
.btn-ochre:hover { background: #d29a4c; }

.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(29,35,24,.04); }

.btn-light { border: 1px solid var(--line-light); color: var(--paper); }
.btn-light:hover { background: rgba(248,244,236,.1); border-color: rgba(248,244,236,.4); }

.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ochre-deep);
  border-bottom: 1px solid rgba(192,138,62,.4);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.link-more:hover { border-color: var(--ochre); gap: .8rem; }

/* ---------- 6. Header & Navigation --------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  height: 82px;
}
.site-header.is-solid,
.site-header.is-plain {
  background: rgba(248,244,236,.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}
.site-header.is-solid { box-shadow: 0 10px 30px -24px rgba(29,35,24,.6); }
.site-header.is-solid .nav { height: 68px; }

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-right: auto;
  font-family: var(--font-display);
  line-height: 1.05;
}
.logo .mark { flex: none; width: 34px; height: 34px; color: var(--ochre); }
.logo .name { font-size: 1.12rem; font-weight: 600; letter-spacing: -.01em; }
.logo .sub {
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .6;
  margin-top: .18rem;
}

/* Auf transparentem Header (ueber Hero) helle Schrift */
.site-header:not(.is-solid):not(.is-plain) { color: var(--paper); }
.site-header:not(.is-solid):not(.is-plain) .nav-links > .nav-item > a { color: var(--paper); }
.site-header:not(.is-solid):not(.is-plain) .burger span { background: var(--paper); }

.nav-links { display: none; align-items: center; gap: clamp(.4rem, 1.4vw, 1.3rem); }
@media (min-width: 1080px) { .nav-links { display: flex; } }

.nav-item { position: relative; }
.nav-item > a {
  display: inline-block;
  padding: .55rem .25rem;
  font-size: .93rem;
  font-weight: 600;
  position: relative;
}
.nav-item > a::after {
  content: "";
  position: absolute;
  left: .25rem; right: .25rem; bottom: .28rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav-item > a:hover::after,
.nav-item > a.active::after { transform: scaleX(1); }
.nav-item.has-sub > a::before {
  content: "";
  display: inline-block;
  width: .34rem; height: .34rem;
  margin-right: .42rem;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--ochre);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav-item.has-sub:hover > a::before { opacity: 1; }

.submenu {
  position: absolute;
  top: calc(100% + .5rem);
  left: -1rem;
  min-width: 246px;
  padding: .6rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav-item:hover .submenu, .nav-item:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a {
  display: block;
  padding: .55rem .8rem;
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--ink-2);
  transition: background .22s var(--ease), color .22s var(--ease);
}
.submenu a:hover, .submenu a.active { background: var(--paper-2); color: var(--ink); }
.submenu .sub-all {
  margin-top: .35rem;
  padding-top: .7rem;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  font-weight: 600;
  color: var(--ochre-deep);
}
.submenu .sub-all:hover { background: transparent; color: var(--ochre-deep); }

.header-cta { display: none; }
@media (min-width: 1080px) { .header-cta { display: inline-flex; } }

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 9px;
  margin-left: auto;
  background: none;
  border: 0;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform .34s var(--ease), opacity .2s var(--ease), width .34s var(--ease);
}
.burger span:nth-child(2) { width: 70%; }
.burger[aria-expanded="true"] span { background: var(--ink); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: 110px var(--gutter) 3rem;
  background: var(--paper);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.2rem);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav > a {
  padding: .82rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.mobile-nav > a.sub {
  font-family: var(--font-body);
  font-size: .98rem;
  padding: .5rem 0 .5rem 1.3rem;
  color: var(--ink-3);
  border-bottom: 0;
}
.mobile-nav > a.active { color: var(--ochre-deep); }
.mobile-nav .mobile-cta { margin-top: 1.8rem; align-self: flex-start; }
body.nav-open { overflow: hidden; }

/* ---------- 7. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero--page { min-height: min(62vh, 560px); }

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media svg { width: 100%; height: 100%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,28,17,.88) 0%, rgba(20,28,17,.42) 42%, rgba(20,28,17,.24) 100%),
    linear-gradient(to right, rgba(20,28,17,.5), transparent 65%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(3.5rem, 8vw, 7rem); }
.hero-inner .wrap { padding-top: 90px; }

.hero h1 { max-width: 15ch; margin-bottom: .4em; font-weight: 400; }
.hero .display-italic { color: var(--ochre); }
.hero-text { max-width: 52ch; color: rgba(248,244,236,.86); font-size: var(--step-1); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }

/* Kennzahlen-Leiste unter dem Hero */
.hero-facts {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-light);
  background: rgba(20,28,17,.55);
  backdrop-filter: blur(6px);
}
.hero-facts .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 780px) { .hero-facts .grid { grid-template-columns: repeat(4, 1fr); } }
.hero-facts .fact {
  padding: 1.5rem clamp(.6rem, 2vw, 1.6rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 780px) { .hero-facts .fact { border-bottom: 0; } }
.hero-facts .fact:last-child { border-right: 0; }
.hero-facts .value {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.1;
  color: var(--paper);
}
.hero-facts .label {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(248,244,236,.62);
  margin-top: .4rem;
}

/* Seitentitel ohne Bild */
.page-head {
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line-soft);
}
.page-head .crumbs {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.1rem;
}
.page-head .crumbs a:hover { color: var(--ochre-deep); }
.page-head h1 { max-width: 20ch; margin-bottom: .35em; }
.page-head .lead { color: var(--ink-2); }

/* ---------- 8. Karten & Raster ------------------------------------------- */
.grid-cards {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.9rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(192,138,62,.45); }
.card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.card p { color: var(--ink-2); font-size: .97rem; }
.card .card-foot { margin-top: auto; padding-top: 1.4rem; }

.card-num {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ochre);
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
  display: block;
}

/* Nummerierter Index (Angebot) */
.index-list { border-top: 1px solid var(--line); }
.index-row {
  display: grid;
  gap: .4rem 2rem;
  grid-template-columns: 1fr;
  align-items: baseline;
  padding: clamp(1.5rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), padding-inline .35s var(--ease);
}
@media (min-width: 820px) {
  .index-row { grid-template-columns: 4.5rem minmax(0, 15rem) minmax(0, 1fr) auto; }
}
.index-row:hover { background: var(--paper-2); padding-inline: 1.2rem; }
.index-row .num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ochre);
}
.index-row .title { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.15; }
.index-row .desc { color: var(--ink-2); font-size: .97rem; }
.index-row .go { color: var(--ochre-deep); font-weight: 600; font-size: .9rem; white-space: nowrap; }
.index-row .go .arrow { display: inline-block; transition: transform .3s var(--ease); }
.index-row:hover .go .arrow { transform: translateX(5px); }

/* Faktenliste */
.facts-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 720px) { .facts-list { grid-template-columns: 1fr 1fr; } }
.facts-list .item { background: var(--paper); padding: 1.4rem 1.5rem; }
.facts-list .item h4 { font-size: 1.02rem; margin-bottom: .3rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
.facts-list .item p { font-size: .93rem; color: var(--ink-3); }

/* Merkmal-Liste mit Haken */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--ink-2); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .48em;
  width: .82rem; height: .46rem;
  border-left: 1.6px solid var(--ochre);
  border-bottom: 1.6px solid var(--ochre);
  transform: rotate(-45deg);
}

/* ---------- 9. Preise (Menuekarten-Optik) -------------------------------- */
.price-group { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.price-group > h3 {
  font-size: var(--step-1);
  padding-bottom: .7rem;
  margin-bottom: .3rem;
  border-bottom: 2px solid var(--ink);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.price-row .pname { font-weight: 600; }
.price-row .pnote { display: block; font-size: .88rem; color: var(--ink-3); font-weight: 400; margin-top: .15rem; }
.price-row .dots {
  flex: 1;
  height: 1px;
  min-width: 1.5rem;
  background-image: radial-gradient(circle, var(--ink-3) 1px, transparent 1.2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  opacity: .55;
  transform: translateY(-.2rem);
}
.price-row .pvalue {
  font-family: var(--font-display);
  font-size: 1.12rem;
  white-space: nowrap;
  color: var(--forest);
}

/* Hervorgehobene Preiskarte */
.price-highlight {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.price-highlight .amount {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--forest);
}
.price-highlight .per { font-size: .85rem; color: var(--ink-3); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- 10. Team ----------------------------------------------------- */
.team-grid { display: grid; gap: clamp(1.6rem, 3.4vw, 2.6rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.team-card .portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-3);
  margin-bottom: 1.2rem;
}
.team-card .portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .portrait img { transform: scale(1.04); }
.team-card .portrait .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(29,35,24,.2);
}
.team-card h3 { font-size: var(--step-1); margin-bottom: .15rem; }
.team-card .role {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  margin-bottom: .9rem;
}
.team-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.team-card ul li { font-size: .93rem; color: var(--ink-2); padding-left: 1rem; position: relative; }
.team-card ul li::before { content: "–"; position: absolute; left: 0; color: var(--ochre); }

/* ---------- 11. News / Zeitstrahl ---------------------------------------- */
.news-item {
  display: grid;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding-block: clamp(2.2rem, 5vw, 3.6rem);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 860px) { .news-item { grid-template-columns: 10rem minmax(0, 1fr) minmax(0, 15rem); } }
.news-item:first-child { padding-top: 0; }
.news-date {
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--ochre-deep);
  letter-spacing: .04em;
}
.news-item h3 { font-size: var(--step-2); margin-bottom: .5rem; }
.news-item .body { color: var(--ink-2); }
.news-thumb { border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-3); }
.news-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- 12. Galerie & Lightbox --------------------------------------- */
.gallery {
  display: grid;
  gap: .7rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  grid-auto-rows: 190px;
}
.gallery .shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-3);
  cursor: zoom-in;
  margin: 0;
}
.gallery .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s var(--ease); }
.gallery .shot:hover img { transform: scale(1.05); }
.gallery .shot.tall { grid-row: span 2; }
.gallery .shot.wide { grid-column: span 2; }
@media (max-width: 620px) { .gallery .shot.wide { grid-column: span 1; } }

.gallery-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.gallery-filter button {
  padding: .45rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.gallery-filter button:hover { border-color: var(--ink); }
.gallery-filter button.active { background: var(--forest); border-color: var(--forest); color: var(--paper); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(16,22,14,.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: var(--radius); }
.lightbox .caption { color: rgba(248,244,236,.75); font-size: .9rem; margin-top: 1rem; text-align: center; }
.lightbox .close, .lightbox .nav-btn {
  position: absolute;
  background: none;
  border: 1px solid rgba(248,244,236,.28);
  border-radius: 50%;
  width: 46px; height: 46px;
  color: var(--paper);
  display: grid; place-items: center;
  transition: background .25s var(--ease);
}
.lightbox .close:hover, .lightbox .nav-btn:hover { background: rgba(248,244,236,.14); }
.lightbox .close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox .prev { left: clamp(.6rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox .next { right: clamp(.6rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }

/* ---------- 13. Pferde-Karten (Verkauf) ---------------------------------- */
.horse-grid { display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.horse-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.horse-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.horse-card .shot { aspect-ratio: 4/3; background: var(--paper-3); overflow: hidden; }
.horse-card .shot img { width: 100%; height: 100%; object-fit: cover; }
.horse-card .body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.horse-card h3 { font-size: var(--step-1); margin-bottom: .2rem; }
.horse-card .meta { font-size: .84rem; color: var(--ink-3); margin-bottom: .9rem; }
.horse-card .desc { font-size: .95rem; color: var(--ink-2); margin-bottom: 1.2rem; }
.horse-card .spec { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .3rem; font-size: .89rem; }
.horse-card .spec li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--line); padding-bottom: .3rem; }
.horse-card .spec .k { color: var(--ink-3); }
.horse-card .foot { margin-top: auto; }

.badge {
  display: inline-block;
  padding: .28rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.badge--free { background: rgba(125,154,106,.2); color: #3f5b32; }
.badge--reserved { background: rgba(192,138,62,.22); color: var(--ochre-deep); }
.badge--sold { background: rgba(29,35,24,.1); color: var(--ink-3); }

/* ---------- 14. Kontakt -------------------------------------------------- */
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}
.contact-list { display: grid; gap: 1.4rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; }
.contact-line .ico { flex: none; width: 20px; color: var(--ochre); margin-top: .3rem; }
.contact-line .k { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .1rem; }
.contact-line .v { font-size: 1.02rem; }
.contact-line .v a:hover { color: var(--ochre-deep); }

.person-row {
  display: flex; flex-wrap: wrap; gap: .4rem 1.2rem;
  justify-content: space-between; align-items: baseline;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.person-row .who { font-weight: 600; }
.person-row .who small { display: block; font-weight: 400; color: var(--ink-3); font-size: .82rem; letter-spacing: .06em; }
.person-row .how { font-family: var(--font-display); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--paper-3);
  aspect-ratio: 16/10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 15. CTA-Band ------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::after {
  content: "";
  position: absolute;
  right: -8%; bottom: -30%;
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(125,154,106,.28), transparent 62%);
  pointer-events: none;
}
.cta-band .inner { position: relative; z-index: 1; max-width: 60ch; }
.cta-band h2 { font-size: var(--step-3); }
.cta-band p { color: rgba(248,244,236,.78); font-size: var(--step-1); }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* Hinweisbox */
.notice {
  display: flex;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-left: 3px solid var(--ochre);
  background: rgba(192,138,62,.09);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.notice .ico { flex: none; width: 22px; color: var(--ochre-deep); margin-top: .15rem; }
.notice p { font-size: .97rem; }
.notice strong { display: block; margin-bottom: .2rem; }

/* ---------- 16. Footer --------------------------------------------------- */
.site-footer { background: var(--forest-deep); color: rgba(248,244,236,.72); padding-top: clamp(3.5rem, 7vw, 6rem); }
.site-footer a:hover { color: var(--ochre); }
.footer-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.site-footer .logo { color: var(--paper); margin-right: 0; }
.site-footer .brand p { margin-top: 1.2rem; max-width: 34ch; font-size: .95rem; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .95rem; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: 1.6rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  justify-content: space-between;
  font-size: .84rem;
  color: rgba(248,244,236,.5);
}

.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 150;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--forest); color: var(--paper); border-color: var(--forest); }

/* ---------- 17. Bewegung ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 18. Hilfsklassen --------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.sticky-side { position: sticky; top: 110px; }
.figure { border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-3); }
.figure img { width: 100%; }
.figure figcaption { padding: .8rem 0 0; font-size: .85rem; color: var(--ink-3); }
