/* =====================================================
   Tropical Hills – Gartengestaltung
   Modernes Design: Fraunces (Display) + Outfit (Body)
   Schriften lokal eingebunden (DSGVO – kein Google-Fonts-Aufruf)
   ===================================================== */

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/fraunces-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/fraunces-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/fraunces-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/fraunces-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --green-deep: #0c3b24;
  --green-dark: #14532d;
  --green: #1f8a4c;
  --green-soft: #dff0e5;
  --lime: #b6e94f;
  --sun: #f9d15c;
  --cream: #faf7f0;
  --cream-dark: #f1ece0;
  --ink: #122419;
  --ink-soft: #47604f;
  --white: #ffffff;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow: 0 14px 40px rgba(12, 59, 36, 0.14);
  --shadow-soft: 0 6px 22px rgba(12, 59, 36, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

section { scroll-margin-top: 90px; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }
h1 em, h2 em { font-style: italic; color: var(--lime); }
h2 em { color: var(--green); }

/* ---------- Pills / Kicker ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  color: var(--lime);
  border: 1px solid rgba(182, 233, 79, 0.35);
  margin-bottom: 1.2rem;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.pill-green {
  background: var(--green-soft);
  color: var(--green-dark);
  border-color: rgba(31, 138, 76, 0.25);
}
.pill-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--sun);
  border-color: rgba(249, 209, 92, 0.4);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--lime);
  color: var(--green-deep);
  box-shadow: 0 10px 26px rgba(182, 233, 79, 0.35);
}
.btn-primary:hover { background: #c8f36a; }
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-nav {
  padding: 0.55rem 1.3rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.95rem;
}
.btn-nav:hover { background: var(--green-deep); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 59, 36, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.scrolled {
  background: rgba(12, 59, 36, 0.92);
  box-shadow: 0 6px 24px rgba(6, 30, 17, 0.35);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.65rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--white);
}
.brand-icon { color: var(--lime); display: grid; place-items: center; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-text em { font-style: italic; color: var(--lime); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--white); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(182, 233, 79, 0.16), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(249, 209, 92, 0.12), transparent 60%),
    linear-gradient(155deg, #0a3320 0%, #0f4a2c 55%, #176038 100%);
  overflow: hidden;
  margin-top: -62px;
  padding-top: 62px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: rgba(182, 233, 79, 0.14);
  top: -140px; right: -100px;
}
.hero-glow-2 {
  width: 420px; height: 420px;
  background: rgba(31, 138, 76, 0.35);
  bottom: -120px; left: -120px;
}
.hero-glow-3 {
  width: 500px; height: 500px;
  background: rgba(182, 233, 79, 0.1);
  top: -160px; right: -120px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(6rem, 11vw, 9rem);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.hero-sub {
  font-size: 1.13rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats li:first-child { padding-left: 0; border-left: 0; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--sun);
  line-height: 1.2;
}
.hero-stats strong i { font-style: normal; font-size: 1.2rem; vertical-align: 0.15em; }
.hero-stats span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); }

/* Hero-Illustration + Floating Cards */
.hero-art { position: relative; }
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(4, 24, 13, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(2deg);
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-radius: 16px;
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow);
  animation: cardFloat 6s ease-in-out infinite;
}
.float-card div { display: flex; flex-direction: column; line-height: 1.3; }
.float-card strong { font-size: 0.95rem; }
.float-card span { font-size: 0.8rem; color: var(--ink-soft); }
.float-emoji { font-size: 1.5rem; }
.float-card-1 { top: 8%; left: -12%; animation-delay: 0.8s; }
.float-card-2 { bottom: 10%; right: -8%; animation-delay: 1.8s; }
.float-card-3 {
  bottom: 6%;
  left: 4%;
  animation-delay: 1s;
  background: var(--white);
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(50px, 8vw, 110px);
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--green-deep);
  color: var(--lime);
  overflow: hidden;
  padding: 0.9rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -1.4rem 0 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(6, 30, 17, 0.25);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--sun); font-size: 0.9rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 6.5rem) 0; position: relative; }
.section-tint { background: var(--cream-dark); }
.section-dark {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(182, 233, 79, 0.1), transparent 60%),
    linear-gradient(160deg, #0a3320, #124a2b);
  color: var(--white);
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.6rem, 6vw, 4rem);
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
.section-dark .section-head h2 { color: var(--white); }
.section-dark .section-head h2 em { color: var(--lime); }
.section-sub { margin-top: 0.9rem; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Karten (Leistungen) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(12, 59, 36, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--green));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 138, 76, 0.25);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border-radius: 18px;
  background: var(--green-soft);
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: 0.5rem; color: var(--green-deep); font-size: 1.22rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }
.card-featured {
  background: linear-gradient(150deg, #0f4a2c, #176038);
  border-color: rgba(182, 233, 79, 0.35);
}
.card-featured h3 { color: var(--white); }
.card-featured p { color: rgba(255, 255, 255, 0.85); }
.card-featured .card-icon { background: rgba(182, 233, 79, 0.18); }
.card-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--lime);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  list-style: none;
  counter-reset: schritt;
}
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  backdrop-filter: blur(4px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(182, 233, 79, 0.4);
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--lime);
  display: block;
  margin-bottom: 0.9rem;
  opacity: 0.9;
}
.step h3 { color: var(--white); margin-bottom: 0.45rem; font-size: 1.18rem; }
.step p { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; }

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 1.3rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow);
}
.g1 { grid-row: span 2; background: linear-gradient(150deg, #1f8a4c, #6fd08a); }
.g2 { background: linear-gradient(150deg, #10617d, #56b9cf); }
.g3 { background: linear-gradient(150deg, #71785f, #b3c18d); }
.g4 { grid-row: span 2; background: linear-gradient(150deg, #2c6e49, #96ca82); }
.g5 { background: linear-gradient(150deg, #474b66, #6db38a); }
.g6 { background: linear-gradient(150deg, #b8763a, #e5bd6d); }
.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery-item::before {
  content: "✺";
  position: absolute;
  top: -30px;
  right: -18px;
  font-size: 10rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  z-index: 0;
  transition: transform 0.4s ease;
}
.gallery-item:hover::before { transform: rotate(30deg); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 30, 17, 0.8) 0%, rgba(8, 30, 17, 0) 55%);
  z-index: 0;
}
.gallery-item figcaption {
  position: relative;
  z-index: 1;
  padding: 1.3rem 1.4rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.gallery-item strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.gallery-item span { font-size: 0.85rem; opacity: 0.85; }
.gallery-note {
  margin-top: 1.3rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Über uns ---------- */
.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.about-text p { margin-bottom: 1rem; color: var(--ink-soft); }
.checklist {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}
.about-visual { position: relative; }
.about-blob { filter: drop-shadow(0 24px 40px rgba(12, 59, 36, 0.18)); }

/* ---------- Kundenstimmen ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}
.quote {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(12, 59, 36, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote::before {
  content: "„";
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--green-soft);
}
.stars { color: var(--sun); letter-spacing: 0.15em; font-size: 0.95rem; }
.quote p { font-style: italic; color: var(--ink); position: relative; }
.quote footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}
.avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- Kontakt ---------- */
.section-contact {
  background:
    radial-gradient(700px 420px at 10% 110%, rgba(249, 209, 92, 0.1), transparent 60%),
    linear-gradient(155deg, #0a3320 0%, #0f4a2c 60%, #176038 100%);
  color: var(--white);
  overflow: hidden;
}
.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info h2 {
  color: var(--white);
  margin-bottom: 1.1rem;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
}
.contact-info h2 em { color: var(--lime); }
.contact-info > p { color: rgba(255, 255, 255, 0.85); max-width: 46ch; }
.contact-list {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: 0.9rem;
}
.contact-list li { display: flex; align-items: center; gap: 0.8rem; }
.contact-ico {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-list a { color: var(--sun); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: 0 30px 70px rgba(4, 24, 13, 0.45);
  display: grid;
  gap: 1.1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-row { display: grid; gap: 0.35rem; }
.form-row label { font-weight: 600; font-size: 0.9rem; }
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid rgba(12, 59, 36, 0.16);
  border-radius: 13px;
  background: var(--cream);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 138, 76, 0.14);
}
.form-row textarea { resize: vertical; }
.form-status { font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: var(--green); }
.form-status.error { color: #c0392b; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: #071f12;
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand-text { color: var(--white); font-size: 1.35rem; }
.footer-brand .brand-text em { color: var(--lime); }
.footer-brand p { margin-top: 0.7rem; font-size: 0.93rem; color: rgba(255, 255, 255, 0.65); }
.footer-title {
  display: block;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.93rem;
  width: fit-content;
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: var(--lime); }
.footer-copy {
  text-align: center;
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Scroll-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card, .float-card, .pill-dot, .marquee-track { animation: none; }
}

/* ---------- Rechtsseiten (Impressum, Datenschutz) ---------- */
.legal-page { padding-top: clamp(3rem, 7vw, 4.5rem); }
.legal-page h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 1.6rem;
}
.legal-todo {
  background: #fff6e0;
  border: 1px solid #f0d78c;
  color: #6b5416;
  border-radius: 14px;
  padding: 1rem 1.3rem;
  font-size: 0.92rem;
  max-width: 70ch;
  margin-bottom: 2.4rem;
}
.legal-todo code {
  background: rgba(0, 0, 0, 0.06);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
}
.legal-content {
  max-width: 70ch;
  color: var(--ink-soft);
}
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--green-deep);
  margin: 2.2rem 0 0.8rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 0.9rem; }
.legal-content ul { margin: 0 0 0.9rem 1.3rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--green); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin-inline: auto; width: 100%; }
  .float-card-1 { left: -4%; }
  .float-card-2 { right: -2%; }
  .about, .contact { grid-template-columns: 1fr; }
  .about-visual { max-width: 380px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--green-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(4, 24, 13, 0.4);
    display: none;
    padding: 0.6rem 0 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; padding: 0.55rem 0; }
  .hero-stats li { padding: 0 1.2rem; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g1, .g4 { grid-row: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
