/* C&K Bögel – Garten- und Landschaftsbau
   Ton: erdig, robust, unaufgeregt. Slab-Serif für Headlines statt der
   filigranen Editorial-Serif aus dem alten Canva-Design, weil die zum
   rauen Baustellen-Sujet nicht passte. */

:root {
  --ink: #211a15;
  --surface: #2b231c;
  --surface-2: #362c23;
  --cream: #f5ede2;
  --cream-muted: #cdbfae;
  --accent: #bd5a32;
  --accent-light: #de8a56;
  --line: rgba(245, 237, 226, 0.14);
  --radius: 6px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Zilla Slab", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(33, 26, 21, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.wordmark {
  font-family: "Zilla Slab", Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wordmark span { color: var(--accent-light); }

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav a {
  text-decoration: none;
  color: var(--cream-muted);
  font-size: 0.95rem;
}
.nav a:hover, .nav a:focus-visible { color: var(--cream); }

.nav .phone {
  color: var(--cream);
  font-weight: 600;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
}
.nav .phone:hover, .nav .phone:focus-visible { border-color: var(--accent-light); }

.nav-links { display: flex; align-items: center; gap: 28px; }

/* Hero */
.hero {
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px 80px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  max-width: 15ch;
  color: var(--cream);
}
.hero p.lead {
  max-width: 46ch;
  color: var(--cream-muted);
  font-size: 1.1rem;
  margin: 18px 0 32px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-visual img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--line);
}
.hero-visual-logo { aspect-ratio: 4 / 3; }
.hero-visual-portrait { aspect-ratio: 16 / 10; object-position: 60% 30%; }
.hero-visual-caption {
  font-size: 0.8rem;
  color: var(--cream-muted);
  margin: -8px 0 0;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-light); }
.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--accent-light); }

/* Intro strip */
.intro {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.intro p {
  max-width: 62ch;
  color: var(--cream-muted);
  font-size: 1.08rem;
}
.intro strong { color: var(--cream); }

/* Section headings */
.section { padding: 72px 0; }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head .kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { color: var(--cream-muted); margin: 10px 0 0; }

/* Leistungen grid */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.leistung-card {
  background: var(--surface);
  padding: 28px 26px;
}
.leistung-card h3 {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.leistung-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--cream-muted);
  font-size: 0.95rem;
}
.leistung-card li {
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.leistung-card li:first-child { border-top: none; }

/* Verkauf band */
.verkauf {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.verkauf .wrap {
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.verkauf h2 { font-size: 1.6rem; }
.verkauf p { color: var(--cream-muted); }
.verkauf-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--cream-muted);
}
.verkauf-list li { padding: 5px 0; }
.verkauf-list li::before { content: "— "; color: var(--accent-light); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.gallery-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--cream-muted);
}

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item h3 { font-size: 1.05rem; color: var(--cream); margin-bottom: 8px; }
.faq-item p { color: var(--cream-muted); margin: 0; max-width: 62ch; }

/* Kontakt / Preisliste CTA */
.kontakt {
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border-top: 1px solid var(--line);
}
.kontakt .wrap { padding: 72px 24px; text-align: center; }
.kontakt h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); max-width: 26ch; margin: 0 auto 16px; }
.kontakt p.lead { max-width: 54ch; margin: 0 auto 32px; color: var(--cream-muted); font-size: 1.08rem; }
.kontakt .cta-row { justify-content: center; }

.kontakt-details {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--cream-muted);
}
.kontakt-details a { color: var(--cream); text-decoration: none; }
.kontakt-details a:hover { color: var(--accent-light); }

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--cream-muted);
}
footer.site a { color: var(--cream-muted); text-decoration: none; }
footer.site a:hover { color: var(--cream); }
footer.site nav ul { list-style: none; display: flex; gap: 20px; padding: 0; margin: 0; }

/* Impressum page */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.legal .back { color: var(--accent-light); text-decoration: none; font-size: 0.9rem; }
.legal h2 { font-size: 1.15rem; margin-top: 2.2em; color: var(--cream); }
.legal p, .legal li { color: var(--cream-muted); font-size: 0.98rem; }

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .nav-menu { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; flex-direction: row; }
  .hero-visual-portrait { max-width: 45%; }
  .verkauf .wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
  .kontakt-details { flex-direction: column; gap: 12px; }
}
