:root {
  --bg: #fff6f2;
  --white: #ffffff;
  --text: #1f2940;
  --muted: #5a657e;
  --primary: #ef6978;
  --primary-strong: #e94460;
  --baby: #a9e4ff;
  --baby-strong: #5cc3f2;
  --mint: #e8fff3;
  --yellow: #fff2b3;
  --lavender: #f1deff;
  --sand: #fff0e7;
  --line: rgba(31, 41, 64, 0.10);
  --shadow: 0 22px 70px rgba(61, 76, 113, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1200px;
}

@font-face {
  font-family: 'CalSans';
  src: url('/fonts/CalSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7f4 0%, #fffdfd 55%, #f6fbff 100%);
}

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

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

button {
  font: inherit;
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -2;
  filter: blur(60px);
  opacity: 0.8;
  pointer-events: none;
}

.page-bg::before {
  width: 28rem;
  height: 28rem;
  left: -7rem;
  top: 6rem;
  background: rgba(169, 228, 255, 0.55);
}

.page-bg::after {
  width: 25rem;
  height: 25rem;
  right: -6rem;
  top: 14rem;
  background: rgba(239, 105, 120, 0.26);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 244, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo,
.footer-logo {
  width: 205px;
  height: auto;
}

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

.nav a {
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav a:hover {
  background: rgba(169, 228, 255, 0.28);
  color: var(--text);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #ff8c9a);
  color: white !important;
  box-shadow: 0 14px 30px rgba(233, 68, 96, 0.24);
}

.nav-toggle {
  width: 54px;
  height: 54px;
  border: 0;
  display: none;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.28s ease, opacity 0.18s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(8px);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(169, 228, 255, 0.22), transparent 22%),
    radial-gradient(circle at 80% 15%, rgba(239, 105, 120, 0.18), transparent 20%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 92%);
}

.hero-grid,
.moments-grid,
.services-grid,
.cta-shell {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1fr 1.04fr;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(169, 228, 255, 0.24);
  color: #1679aa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.83rem;
}

.section-label.dark {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.section-label.light {
  background: rgba(255, 255, 255, 0.12);
  color: #eaf8ff;
}

h1,
h2,
h3 {
  font-family: 'CalSans', system-ui, sans-serif;
  margin: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.3rem);
  margin: 1rem 0 1rem;
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  margin: 0.9rem 0 1rem;
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-copy p {
  max-width: 60ch;
}

.hero-actions,
.hero-pills,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-pills {
  margin-top: 1.3rem;
}

.hero-pills span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-strong), #ff7d93);
  color: white;
  box-shadow: 0 16px 34px rgba(233, 68, 96, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.btn-light {
  background: white;
  color: #164765;
}

.btn-outline-light {
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.hero-stage {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.9;
}

.hero-glow-one {
  width: 18rem;
  height: 18rem;
  background: rgba(169, 228, 255, 0.52);
  left: 2%;
  top: 10%;
}

.hero-glow-two {
  width: 16rem;
  height: 16rem;
  background: rgba(239, 105, 120, 0.22);
  right: 4%;
  bottom: 12%;
}

/* HERO SLIDER NUR MIT BILDERN */
.stacked-cards {
  position: relative;
  width: min(100%, 580px);
  height: 620px;
  perspective: 1200px;
}

.flavor-card {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(26px) scale(0.92) rotate(-4deg);
  transition: transform 0.7s ease, opacity 0.6s ease;
}

.flavor-card::before {
  content: none;
}

.flavor-card img {
  width: min(100%, 500px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.16));
}

.flavor-card.active {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  z-index: 3;
}

.flavor-card.next {
  opacity: 0.42;
  transform: translate(34px, 26px) scale(0.92) rotate(5deg);
  z-index: 2;
}

.flavor-card.prev {
  opacity: 0.22;
  transform: translate(-34px, 38px) scale(0.88) rotate(-6deg);
  z-index: 1;
}

/* ALTE TEXTBOXEN IM SLIDER AUSBLENDEN */
.flavor-meta,
.flavor-kicker {
  display: none !important;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(31, 41, 64, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
  background: var(--primary-strong);
  transform: scale(1.15);
}

.marquee-band {
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-strong), #ff7b8f);
  color: white;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.75rem;
  padding: 1rem 0;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.marquee-track span::before {
  content: "✦";
  margin-right: 2.75rem;
  opacity: 0.65;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-flavors {
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.mini-card {
  position: relative;
  padding: 1.3rem;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mini-grad, linear-gradient(135deg, rgba(169, 228, 255, 0.18), rgba(239, 105, 120, 0.12)));
  z-index: 0;
}

.mini-card > * {
  position: relative;
  z-index: 1;
}

.mini-card img {
  height: 280px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.mini-card h3 {
  margin-bottom: 0.3rem;
}

.mini-card.berry {
  --mini-grad: linear-gradient(135deg, rgba(255, 203, 224, 0.52), rgba(255, 247, 250, 0.62));
}

.mini-card.choco {
  --mini-grad: linear-gradient(135deg, rgba(213, 196, 184, 0.46), rgba(255, 245, 237, 0.62));
}

.mini-card.kiba {
  --mini-grad: linear-gradient(135deg, rgba(227, 205, 255, 0.5), rgba(255, 242, 248, 0.65));
}

.mini-card.peanut {
  --mini-grad: linear-gradient(135deg, rgba(255, 236, 168, 0.56), rgba(255, 248, 225, 0.72));
}

.mini-card.vanilla {
  --mini-grad: linear-gradient(135deg, rgba(248, 239, 228, 0.76), rgba(255, 249, 240, 0.86));
}

.mini-card.plum {
  --mini-grad: linear-gradient(135deg, rgba(231, 199, 255, 0.48), rgba(249, 242, 255, 0.72));
}

.section-services {
  background:
    radial-gradient(circle at 10% 20%, rgba(169, 228, 255, 0.15), transparent 22%),
    linear-gradient(135deg, #12344f 0%, #174967 56%, #1d5e86 100%);
  color: white;
}

.services-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.services-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: 30px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.service-card.accent-blue {
  background: linear-gradient(180deg, rgba(169, 228, 255, 0.98), rgba(255, 255, 255, 0.92));
}

.service-card.accent-yellow {
  background: linear-gradient(180deg, rgba(255, 241, 179, 0.98), rgba(255, 255, 255, 0.92));
}

.service-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  font-weight: 800;
  background: rgba(239, 105, 120, 0.12);
  color: var(--primary-strong);
}

.section-moments {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.moments-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.moment-image {
  position: relative;
  padding: 1rem;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(169, 228, 255, 0.3), rgba(239, 105, 120, 0.15));
  box-shadow: var(--shadow);
}

.moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  min-height: 430px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.check-grid div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.section-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(169, 228, 255, 0.14), transparent 22%),
    linear-gradient(135deg, #f05d75 0%, #f7768f 45%, #73cff7 100%);
}

.cta-shell {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: white;
}

.cta-shell p {
  color: rgba(255, 255, 255, 0.86);
}

.footer {
  padding: 2rem 0 2.5rem;
  background: #fff7f2;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-wrap p {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-grid,
  .services-grid,
  .moments-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .services-cards,
  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    min-height: 640px;
  }

  .stacked-cards {
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
    position: relative;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    background: rgba(255, 247, 244, 0.97);
    backdrop-filter: blur(20px);
    padding: 0.85rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.75);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.26s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
  }

  h1 {
    max-width: 12ch;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-stage {
    min-height: 580px;
  }

  .stacked-cards {
    height: 540px;
  }

  .flavor-card img {
    max-height: 470px;
    width: min(100%, 430px);
  }

  .check-grid,
  .services-cards,
  .flavor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.15rem));
  }

  .brand-logo,
  .footer-logo {
    width: 165px;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-pills {
    gap: 0.7rem;
  }

  .hero-pills span {
    font-size: 0.88rem;
  }

  .hero-stage {
    min-height: 480px;
  }

  .stacked-cards {
    height: 450px;
  }

  .flavor-card img {
    max-height: 340px;
    width: min(100%, 320px);
  }

  .cta-shell {
    padding: 1.5rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}