/* Reiterhof Finkenmühle — Interimsseite
   Palette: Logo-Grün #25a55b, near-black #2a2c2b, warme Naturtöne. */

:root {
  color-scheme: light;

  --green:        #25a55b;
  --green-dark:   #1c7f46;
  --green-darker: #145c32;
  --ink:          #2a2c2b;
  --ink-soft:     #55605a;
  --cream:        #f7f4ed;
  --cream-deep:   #efe9dc;
  --line:         #ddd6c7;
  --white:        #ffffff;

  --radius:  14px;
  --shadow:  0 1px 2px rgba(42, 44, 43, .05), 0 8px 24px -12px rgba(42, 44, 43, .18);
  --measure: 62ch;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.075rem);
  line-height: 1.65;
  /* Sanfter Naturverlauf statt flacher Fläche */
  background-image:
    radial-gradient(1200px 520px at 50% -180px, rgba(37, 165, 91, .10), transparent 70%);
  background-repeat: no-repeat;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--green-darker);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: var(--green-dark); }

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

/* ── Layout ───────────────────────────────────────────── */

.page {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 1rem + 3vw, 3.5rem) clamp(1.1rem, .6rem + 2vw, 2rem) 3rem;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem; top: 1rem;
  position: fixed;
  z-index: 10;
  background: var(--white);
  padding: .6rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* ── Logo ─────────────────────────────────────────────── */

.brand {
  text-align: center;
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.brand img {
  width: clamp(190px, 42vw, 300px);
  margin: 0 auto;
  /* Logo-JPEG hat weißen Hintergrund → multiply lässt es auf Creme aufgehen */
  mix-blend-mode: multiply;
}

/* ── Karten ───────────────────────────────────────────── */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 1rem + 2vw, 2.25rem);
}
.card + .card { margin-top: 1.25rem; }

/* ── Typografie ───────────────────────────────────────── */

h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 1.2rem + 2.2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 .75rem;
  text-wrap: balance;
}

h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  line-height: 1.3;
  margin: 0 0 .6rem;
  text-wrap: balance;
}

h3 {
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 .35rem;
}

p { margin: 0 0 1rem; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-darker);
  background: rgba(37, 165, 91, .11);
  border-radius: 999px;
  padding: .38rem .85rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: .45rem; height: .45rem;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.lead {
  font-size: 1.075em;
  color: var(--ink);
}

.muted { color: var(--ink-soft); }

/* ── Hero mit Pferdefoto ──────────────────────────────── */

.hero { display: grid; gap: clamp(1.25rem, 1rem + 1.5vw, 2rem); }

@media (min-width: 40rem) {
  .hero {
    grid-template-columns: 1fr 11.5rem;
    align-items: start;
  }
  .hero__figure { grid-column: 2; grid-row: 1; }
  .hero__body   { grid-column: 1; grid-row: 1; }
}

.hero__figure { margin: 0; }
.hero__figure img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  /* Auf kleinen Schirmen flacher, damit die Botschaft oben bleibt */
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 38%;
}
@media (min-width: 40rem) {
  .hero__figure img { aspect-ratio: 1 / 1; }
}
.hero__figure figcaption {
  font-size: .8rem;
  color: var(--ink-soft);
  margin-top: .5rem;
  text-align: center;
}

/* ── Kontakt ──────────────────────────────────────────── */

.contact {
  display: grid;
  gap: 1.1rem 2rem;
  margin: 0;
}
@media (min-width: 34rem) {
  .contact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.contact > div { min-width: 0; }

.contact dd, .contact p { margin: 0; }

.contact .val {
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: break-word;
}
.contact .val a { text-decoration: none; }
.contact .val a:hover { text-decoration: underline; }
.contact .note {
  font-size: .875rem;
  color: var(--ink-soft);
  margin-top: .15rem;
}

.phone-cta {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 650;
  font-size: 1.05rem;
  text-decoration: none;
  padding: .7rem 1.35rem;
  border-radius: 999px;
  margin-top: .35rem;
}
.phone-cta:hover, .phone-cta:focus-visible {
  background: var(--green-darker);
  color: var(--white);
}

address { font-style: normal; }

/* ── Listen ───────────────────────────────────────────── */

.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: .45rem;
  max-width: var(--measure);
}
.checks li {
  position: relative;
  padding-left: 1.6rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: .1rem; top: .58em;
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--green);
}

.signoff {
  margin-top: 1.5rem;
  text-align: center;
  max-width: none;
}

/* ── Rechtliches / Footer ─────────────────────────────── */

.legal { margin-top: 2.25rem; }

.legal h2 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.legal .card { background: var(--cream-deep); box-shadow: none; }

.legal-prose { font-size: .925rem; }
.legal-prose h3 {
  margin-top: 1.4rem;
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 650;
}
.legal-prose h3:first-of-type { margin-top: 0; }
.legal-prose p { margin-bottom: .8rem; }

.footer {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
  align-items: baseline;
  justify-content: space-between;
}
.footer nav { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; }

/* ── Unterseiten ──────────────────────────────────────── */

.back {
  display: inline-block;
  font-size: .9rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.back::before { content: "\2190"; margin-right: .4rem; }
.back:hover { text-decoration: underline; }

@media print {
  body { background: #fff; }
  .card { box-shadow: none; border-color: #ccc; }
}
