/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --color-green-dark: #6abf67;
  --color-green: #8fd48c;
  --color-green-mid: #aee3ac;
  --color-green-light: #cff0ce;
  --color-green-pale: #e9ffe9;
  --color-green-bg: #f4fff4;
  --color-cream: #fdf8f0;
  --color-warm-white: #fffef9;
  --color-text: #2c2c2c;
  --color-text-light: #5a5a5a;
  --color-text-muted: #8a8a8a;
  --color-border: #d8ebd3;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(45, 90, 39, 0.08);
  --shadow-md: 0 8px 30px rgba(45, 90, 39, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 90, 39, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   Blumen-Cursor
   =========================== */
html, body, *, *::before, *::after {
  cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgdmlld0JveD0iMCAwIDM2IDM2Ij48ZWxsaXBzZSBjeD0iMTgiIGN5PSI5IiByeD0iNSIgcnk9IjgiIGZpbGw9IiNmZjliYzQiLz48ZWxsaXBzZSBjeD0iMTgiIGN5PSIyNyIgcng9IjUiIHJ5PSI4IiBmaWxsPSIjZmY5YmM0Ii8+PGVsbGlwc2UgY3g9IjkiIGN5PSIxOCIgcng9IjgiIHJ5PSI1IiBmaWxsPSIjZmY5YmM0Ii8+PGVsbGlwc2UgY3g9IjI3IiBjeT0iMTgiIHJ4PSI4IiByeT0iNSIgZmlsbD0iI2ZmOWJjNCIvPjxlbGxpcHNlIGN4PSIxMSIgY3k9IjExIiByeD0iNSIgcnk9IjgiIGZpbGw9IiNmZmIzZDYiIHRyYW5zZm9ybT0icm90YXRlKDQ1IDExIDExKSIvPjxlbGxpcHNlIGN4PSIyNSIgY3k9IjExIiByeD0iNSIgcnk9IjgiIGZpbGw9IiNmZmIzZDYiIHRyYW5zZm9ybT0icm90YXRlKC00NSAyNSAxMSkiLz48ZWxsaXBzZSBjeD0iMTEiIGN5PSIyNSIgcng9IjUiIHJ5PSI4IiBmaWxsPSIjZmZiM2Q2IiB0cmFuc2Zvcm09InJvdGF0ZSgtNDUgMTEgMjUpIi8+PGVsbGlwc2UgY3g9IjI1IiBjeT0iMjUiIHJ4PSI1IiByeT0iOCIgZmlsbD0iI2ZmYjNkNiIgdHJhbnNmb3JtPSJyb3RhdGUoNDUgMjUgMjUpIi8+PGNpcmNsZSBjeD0iMTgiIGN5PSIxOCIgcj0iNi41IiBmaWxsPSIjZmZlMDY2Ii8+PGNpcmNsZSBjeD0iMTgiIGN5PSIxOCIgcj0iMy41IiBmaWxsPSIjZmZjMTA3Ii8+PC9zdmc+") 18 18, auto !important;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--color-green-dark);
  color: white;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.3);
}
.btn--primary:hover {
  background: var(--color-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 90, 39, 0.4);
}

.btn--outline {
  border-color: white;
  color: white;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  background: white;
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

/* ===========================
   Section Shared Styles
   =========================== */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green-mid);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-green-dark);
  margin-bottom: 16px;
}

.section__title--left { text-align: left; }

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   Header / Nav
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.header.scrolled .nav__logo { color: var(--color-green-dark); }
.header.scrolled .nav__link { color: var(--color-text); }

.header.scrolled .nav__toggle span { background: var(--color-green-dark); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__logo-icon {
  font-size: 1.4rem;
  display: inline-block;
  animation: spin-slow 8s linear infinite;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav__link:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}


.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   Hero
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-green-dark) 0%,
    var(--color-green) 40%,
    var(--color-green-mid) 80%,
    #7aad6a 100%
  );
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__petal {
  position: absolute;
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}

.hero__petal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__petal--1 { top: 10%; left: 5%; width: 130px; animation-delay: 0s; }
.hero__petal--2 { top: 15%; right: 8%; width: 160px; animation-delay: 1s; }
.hero__petal--3 { bottom: 25%; left: 10%; width: 110px; animation-delay: 2s; }
.hero__petal--4 { top: 45%; right: 5%; width: 190px; animation-delay: 0.5s; }
.hero__petal--5 { bottom: 15%; right: 18%; width: 140px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero__content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 780px;
}

.hero__tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.hero__description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll a {
  display: block;
  padding: 8px;
}

.hero__scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* ===========================
   Services
   =========================== */
.services {
  background: var(--color-green-bg);
}

.services__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.services__row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.services__row--bottom {
  gap: 48px;
}

.service-card {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  cursor: pointer;
  will-change: transform;
  animation: float 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:nth-child(2) { animation-delay: -1s; }
.service-card:nth-child(3) { animation-delay: -2s; }

.services__row--bottom .service-card:nth-child(1) { animation-delay: -0.5s; }
.services__row--bottom .service-card:nth-child(2) { animation-delay: -1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  animation-play-state: paused;
  transform: scale(1.05);
}

.service-card--rose   { background: #fde8ef; border-color: #f7c5d5; }
.service-card--gray   { background: #dde8f5; border-color: #b3c8e8; }
.service-card--lilac  { background: #fde8d5; border-color: #f7c8a0; }
.service-card--yellow { background: #fdf6d0; border-color: #f0e090; }
.service-card--blue   { background: #ede8fb; border-color: #d0c5f5; }

.service-card--rose   .service-card__title { color: #b8185a; }
.service-card--gray   .service-card__title { color: #1a3a6b; }
.service-card--lilac  .service-card__title { color: #c45a10; }
.service-card--yellow .service-card__title { color: #a07800; }
.service-card--blue   .service-card__title { color: #3d1a80; }

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--color-green-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.service-card__text {
  display: none;
}

/* ===========================
   About
   =========================== */
.about {
  background: var(--color-cream);
}

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

.about__visual {
  display: flex;
  justify-content: center;
}

.about__flower-ring {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__flower-center {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.about__initials {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: white;
  font-weight: 600;
  line-height: 1;
}

.about__petals {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: spin-slow 20s linear infinite;
}

.about__petals span {
  position: absolute;
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}

.about__petals span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__petals span:nth-child(1) { transform: rotate(0deg)    translateY(-125px); }
.about__petals span:nth-child(2) { transform: rotate(45deg)   translateY(-125px); }
.about__petals span:nth-child(3) { transform: rotate(90deg)   translateY(-125px); }
.about__petals span:nth-child(4) { transform: rotate(135deg)  translateY(-125px); }
.about__petals span:nth-child(5) { transform: rotate(180deg)  translateY(-125px); }
.about__petals span:nth-child(6) { transform: rotate(225deg)  translateY(-125px); }
.about__petals span:nth-child(7) { transform: rotate(270deg)  translateY(-125px); }
.about__petals span:nth-child(8) { transform: rotate(315deg)  translateY(-125px); }

.about__content .section__eyebrow { text-align: left; }

.about__text {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__text strong { color: var(--color-green-dark); }

.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-pale);
  border: 1px solid var(--color-border);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-green-dark);
}

.about__value-icon { font-size: 1.1rem; }

/* ===========================
   Hours
   =========================== */
.hours {
  background: linear-gradient(
    135deg,
    var(--color-green-dark) 0%,
    var(--color-green) 100%
  );
}

.hours .section__eyebrow { color: rgba(255,255,255,0.65); }
.hours .section__title { color: white; }

.hours__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hours__tulip {
  width: 95px;
  height: 95px;
  object-fit: contain;
  opacity: 0.2;
  flex-shrink: 0;
}

.hours__tulip--right { transform: scaleX(-1.08) scaleY(1.08); }

.hours__card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 48px 56px;
}

.hours__grid { margin-bottom: 32px; }

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.hours__row--closed { opacity: 0.55; }

.hours__divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.hours__day {
  font-weight: 700;
  color: white;
  font-size: 1rem;
  min-width: 140px;
}

.hours__time {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.hours__time--closed {
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.hours__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.12);
}

.hours__note span { font-size: 1.2rem; flex-shrink: 0; }

.hours__note p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   Contact
   =========================== */
.contact {
  background: var(--color-green-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: stretch;
  min-height: 460px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact__item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact__item h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.contact__item p,
.contact__item a {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact__item a:hover {
  color: var(--color-green-dark);
  text-decoration: underline;
}

.contact__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--color-border);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact__social-link svg {
  width: 18px;
  height: 18px;
  color: var(--color-green-dark);
}

.contact__social-link:hover {
  background: var(--color-green-dark);
  color: white;
  border-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact__social-link:hover svg {
  color: white;
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--color-green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.map-placeholder__inner {
  text-align: center;
  max-width: 340px;
}

.map-placeholder__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.map-placeholder__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-green-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.map-placeholder__text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.map-placeholder__btn {
  margin-bottom: 14px;
}

.map-placeholder__hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.map-placeholder__hint a {
  color: var(--color-green-dark);
  text-decoration: underline;
}

.map-placeholder__hint a:hover {
  color: var(--color-green);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--color-green-dark);
  padding: 60px 0 40px;
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: white;
  margin-bottom: 12px;
}

.footer__tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
  font-style: italic;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: white;
}

.footer__copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer__admin {
  margin-top: 8px;
}
.footer__admin a {
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__admin a:hover {
  color: rgba(255,255,255,0.6);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav mobile */
  .nav__toggle { display: flex; }

  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

  .nav__list.open { display: flex; }

  .nav__link {
    color: var(--color-text);
    width: 100%;
    padding: 12px 16px;
  }


  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about__content .section__eyebrow,
  .section__title--left { text-align: center; }

  .about__values { justify-content: center; }

  .about__flower-ring { width: 240px; height: 240px; }
  .about__flower-center { width: 130px; height: 130px; }
  .about__logo { width: 115px; height: 115px; }
  .about__petals span { width: 50px; height: 50px; top: calc(50% - 25px); left: calc(50% - 25px); }
  .about__petals span:nth-child(1) { transform: rotate(0deg)   translateY(-100px); }
  .about__petals span:nth-child(2) { transform: rotate(45deg)  translateY(-100px); }
  .about__petals span:nth-child(3) { transform: rotate(90deg)  translateY(-100px); }
  .about__petals span:nth-child(4) { transform: rotate(135deg) translateY(-100px); }
  .about__petals span:nth-child(5) { transform: rotate(180deg) translateY(-100px); }
  .about__petals span:nth-child(6) { transform: rotate(225deg) translateY(-100px); }
  .about__petals span:nth-child(7) { transform: rotate(270deg) translateY(-100px); }
  .about__petals span:nth-child(8) { transform: rotate(315deg) translateY(-100px); }

  /* Hours */
  .hours__card { padding: 36px 28px; }
  .hours__row { flex-direction: column; gap: 4px; }
  .hours__day { min-width: auto; }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Services */
  .services__row {
    gap: 24px;
  }

  .service-card {
    width: 150px;
    height: 150px;
  }

  .service-card__icon {
    font-size: 1.6rem;
  }

  .service-card__title {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hours__card { padding: 28px 20px; }
}

/* ===========================
   Scroll Reveal Animations
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ===========================
   Legal Modals (Impressum / Datenschutz)
   =========================== */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.legal-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.legal-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.legal-modal-overlay.visible .legal-modal {
  transform: translateY(0);
}

.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.legal-modal__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-green-dark);
  margin: 0;
}

.legal-modal__body {
  padding: 24px 28px;
  overflow-y: auto;
  line-height: 1.7;
  color: var(--color-text);
}

.legal-modal__body h3 {
  font-family: var(--font-serif);
  color: var(--color-green-dark);
  margin: 1.5em 0 0.4em;
  font-size: 1.05rem;
}

.legal-modal__body h3:first-child {
  margin-top: 0;
}

.legal-modal__body h4 {
  font-weight: 700;
  margin: 1em 0 0.3em;
  font-size: 0.95rem;
}

.legal-modal__body p {
  margin: 0 0 0.8em;
  font-size: 0.92rem;
}

.legal-modal__body a {
  color: var(--color-green-dark);
  text-decoration: underline;
}

/* ===========================
   Unterseiten (Subpages)
   =========================== */
.subpage {
  position: fixed;
  inset: 0;
  z-index: 2000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.subpage--rose   { background: #fde8ef; }
.subpage--gray   { background: #dde8f5; }
.subpage--lilac  { background: #fde8d5; }
.subpage--yellow { background: #fdf6d0; }
.subpage--blue   { background: #ede8fb; }
.subpage.active  { transform: translateX(0); }

.subpage__header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}
.subpage--rose   .subpage__header { background: #fde8ef; border-color: #f7c5d5; }
.subpage--gray   .subpage__header { background: #dde8f5; border-color: #b3c8e8; }
.subpage--lilac  .subpage__header { background: #fde8d5; border-color: #f7c8a0; }
.subpage--yellow .subpage__header { background: #fdf6d0; border-color: #f0e090; }
.subpage--blue   .subpage__header { background: #ede8fb; border-color: #d0c5f5; }

/* Textfarben je Variante – tief, lesbar, gleiche Farbfamilie */
.subpage--rose   .subpage__title,
.subpage--rose   .subpage__hero-text,
.subpage--rose   .subpage__section h2 { color: #b8185a; }
.subpage--rose   .subpage__section p  { color: #901445; }
.subpage--rose   .subpage__back       { color: #b8185a; }

.subpage--gray   .subpage__title,
.subpage--gray   .subpage__hero-text,
.subpage--gray   .subpage__section h2 { color: #1a3a6b; }
.subpage--gray   .subpage__section p  { color: #152d54; }
.subpage--gray   .subpage__back       { color: #1a3a6b; }

.subpage--lilac  .subpage__title,
.subpage--lilac  .subpage__hero-text,
.subpage--lilac  .subpage__section h2 { color: #c45a10; }
.subpage--lilac  .subpage__section p  { color: #9e4810; }
.subpage--lilac  .subpage__back       { color: #c45a10; }

.subpage--yellow .subpage__title,
.subpage--yellow .subpage__hero-text,
.subpage--yellow .subpage__section h2 { color: #a07800; }
.subpage--yellow .subpage__section p  { color: #7a5c00; }
.subpage--yellow .subpage__back       { color: #a07800; }

.subpage--blue   .subpage__title,
.subpage--blue   .subpage__hero-text,
.subpage--blue   .subpage__section h2 { color: #3d1a80; }
.subpage--blue   .subpage__section p  { color: #2e1460; }
.subpage--blue   .subpage__back       { color: #3d1a80; }

.subpage__back {
  background: rgba(0,0,0,0.1);
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.subpage__back:hover { background: rgba(0,0,0,0.18); }

.subpage__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-green-dark);
  margin: 0;
}

.subpage__hero {
  padding: 48px 24px;
  text-align: center;
}

.subpage__hero-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-green-dark);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.subpage__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.subpage__section h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}
.subpage__section p {
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 8px;
}

.subpage__image-slot img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: var(--shadow-md);
}

.subpage__gallery-block {
  margin: 28px 0;
  padding: 18px 20px 20px;
  background: rgba(255,255,255,0.45);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
}

.subpage__gallery-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin: 0 0 12px 0;
}

.subpage__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.subpage__gallery-item {
  overflow: hidden;
  border-radius: 8px;
}

.subpage__gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.subpage__gallery-item .subpage__image-placeholder {
  height: 160px;
  min-height: unset;
  border-radius: 8px;
  padding: 8px;
  font-size: 1.5rem;
}

@media (max-width: 600px) {
  .subpage__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.subpage__image-placeholder {
  width: 100%;
  min-height: 220px;
  border: 2px dashed rgba(0,0,0,0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.35);
  padding: 24px;
  text-align: center;
}
.subpage__image-placeholder span { font-size: 2rem; }
.subpage__image-placeholder p { margin: 0; font-size: 0.95rem; }
.subpage__image-placeholder code {
  font-size: 0.75rem;
  background: rgba(0,0,0,0.1);
  padding: 4px 8px;
  border-radius: 4px;
  color: rgba(0,0,0,0.5);
}

/* ===========================
   Aktuelles (News)
   =========================== */
.news {
  background: var(--color-cream);
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.news-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-left: 4px solid #ccc;
}
.news-card--info       { border-left-color: #1a3a6b; }
.news-card--aktion     { border-left-color: #a07800; }
.news-card--schliessung{ border-left-color: #b8185a; }
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.news-card__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
}
.news-card__badge--info        { background: #e3f2fd; color: #1565c0; }
.news-card__badge--aktion      { background: #fdf6d0; color: #a07800; }
.news-card__badge--schliessung { background: #fde8ef; color: #b8185a; }
.news-card__date { font-size: .8rem; color: var(--color-text-muted); }
.news-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}
.news-card__body {
  font-size: .9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 0 24px 24px;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
}

.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 -4px 6px rgba(0,0,0,0.04), var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner__text { flex: 1; min-width: 260px; }

.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-green-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.cookie-banner__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.cookie-banner__desc a {
  color: var(--color-green-dark);
  text-decoration: underline;
  font-weight: 700;
}

.cookie-banner__desc a:hover {
  color: var(--color-green);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 22px;
  font-size: 0.875rem;
  border-radius: 50px;
}

.cookie-btn--reject {
  background: transparent;
  border: 2px solid var(--color-green-dark);
  color: var(--color-green-dark);
}

.cookie-btn--reject:hover {
  background: var(--color-green-pale);
  transform: translateY(-2px);
}

.cookie-btn--settings {
  background: transparent;
  border: 2px solid var(--color-green-mid);
  color: var(--color-green-mid);
}

.cookie-btn--settings:hover {
  background: var(--color-green-pale);
  border-color: var(--color-green-dark);
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

.cookie-btn--all {
  background: var(--color-green-dark);
  color: white;
  border: 2px solid var(--color-green-dark);
  box-shadow: 0 4px 16px rgba(45, 90, 39, 0.3);
}

.cookie-btn--all:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.4);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

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

/* ===========================
   Cookie Settings Modal
   =========================== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.cookie-modal-overlay.visible .cookie-modal {
  transform: translateY(0) scale(1);
}

.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--color-border);
}

.cookie-modal__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-green-dark);
  font-weight: 600;
}

.cookie-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-green-pale);
  color: var(--color-green-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-modal__close:hover {
  background: var(--color-green-light);
}

.cookie-modal__body {
  padding: 8px 28px;
  overflow-y: auto;
  flex: 1;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-child { border-bottom: none; }

.cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-category__name {
  font-weight: 700;
  color: var(--color-green-dark);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.cookie-category__desc {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.cookie-toggle--disabled {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-green-mid);
  background: var(--color-green-pale);
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Toggle Switch */
.cookie-toggle__switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: #d0d0d0;
  border-radius: 26px;
  transition: background 0.3s ease;
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-toggle__switch input:checked + .cookie-toggle__slider {
  background: var(--color-green-dark);
}

.cookie-toggle__switch input:checked + .cookie-toggle__slider::before {
  transform: translateX(22px);
}

.cookie-modal__footer {
  display: flex;
  gap: 12px;
  padding: 20px 28px 24px;
  border-top: 1px solid var(--color-border);
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cookie-modal__footer {
    flex-direction: column;
  }
  .cookie-modal__footer .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===========================
   Lightbox
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6);
  display: block;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox__close:hover {
  background: rgba(255,255,255,0.25);
}
.subpage__gallery-item img {
  cursor: zoom-in;
}

/* ===========================
   Galerie-Sektion (Startseite)
   =========================== */
.gallery-main {
  background: var(--color-cream);
}

.gallery-main__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.gallery-main__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-green-light);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.gallery-main__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-main__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .gallery-main__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
