@font-face {
  font-family: 'Bitter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/bitter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bitter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/bitter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bitter'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/bitter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bitter'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/bitter-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/barlow-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/barlow-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/barlow-latin-600-normal.woff2') format('woff2');
}

:root {
  --green-deep: #1b3a2f;
  --green-mid: #2a5142;
  --stone-light: #e9e2d3;
  --stone-mid: #c9b896;
  --stone-dark: #a68f68;
  --cream: #f7f4ec;
  --ink: #26261f;
  --ink-soft: #57574a;
  --clay: #8b5a3c;
  --brand-green: #74884b;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Bitter', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-deep);
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* Stacked-stone divider motif */
.stone-divider { display: flex; justify-content: center; gap: 6px; padding: 28px 0; }
.stone-divider span { display: block; height: 8px; background: var(--stone-dark); }
.stone-divider span:nth-child(1) { width: 46px; }
.stone-divider span:nth-child(2) { width: 72px; }
.stone-divider span:nth-child(3) { width: 30px; }

/* Header */
header { background: var(--green-deep); position: sticky; top: 0; z-index: 20; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; max-width: 1100px; margin: 0 auto; }
.brand { display: flex; align-items: flex-end; gap: 12px; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-sub { color: var(--stone-mid); font-size: 12px; letter-spacing: 0.03em; max-width: 130px; line-height: 1.3; margin-bottom: 2px; }
nav > ul { list-style: none; display: flex; gap: 8px; align-items: center; }
nav > ul > li { position: relative; }
nav a.top-link { color: var(--stone-light); font-size: 14.5px; padding: 10px 14px; display: block; }
nav a.top-link:hover { color: var(--stone-mid); }

/* Mobile menu toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.menu-toggle span { width: 26px; height: 3px; background: #ffffff; display: block; }

/* Hero */
.hero {
  background: var(--green-deep);
  color: #fff; padding: 64px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-content { max-width: 520px; }
.eyebrow { color: var(--stone-mid); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); margin-bottom: 18px; }
.hero p { font-size: 17px; color: var(--stone-light); max-width: 480px; margin-bottom: 30px; }

/* Gerahmtes Bild-Karussell */
.hero-slider {
  position: relative; height: 380px; border: 1px solid rgba(255,255,255,0.18); overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease;
  background: repeating-linear-gradient(115deg, var(--slide-a) 0 40px, var(--slide-b) 40px 80px, var(--slide-c) 80px 120px);
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { --slide-a:#cbbfa0; --slide-b:#b7a986; --slide-c:#d8cdae; }
.hero-slide:nth-child(2) { --slide-a:#5c7a5f; --slide-b:#476149; --slide-c:#71906f; }
.hero-slide:nth-child(3) { --slide-a:#9a9a92; --slide-b:#7f7f78; --slide-c:#b0b0a6; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(20,32,26,0.55); border: none; color: #fff; width: 40px; height: 40px;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: rgba(20,32,26,0.85); }
.slider-arrow.prev { left: 8px; }
.slider-arrow.next { right: 8px; }
.slideshow-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; gap: 8px; justify-content: center; z-index: 3; }
.slideshow-dots span { width: 22px; height: 3px; background: rgba(255,255,255,0.4); cursor: pointer; }
.slideshow-dots span.active { background: var(--stone-mid); }

.btn {
  display: inline-block; background: var(--clay); color: #fff; padding: 14px 30px;
  font-size: 15px; font-weight: 500; border: none; cursor: pointer; font-family: 'Barlow', sans-serif;
}
.btn:hover { background: #74472e; }
.btn-outline {
  display: inline-block; border: 1px solid rgba(255,255,255,0.5); color: #fff;
  padding: 13px 28px; font-size: 15px;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 4px; }

@media (max-width: 760px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-slider { height: 260px; order: -1; }
  .brand-sub { font-size: 10.5px; max-width: 105px; }
  .brand-logo { height: 38px; }
}

/* Section generic */
section { padding: 72px 0; }
.section-head { max-width: 560px; margin-bottom: 44px; }
.section-head .eyebrow { color: var(--brand-green); }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 15.5px; }

/* About */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo {
  height: 340px;
  background: repeating-linear-gradient(120deg, #cbbfa0 0 30px, #b7a986 30px 60px, #d8cdae 60px 90px);
  position: relative;
}
.about-photo::after {
  content: "Foto: Bruder bei der Arbeit"; position: absolute; bottom: 14px; left: 14px;
  background: rgba(27,58,47,0.85); color: var(--stone-light); font-size: 12px; padding: 6px 10px;
}
.about-text h2 { margin-bottom: 16px; font-size: 30px; }
.about-text p { color: var(--ink-soft); margin-bottom: 14px; font-size: 15.5px; }
.badge-row { display: flex; gap: 22px; margin-top: 26px; }
.badge { text-align: left; }
.badge .num { font-family: 'Bitter', serif; font-size: 26px; color: var(--brand-green); font-weight: 700; }
.badge .lbl { font-size: 12.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

/* Services */
.services-bg { background: var(--green-deep); color: var(--stone-light); }
.services-bg .section-head h2 { color: #fff; }
.services-bg .section-head .eyebrow { color: var(--stone-mid); }
.services-bg .section-head p { color: rgba(233,226,211,0.75); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.12); }
.service-card { background: var(--green-deep); padding: 30px 26px; }
.service-card .num { color: var(--stone-dark); font-family: 'Bitter', serif; font-size: 14px; margin-bottom: 12px; }
.service-card h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.service-card p { color: rgba(233,226,211,0.72); font-size: 14px; }

/* Gallery */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  background: none; border: 1px solid var(--stone-dark); color: var(--ink-soft);
  padding: 9px 20px; font-size: 14px; font-family: 'Barlow', sans-serif; cursor: pointer;
}
.filter-btn:hover { border-color: var(--brand-green); color: var(--brand-green); }
.filter-btn.active { background: var(--brand-green); border-color: var(--brand-green); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  height: 220px; position: relative; background: repeating-linear-gradient(115deg, var(--gi-a) 0 30px, var(--gi-b) 30px 60px, var(--gi-c) 60px 90px);
  transition: opacity 0.2s ease;
}
.gallery-item.hidden { display: none; }
.gallery-item span {
  position: absolute; bottom: 10px; left: 10px; background: rgba(27,58,47,0.85);
  color: var(--stone-light); font-size: 12px; padding: 5px 10px;
}
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.contact-section { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: 28px; margin-bottom: 16px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 22px; font-size: 15.5px; }
.contact-line { display: flex; gap: 10px; margin-bottom: 10px; font-size: 15px; }
.contact-line strong { color: var(--green-deep); min-width: 90px; display: inline-block; }
.contact-form { background: var(--stone-light); padding: 30px; }
.contact-form label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; margin-top: 14px; }
.contact-form label:first-child { margin-top: 0; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--stone-dark); background: #fff; padding: 10px 12px;
  font-family: inherit; font-size: 14px; color: var(--ink);
}
.contact-form button { margin-top: 20px; width: 100%; }

/* Legal pages */
.legal-page { padding: 64px 0 96px; }
.legal-page h1 { font-size: 32px; margin-bottom: 8px; }
.legal-page .eyebrow { margin-bottom: 12px; }
.legal-page h2 { font-size: 20px; margin: 32px 0 10px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 15px; margin-bottom: 10px; }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page .placeholder { background: var(--stone-light); border-left: 3px solid var(--clay); padding: 12px 16px; font-size: 13.5px; color: var(--ink); margin: 6px 0 20px; }

/* Footer */
footer { background: var(--green-deep); padding: 44px 0 30px; text-align: center; }
footer .f-logo { height: 52px; width: auto; margin: 0 auto 8px; display: block; }
footer .f-sub { color: #fff; font-size: 13.5px; margin-bottom: 4px; }
footer .f-location { color: var(--stone-mid); font-size: 14px; margin-bottom: 20px; }
footer .f-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 18px; flex-wrap: wrap; }
footer .f-links a { color: #fff; font-size: 14px; text-decoration: underline; }
footer .f-rule { width: 320px; max-width: 80%; height: 1px; background: rgba(255,255,255,0.15); margin: 0 auto 16px; }
footer .f-copy { color: rgba(233,226,211,0.55); font-size: 12px; }

.note-banner {
  background: var(--stone-mid); color: var(--green-deep); text-align: center;
  font-size: 13px; padding: 8px 16px; font-weight: 500;
}

@media (max-width: 760px) {
  .about, .contact-section { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }

  .menu-toggle { display: flex; }
  nav > ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-deep); flex-direction: column; gap: 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  }
  nav.open > ul { display: flex; }
  nav > ul > li { width: 100%; }
  nav a.top-link { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
