:root {
  color-scheme: light;
  --background: #fff8e9;
  --card: #fffdf6;
  --ink: #263326;
  --muted: #5e6a5d;
  --leaf: #315f3c;
  --leaf-soft: #e2efd9;
  --coral: #b64f43;
  --coral-soft: #f8ddd7;
  --line: #dfd4be;
  --sun: #f6c95f;
  --shadow: rgba(57, 45, 27, 0.12);
}

* { box-sizing: border-box; }

html { background: var(--background); scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 15% 5%, rgba(246, 201, 95, 0.22), transparent 28rem),
    linear-gradient(180deg, #fff9eb, #f4eddd);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  margin: 0;
  min-height: 100vh;
}

a { color: var(--leaf); font-weight: 750; }
a:hover { color: var(--coral); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.skip-link {
  background: var(--ink);
  color: white;
  left: 1rem;
  padding: 0.65rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 20;
}
.skip-link:focus { top: 1rem; }

.site-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 72rem;
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
}

.brand { align-items: center; color: var(--ink); display: flex; gap: 0.7rem; text-decoration: none; }
.brand-mark { font-size: 1.65rem; }
.brand-name { font-size: 1rem; font-weight: 900; letter-spacing: 0.01em; }

.language-switcher { background: rgba(255,255,255,0.7); border: 1px solid var(--line); border-radius: 999px; display: flex; padding: 0.2rem; }
.language-switcher button,
.language-switcher a { align-items: center; background: transparent; border: 0; border-radius: 999px; color: var(--muted); cursor: pointer; display: inline-flex; font: inherit; font-size: 0.85rem; font-weight: 850; justify-content: center; min-height: 2.5rem; padding: 0.45rem 0.8rem; text-decoration: none; }
.language-switcher button[aria-pressed="true"],
.language-switcher a[aria-current="page"] { background: var(--leaf); color: white; }

main { margin: 0 auto; max-width: 72rem; padding: 1rem clamp(1rem, 4vw, 3rem) 4rem; }
.narrow { max-width: 52rem; }

.hero { align-items: center; display: grid; gap: clamp(2rem, 6vw, 5rem); grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.85fr); min-height: 32rem; padding: 3rem 0 5rem; }
.eyebrow { color: var(--coral); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
h1 { font-size: clamp(2.45rem, 7vw, 5.2rem); letter-spacing: -0.055em; line-height: 0.98; margin: 0.6rem 0 1.2rem; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.2; margin: 0 0 0.85rem; }
h3 { font-size: 1.08rem; margin: 1.8rem 0 0.4rem; }
.lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 42rem; }

.hero-art { background: linear-gradient(145deg, #dcefd4, #fff3c7); border: 1px solid #c9d9bc; border-radius: 2rem; box-shadow: 0 1.5rem 4rem var(--shadow); min-height: 24rem; overflow: hidden; padding: 2rem; position: relative; }
.hero-art::before { background: #f5c85f; border-radius: 50%; content: ""; height: 8rem; position: absolute; right: 2rem; top: 2rem; width: 8rem; }
.garden { bottom: 2rem; display: flex; font-size: clamp(3rem, 8vw, 5rem); gap: 0.2rem; justify-content: center; left: 1rem; position: absolute; right: 1rem; }
.soil { background: #8b6641; border-radius: 50% 50% 1rem 1rem; bottom: 0; height: 5rem; left: -1rem; position: absolute; right: -1rem; }

.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.button { border: 2px solid var(--leaf); border-radius: 999px; display: inline-flex; min-height: 3rem; padding: 0.65rem 1.2rem; text-decoration: none; }
.button.primary { background: var(--leaf); color: white; }
.button.upcoming { cursor: default; font-weight: 850; }
.trust-line { color: var(--leaf); font-size: 0.88rem; font-weight: 800; margin-top: 1rem; }

.app-visual { margin: 0; }
.app-icon { border: 1px solid #c9d9bc; border-radius: clamp(2rem, 5vw, 4.5rem); box-shadow: 0 1.5rem 4rem var(--shadow); display: block; height: auto; max-width: 100%; }
.app-visual figcaption { color: var(--leaf); font-size: 0.9rem; font-weight: 850; margin-top: 0.85rem; text-align: center; }

.grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 1.5rem 0 4rem; }
.card, .content-card { background: rgba(255, 253, 246, 0.9); border: 1px solid var(--line); border-radius: 1.4rem; box-shadow: 0 0.75rem 2.5rem var(--shadow); padding: 1.4rem; }
.card-icon { font-size: 2rem; }
.card p, .content-card p, .content-card li { color: var(--muted); }
.content-card { margin: 1rem 0; padding: clamp(1.2rem, 4vw, 2rem); }
.content-card ul { padding-left: 1.25rem; }
.content-card li + li { margin-top: 0.45rem; }

.page-heading { padding: 3rem 0 1.5rem; }
.page-heading h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.meta { color: var(--muted); font-size: 0.9rem; }
.notice { background: var(--coral-soft); border: 1px solid #e8bcb4; border-radius: 1rem; color: #6e2d28; font-size: 0.92rem; font-weight: 750; padding: 0.9rem 1rem; }
.contact-placeholder { background: #fff3c7; border: 2px dashed #bd8d20; border-radius: 1rem; color: #634b16; padding: 1rem; }
.operator-contact, .hosting-details { background: var(--leaf-soft); border: 1px solid #b9cfad; border-radius: 1rem; color: var(--ink); font-style: normal; padding: 1rem; }
.hosting-details p { margin: 0.45rem 0; }
.faq details { border-top: 1px solid var(--line); padding: 1rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 850; }
.faq { margin-top: 5rem; }

.steps-section { margin: 2rem 0 5rem; }
.steps { counter-reset: tiny-farmers-step; display: grid; gap: 1rem; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; margin: 1.5rem 0 0; padding: 0; }
.steps li { background: rgba(255, 253, 246, 0.9); border: 1px solid var(--line); border-radius: 1.25rem; counter-increment: tiny-farmers-step; padding: 1.25rem; }
.steps li::before { align-items: center; background: var(--leaf-soft); border-radius: 999px; color: var(--leaf); content: counter(tiny-farmers-step); display: flex; font-size: 0.85rem; font-weight: 900; height: 2rem; justify-content: center; margin-bottom: 0.85rem; width: 2rem; }
.steps strong, .steps span { display: block; }
.steps span { color: var(--muted); font-size: 0.92rem; margin-top: 0.35rem; }

.privacy-band { align-items: center; background: var(--leaf); border-radius: 1.8rem; color: white; display: grid; gap: clamp(1.5rem, 5vw, 4rem); grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr); margin: 2rem 0; padding: clamp(1.5rem, 5vw, 3rem); }
.privacy-band .eyebrow { color: #f8d77f; }
.privacy-band p { color: rgba(255,255,255,0.82); margin-bottom: 0; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { border-bottom: 1px solid rgba(255,255,255,0.18); font-weight: 800; padding: 0.65rem 0; }
.check-list li::before { color: #f8d77f; content: "✓"; font-weight: 900; margin-right: 0.65rem; }

.site-footer { border-top: 1px solid var(--line); color: var(--muted); margin: 0 auto; max-width: 72rem; padding: 2rem clamp(1rem, 4vw, 3rem) 3rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }

[data-language] { display: none; }
html[data-active-language="de"] [data-language="de"],
html[data-active-language="en"] [data-language="en"] { display: revert; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 2rem; }
  .hero-art { min-height: 18rem; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .privacy-band { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; }
}

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