@import url('fonts/fonts.css');

/* =====================================================
   BLUMENHAUS NEUFAHRN | MAIN STYLESHEET
   Hell · Elegant · Frisch-Grün
   ===================================================== */

/* ===== DESIGN TOKENS ===== */
:root {
  --clr-bg: #f8f7f4;
  --clr-surface: #ffffff;
  --clr-surface-2: #f1f0ec;
  --clr-border: rgba(0, 0, 0, 0.08);

  /* Grün-Palette */
  --clr-green: #3a8a55;
  --clr-green-light: #5aab74;
  --clr-green-dark: #276640;
  --clr-green-pale: #e8f5ed;
  --clr-green-mid: #c6e8d2;

  --clr-accent: #2d7a47;
  --clr-gold: #b8860b;

  --clr-text: #1a2e1f;
  --clr-text-muted: rgba(26, 46, 31, 0.55);
  --clr-text-faint: rgba(26, 46, 31, 0.3);

  /* Hero Overlay: neutral dunkel mit ganz dezentem Grün-Hauch (ca. 10%) */
  --grad-hero: linear-gradient(160deg,
      rgba(22, 26, 23, 0.72) 0%,
      rgba(25, 30, 26, 0.6) 45%,
      rgba(58, 138, 85, 0.08) 100%);

  --grad-green: linear-gradient(135deg, var(--clr-green) 0%, var(--clr-green-dark) 100%);
  --grad-green-soft: linear-gradient(135deg, #5aab74 0%, #3a8a55 100%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 8px 32px rgba(58, 138, 85, 0.22);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.09);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

em {
  font-style: italic;
  color: var(--clr-green);
}

/* ===== CUSTOM SCROLLBAR ===== */
html {
  scrollbar-width: thin;
  scrollbar-color: #3a8a55 #e8f5ed;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e8f5ed;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5aab74 0%, #3a8a55 50%, #276640 100%);
  border-radius: 8px;
  border: 2px solid #e8f5ed;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6ddb98 0%, #3a8a55 100%);
  box-shadow: 0 0 6px rgba(58, 138, 85, 0.5);
}

::-webkit-scrollbar-corner {
  background: #e8f5ed;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--clr-green-pale);
  border: 1px solid rgba(58, 138, 85, 0.22);
  border-radius: 50px;
  color: var(--clr-green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.section-desc {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-green);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(58, 138, 85, 0.38);
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--clr-text);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--clr-green-dark);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--clr-green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--clr-green);
  border-color: var(--clr-green);
  font-size: 0.88rem;
  padding: 10px 22px;
  margin-top: 20px;
}

.btn-outline:hover {
  background: var(--clr-green);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: rgba(248, 247, 244, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  padding: 12px 0;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.nav-logo em {
  font-style: italic;
  color: var(--clr-green);
}

.logo-icon {
  font-size: 1.4rem;
  animation: float 3s ease-in-out infinite;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(27%) sepia(55%) saturate(550%) hue-rotate(105deg) brightness(80%) contrast(100%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-green);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--grad-green);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(58, 138, 85, 0.38);
}

/* Versteckt auf Desktop – nur im mobilen Hamburger-Menü sichtbar */
.mobile-nav-contact {
  display: none;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--clr-green-pale);
  border: 1px solid rgba(58, 138, 85, 0.25);
  color: var(--clr-green-dark);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(58, 138, 85, 0.12);
  z-index: 1001;
}

.hamburger:hover {
  background: var(--clr-green);
  color: #ffffff;
  border-color: var(--clr-green);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(58, 138, 85, 0.3);
}

.hamburger .icon-menu,
.hamburger .icon-close {
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger .icon-close {
  display: none;
}

/* Hamburger Active State: Symmetrisches X-Icon */
.hamburger.active {
  background: var(--clr-green-dark);
  color: #ffffff;
  border-color: var(--clr-green-dark);
  box-shadow: 0 6px 20px rgba(39, 102, 64, 0.35);
}

.hamburger.active .icon-menu {
  display: none;
}

.hamburger.active .icon-close {
  display: block;
  animation: closePopIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes closePopIn {
  from {
    opacity: 0;
    transform: scale(0.6) rotate(-45deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(14px) brightness(0.58) saturate(1.2);
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero:hover .hero-bg-img {
  transform: scale(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%,
      rgba(58, 138, 85, 0.06) 0%,
      transparent 70%);
}



.hero-container-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ddb98;
  box-shadow: 0 0 0 0 rgba(109, 219, 152, 0.5);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(109, 219, 152, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(109, 219, 152, 0);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 24px;
}

.hero-title-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInDown 0.9s 0.1s ease both;
}

.hero-title-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-title-italic {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  font-weight: 700;
  font-style: normal;
  color: #a8e6be;
  text-shadow: 0 4px 20px rgba(58, 138, 85, 0.45);
  animation: fadeInUp 0.9s 0.35s ease both;
}


.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  max-width: 600px;
  margin: 0 0 36px;
  line-height: 1.8;
  animation: fadeInUp 0.9s 0.45s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.9s 0.55s ease both;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.9s 0.65s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #a8e6be;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Rechts: Blumen-Collage */
.hero-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.hero-image-collage {
  position: relative;
  width: 100%;
  height: 440px;
  max-width: 480px;
  margin-left: auto;
  animation: fadeInUp 0.9s 0.5s ease both;
}

@media (max-width: 1024px) {
  .hero-image-collage {
    margin: 40px auto 0;
    height: 380px;
    max-width: 400px;
  }
}

.collage-photo {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  border: 4px solid #fff;
  transition: transform var(--transition), box-shadow var(--transition), z-index 0s;
}

.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-1 {
  width: 62%;
  height: 280px;
  left: 0;
  top: 10%;
  transform: rotate(-5deg);
  z-index: 2;
}

.photo-2 {
  width: 58%;
  height: 240px;
  right: 0;
  top: 0;
  transform: rotate(6deg);
  z-index: 1;
}

.photo-3 {
  width: 52%;
  height: 210px;
  left: 20%;
  bottom: 0;
  transform: rotate(-2deg);
  z-index: 3;
}

.collage-photo:hover {
  transform: scale(1.06) rotate(0deg);
  z-index: 10;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}



/* ===== ABOUT SECTION ===== */
.about {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 138, 85, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(27%) sepia(55%) saturate(550%) hue-rotate(105deg) brightness(80%) contrast(100%);
}

.about-img-badge strong {
  display: block;
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-img-badge span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-green);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.about-img-secondary:hover {
  transform: scale(1.04) rotate(2deg);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .section-label {
  justify-content: flex-start;
}

.about-text .section-label::before {
  display: none;
}

.about-text .section-title {
  margin-top: 8px;
}

.about-desc {
  color: var(--clr-text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.about-editorial-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.editorial-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}

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

.editorial-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-green);
  line-height: 1;
  opacity: 0.85;
  width: 40px;
  flex-shrink: 0;
  display: inline-block;
}

.editorial-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 6px;
}

.editorial-content p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ===== SORTIMENT SECTION ===== */
.sortiment {
  background: var(--clr-bg);
}

.sortiment-grid-wrapper {
  position: relative;
  width: 100%;
}

.sortiment-nav-controls {
  display: none;
}

.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.sortiment-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.sortiment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(58, 138, 85, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), var(--shadow-green);
}

.sortiment-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.sortiment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sortiment-card:hover .sortiment-card-img img {
  transform: scale(1.08);
}

.sortiment-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 50, 25, 0.6) 0%, transparent 55%);
  pointer-events: none;
}

.sortiment-card-content {
  padding: 24px;
}

.sortiment-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--clr-green-pale);
  color: var(--clr-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.sortiment-card:hover .sortiment-icon {
  background: var(--clr-green);
  color: #ffffff;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(58, 138, 85, 0.25);
}

.sortiment-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.sortiment-card-content p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sortiment-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-green);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.sortiment-card:hover .sortiment-link {
  color: var(--clr-green-dark);
}

/* ===== GALERIE SECTION ===== */
.galerie {
  background: #fff;
}

.galerie-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.galerie-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}

.galerie-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.galerie-actions {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.subpage-hero .hero-bg-img {
  filter: blur(6px) brightness(0.62) saturate(1.1);
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.subpage-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
  padding: 0 16px;
  word-break: break-word;
}

.subpage-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.72rem, 2.5vw, 0.95rem);
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.galerie-item:hover img {
  transform: scale(1.08);
}

.galerie-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.galerie-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 70, 35, 0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.galerie-item:hover .galerie-item-overlay {
  opacity: 1;
}

.galerie-item-overlay span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

.galerie-item.hidden {
  display: none;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

.quote-bg {
  position: absolute;
  inset: 0;
}

.quote-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(0.38) saturate(0.9);
  transform: scale(1.06);
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(15, 50, 20, 0.72) 0%,
      rgba(30, 90, 40, 0.55) 100%);
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: #a8e6be;
  opacity: 0.4;
  margin-bottom: 12px;
  display: block;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 32px;
}

.quote-divider {
  width: 60px;
  height: 2px;
  background: #a8e6be;
  margin: 0 auto 24px;
}

.quote-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

/* ===== KONTAKT SECTION ===== */
.kontakt {
  background: var(--clr-bg);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 24px;
}

.kontakt-info-card {
  padding: 36px 32px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.kontakt-info-card:hover {
  border-color: rgba(58, 138, 85, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), var(--shadow-green);
  transform: translateY(-4px);
}

.kontakt-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--clr-green-pale);
  border: 1px solid var(--clr-green-mid);
  color: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.kontakt-info-card:hover .kontakt-icon {
  background: var(--grad-green);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-green);
}

.kontakt-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list .day {
  color: var(--clr-text-muted);
}

.hours-list .time {
  color: var(--clr-text);
  font-weight: 500;
}

.hours-list .closed .time {
  color: #c0392b;
}

address p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 2;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-green-pale);
  color: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-item:hover .contact-item-icon {
  background: var(--clr-green);
  color: #ffffff;
}

.contact-item small {
  display: block;
  font-size: 0.72rem;
  color: var(--clr-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--clr-text);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-green-pale);
  border: 1.5px solid var(--clr-green-mid);
  color: var(--clr-green);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.kontakt-map {
  grid-column: 1 / -1;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.kontakt-map iframe {
  filter: none;
}

/* ===== FOOTER PREMIUM BOTANICAL DARK ===== */
.footer {
  background: linear-gradient(160deg, #0d1f13 0%, #142417 50%, #0a1810 100%);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(109, 219, 152, 0.2);
}

/* Botanische Hintergrund-Dekoration */
.footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 138, 85, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(109, 219, 152, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Dekorative Wellenlinie */
.footer-flourish {
  width: 100%;
  height: 18px;
  overflow: hidden;
  margin-bottom: 0;
  opacity: 0.6;
}

.footer-flourish svg {
  width: 100%;
  height: 100%;
}

/* Hauptbereich */
.footer-main {
  padding: 32px 0 24px;
  position: relative;
  z-index: 1;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.2fr 1.3fr;
  gap: 2rem;
  padding-bottom: 24px;
}

/* Spalten */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Logo */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-logo-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 10px rgba(109, 219, 152, 0.4));
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(109,219,152,0.3));
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.footer-logo-text em {
  font-style: italic;
  color: #7ddb9e;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 300px;
  margin-bottom: 14px;
}

/* Social Buttons */
.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(109, 219, 152, 0.1);
  border: 1px solid rgba(109, 219, 152, 0.2);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-btn:hover {
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(58, 138, 85, 0.35);
}

/* Spalten-Titel */
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #7ddb9e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(109, 219, 152, 0.15);
}

/* Navigations-Liste */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav-list li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  padding: 2px 0;
}

.footer-nav-list li a::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: rgba(109, 219, 152, 0.4);
  transition: width 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.footer-nav-list li a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-nav-list li a:hover::before {
  width: 18px;
  background: #7ddb9e;
}

/* Öffnungszeiten */
.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 2px 0;
}

.footer-hours-list li span:first-child {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-hours-list li span:last-child {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.footer-hours-closed span:first-child {
  color: rgba(255, 255, 255, 0.4) !important;
}

.footer-hours-closed span:last-child {
  color: rgba(220, 80, 80, 0.8) !important;
  font-size: 0.76rem !important;
}

/* Kontakt-Liste */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.footer-contact-list li svg {
  color: #7ddb9e;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
  background: transparent;
  padding: 12px 0 20px;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: left;
  order: 1;
}

.footer-credit {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  white-space: nowrap;
  order: 2;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.78rem;
  order: 3;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #7ddb9e;
}

.footer-dot {
  color: rgba(255, 255, 255, 0.25);
}

/* ByKine Footer Credit */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  10%, 30%  { transform: scale(1.06); }
  20%, 40%  { transform: scale(1); }
}

.bykine-poch {
  display: inline-block;
  animation: pulse 4s ease-in-out infinite;
}

/* ===== EXTRA SERVICES BANNER (REDESIGNED TEXT LUXURY CARD) ===== */
.extra-services-banner {
  margin: 48px auto 0;
  max-width: 960px;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.extra-services-card {
  position: relative;
  background: linear-gradient(135deg, #0e2918 0%, #173d26 50%, #0a1f12 100%);
  border: 1.5px solid rgba(109, 219, 152, 0.4);
  border-radius: 20px;
  padding: 28px 36px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(109, 219, 152, 0.1);
}

.extra-services-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(109, 219, 152, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.extra-services-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(58, 138, 85, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.extra-services-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.extra-services-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(109, 219, 152, 0.12);
  border: 1px solid rgba(109, 219, 152, 0.35);
  border-radius: 50px;
  color: #6ddb98;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.extra-services-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.extra-services-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 100%;
  margin: 0 auto 20px;
}

.extra-services-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, #6ddb98 0%, #3a8a55 100%);
  color: #07170d;
  box-shadow: 0 6px 20px rgba(109, 219, 152, 0.28);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.extra-services-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(109, 219, 152, 0.4);
  background: linear-gradient(135deg, #7dedaa 0%, #449e62 100%);
  color: #07170d;
}

@media (max-width: 576px) {
  .extra-services-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .extra-services-content h3 {
    font-size: 1.45rem;
  }

  .extra-services-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 40, 20, 0.92);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

#lightboxCaption {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 1rem;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--clr-green);
  border-color: var(--clr-green);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 140px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    align-items: center;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    justify-content: center;
  }

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

  .about-img-secondary {
    width: 160px;
    height: 160px;
    right: -12px;
    bottom: -12px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Dropdown Menü aufklappend von oben nach unten */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(248, 247, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease, padding 0.35s ease;
    z-index: 999;
  }

  .nav-links.open {
    max-height: 600px;
    padding: 16px 24px 24px;
    opacity: 1;
    visibility: visible;
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links .nav-link {
    display: block;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--clr-text);
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    background: var(--clr-green-pale);
    color: var(--clr-green-dark);
  }

  .nav-links .nav-link::after {
    display: none;
  }

  /* Mobile Nav Contact Block */
  .mobile-nav-contact {
    display: block !important;
    list-style: none;
    border-top: 1px solid var(--clr-border);
    margin-top: 8px;
    padding-top: 12px;
  }

  .mobile-nav-contact-inner h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-green-dark);
    margin: 0 0 10px;
    padding: 0 16px;
  }

  .mobile-nav-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--clr-text);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.2s;
  }

  .mobile-nav-contact-item:hover {
    background: var(--clr-green-pale);
  }

  .mobile-nav-contact-item svg {
    color: var(--clr-green);
    flex-shrink: 0;
  }

  /* Mobile Hero Reihenfolge: Titel -> Bilder -> Beschreibung -> Button -> Kontainer */
  .hero-container-grid {
    display: flex;
    flex-direction: column;
    padding-top: 85px;
    padding-bottom: 24px;
    gap: 0;
  }

  .hero-left {
    display: contents;
  }

  /* 1. Titel (Badge + Heading) - Größer */
  .hero-badge {
    order: 1;
    margin-bottom: 14px;
    align-self: center;
  }

  .hero-title {
    order: 2;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-title-sub {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .hero-title-main {
    font-size: 2.7rem;
    line-height: 1.12;
  }

  .hero-title-italic {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  /* 2. Bilder (Collage - Größer) */
  .hero-right {
    order: 3;
    margin-top: 0;
    margin-bottom: 28px;
    justify-content: center;
    width: 100%;
  }

  .hero-image-collage {
    height: 300px;
    max-width: 380px;
    margin: 0 auto;
  }

  .photo-1 {
    height: 210px;
    width: 65%;
  }

  .photo-2 {
    height: 175px;
    width: 60%;
  }

  .photo-3 {
    height: 150px;
    width: 55%;
  }

  /* 3. Beschreibung */
  .hero-description {
    order: 4;
    margin-bottom: 24px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 480px;
    align-self: center;
  }

  /* 4. Button */
  .hero-actions {
    order: 5;
    justify-content: center;
    width: 100%;
  }

  /* 5. Kontainer (Stats) - Nebeneinander */
  .hero-stats {
    order: 6;
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    padding: 16px 12px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0;
  }

  .stat-number {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.68rem;
    margin-top: 4px;
    line-height: 1.2;
  }

  .stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
  }

  /* Über uns Sektion Mobile Zentrierung für Badge & Button */
  .about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-text .section-label {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-text .btn {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Sortiment Horizontal Carousel auf Mobile mit Pfeilen LINKS & RECHTS nebeneinander */
  .sortiment-grid-wrapper {
    position: relative;
    width: 100%;
  }

  .sortiment-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 4px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sortiment-grid::-webkit-scrollbar {
    display: none;
  }

  .sortiment-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .sortiment-nav-controls {
    display: block;
    position: static;
  }

  .sortiment-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(58, 138, 85, 0.3);
    color: var(--clr-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
  }

  .sortiment-nav-btn.prev {
    left: 0;
  }

  .sortiment-nav-btn.next {
    right: 0;
  }

  .sortiment-nav-btn:hover,
  .sortiment-nav-btn:active {
    background: var(--clr-green);
    color: #ffffff;
    border-color: var(--clr-green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(58, 138, 85, 0.4);
  }

  .galerie-masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 170px;
  }

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

  .kontakt-map {
    grid-column: 1;
    height: 280px;
  }

  /* Footer Mobile Layout */
  .footer-main {
    padding: 20px 0 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding-bottom: 16px;
    align-items: start;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-nav-col,
  .footer-col:nth-child(2) {
    display: none !important;
  }

  .footer-hours-col,
  .footer-col:nth-child(3) {
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact-col,
  .footer-col:nth-child(4) {
    align-items: flex-start;
    text-align: left;
  }

  .footer-desc {
    max-width: 280px;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col-title {
    text-align: left;
    margin-bottom: 8px;
    width: 100%;
  }

  .footer-hours-list {
    width: 100%;
    gap: 4px;
  }

  .footer-hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    padding: 2px 0;
    font-size: 0.75rem;
  }

  .footer-hours-list li span:last-child {
    font-size: 0.72rem;
  }

  .footer-contact-list {
    align-items: flex-start;
    gap: 8px;
  }

  .footer-contact-list li {
    justify-content: flex-start;
    text-align: left;
    font-size: 0.75rem;
    gap: 6px;
  }

  .footer-bottom {
    padding: 10px 0;
    background: transparent;
  }

  .footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .footer-legal-links {
    justify-content: center;
    order: 1;
  }

  .footer-copy {
    text-align: center;
    order: 2;
  }

  .footer-credit {
    text-align: center;
    order: 3;
  }
}

@media (max-width: 480px) {
  .hero-title-main {
    font-size: 2.3rem;
  }

  .hero-title-italic {
    font-size: 1.8rem;
  }

  .hero-image-collage {
    height: 260px;
    max-width: 320px;
    margin: 0 auto;
  }

  .photo-1 {
    height: 180px;
  }

  .photo-2 {
    height: 150px;
  }

  .photo-3 {
    height: 130px;
  }

  .galerie-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-stats {
    padding: 14px 6px;
    gap: 4px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.62rem;
  }
}

/* ===== LEGAL PAGES (IMPRESSUM & DATENSCHUTZ) ===== */
.legal-page {
  background: var(--clr-bg);
  padding-top: 60px;
  padding-bottom: 90px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-card);
}

.legal-section {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--clr-border);
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.legal-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-green-dark);
  margin-bottom: 16px;
}

.legal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-card p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--clr-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.legal-card a:hover {
  color: var(--clr-green-dark);
}