/* ============================================================
   Birgit's Blumen · Jennersdorf
   Modern floral website
   ============================================================ */

:root {
  --green-900: #2c3a24;
  --green-700: #4a5d3a;
  --green-500: #6b8354;
  --sage:      #a8b89a;
  --sage-soft: #dfe6d6;
  --cream:     #faf6ef;
  --cream-2:   #f3ece0;
  --blush:     #f6d9d3;
  --blush-2:   #eeb7ae;
  --terra:     #c96f52;
  --ink:       #2a2723;
  --ink-soft:  #6d675e;
  --white:     #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;

  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 18px 50px -20px rgba(44, 58, 36, 0.35);
  --shadow-soft: 0 10px 30px -14px rgba(44, 58, 36, 0.25);
  --ease: cubic-bezier(.22,.61,.36,1);
  --max: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

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

section { position: relative; }

.section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 4rem); }

.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--terra);
  margin-bottom: 1rem;
}

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }

h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); color: var(--green-900); }

.section__sub { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1.1rem; }

.script { font-family: var(--serif); font-style: italic; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--terra); color: #fff; box-shadow: 0 12px 26px -10px rgba(201,111,82,.7); }
.btn--primary:hover { background: #b85f43; box-shadow: 0 18px 34px -12px rgba(201,111,82,.85); }
.btn--dark { background: var(--green-900); color: var(--cream); }
.btn--dark:hover { background: #1f2a19; }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.28); }
.btn--ghost-dark { background: transparent; color: var(--green-900); border-color: var(--green-500); }
.btn--ghost-dark:hover { background: var(--green-900); color: var(--cream); border-color: var(--green-900); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .4s var(--ease);
  padding: .55rem 0;
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .55rem clamp(1.2rem, 4vw, 2.5rem);
}
.nav.scrolled { background: rgba(250,246,239,.86); backdrop-filter: blur(14px); box-shadow: 0 6px 24px -18px rgba(44,58,36,.6); }

.brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; color: var(--green-700); }
.brand__mark { display: grid; place-items: center; color: var(--terra); transition: transform .6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-12deg); }
.brand__text {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--display); font-weight: 600; font-size: 1.22rem; color: var(--green-900);
}
.brand__text em {
  font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--terra); margin-top: .28rem;
}
.nav.scrolled .brand__text { color: var(--green-900); }

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--green-900); position: relative; padding: .3rem 0;
  transition: color .3s;
}
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,.92); text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--terra);
  transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--terra); color: #fff; padding: .6rem 1.15rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600; transition: transform .4s var(--ease), background .3s;
}
.nav__cta:hover { transform: translateY(-2px); background: #b85f43; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--green-900); border-radius: 2px; transition: .35s var(--ease); }
.nav:not(.scrolled) .nav__burger span { background: #fff; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 7rem clamp(1.2rem, 6vw, 5rem) 5rem;
  position: relative; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 22s ease-out forwards; }
.hero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(31,42,25,.82) 0%, rgba(44,58,36,.5) 42%, rgba(44,58,36,.12) 78%),
    linear-gradient(to top, rgba(31,42,25,.6), transparent 45%);
}
@keyframes slowZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.hero__content { max-width: 640px; color: #fff; position: relative; }
.hero .eyebrow { color: var(--blush); }
.hero__title {
  font-size: clamp(2.9rem, 8vw, 5.6rem); color: #fff; margin-bottom: 1.4rem; letter-spacing: -.02em;
  text-shadow: 0 6px 40px rgba(0,0,0,.35);
}
.hero__title .script { color: var(--blush); display: inline-block; }
.hero__lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: rgba(255,255,255,.92); max-width: 540px; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; font-size: .92rem; color: rgba(255,255,255,.9); font-weight: 500; }

.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 20px; display: grid; place-items: start center; padding-top: 7px; z-index: 3; }
.hero__scroll span { width: 4px; height: 8px; background: #fff; border-radius: 4px; animation: scrollDot 1.7s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px);} 40% { opacity: 1;} 80%,100% { opacity: 0; transform: translateY(12px);} }

/* floating petals */
.petals { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.petals span {
  position: absolute; top: -8%; width: 16px; height: 16px; opacity: .8;
  background: radial-gradient(circle at 30% 30%, var(--blush), var(--blush-2));
  border-radius: 80% 0 80% 0; animation: fall linear infinite;
}
.petals span:nth-child(1){ left: 8%;  animation-duration: 13s; animation-delay: 0s;  }
.petals span:nth-child(2){ left: 22%; animation-duration: 17s; animation-delay: 3s;  transform: scale(.7); }
.petals span:nth-child(3){ left: 38%; animation-duration: 15s; animation-delay: 6s;  }
.petals span:nth-child(4){ left: 52%; animation-duration: 19s; animation-delay: 1s;  transform: scale(1.3); background: radial-gradient(circle at 30% 30%, #fff, var(--blush)); }
.petals span:nth-child(5){ left: 66%; animation-duration: 14s; animation-delay: 4s;  transform: scale(.8); }
.petals span:nth-child(6){ left: 78%; animation-duration: 18s; animation-delay: 7s;  }
.petals span:nth-child(7){ left: 88%; animation-duration: 16s; animation-delay: 2s;  transform: scale(1.1); }
.petals span:nth-child(8){ left: 95%; animation-duration: 20s; animation-delay: 5s;  transform: scale(.6); }
@keyframes fall {
  0% { top: -8%; opacity: 0; transform: translateX(0) rotate(0deg); }
  10% { opacity: .85; }
  100% { top: 108%; opacity: 0; transform: translateX(-60px) rotate(420deg); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--green-900); color: var(--cream); overflow: hidden; padding: 1.1rem 0; border-block: 1px solid rgba(255,255,255,.08); }
.marquee__track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee__track span { font-family: var(--display); font-size: 1.5rem; white-space: nowrap; }
.marquee__track i { color: var(--blush-2); font-style: normal; font-size: 1.1rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }

.about__images { position: relative; min-height: 480px; }
.about__img { position: absolute; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.about__img--1 { width: 74%; height: 380px; top: 0; left: 0; z-index: 2; }
.about__img--2 { width: 52%; height: 260px; bottom: 0; right: 0; z-index: 3; border: 8px solid var(--cream); }
.about__stat {
  position: absolute; top: 55%; right: -6%; z-index: 4;
  background: var(--terra); color: #fff; border-radius: 50%; width: 128px; height: 128px;
  display: grid; place-content: center; text-align: center; box-shadow: 0 16px 30px -12px rgba(201,111,82,.7);
  animation: floaty 5s ease-in-out infinite;
}
.about__stat strong { font-family: var(--display); font-size: 2.2rem; line-height: 1; }
.about__stat span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; margin-top: .3rem; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

.about__text h2 { margin-bottom: 1.4rem; }
.about__text p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.05rem; }
.about__text strong { color: var(--green-900); }
.about__list { list-style: none; margin: 1.6rem 0 2rem; display: grid; gap: .7rem; }
.about__list li { position: relative; padding-left: 1.9rem; color: var(--ink); font-weight: 500; }
.about__list li::before { content: "✿"; position: absolute; left: 0; color: var(--terra); font-size: 1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.cards { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 2.4rem 2rem;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(74,93,58,.08);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--blush-2), var(--terra)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__emoji { font-size: 2.4rem; display: block; margin-bottom: 1rem; }
.card h3 { font-size: 1.5rem; color: var(--green-900); margin-bottom: .6rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   24/7 SB-ECKE
   ============================================================ */
.sb {
  background:
    linear-gradient(rgba(31,42,25,.9), rgba(44,58,36,.92)),
    url("https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
  color: var(--cream); text-align: center;
}
.sb__inner { max-width: 820px; margin: 0 auto; }
.sb__badge {
  display: inline-block; background: var(--terra); color: #fff; font-weight: 600;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; padding: .5rem 1.2rem;
  border-radius: 100px; margin-bottom: 1.6rem;
}
.sb h2 { color: #fff; margin-bottom: 1.4rem; }
.sb > .sb__inner > p { color: rgba(255,255,255,.9); font-size: 1.12rem; max-width: 640px; margin: 0 auto 2.8rem; }
.sb__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sb__feat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1.8rem 1.2rem; backdrop-filter: blur(4px); }
.sb__feat span { font-size: 2rem; display: block; margin-bottom: .7rem; }
.sb__feat p { font-size: .95rem; color: rgba(255,255,255,.88); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream); text-align: center; }
.gallery__grid { max-width: var(--max); margin: 0 auto 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__grid figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-soft); }
.gallery__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__grid figure:hover img { transform: scale(1.08); }
.gallery__grid figure:nth-child(1){ grid-row: span 2; aspect-ratio: auto; }
.gallery__fb { margin-top: .5rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--cream-2), var(--sage-soft)); }
.contact__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info h2 { margin: .6rem 0 2rem; }
.contact__block { margin-bottom: 1.6rem; }
.contact__block h3 { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--terra); margin-bottom: .4rem; }
.contact__block p { color: var(--green-900); font-size: 1.12rem; font-weight: 500; }
.contact__block small { color: var(--ink-soft); font-weight: 400; font-size: .9rem; }
.contact__block a:hover { color: var(--terra); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hours__card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow); }
.hours__card h3 { font-size: 1.6rem; color: var(--green-900); margin-bottom: 1.4rem; }
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem 0; border-bottom: 1px dashed rgba(74,93,58,.18); font-size: .98rem; }
.hours li:last-child { border-bottom: 0; }
.hours li span { color: var(--ink-soft); }
.hours li b { color: var(--green-900); font-weight: 600; text-align: right; }
.hours li b.closed { color: var(--blush-2); }
.hours li.today { background: linear-gradient(90deg, rgba(246,217,211,.5), transparent); border-radius: 10px; padding-inline: .8rem; margin-inline: -.8rem; }
.hours li.today span::after { content: " · Heute"; color: var(--terra); font-weight: 600; font-size: .8rem; }
.hours__note { margin-top: 1.4rem; font-size: .92rem; color: var(--ink-soft); background: var(--cream); padding: 1rem 1.2rem; border-radius: 14px; border-left: 3px solid var(--terra); }
.hours__note a { color: var(--terra); font-weight: 600; }

.map { max-width: var(--max); margin: 3rem auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); color: rgba(255,255,255,.75); padding: clamp(3rem,6vw,5rem) clamp(1.2rem,5vw,4rem) 2rem; }
.footer__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
.brand__text--light { color: #fff; margin-bottom: 1rem; }
.brand__text--light em { color: var(--blush-2); }
.footer__brand p { font-size: .95rem; line-height: 1.7; margin-bottom: 1.3rem; }
.footer__social { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; transition: background .3s, transform .4s var(--ease); }
.footer__social:hover { background: var(--terra); transform: translateY(-3px); }
.footer__col h4 { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; color: var(--blush-2); margin-bottom: 1.1rem; }
.footer__col a, .footer__col span { display: block; font-size: .95rem; margin-bottom: .6rem; color: rgba(255,255,255,.75); transition: color .3s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { max-width: var(--max); margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: rgba(255,255,255,.55); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   MOBILE MENU + RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    background: var(--cream); flex-direction: column; justify-content: center; gap: 1.8rem;
    padding: 3rem; transform: translateX(100%); transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.4); z-index: 90;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.3rem; color: var(--green-900) !important; text-shadow: none !important; }
  .nav__burger { display: flex; z-index: 95; }
  .nav__cta { display: none; }

  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__images { max-width: 460px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .sb__row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .cards, .gallery__grid { grid-template-columns: 1fr; }
  .gallery__grid figure:nth-child(1){ grid-row: auto; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__badges { gap: .8rem 1.2rem; }
  .about__stat { width: 104px; height: 104px; right: 2%; }
  .about__stat strong { font-size: 1.8rem; }
  .contact__actions { flex-direction: column; }
  .contact__actions .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
