/* ==========================================================================
   RV Heessen – Design-System
   Farben, Schrift und Abstände stehen als Variablen oben. Änderungen
   an Farben bitte nur dort vornehmen.
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/sourcesans3-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

/* ---------- 1. Variablen ---------- */
:root {
  color-scheme: light;

  --bg: #f7f5f0;
  --surface: #fdfcf9;
  --sand: #ece4d3;
  --ink: #252922;
  --muted: #5b6157;
  --line: #ddd6c6;

  --brand: #476044;
  --brand-deep: #2c3f2d;
  --on-brand: #f7f5f0;
  --gold: #d4a72c;
  --gold-hover: #e2b73f;
  --on-gold: #241c08;
  --leather: #8b6a47;
  --focus: #1f5fbf;
  --mark-bg: #4fd3ff;
  --mark-fg: #04222c;
  --mark-line: #0a86ad;

  --hero-overlay: linear-gradient(180deg, rgb(20 28 18 / 0.55) 0%, rgb(20 28 18 / 0.35) 45%, rgb(20 28 18 / 0.78) 100%);
  --shadow: 0 1px 2px rgb(37 41 34 / 0.06), 0 8px 24px rgb(37 41 34 / 0.08);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(0.85rem, 0.83rem + 0.1vw, 0.92rem);
  --step-0: clamp(1.02rem, 0.98rem + 0.2vw, 1.14rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.25rem + 1.2vw, 2.1rem);
  --step-3: clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem);
  --step-4: clamp(2.5rem, 1.6rem + 4.4vw, 4.8rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: clamp(3.5rem, 2.5rem + 5vw, 7rem);

  --radius: 6px;
  --container: 72rem;
  --gutter: clamp(1.1rem, 4vw, 2rem);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #141812;
  --surface: #1b2118;
  --sand: #232b1f;
  --ink: #ece7db;
  --muted: #a7ad9c;
  --line: #2f3829;
  --brand: #9dbb97;
  --brand-deep: #1c2a1d;
  --on-brand: #f1eee4;
  --leather: #c1a07a;
  --focus: #8fb6ff; --mark-bg: #2ec5f7; --mark-fg: #03202a; --mark-line: #b6ecff;
  --shadow: 0 1px 2px rgb(0 0 0 / 0.4), 0 8px 24px rgb(0 0 0 / 0.35);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #141812;
    --surface: #1b2118;
    --sand: #232b1f;
    --ink: #ece7db;
    --muted: #a7ad9c;
    --line: #2f3829;
    --brand: #9dbb97;
    --brand-deep: #1c2a1d;
    --on-brand: #f1eee4;
    --leather: #c1a07a;
    --focus: #8fb6ff; --mark-bg: #2ec5f7; --mark-fg: #03202a; --mark-line: #b6ecff;
    --shadow: 0 1px 2px rgb(0 0 0 / 0.4), 0 8px 24px rgb(0 0 0 / 0.35);
  }
}

/* ---------- 2. Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .4 0 0 0 0 .35 0 0 0 0 .25 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  padding-bottom: 4.5rem;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 var(--space-2); text-wrap: balance; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { margin: 0 0 var(--space-2); max-width: 65ch; text-wrap: pretty; }
a { color: var(--brand); text-underline-offset: 0.2em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
ul { padding-left: 1.2rem; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-5); }
.section--sand { background-color: var(--sand); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--on-gold); padding: 0.75rem 1rem; z-index: 100; }
.skip-link:focus { left: var(--gutter); top: var(--space-1); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--leather); margin-bottom: var(--space-2);
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: currentColor; }
.section-head { max-width: 42rem; margin-bottom: var(--space-4); }
.section-head p { color: var(--muted); font-size: var(--step-1); }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3rem; padding: 0.7rem 1.5rem; border-radius: var(--radius);
  font: 600 var(--step-0)/1.2 var(--font-sans); text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--gold); color: var(--on-gold); }
.btn--primary:hover { background: var(--gold-hover); }
.btn--ghost { color: #fff; border-color: rgb(255 255 255 / 0.7); }
.btn--ghost:hover { background: rgb(255 255 255 / 0.14); }
.btn--outline { color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: var(--on-brand); }
.link-arrow { font-weight: 600; text-decoration: none; }
.link-arrow::after { content: " →"; }

/* ---------- 4. Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); min-height: 4.5rem; }
.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: var(--ink); }
.brand img { width: 4.6rem; }
.brand-text { display: flex; flex-direction: column; font-family: var(--font-serif); line-height: 1.05; font-weight: 600; font-size: 1.15rem; }
.brand-text small { white-space: nowrap; font-family: var(--font-sans); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.nav { display: none; }
.nav ul { list-style: none; display: flex; align-items: center; gap: 0.25rem; margin: 0; padding: 0; }
.nav a { display: block; white-space: nowrap; padding: 0.55rem 0.6rem; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem; border-radius: var(--radius); }
.nav a:hover, .nav a[aria-current="page"] { background: var(--sand); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.icon-btn { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; }
.icon-btn:hover { background: var(--sand); }
.icon-btn svg { width: 1.3rem; height: 1.3rem; }
.theme-toggle .i-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .i-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .i-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .i-sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .i-moon { display: none; }
}
.header-cta { display: none; min-height: 2.75rem; padding: 0.5rem 1.1rem; }
.menu-toggle .i-close { display: none; }
.menu-toggle[aria-expanded="true"] .i-close { display: block; }
.menu-toggle[aria-expanded="true"] .i-open { display: none; }
.nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--bg); border-bottom: 1px solid var(--line); padding: var(--space-2) var(--gutter) var(--space-3); box-shadow: var(--shadow); }
.nav.is-open ul { flex-direction: column; align-items: stretch; }
.nav.is-open a { padding: 0.85rem 0.5rem; font-size: 1.1rem; }
@media (min-width: 72rem) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ---------- 5. Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; min-height: min(88svh, 46rem); display: grid; align-items: end; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); z-index: -1; }
.hero-inner { padding-block: calc(var(--space-5) * 0.9) var(--space-5); }
.hero .eyebrow { color: #f0d98a; }
.hero h1 { max-width: 15ch; text-shadow: 0 2px 24px rgb(0 0 0 / 0.35); }
.hero .lead { font-size: var(--step-1); max-width: 40rem; color: #f3efe4; margin-bottom: var(--space-3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ---------- 6. Kennzahlen ---------- */
.facts { background: var(--brand-deep); color: var(--on-brand); }
.facts ul { list-style: none; margin: 0; padding: var(--space-3) 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3) var(--space-2); }
.facts li { text-align: center; }
.facts strong { display: block; white-space: nowrap; font-family: var(--font-serif); font-size: var(--step-3); line-height: 1; color: #f0d98a; }
.facts span { font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; }
@media (min-width: 48rem) { .facts ul { grid-template-columns: repeat(5, 1fr); } .facts strong { font-size: var(--step-2); } }

/* ---------- 7. Karten / Angebote ---------- */
.cards { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: var(--space-3); display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.card-body p { color: var(--muted); }
.card-body .link-arrow { margin-top: auto; padding-top: var(--space-1); }
.price { font-weight: 600; color: var(--ink); font-size: var(--step--1); }

/* ---------- 8. Split (Bild + Text) ---------- */
.split { display: grid; gap: var(--space-4); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.split-media::before { content: ""; position: absolute; inset: 1rem -1rem -1rem 1rem; border: 1px solid var(--leather); border-radius: var(--radius); z-index: -1; opacity: 0.6; }
.checklist { list-style: none; padding: 0; margin: 0 0 var(--space-3); display: grid; gap: 0.6rem; }
.checklist li { padding-left: 1.9rem; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 1.05rem; height: 1.05rem; background: var(--brand); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 17.5 4 12l1.7-1.7 3.8 3.8 8.8-8.8L20 7z'/%3E%3C/svg%3E") center / contain no-repeat; }
@media (min-width: 52rem) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .split--reverse .split-media { order: 2; }
}

/* ---------- 9. Ablauf ---------- */
.steps { list-style: none; margin: 0 0 var(--space-4); padding: 0; display: grid; gap: var(--space-3); counter-reset: step; }
.steps li { counter-increment: step; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); position: relative; }
.steps li::before { content: counter(step); font-family: var(--font-serif); font-size: var(--step-3); color: var(--leather); line-height: 1; display: block; margin-bottom: 0.5rem; }
.steps h3 { margin-bottom: 0.3rem; }
.steps p { color: var(--muted); margin: 0; }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 10. Pferde ---------- */
.horses { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.horse { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.horse img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.horse-noimg { aspect-ratio: 4 / 3; display: grid; place-items: center; background: var(--sand); color: var(--muted); font-size: var(--step--1); }
.horse-body { padding: var(--space-2) var(--space-3) var(--space-3); }
.horse-body h3 { margin-bottom: 0.2rem; }
.horse-meta { color: var(--muted); font-size: var(--step--1); margin-bottom: 0.6rem; }
.horse-body p { font-size: 0.98rem; color: var(--muted); margin: 0; }

/* ---------- 11. Termine ---------- */
.events { list-style: none; margin: 0 0 var(--space-3); padding: 0; display: grid; gap: var(--space-2); }
.event { display: grid; grid-template-columns: 4.5rem 1fr; gap: var(--space-2); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-2); align-items: center; }
.event-date { text-align: center; font-family: var(--font-serif); line-height: 1; }
.event-date b { display: block; font-size: var(--step-3); }
.event-date span { font-family: var(--font-sans); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.1em; color: var(--leather); }
.event h3 { margin: 0 0 0.2rem; font-size: var(--step-0); }
.event p { margin: 0; color: var(--muted); font-size: var(--step--1); }
.empty { padding: var(--space-3); border: 1px dashed var(--leather); border-radius: var(--radius); color: var(--muted); }

/* ---------- 12. Sponsoren-Band ---------- */
.band { background: var(--brand-deep); color: var(--on-brand); }
.band .container { display: grid; gap: var(--space-3); align-items: center; }
.band h2 { color: #fff; margin-bottom: 0.5rem; }
.band p { color: #e3e0d3; margin: 0; }
@media (min-width: 52rem) { .band .container { grid-template-columns: 1fr auto; } }

/* ---------- 13. Kontakt ---------- */
.contact-grid { display: grid; gap: var(--space-4); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.contact-list dt { font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; color: var(--leather); font-weight: 600; }
.contact-list dd { margin: 0 0 var(--space-2); }
@media (min-width: 48rem) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- 14. Footer ---------- */
.site-footer { background: #1b2418; color: #d9d6ca; font-size: 0.98rem; }
.site-footer a { color: #f0d98a; text-underline-offset: 0.2em; }
.site-footer h2 { font-size: 0.82rem; font-family: var(--font-sans); letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 0.9rem; }
.footer-cta { background: linear-gradient(135deg, #2c3f2d, #22331f); border-bottom: 1px solid rgb(255 255 255 / 0.1); }
.footer-cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2) var(--space-3); padding-block: var(--space-4); }
.footer-cta-title { font-family: var(--font-serif); font-size: var(--step-2); font-weight: 600; color: #fff; margin: 0; line-height: 1.15; }
.footer-cta-text { margin: 0.3rem 0 0; color: #e3e0d3; max-width: 42ch; }
.footer-main { padding-block: var(--space-4) var(--space-3); }
.footer-grid { display: grid; gap: var(--space-4) var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 40rem) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72rem) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; } }
.footer-brand h2 { font-family: var(--font-serif); font-size: 1.15rem; letter-spacing: 0; text-transform: none; margin: 0.7rem 0 0.4rem; }
.footer-brand p { margin: 0; color: #c9c6b9; }
.footer-logo { display: inline-block; background: #f7f5f0; padding: 0.5rem 0.8rem; border-radius: var(--radius); }
.footer-logo img { width: 5.5rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-grid nav a { color: #e9e6da; text-decoration: none; }
.footer-grid nav a:hover, .footer-grid nav a:focus-visible { color: #f0d98a; text-decoration: underline; }
.footer-contact a { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: #e9e6da; }
.footer-contact a:hover, .footer-contact a:focus-visible { color: #f0d98a; text-decoration: underline; }
.footer-contact .ico { width: 1.15rem; height: 1.15rem; flex: none; color: #f0d98a; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.6rem 1.5rem; margin-top: var(--space-4); padding-top: var(--space-2); border-top: 1px solid rgb(255 255 255 / 0.15); font-size: var(--step--1); color: #b9b6a9; max-width: none; }
.footer-bottom p { margin: 0; max-width: none; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; list-style: none; margin: 0; padding: 0; }
.footer-legal a { color: #d9d6ca; }
.footer-legal .to-top { color: #f0d98a; font-weight: 600; text-decoration: none; }

/* ---------- 15. Mobile Aktionsleiste ---------- */
.mobile-bar { position: fixed; inset: auto 0 0 0; z-index: 40; display: grid; grid-template-columns: 2fr 1fr; gap: 0.6rem; padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom, 0px)); background: color-mix(in srgb, var(--bg) 94%, transparent); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mobile-bar .btn { min-height: 2.9rem; padding-inline: 0.8rem; }
@media (min-width: 72rem) { .mobile-bar { display: none; } body { padding-bottom: 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ---------- 16. Unterseiten ---------- */
.page-hero { background: var(--sand); border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero h1 { font-size: var(--step-3); margin-bottom: 0.6rem; }
.page-hero .lead { font-size: var(--step-1); color: var(--muted); margin: 0; }
.prose > * + h2 { margin-top: var(--space-5); }
.prose h2 { font-size: var(--step-2); }
.prose h3 { margin-top: var(--space-3); }
.prose ul { display: grid; gap: 0.35rem; margin-bottom: var(--space-2); }
.stack > * + * { margin-top: var(--space-3); }
.grid-2 { display: grid; gap: var(--space-4); }
@media (min-width: 52rem) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.anchor-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: var(--space-3) 0 0; padding: 0; list-style: none; }
.anchor-nav a { display: inline-block; padding: 0.4rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.anchor-nav a:hover { border-color: var(--brand); color: var(--brand); }
[id] { scroll-margin-top: 6rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: var(--space-2); }
table { border-collapse: collapse; width: 100%; min-width: 22rem; font-size: 1rem; }
caption { text-align: left; font-family: var(--font-serif); font-weight: 600; font-size: var(--step-1); padding: var(--space-2) var(--space-2) 0.4rem; }
th, td { padding: 0.7rem var(--space-2); text-align: left; border-top: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--brand-deep); color: var(--on-brand); border-top: 0; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
tbody tr:nth-child(even) { background: color-mix(in srgb, var(--sand) 45%, transparent); }
td.num, th.num { text-align: right; white-space: nowrap; font-weight: 600; }
.table-note { font-size: var(--step--1); color: var(--muted); max-width: 70ch; }

.notice { border-left: 4px solid var(--gold); background: var(--surface); padding: var(--space-2) var(--space-3); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); }
.notice p:last-child { margin-bottom: 0; }

.people { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); margin: 0; padding: 0; list-style: none; }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); }
.person h3 { margin: 0 0 0.15rem; font-size: var(--step-1); }
.person .role { color: var(--leather); font-weight: 600; font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem; }
.person p { margin-bottom: 0.4rem; color: var(--muted); font-size: 0.98rem; }
.person a { font-weight: 600; }
.board { display: grid; gap: 0.6rem var(--space-3); grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); list-style: none; padding: 0; margin: 0; }
.board li { display: flex; flex-direction: column; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.board span { color: var(--muted); font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; }
.board strong { font-family: var(--font-serif); font-size: var(--step-1); }

.timeline { list-style: none; margin: 0; padding: 0 0 0 1.5rem; border-left: 2px solid var(--leather); display: grid; gap: var(--space-3); }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: calc(-1.5rem - 7px); top: 0.45rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg); box-shadow: 0 0 0 1px var(--leather); }
.timeline h3 { margin-bottom: 0.3rem; }
.timeline p { margin: 0; color: var(--muted); }

.faq details { border-bottom: 1px solid var(--line); padding: 0.9rem 0; }
.faq summary { cursor: pointer; font-family: var(--font-serif); font-weight: 600; font-size: var(--step-1); list-style-position: outside; padding-right: 1rem; }
.faq details p { margin: 0.6rem 0 0; color: var(--muted); }

.downloads { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.download { display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-2); align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-2) var(--space-3); }
.download svg { width: 2rem; height: 2rem; color: var(--leather); }
.download h3 { margin: 0; font-size: var(--step-0); font-family: var(--font-sans); }
.download p { margin: 0; color: var(--muted); font-size: var(--step--1); }
@media (max-width: 34rem) { .download { grid-template-columns: auto 1fr; } .download .btn { grid-column: 1 / -1; } }

.horses--full { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
.horse-facts { display: grid; grid-template-columns: auto 1fr; gap: 0.15rem var(--space-2); margin: 0 0 var(--space-2); font-size: 0.95rem; }
.horse-facts dt { color: var(--leather); font-weight: 600; }
.horse-facts dd { margin: 0; }
.horses--full .horse-body p { margin-bottom: 0.7rem; }

/* ---------- 17. Feinschliff ---------- */
.page-hero + .section { padding-top: var(--space-4); }
.grid-2 > .notice { align-self: start; }
.footer-bottom { max-width: none; }
.prose .anchor-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 0 0 var(--space-2); }

/* ---------- 18. Fotos ---------- */
.gallery { display: grid; gap: var(--space-2); grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(11rem, 44vw, 24rem); margin: 0; padding: 0; list-style: none; }
.gallery li { display: contents; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--sand); box-shadow: var(--shadow); }
.gallery figure.wide { grid-column: span 2; }
.gallery li:last-child figure { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 1.6rem 0.9rem 0.7rem; color: #fff; font-size: var(--step--1); font-weight: 600; background: linear-gradient(transparent, rgb(15 20 12 / 0.75)); }
@media (min-width: 48rem) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); grid-auto-rows: 24rem; }
  .gallery li:last-child figure { grid-column: span 1; }
}
@media (prefers-reduced-motion: reduce) { .gallery img { transition: none; } }
.photo { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.photo--landscape { aspect-ratio: 16 / 10; object-position: 50% 30%; }
.split--top { align-items: start; }
.split-media--sticky { align-self: start; }
@media (min-width: 52rem) { .split-media--sticky { position: sticky; top: 6rem; } }
.split-media--plain::before { display: none; }

/* ---------- 19. Partnerwand ---------- */
.partners { display: grid; gap: var(--space-2); grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr)); list-style: none; margin: 0; padding: 0; }
.partner a, .partner > div { display: grid; place-items: center; aspect-ratio: 16 / 9; padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.2s, border-color 0.2s; }
.partner a:hover { transform: translateY(-2px); border-color: var(--brand); }
.partner img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner--cta a { background: transparent; border: 2px dashed var(--leather); box-shadow: none; color: var(--brand); font-weight: 600; text-align: center; text-decoration: none; }
.partner--cta a:hover { background: var(--surface); }
@media (prefers-reduced-motion: reduce) { .partner a { transition: none; } }

/* ---------- 20. Suche ---------- */
.search-dialog { width: min(46rem, calc(100% - 2rem)); max-height: min(82vh, 48rem); margin: 7vh auto auto; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--ink); box-shadow: 0 24px 70px rgb(0 0 0 / 0.45); overflow: hidden; }
.search-dialog[open] { display: flex; flex-direction: column; }
.search-dialog::backdrop { background: rgb(10 14 8 / 0.62); backdrop-filter: blur(3px); }
.search-form { display: flex; gap: 0.5rem; align-items: center; padding: var(--space-2); border-bottom: 1px solid var(--line); background: var(--surface); }
.search-input { flex: 1; min-width: 0; font: inherit; font-size: 1.15rem; padding: 0.75rem 1rem; border: 2px solid var(--line); border-radius: 8px; background: var(--bg); color: var(--ink); }
.search-input:focus-visible { border-color: var(--brand); outline: 3px solid var(--focus); outline-offset: 2px; }
.search-body { overflow: auto; padding: 0.5rem var(--space-2) var(--space-2); }
.search-hint, .search-count { color: var(--muted); font-size: var(--step--1); margin: 0.6rem 0; max-width: none; }
.search-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; }
.search-chip { font: inherit; font-weight: 600; font-size: 0.95rem; padding: 0.45rem 0.95rem; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer; }
.search-chip:hover { border-color: var(--brand); color: var(--brand); }
.search-results { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.25rem; }
.search-result a { display: block; padding: 0.75rem 0.85rem; border-radius: 8px; border: 1px solid transparent; text-decoration: none; color: inherit; }
.search-result a:hover, .search-result a:focus-visible { background: var(--sand); border-color: var(--line); }
.search-path { display: flex; flex-wrap: wrap; gap: 0.1rem 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.search-path > span + span::before { content: "›"; margin-right: 0.5rem; color: var(--leather); }
.search-path .lbl { color: var(--leather); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.72rem; }
.search-snippet { display: block; margin-top: 0.25rem; font-size: 0.95rem; color: var(--muted); line-height: 1.5; }
mark, mark.search-hit { background: var(--mark-bg); color: var(--mark-fg); font-weight: 700; padding: 0.02em 0.22em; margin: 0 -0.02em; border-radius: 4px; box-shadow: 0 0 0 2px var(--mark-line); -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.search-target { animation: rv-flash 2.8s ease-out; border-radius: 4px; }
@keyframes rv-flash { 0%, 55% { background: color-mix(in srgb, var(--mark-bg) 45%, transparent); box-shadow: 0 0 0 0.5rem color-mix(in srgb, var(--mark-bg) 45%, transparent); } 100% { background: transparent; box-shadow: 0 0 0 0.5rem transparent; } }
.search-hl-bar { position: fixed; left: var(--gutter); bottom: 5.2rem; z-index: 45; display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; align-items: center; max-width: calc(100% - 2 * var(--gutter)); padding: 0.55rem 0.6rem 0.55rem 1.1rem; background: var(--mark-bg); color: var(--mark-fg); border-radius: 999px; box-shadow: 0 0 0 2px var(--mark-line), var(--shadow); font-size: 0.95rem; font-weight: 600; }
.search-hl-bar mark { background: #fff; color: #04222c; box-shadow: 0 0 0 1px var(--mark-fg); }
.search-hl-bar button { font: inherit; font-weight: 700; color: var(--mark-bg); background: var(--mark-fg); border: 0; border-radius: 999px; padding: 0.4rem 1rem; cursor: pointer; }
.search-hl-bar button:hover { background: #000; }
@media (min-width: 72rem) { .search-hl-bar { bottom: 1.5rem; } }
@media (max-width: 40rem) { .search-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; border-radius: 0; border: 0; } }
@media (prefers-reduced-motion: reduce) { .search-target { animation: none; background: color-mix(in srgb, var(--mark-bg) 45%, transparent); } }
.search-via { display: block; margin-top: 0.3rem; font-size: 0.8rem; color: var(--leather); font-weight: 600; }

/* ---------- 21. Schritt-für-Schritt ---------- */
.stepper { list-style: none; margin: var(--space-3) 0 0; padding: 0; display: grid; gap: var(--space-3); counter-reset: st; }
.stepper > li { counter-increment: st; position: relative; display: grid; grid-template-columns: 2.75rem 1fr; gap: var(--space-2); align-items: start; }
.stepper > li::before { content: counter(st); display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--brand-deep); color: #f0d98a; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px var(--leather); z-index: 1; }
.stepper > li:not(:last-child)::after { content: ""; position: absolute; left: 1.375rem; top: 2.75rem; bottom: calc(-1 * var(--space-3)); width: 2px; margin-left: -1px; background: repeating-linear-gradient(to bottom, var(--leather) 0 6px, transparent 6px 12px); }
.step-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); box-shadow: var(--shadow); }
.step-card h3 { margin-bottom: 0.4rem; }
.step-card p { color: var(--muted); }
.step-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: var(--space-2); }
.step-actions .btn { text-align: left; }
.btn .ico { width: 1.25rem; height: 1.25rem; flex: none; }
.btn small { display: block; font-size: 0.78em; font-weight: 500; opacity: 0.8; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: var(--space-2) 0 0; padding: 0; }
.chips li { padding: 0.3rem 0.85rem; border-radius: 999px; background: var(--sand); font-size: 0.9rem; font-weight: 600; }
@media (min-width: 52rem) { .grid-2--aside { grid-template-columns: 1.5fr 1fr; align-items: start; } .aside-sticky { position: sticky; top: 6rem; } }
@media (max-width: 34rem) { .stepper > li { grid-template-columns: 2.25rem 1fr; gap: 0.75rem; } .stepper > li::before { width: 2.25rem; height: 2.25rem; font-size: 1.1rem; } .stepper > li:not(:last-child)::after { left: 1.125rem; top: 2.25rem; } .step-actions .btn { width: 100%; } }

/* ---------- 22. Pferde kompakt ---------- */
.horses--full { grid-template-columns: repeat(auto-fill, minmax(14.5rem, 1fr)); gap: var(--space-2); align-items: start; }
.horses--full .horse-body { padding: 0.85rem 1rem 1rem; }
.horses--full .horse-body h3 { font-size: var(--step-1); }
.horses--full .horse-meta { margin-bottom: 0.2rem; }
.horse-more { margin-top: 0.5rem; border-top: 1px solid var(--line); }
.horse-more summary { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; cursor: pointer; padding: 0.6rem 0 0.3rem; color: var(--brand); font-weight: 600; list-style: none; }
.horse-more summary::-webkit-details-marker { display: none; }
.horse-more summary::after { content: ""; flex: none; width: 0.55rem; height: 0.55rem; margin-right: 0.25rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s; }
.horse-more[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.horse-more[open] { padding-bottom: 0.25rem; }
.horse-more .horse-facts { margin-top: 0.4rem; }
.horse-toolbar { display: flex; justify-content: flex-end; margin-bottom: var(--space-2); }
.horse-toolbar .btn { min-height: 2.5rem; padding: 0.4rem 1.1rem; font-size: 0.95rem; }
@media (prefers-reduced-motion: reduce) { .horse-more summary::after { transition: none; } }

/* ---------- 23. E-Mail-Dialog ---------- */
.mail-dialog { width: min(30rem, calc(100% - 2rem)); margin: auto; padding: var(--space-3); border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--ink); box-shadow: 0 24px 70px rgb(0 0 0 / 0.45); }
.mail-dialog::backdrop { background: rgb(10 14 8 / 0.62); backdrop-filter: blur(3px); }
.mail-dialog h2 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.mail-address { font-family: var(--font-serif); font-size: var(--step-1); font-weight: 600; margin: 0 0 0.2rem; overflow-wrap: anywhere; user-select: all; }
.mail-subject { color: var(--muted); font-size: 0.95rem; margin: 0 0 var(--space-2); }
.mail-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--space-2); }
.mail-actions .btn { flex: 1 1 auto; }
.mail-actions .mail-cancel { flex: 0 0 auto; color: var(--muted); }
.mail-status { min-height: 1.4em; margin: var(--space-1) 0 0; font-size: 0.9rem; color: var(--brand); font-weight: 600; }
@media (max-width: 30rem) { .mail-actions .btn { width: 100%; } }

/* ---------- 24. Pferde-Kacheln (Startseite) ---------- */
.horse-tiles { display: grid; gap: var(--space-2); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 40rem) { .horse-tiles { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); } }
.horse-tile { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; border-radius: var(--radius); background: var(--sand); box-shadow: var(--shadow); text-decoration: none; color: #fff; }
.horse-tile img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; transition: transform 0.5s; }
.horse-tile:hover img, .horse-tile:focus-visible img { transform: scale(1.05); }
.horse-tile-caption { position: absolute; inset: auto 0 0 0; display: flex; flex-direction: column; padding: 2.4rem 1rem 0.9rem; background: linear-gradient(transparent, rgb(12 18 10 / 0.82)); }
.horse-tile-name { font-family: var(--font-serif); font-size: var(--step-1); font-weight: 600; line-height: 1.15; }
.horse-tile-name::after { content: " →"; opacity: 0; margin-left: 0.2rem; transition: opacity 0.2s, margin 0.2s; }
.horse-tile:hover .horse-tile-name::after, .horse-tile:focus-visible .horse-tile-name::after { opacity: 1; margin-left: 0.4rem; }
.horse-tile-meta { font-size: 0.88rem; opacity: 0.9; }
.horse-tile--empty { color: var(--ink); border: 1px dashed var(--leather); box-shadow: none; }
.horse-tile-noimg { position: absolute; inset: 0; display: grid; place-items: center; padding-bottom: 3rem; color: var(--muted); font-size: var(--step--1); }
.horse-tile--empty .horse-tile-caption { background: none; }
@media (hover: none) { .horse-tile-name::after { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .horse-tile img, .horse-tile-name::after { transition: none; } }
.horse-tile--empty { background: linear-gradient(160deg, var(--sand), color-mix(in srgb, var(--sand) 60%, var(--leather))); }
.horse-tile--empty::before { content: ""; position: absolute; inset: 0 0 3.5rem; margin: auto; width: 4.5rem; height: 4.5rem; background: var(--leather); opacity: 0.35; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 20c0-6 2-9 6-11l1-3 2 2 4-1 3 3-2 2c-1 3-2 6-1 8h-3c0-3 0-4-2-4-3 0-4 2-4 4z'/%3E%3C/svg%3E") center / contain no-repeat; }
.horse-tile--empty .horse-tile-noimg { padding-bottom: 0; align-content: end; padding-bottom: 4.2rem; }

/* ---------- 25. Schritte als Reihe (Startseite) ---------- */
.stepper--row { margin-bottom: var(--space-4); }
@media (min-width: 52rem) {
  .stepper--row { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-3); }
  .stepper--row > li { grid-template-columns: 1fr; gap: 0; }
  .stepper--row > li::before { position: absolute; top: -1.4rem; left: var(--space-3); z-index: 2; }
  .stepper--row > li:not(:last-child)::after { display: none; }
  .stepper--row .step-card { height: 100%; padding-top: 2.2rem; display: flex; flex-direction: column; }
  .stepper--row .step-actions { margin-top: auto; padding-top: var(--space-2); }
}

/* ---------- 26. Vorteile-Box ---------- */
.benefits { position: relative; background: var(--brand-deep); color: var(--on-brand); border-radius: var(--radius); padding: var(--space-3); margin-bottom: var(--space-4); box-shadow: var(--shadow); border-left: 6px solid var(--gold); }
.benefits-head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; margin-bottom: var(--space-2); }
.benefits-badge { background: var(--gold); color: var(--on-gold); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 999px; }
.benefits h3 { margin: 0; color: #fff; font-size: var(--step-1); }
.benefits-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem 1.5rem; }
.benefits-list li { display: grid; grid-template-columns: 1.9rem 1fr; gap: 0.7rem; align-items: start; line-height: 1.4; }
.benefits-list svg { width: 1.9rem; height: 1.9rem; padding: 0.35rem; border-radius: 50%; background: var(--gold); color: var(--on-gold); }
.benefits-list strong { color: #fff; }
@media (min-width: 40rem) { .benefits-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72rem) { .benefits { padding: var(--space-3) var(--space-4); } .benefits-list { grid-template-columns: repeat(4, 1fr); } .benefits-list li { grid-template-columns: 1fr; gap: 0.6rem; } }

/* ---------- 27. Telefon-Buttons ---------- */
.person { display: flex; flex-direction: column; }
.person .person-phone { font-family: var(--font-serif); font-size: var(--step-1); font-weight: 600; color: var(--ink); margin: auto 0 0.5rem; padding-top: 0.4rem; }
.person-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.person-actions .btn { min-height: 2.6rem; padding: 0.4rem 0.9rem; font-size: 0.95rem; flex: 1 1 auto; }

/* ---------- 28. Dialog lebendiger ---------- */
.mail-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; }
.mail-head h2 { margin: 0; }
.mail-icon { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: 50%; background: var(--gold); color: var(--on-gold); box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px var(--leather); flex: none; }
.mail-icon svg { width: 1.4rem; height: 1.4rem; }
.mail-context { margin: 0 0 var(--space-2); padding: 0.7rem 0.9rem; background: var(--sand); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.98rem; line-height: 1.45; }
.mail-context[hidden] { display: none; }
.mail-actions .mail-cancel { flex: 1 1 100%; background: var(--sand); color: var(--ink); }
.mail-actions .mail-cancel:hover { background: var(--line); }

/* ---------- 29. Kontakt-Buttons ---------- */
.contact-buttons { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; margin-top: 0.3rem; }
.contact-buttons .btn { text-align: left; }
.contact-buttons .btn span { overflow-wrap: anywhere; }
.btn--insta { color: var(--ink); border: 2px solid transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(135deg, #f9a03f 0%, #e1306c 55%, #8a3ab9 100%) border-box; }
.btn--insta:hover { background: linear-gradient(color-mix(in srgb, var(--sand) 70%, var(--surface)), color-mix(in srgb, var(--sand) 70%, var(--surface))) padding-box, linear-gradient(135deg, #f9a03f 0%, #e1306c 55%, #8a3ab9 100%) border-box; }
.btn--insta .ico { color: #d1336f; }
.btn--insta small { opacity: 0.75; }
.contact-list dd .btn { min-height: 3.2rem; }
@media (max-width: 30rem) { .contact-buttons, .contact-buttons .btn { width: 100%; } }
.site-footer .btn--primary { color: var(--on-gold); }

.btn--insta:hover, .btn--insta:focus-visible { color: var(--ink); }
.download .btn { white-space: nowrap; min-width: 14.5rem; }
@media (max-width: 34rem) { .download .btn { min-width: 0; white-space: normal; } }

/* ---------- 30. FAQ ---------- */
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 0; margin-bottom: 0.7rem; transition: border-color 0.2s, box-shadow 0.2s; }
.faq details:hover { border-color: var(--brand); }
.faq details[open] { border-color: var(--brand); box-shadow: var(--shadow); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; padding: 1rem 1.25rem 1rem 1.5rem; font-family: var(--font-serif); font-weight: 600; font-size: var(--step-1); line-height: 1.3; border-radius: var(--radius); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary::after { content: ""; flex: none; width: 2rem; height: 2rem; border-radius: 50%; background: var(--sand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23476044' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / 1.1rem no-repeat; transition: transform 0.25s, background-color 0.2s; }
.faq details[open] summary::after { transform: rotate(180deg); background-color: var(--gold); }
:root[data-theme="dark"] .faq summary::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239dbb97' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .faq summary::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239dbb97' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); } }
:root[data-theme="dark"] .faq details[open] summary::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241c08' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
.faq details p { margin: 0; padding: 0 1.5rem 1.2rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .faq summary::after, .faq details { transition: none; } }
