/* ============================================================
   Gärten mit Stil — Stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   1. @font-face
   ---------------------------------------------------------- */
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-300.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ----------------------------------------------------------
   2. Design Tokens
   ---------------------------------------------------------- */
:root {
  --green: #2D6E2D;
  --green-dark: #1E5C1E;
  --green-soft: #e8f0e8;
  --blue: #5BB8D4;
  --blue-soft: #ddf1f8;
  --orange: #D4852A;
  --orange-soft: #faebd7;
  --bg: #F7F5F0;
  --ink: #1A1A1A;
  --ink-soft: #5a5a5a;
  --line: #ddd8d0;
  --white: #ffffff;
  --fir: #1a3a1a;

  --font-display: "Raleway", "Segoe UI", system-ui, sans-serif;
  --font-body: "Merriweather", Georgia, serif;

  --container: 1140px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px rgba(45, 110, 45, 0.10);
}

/* ----------------------------------------------------------
   3. Reset & Base
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
}

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

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

/* ----------------------------------------------------------
   4. Typography
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fir);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.6rem;
}

.lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   5. Layout Utilities
   ---------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(3rem, 8vw, 5.5rem);
}

.section--alt {
  background: var(--green-soft);
}

.section--dark {
  background: var(--fir);
  color: var(--white);
}

/* ----------------------------------------------------------
   6. Demo Bar
   ---------------------------------------------------------- */
.demo-bar {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem var(--pad);
  letter-spacing: 0.02em;
}

.demo-bar strong {
  font-weight: 700;
}

/* ----------------------------------------------------------
   7. Site Header / Navigation
   ---------------------------------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fir);
  line-height: 1.15;
}

.brand-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green-dark);
}

.nav__cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  margin-left: 0.5rem;
  transition: background 0.2s var(--ease) !important;
}

.nav__cta:hover {
  background: var(--green-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover { background: var(--green-soft); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------------------------
   8. Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn--solid {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--solid:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green-soft);
}

.btn--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--light:hover {
  background: rgba(255,255,255,0.25);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ----------------------------------------------------------
   9. Hero
   ---------------------------------------------------------- */
.hero {
  padding-block: clamp(3.5rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-content h1 {
  margin-bottom: 1.2rem;
}

.hero-content .lead {
  margin-bottom: 2rem;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* ----------------------------------------------------------
   10. Cards
   ---------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(45, 110, 45, 0.14);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--fir);
}

.card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   11. Gallery Grid
   ---------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(45, 110, 45, 0.15);
}

.gallery-ph {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  position: relative;
}

.gallery-ph-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.35;
}

.gallery-ph-icon svg {
  width: 52px;
  height: 52px;
}

.gallery-label {
  position: relative;
  z-index: 1;
  text-align: center;
}

.gallery-label strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.gallery-label span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Gallery Placeholder Colors */
.gallery-ph--1 { background: linear-gradient(145deg, #2D6E2D, #4a9c4a); }
.gallery-ph--2 { background: linear-gradient(145deg, #5a6e4a, #7a9060); }
.gallery-ph--3 { background: linear-gradient(145deg, #6e5a2d, #8c7040); }
.gallery-ph--4 { background: linear-gradient(145deg, #4a6e5a, #6a8c72); }
.gallery-ph--5 { background: linear-gradient(145deg, #3a5e6e, #5a7e8c); }
.gallery-ph--6 { background: linear-gradient(145deg, #5e6e2d, #7a8c40); }
.gallery-ph--7 { background: linear-gradient(145deg, #2d5e6e, #4a7a8c); }
.gallery-ph--8 { background: linear-gradient(145deg, #6e4a2d, #8c6040); }
.gallery-ph--9 { background: linear-gradient(145deg, #4a2d6e, #6a4a8c); }

/* ----------------------------------------------------------
   12. Photo Placeholder
   ---------------------------------------------------------- */
.photo-ph {
  background: var(--green-soft);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.photo-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(45, 110, 45, 0.06) 10px,
    rgba(45, 110, 45, 0.06) 20px
  );
}

.photo-ph span {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

/* ----------------------------------------------------------
   13. Page Header (Unterseiten)
   ---------------------------------------------------------- */
.page-head {
  background: var(--fir);
  color: var(--white);
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  text-align: center;
}

.page-head .eyebrow {
  color: var(--blue);
}

.page-head h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-head .lead {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-inline: auto;
}

/* ----------------------------------------------------------
   14. Contact Grid
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--fir);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--green-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item-body {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}

.contact-item-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}

.contact-item-value a {
  color: var(--green);
  font-weight: 600;
}

.contact-hint {
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-hint h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--fir);
}

.contact-hint p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   15. Legal Pages
   ---------------------------------------------------------- */
.legal {
  max-width: 760px;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.legal h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.legal h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.legal h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.legal p, .legal li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal li { margin-bottom: 0.25rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-top: 0.5rem; }

.placeholder {
  font-family: var(--font-display);
  font-size: 0.75rem;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  padding: 0.1em 0.5em;
  font-weight: 600;
}

/* ----------------------------------------------------------
   16. Demo Note
   ---------------------------------------------------------- */
.demo-note {
  background: var(--orange-soft);
  border: 1px solid var(--orange);
  border-left-width: 4px;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--ink);
}

.demo-note strong { color: var(--orange); }

/* ----------------------------------------------------------
   17. About Section
   ---------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  height: 380px;
}

.about-text .eyebrow { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; color: var(--ink-soft); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.about-tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
}

/* ----------------------------------------------------------
   18. Gallery Teaser
   ---------------------------------------------------------- */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-teaser-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s var(--ease);
}

.gallery-teaser-item:hover { transform: scale(1.02); }

.gallery-teaser-ph {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-teaser-ph span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ----------------------------------------------------------
   19. CTA Band
   ---------------------------------------------------------- */
.cta-band {
  background: var(--fir);
  padding-block: clamp(2.5rem, 7vw, 4rem);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-band p {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

/* ----------------------------------------------------------
   20. Footer
   ---------------------------------------------------------- */
.site-foot {
  background: var(--fir);
  color: rgba(255,255,255,0.8);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.foot-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.site-foot ul { list-style: none; }

.site-foot ul li {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 0.2rem 0;
}

.site-foot a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.site-foot a:hover { color: var(--white); text-decoration: none; }

.site-foot h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}

.foot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.foot-meta a { color: rgba(255,255,255,0.5); }
.foot-meta a:hover { color: var(--white); }

/* ----------------------------------------------------------
   21. Scroll Reveal
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   22. Leistungen Page
   ---------------------------------------------------------- */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.leistung-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.leistung-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(45, 110, 45, 0.14);
}

.leistung-card-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leistung-card h3 {
  font-size: 1.05rem;
  color: var(--fir);
}

.leistung-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   23. Section Titles
   ---------------------------------------------------------- */
.section-title {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: var(--ink-soft); font-family: var(--font-display); font-size: 1rem; }

/* ----------------------------------------------------------
   24. Responsive
   ---------------------------------------------------------- */
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .hero-art svg {
    max-width: 320px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 260px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-teaser {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad);
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 0.6rem 0.75rem;
  }

  .nav__cta { margin-left: 0 !important; }

  .nav-toggle {
    display: flex;
  }

  .site-head { position: relative; }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-teaser {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .foot-meta {
    flex-direction: column;
    text-align: center;
  }

  .hero-content { max-width: 100%; }

  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    justify-content: center;
  }
}
