/* Equi Zelder – Webseite.
   Dieselben Marken-Tokens wie die App (docs/design-system.md): Anthrazit und Gold, Lato für
   alles, Cormorant Garamond ausschliesslich für Überschriften mit Markencharakter. Bewusst
   handgeschriebenes CSS ohne Rahmenwerk – die Seite hat sechs Abschnitte und soll in
   Millisekunden laden, nicht ein Bündel nachziehen. */
:root {
  --bg: #121417; --surface: #1a1e22; --surface-2: #242a30; --line: #2f363d;
  --text: #f0ebe3; --text-2: #a0968a; --accent: #c79e6e;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: Lato, system-ui, sans-serif; font-size: 16px; line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }

.kopf {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 1.25rem; border-bottom: 1px solid var(--line);
  background: rgba(18,20,23,.95); backdrop-filter: blur(6px);
}
.marke { display: flex; align-items: center; gap: .65rem; text-decoration: none;
  font-size: 12.5px; letter-spacing: .19em; text-transform: uppercase; color: var(--text-2); }
.kopf nav { display: flex; align-items: center; gap: 1.25rem; font-size: 14px; }
.kopf nav a { color: var(--text-2); text-decoration: none; }
.kopf nav a:hover { color: var(--text); }

.knopf {
  display: inline-block; padding: .6rem 1.1rem; border-radius: 3px;
  background: var(--accent); color: #1a1410 !important; font-weight: 700;
  text-decoration: none; letter-spacing: .04em;
}
.knopf.gross { padding: .85rem 1.6rem; font-size: 17px; }

main { max-width: 62rem; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 3.5rem 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: 0; }

h1 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.1; margin: 0 0 1rem; }
h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300;
  font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 1.5rem; }
h3 { font-size: 17px; margin: 0 0 .5rem; }

.held { padding-top: 4.5rem; }
.fuehrung { font-size: 18px; color: var(--text-2); max-width: 44rem; }
.klein { font-size: 13px; color: var(--text-2); }

.raster { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 40rem) { .raster { grid-template-columns: 1fr 1fr; } }
@media (min-width: 60rem) { .raster { grid-template-columns: 1fr 1fr 1fr; } }
.raster article {
  border: 1px solid var(--line); border-radius: 3px; background: var(--surface); padding: 1.25rem;
}
.raster p { margin: 0; color: var(--text-2); font-size: 15px; }
.raster.preise article { display: flex; flex-direction: column; }
.raster.preise .hervor { border-color: var(--accent); }
.preis { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.2rem;
  color: var(--text) !important; margin: .25rem 0 .75rem !important; }
.raster ul { margin: 0; padding-left: 1.1rem; color: var(--text-2); font-size: 15px; }

footer { border-top: 1px solid var(--line); padding: 2rem 1.25rem 3rem; text-align: center; }
footer a { color: var(--text-2); }

/* Rechtstexte: schmalere Spalte, mehr Luft zwischen den Absätzen. */
.recht { max-width: 44rem; }
.recht h2 { margin-top: 2.5rem; font-size: 1.4rem; }
.recht p, .recht li { color: var(--text-2); }
.offen {
  border: 1px solid var(--accent); border-radius: 3px; padding: 1rem;
  background: var(--surface-2); color: var(--text) !important; font-size: 14px;
}

/* Verzeichnis und Rassen */
.filter { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.5rem; }
.filter button {
  min-height: 2.5rem; padding: 0 .8rem; border: 1px solid var(--line); border-radius: 2px;
  background: transparent; color: var(--text-2); font: inherit; font-size: 13px; cursor: pointer;
}
.filter button:hover { color: var(--text); }
.filter button.an { border-color: var(--accent); color: var(--accent); }
.taetigkeit { color: var(--accent) !important; font-size: 11.5px !important;
  text-transform: uppercase; letter-spacing: .12em; margin: 0 0 .5rem !important; }
.pferdchen { display: flex; gap: .4rem; margin-top: .6rem; }
.pferdchen img { width: 3.5rem; height: 3.5rem; object-fit: cover;
  border: 1px solid var(--line); border-radius: 2px; }
.raster article > p + p { margin-top: .5rem; }
.suche { width: 100%; max-width: 22rem; min-height: 2.75rem; padding: 0 .8rem;
  border: 1px solid var(--line); border-radius: 3px; background: var(--bg);
  color: var(--text); font: inherit; }
