/* ---- Tokens: morning on the paddock (light) / evening in the shelter (dark) ---- */
:root {
  --wood: #3b2a1a;
  --wood-deep: #241a10;
  --paper: #f5eedc;
  --paper-2: #ebe1c6;
  --ink: #2a1f14;
  --ink-soft: #5c4a37;
  --grass: #5f8a34;
  --grass-deep: #3f6122;
  --gold: #d9a441;
  --gold-deep: #b27f22;
  --line: #d6c7a4;
  --ok: #3f7a2e;
  --warn: #b3541e;
  --card: #fffaf0;
  --hero-ink: #f5eedc;
  --hero-soft: #d9cba8;
  --shadow: 0 10px 30px rgba(42, 31, 20, .18);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --paper: #1c1510;
    --paper-2: #261d15;
    --ink: #efe5cf;
    --ink-soft: #bfae8f;
    --line: #4a3a29;
    --card: #2b2118;
    --grass: #7aa54a;
    --grass-deep: #5b7f34;
    --gold: #e3b256;
    --gold-deep: #c8933a;
    --ok: #7fb56a;
    --warn: #e2894f;
    --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #1c1510;
  --paper-2: #261d15;
  --ink: #efe5cf;
  --ink-soft: #bfae8f;
  --line: #4a3a29;
  --card: #2b2118;
  --grass: #7aa54a;
  --grass-deep: #5b7f34;
  --gold: #e3b256;
  --gold-deep: #c8933a;
  --ok: #7fb56a;
  --warn: #e2894f;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}
h1, h2, h3 { font-family: "Alfa Slab One", "Rockwell", Georgia, serif; font-weight: 400; line-height: 1.1; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p { margin: 0; }
a { color: var(--gold-deep); }
.wrap { width: min(1100px, 100%); margin-inline: auto; padding-inline: 20px; }
.eyebrow { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); }
.lede { max-width: 62ch; color: var(--ink-soft); font-size: 1.1rem; }
section { padding-block: 64px; }
.section-head { display: grid; gap: 12px; margin-bottom: 36px; max-width: 70ch; }

/* ---- Hero: the wooden sign ---- */
.hero {
  background: radial-gradient(120% 90% at 50% 0%, #5a4028 0%, var(--wood) 45%, var(--wood-deep) 100%);
  color: var(--hero-ink);
  padding-block: 28px 56px;
}
.hero-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .9rem; color: var(--hero-soft); }
.hero-top strong { color: var(--gold); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; font-size: .8rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; margin-top: 36px; }
.hero-logo { border-radius: 6px; box-shadow: 0 22px 50px rgba(0, 0, 0, .5); display: block; width: 100%; height: auto; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); color: #fff; }
.hero h1 span { color: var(--gold); }
.hero .lede { color: var(--hero-soft); margin-top: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.btn {
  display: inline-block; padding: 14px 24px; border-radius: 6px; font-weight: 700; text-decoration: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; border: 2px solid transparent; transition: transform .12s ease, background .12s ease;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-gold { background: var(--gold); color: #2a1f14; border-color: var(--gold); }
.btn-gold:hover { background: #e6b65a; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--hero-ink); border-color: rgba(245, 238, 220, .45); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-note { font-size: .9rem; color: var(--hero-soft); }
.hero-facts { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(245, 238, 220, .18); }
.fact { display: grid; gap: 2px; }
.fact b { font-family: "Alfa Slab One", Georgia, serif; font-weight: 400; font-size: 1.5rem; color: var(--gold); }
.fact span { font-size: .85rem; color: var(--hero-soft); }

/* ---- A day on the paddock: three steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: grid; gap: 10px; align-content: start; }
.step .tool { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grass-deep); font-weight: 700; }
.step p { color: var(--ink-soft); }

/* ---- What the paddock has in store ---- */
.features-band { background: var(--paper-2); }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 36px; }
.feature { display: grid; grid-template-columns: 14px 1fr; gap: 14px; align-items: start; padding-block: 8px; }
.feature::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); margin-top: 8px; box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .25); }
.feature h3 { margin-bottom: 4px; }
.feature p { color: var(--ink-soft); }
.stages { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.stage { font-size: .8rem; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); background: var(--card); color: var(--ink-soft); }

/* ---- Trailer: two clicks, the first one is ours ---- */
.trailer { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center; }
.player { position: relative; aspect-ratio: 16 / 9; max-width: 100%; border-radius: 8px; overflow: hidden; background: var(--wood-deep); box-shadow: var(--shadow); }
.player img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .55; }
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-cover { position: absolute; inset: 0; display: grid; place-content: center; gap: 12px; text-align: center; padding: 24px; color: var(--hero-ink); }
.player-cover p { max-width: 42ch; font-size: .95rem; color: var(--hero-soft); }
.play { display: inline-grid; grid-template-columns: auto auto; gap: 10px; align-items: center; justify-self: center; }
.play::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent currentColor; }
.trailer-text ul { margin: 14px 0 0; padding-left: 20px; color: var(--ink-soft); display: grid; gap: 6px; }
.trailer-text .hint a { color: var(--gold-deep); }

/* ---- Gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.shot { display: grid; gap: 8px; margin: 0; }
.shot img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow); display: block; }
.shot figcaption { font-size: .9rem; color: var(--ink-soft); }

/* ---- Early Access ---- */
.signup-band { background: linear-gradient(180deg, var(--grass) 0%, var(--grass-deep) 100%); color: #f5eedc; }
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.signup-band h2 { color: #fff; }
.signup-band .eyebrow { color: #f3d98a; }
.signup-band .lede { color: #e6efd8; }
.signup-band ul { margin: 18px 0 0; padding-left: 20px; color: #e6efd8; display: grid; gap: 6px; }
form { background: var(--card); color: var(--ink); border-radius: 10px; padding: 26px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
label { font-weight: 600; font-size: .95rem; }
.hint { font-size: .85rem; color: var(--ink-soft); }
input[type="text"], input[type="email"] {
  font: inherit; padding: 12px 14px; border-radius: 6px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); width: 100%;
}
input:focus-visible { outline: 3px solid var(--gold); outline-offset: 1px; }
.check { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-weight: 400; font-size: .95rem; }
.check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--grass-deep); }
.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.status { border-radius: 6px; padding: 12px 14px; font-size: .95rem; line-height: 1.4; }
.status.ok { background: rgba(63, 122, 46, .12); color: var(--ok); border: 1px solid var(--ok); }
.status.warn { background: rgba(179, 84, 30, .1); color: var(--warn); border: 1px solid var(--warn); }
.privacy { font-size: .8rem; color: var(--ink-soft); }

/* ---- Footer ---- */
footer { background: var(--wood-deep); color: var(--hero-soft); padding-block: 28px; font-size: .9rem; }
footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
footer strong { color: var(--gold); }

@media (max-width: 860px) {
  .hero-grid, .signup-grid, .features, .trailer { grid-template-columns: 1fr; }
  .steps, .gallery { grid-template-columns: 1fr 1fr; }
  section { padding-block: 48px; }
}
@media (max-width: 560px) {
  .steps, .gallery { grid-template-columns: 1fr; }
  body { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }
.nobody { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Sub pages: Impressum, Datenschutz ---- */
.hero-slim { padding-block: 24px 36px; }
.hero-slim .home { color: var(--hero-soft); text-decoration: none; font-weight: 600; }
.hero-slim .home:hover { color: var(--gold); }
.page-title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: #fff; margin-top: 28px; }
.legal { padding-block: 40px 64px; display: grid; gap: 34px; max-width: 760px; }
.legal-block { display: grid; gap: 10px; }
.legal-block h2 { font-size: 1.25rem; }
.legal-block p, .legal-block li { color: var(--ink-soft); }
.legal-block ul { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.legal-block a { color: var(--gold-deep); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--hero-soft); text-decoration: none; }
.footer-links a:hover { color: var(--gold); text-decoration: underline; }
