:root {
  --color-rose: #b5485a;
  --color-rose-dark: #8e3344;
  --color-green: #4c5f49;
  --color-cream: #fbf6f1;
  --color-text: #2e2a28;
  --color-text-light: #6b6360;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--color-rose);
  color: #fff;
}
.btn-primary:hover { background: var(--color-rose-dark); }
.btn-outline {
  border: 2px solid var(--color-rose-dark);
  color: var(--color-rose-dark);
}
.btn-outline:hover { background: rgba(181,72,90,0.1); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 246, 241, 0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-rose-dark);
}
.logo span { color: var(--color-green); }
.main-nav {
  display: flex;
  gap: 1.8rem;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}
.main-nav a:hover { color: var(--color-rose); }
.header-phone {
  background: var(--color-green);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
}

/* Hero: Apple-style scroll-linked product animation */
.scroll-anim {
  height: 380vh;
  position: relative;
  background: var(--color-cream);
}
.scroll-anim__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.product-layout {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2rem;
}
.product-text {
  position: relative;
  min-height: 280px;
  text-align: left;
}
.product-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 60vh;
  max-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.product-shadow {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(46,42,40,0.25), transparent 75%);
  filter: blur(6px);
  z-index: 0;
}
.scroll-anim__canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.scroll-anim__text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(-40%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.scroll-anim__text.visible {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}
.scroll-anim__progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(46,42,40,0.1);
  z-index: 3;
}
.scroll-anim__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-rose), var(--color-green));
  transition: width 0.05s linear;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-light);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
  transition: opacity 0.4s;
}
.scroll-indicator.hidden { opacity: 0; }
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(46,42,40,0.3);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--color-rose);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

.hero-kicker {
  display: inline-block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #fff;
  background: var(--color-rose);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--color-rose-dark);
  margin-bottom: 1rem;
}
.hero-title .accent { color: var(--color-green); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-light);
  font-weight: 300;
}
.hero-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-rose-dark);
  margin-bottom: 1.8rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .product-text { text-align: center; min-height: 220px; order: 2; }
  .product-stage { order: 1; height: 42vh; }
  .scroll-anim__text { text-align: center; }
  .hero-buttons { justify-content: center; }
}

/* Section generic */
section { padding: 5.5rem 1.5rem; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--color-rose);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
section h2 { font-size: 2.3rem; color: var(--color-rose-dark); }

/* About */
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-text p { margin-bottom: 1.1rem; color: var(--color-text-light); }
.about-quote {
  font-style: italic;
  color: var(--color-rose-dark) !important;
  border-left: 3px solid var(--color-rose);
  padding-left: 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* Blumen Cards */
.bluemen { background: #fff; }
.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.card {
  background: var(--color-cream);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,0.1); }
.card img { height: 200px; width: 100%; object-fit: cover; }
.card h3 { font-size: 1.15rem; margin: 1.1rem 1rem 0.6rem; color: var(--color-rose-dark); }
.card p { font-size: 0.92rem; color: var(--color-text-light); margin: 0 1.2rem; }

/* Gallery */
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Lieferung */
.lieferung { background: var(--color-green); color: #fff; text-align: center; }
.lieferung-inner { max-width: 700px; margin: 0 auto; }
.lieferung h2 { color: #fff; margin-bottom: 1.2rem; }
.lieferung p { margin-bottom: 1.2rem; opacity: 0.95; }
.lieferung-list {
  list-style: none;
  margin-bottom: 2rem;
  display: inline-block;
  text-align: left;
}
.lieferung-list li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.lieferung-list li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: #fff;
}

/* Kontakt */
.kontakt-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.kontakt-info h2 { margin-bottom: 1.2rem; }
.kontakt-info p { margin-bottom: 1rem; color: var(--color-text-light); }
.kontakt-info h3 { margin: 1.5rem 0 0.8rem; color: var(--color-rose-dark); font-size: 1.2rem; }
.placeholder-hint { color: var(--color-rose); font-weight: 500; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.5rem 0; border-bottom: 1px solid #e6ddd6; }
.social-links { margin-top: 1.5rem; display: flex; gap: 1rem; }
.social-links a {
  border: 1px solid var(--color-rose);
  color: var(--color-rose-dark);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
.kontakt-map { min-height: 350px; border-radius: 14px; overflow: hidden; box-shadow: 0 16px 30px rgba(0,0,0,0.1); }
.kontakt-map iframe { height: 100%; min-height: 350px; }

/* Footer */
.site-footer {
  background: #2e2a28;
  color: #cfc6c0;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
}
.footer-links { margin-top: 0.5rem; }
.footer-links a { margin: 0 0.5rem; }
.footer-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .about-inner, .kontakt-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 700px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
}
