@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/LibreBaskerville-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/LibreBaskerville-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/LibreBaskerville-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #c1272d;
  --red-dark: #9b1d22;
  --sage: #4f6f60;
  --sage-deep: #3b5649;
  --sage-soft: #e4eee8;
  --cream: #f6f1ea;
  --sand: #efe6d8;
  --ink: #2b2926;
  --muted: #6a645d;
  --line: #ddd4c8;
  --white: #fff;
  --shadow: 0 18px 46px rgba(43, 41, 38, .12);
  --radius: 18px;
  --max: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); }
h1, h2, h3, .serif { font-family: "Libre Baskerville", Georgia, serif; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.65rem, 3.1vw, 2.35rem); line-height: 1.2; margin: 0 0 .4em; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); margin: 0 0 .5em; }
h3 { font-size: 1.2rem; margin: 0 0 .4em; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--red); color: #fff; padding: .6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246,241,234,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: .7rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand-logo { width: 78px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: "Libre Baskerville", serif; font-size: 1.35rem; color: var(--red); }
.brand-text small { font-size: .78rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: .2rem .55rem; flex-wrap: wrap; }
.nav-item { position: relative; }
.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% - .1rem);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: .4rem;
  z-index: 30;
}
.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub { display: block; }
.nav-sub a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  padding: .45rem .7rem;
  border-radius: 10px;
}
.nav-sub a:hover { background: var(--sage-soft); color: var(--sage-deep); }
.prose p { margin: 0 0 .85rem; }
.prose h2 { margin-top: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
  padding: .4rem .55rem; border-radius: 999px;
}
.nav-ico { width: 1.05rem; height: 1.05rem; flex: 0 0 1.05rem; display: block; }
.nav-sub a { display: flex; align-items: center; gap: .4rem; }
.nav-link:hover, .nav-link.is-active { background: var(--sage-soft); color: var(--sage-deep); }
.nav-call, .nav-whatsapp {
  display: inline-flex; align-items: center; gap: .45rem;
  text-decoration: none; font-weight: 700; font-size: .88rem;
  padding: .45rem .9rem; border-radius: 999px; color: #fff;
}
.icon-wa, .icon-phone {
  width: 18px; height: 18px; flex: 0 0 18px; display: block;
}
.nav-whatsapp { background: #25D366; }
.nav-whatsapp:hover { background: #1ebe5a; }
.nav-call { background: var(--red); }
.nav-call:hover { background: var(--red-dark); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink); margin: 6px 8px; border-radius: 2px;
}

.hero {
  position: relative; min-height: 78vh;
  background:
    linear-gradient(105deg, rgba(43,41,38,.58), rgba(79,111,96,.32)),
    url("../img/start/hero-pflanzen.jpg") center/cover no-repeat;
  color: #fff; display: grid; align-items: end;
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 7rem 1.2rem 3.2rem; }
.eyebrow {
  display: inline-block; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
  padding: .25rem .7rem; border-radius: 999px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero p.lead { max-width: 38rem; font-size: 1.15rem; color: #f3eee6; }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.5rem; }

.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--red); color: #fff; text-decoration: none; font-weight: 700;
  padding: .75rem 1.15rem; border-radius: 999px; border: 0; cursor: pointer; font-size: 1rem;
}
.btn:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; border: 1.5px solid currentColor; color: inherit; }
.hero .btn-ghost {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-color: transparent;
}
.hero .btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-sage { background: var(--sage); }
.btn-sage:hover { background: var(--sage-deep); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 3.4rem 1.2rem; }
.section-head { max-width: 46rem; margin-bottom: 2rem; }
.section-head-wide { max-width: none; }
.locations-title { white-space: nowrap; }
.kicker { color: var(--red); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }

.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.grid-2.align-top { align-items: start; }
.contact-aside { align-self: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.card img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform .45s ease;
}
.card:hover img { transform: scale(1.06); }
.card-body { padding: 1.15rem 1.2rem 1.35rem; }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); margin: 0; }

.photo-frame {
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
  min-height: 340px;
}
.photo-frame img {
  width: 100%; height: 100%; min-height: 340px; object-fit: cover;
  transition: transform .5s ease;
}
.photo-frame:hover img { transform: scale(1.05); }

.band { background: var(--white); }
.band-sage { background: var(--sage); color: #fff; }
.band-sage a { color: #fff; }
.band-sand { background: var(--sand); }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  position: relative; padding: .35rem 0 .35rem 1.6rem;
}
.list-check li::before {
  content: ""; position: absolute; left: 0; top: .7rem;
  width: .7rem; height: .7rem; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 0 4px var(--sage-soft);
}

.quote {
  font-family: "Libre Baskerville", serif; font-size: 1.35rem; font-style: italic; line-height: 1.4;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}
.loc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.loc-card img {
  height: 240px;
  flex-shrink: 0;
}
.loc-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.4rem 1.5rem;
  gap: .55rem;
}
.loc-card h3 { margin: 0; font-size: 1.35rem; }
.loc-address {
  color: var(--ink) !important;
  font-weight: 600;
  line-height: 1.45;
}
.loc-meta {
  flex: 1;
  line-height: 1.5;
}
.loc-btn {
  align-self: flex-start;
  margin-top: .35rem;
}
.location-stack { display: flex; flex-direction: column; gap: 2rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; min-height: 280px; background: var(--sand); margin-top: 0; }
.map-wrap iframe { width: 100%; height: 280px; border: 0; }

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem;
}
.gallery img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 16px; cursor: zoom-in;
  transition: transform .45s ease, box-shadow .45s ease, filter .45s ease;
}
.gallery img:hover {
  transform: scale(1.035);
  box-shadow: 0 16px 36px rgba(43,41,38,.18);
  filter: saturate(1.08);
}

.form {
  background: #fff; border-radius: 22px; padding: 1.6rem; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field { margin-bottom: .95rem; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .3rem; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .7rem .8rem;
  font: inherit; background: #fff; color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.consent {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  column-gap: .85rem;
  row-gap: .35rem;
  align-items: start;
  background: var(--sage-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1rem;
  font-size: .92rem;
}
.consent input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin: .2rem 0 0;
  accent-color: var(--sage);
}
.consent label {
  display: block;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}
.consent .consent-note {
  grid-column: 2;
  color: var(--muted);
  font-size: .86rem;
  margin: 0;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.captcha-row { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.captcha-img {
  width: 168px; height: 48px; border-radius: 10px; background: var(--sage-soft);
}
.captcha-reload { font-size: .86rem; white-space: nowrap; }
.captcha-row input { max-width: 7rem; }
.alert {
  padding: .9rem 1rem; border-radius: 12px; margin-bottom: 1rem;
}
.alert-ok { background: #e6f5ea; color: #215c34; }
.alert-err { background: #fdecea; color: #8a1f1f; }

.legal { background: #fff; border-radius: 22px; padding: 2rem; box-shadow: var(--shadow); }
.legal h1 { font-size: 1.55rem; line-height: 1.25; }
.legal h2 { font-size: 1.12rem; line-height: 1.35; margin-top: 1.35rem; margin-bottom: .35rem; }
.legal h3 { font-size: 1.02rem; margin-top: 1rem; }
.legal ul { margin: .3rem 0 .8rem 1.1rem; }


.site-footer { background: #2b2926; color: #efe8de; padding: 3rem 1.2rem 1.2rem; }
.footer-grid {
  max-width: var(--max); margin: 0 auto 2rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 1.4rem;
}
.footer-logo { width: 120px; margin-bottom: .8rem; }
.footer-lead { color: #d9d0c4; }
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer a { color: #f1e7db; }
.footer-bar {
  max-width: var(--max); margin: 0 auto; padding-top: 1rem; border-top: 1px solid #4a4540;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; color: #cfc5b8;
}
.footer-bar nav { display: flex; gap: 1rem; }

.lightbox {
  position: fixed; inset: 0; background: rgba(20,18,16,.88); display: grid; place-items: center;
  z-index: 80; padding: 1.5rem; cursor: zoom-out;
}
.lightbox img { max-width: min(1100px, 96vw); max-height: 90vh; border-radius: 12px; }

.cta-row { display:grid; grid-template-columns:1.4fr auto; gap:1.5rem; align-items:center; }

@media (max-width: 900px) {
  .locations-title { white-space: normal; }
  .grid-2, .grid-3, .grid-4, .footer-grid, .form-row, .cta-row, .loc-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: .8rem 1.1rem 1.1rem;
  }
  .site-nav.is-open { display: flex; }
  .nav-item { width: 100%; }
  .nav-sub {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0 0 .3rem .6rem;
    min-width: 0;
    background: transparent;
  }
  .nav-call, .nav-whatsapp { justify-content: center; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .brand-text { display: none; }
}
