:root {
  --blue: #1e3a8a;
  --blue-ink: #0f172a;
  --yellow: #f5c542;
  --yellow-soft: #ffe8a3;
  --mint: #e8f5f1;
  --sand: #f8f3e9;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--blue-ink);
  background: radial-gradient(circle at top, var(--mint), var(--sand));
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-banner {
  width: 100%;
  background: var(--yellow-soft);
  color: var(--blue);
  text-align: center;
  padding: 12px 6vw;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(30, 58, 138, 0.18);
}

.top-banner p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-banner__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1;
}


.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 80px 6vw 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 16px 0;
}

.lead {
  font-size: 1.1rem;
  color: rgba(15, 23, 42, 0.75);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--yellow-soft);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--ghost {
  border-color: rgba(15, 23, 42, 0.2);
}



.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__circle {
  position: absolute;
  width: 360px;
  height: 230px;
  border-radius: 22px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.26) 0 6px,
      transparent 6px 28px
    ),
    linear-gradient(135deg, var(--yellow-soft), var(--yellow));
  border: 1px solid rgba(255, 255, 255, 0.45);
  right: 20px;
  top: 62px;
  transform: rotate(-6deg);
  box-shadow: 0 20px 38px rgba(245, 197, 66, 0.32);
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  overflow: hidden;
  z-index: 1;
}

.hero__circle::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    22px 6px 0 rgba(255, 255, 255, 0.52),
    10px 23px 0 rgba(255, 255, 255, 0.46),
    34px 24px 0 rgba(255, 255, 255, 0.4);
}

.hero__circle::after {
  content: "FRISCH";
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.75);
}

.section {
  padding: 72px 6vw;
  max-width: var(--max-width);
  margin: 0 auto;
}

main > .section {
  animation: sectionFade 280ms ease both;
}

main > .section:nth-of-type(2) {
  animation-delay: 50ms;
}

main > .section:nth-of-type(3) {
  animation-delay: 90ms;
}

main > .section:nth-of-type(4) {
  animation-delay: 130ms;
}

main > .section + .section {
  position: relative;
}

main > .section + .section::before {
  content: "";
  position: absolute;
  left: 6vw;
  right: 6vw;
  top: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 23, 42, 0.18),
    transparent
  );
}

.legal {
  padding-top: 48px;
}

.legal__card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.legal__card h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.legal__block + .legal__block {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.legal__block h2 {
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.legal__block p + p {
  margin-top: 10px;
}

.section--slogan {
  padding-top: 24px;
  padding-bottom: 32px;
}

.slogan {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.slogan__line {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.slogan__scene {
  color: rgba(15, 23, 42, 0.75);
  margin-bottom: 14px;
}

.quote {
  border-left: 3px solid var(--yellow);
  padding-left: 12px;
  font-style: italic;
}

.section--alt {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.section__header {
  margin-bottom: 32px;
}

.section__header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.section__header p {
  color: rgba(15, 23, 42, 0.72);
  max-width: 50ch;
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.leistungen__image {
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.leistungen__image img {
  width: 100%;
  display: block;
  height: clamp(200px, 40vw, 360px);
  object-fit: cover;
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 56px 24px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.leistungen__duo {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.leistungen__tile {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.leistungen__tile img {
  width: 100%;
  height: clamp(180px, 24vw, 260px);
  object-fit: cover;
  display: block;
}

#leistungen .card::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--yellow-soft);
  display: grid;
  place-items: center;
  font-size: 16px;
}

#leistungen .card:nth-child(1)::before {
  content: "🥬";
}

#leistungen .card:nth-child(2)::before {
  content: "🥖";
}

#leistungen .card:nth-child(3)::before {
  content: "🍎";
}

#leistungen .card:nth-child(4)::before {
  content: "🛒";
}

#leistungen .card:nth-child(5)::before {
  content: "🥤";
}

#leistungen .card:nth-child(6)::before {
  content: "🧴";
}


.section--cta {
  padding-top: 92px;
  padding-bottom: 120px;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--blue-ink);
  color: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta > div {
  width: min(100%, 820px);
}

.hours {
  margin-top: 18px;
  text-align: center;
}

.hours__label {
  font-weight: 600;
  margin-bottom: 8px;
}

.hours__list {
  display: grid;
  gap: 4px;
}

.contact-map {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.contact-map iframe {
  width: 100%;
  height: clamp(220px, 34vw, 300px);
  border: 0;
  display: block;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 6vw 48px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.footer__links {
  display: flex;
  gap: 16px;
}

@keyframes sectionFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  main > .section {
    animation: none;
  }

  .card,
  .card:hover {
    transition: none;
    transform: none;
  }
}

@media (max-width: 900px) {
  .leistungen__duo {
    grid-template-columns: 1fr;
  }

  .top-banner {
    padding: 11px 5vw;
  }

  .top-banner p {
    gap: 8px;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .top-banner {
    font-size: 0.96rem;
    line-height: 1.35;
    padding: 10px 4.5vw;
  }

  .top-banner__icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }

  .hero__visual {
    min-height: 240px;
  }

  .hero__circle {
    width: 200px;
    height: 128px;
    right: 0;
    top: 78px;
    opacity: 0.78;
  }

  .hero__circle::before,
  .hero__circle::after {
    display: none;
  }

  .contact-map iframe {
    height: 220px;
  }
}

@media (max-width: 420px) {
  .contact-map iframe {
    height: 190px;
  }
}
