/* ═══════════ VERDE Cafe & Brunch — editorial ═══════════ */

:root {
  --cream:      oklch(0.972 0.012 95);
  --cream-2:    oklch(0.945 0.016 92);
  --ink:        oklch(0.26 0.02 150);
  --ink-soft:   oklch(0.44 0.02 150);
  --sage:       oklch(0.52 0.07 150);
  --sage-deep:  oklch(0.36 0.06 152);
  --sage-night: oklch(0.22 0.03 152);
  --accent:     oklch(0.62 0.09 118);
  --line:       oklch(0.88 0.012 95);

  --display: Georgia, "Times New Roman", serif;
  --body: "Jost", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--cream); }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.1; }
em { font-style: italic; color: var(--accent); }

.h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); color: var(--sage-deep); }
.h2--center { text-align: center; }

/* ── Kicker ── */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.kicker--center { justify-content: center; }
.kicker--tight { margin: 1.5rem 0 0.9rem; }
.kicker__rule { width: 28px; height: 1px; background: currentColor; flex: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 1.9em;
  border-radius: 99px;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn--dark { background: var(--sage-deep); color: var(--cream); }
.btn--dark:hover { background: var(--sage-night); transform: translateY(-2px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--soft { background: color-mix(in oklch, var(--accent) 22%, var(--cream)); color: var(--sage-deep); }
.btn--soft:hover { background: var(--accent); color: var(--cream); }
.btn--light { border-color: color-mix(in oklch, var(--cream) 55%, transparent); color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--sage-night); }
.btn--sm { font-size: 0.72rem; padding: 0.85em 1.5em; }
.btn--big { font-size: 0.9rem; padding: 1.15em 2.6em; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  background: color-mix(in oklch, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { text-decoration: none; display: grid; gap: 0.1rem; }
.nav__brand-name {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  color: var(--sage-deep);
  line-height: 1;
}
.nav__brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__links { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); }
.nav__links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--accent); }

/* ── 1. Hero: Text links, Video rechts ── */
.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  background: var(--cream);
  overflow: hidden;
}
.hero__inner {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5.5rem) var(--pad);
  max-width: 40rem;
  justify-self: end;
}
.hero__media {
  position: relative;
  height: min(88svh, 780px);
  overflow: hidden;
}
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--cream) 0%, color-mix(in oklch, var(--cream) 45%, transparent) 9%, transparent 22%);
}
.hero__title {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  color: var(--sage-deep);
  line-height: 1.14;
}
.hero__title em { display: block; margin-top: 0.5rem; }
.rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.rating__g {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.8rem;
  color: var(--accent);
}
.rating__stars { color: oklch(0.78 0.15 85); letter-spacing: 0.08em; }
.rating__text strong { color: var(--ink); }
.hero__text { font-size: clamp(1rem, 1.4vw, 1.08rem); max-width: 32rem; color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* ── 2. Intro + Kollage ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7.5rem) var(--pad);
  max-width: 92rem;
  margin-inline: auto;
}
.intro__text p { color: var(--ink-soft); max-width: 34rem; }
.intro__text .h2 { margin-bottom: 1.4rem; }
.intro__text strong { color: var(--ink); font-weight: 600; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips li {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.55em 1.1em;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: color-mix(in oklch, var(--cream-2) 60%, transparent);
  color: var(--ink-soft);
}
.chips--light li {
  border-color: color-mix(in oklch, var(--cream) 32%, transparent);
  background: color-mix(in oklch, var(--cream) 10%, transparent);
  color: var(--cream);
}

.collage {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(0.6rem, 1.2vw, 1rem);
  align-items: center;
}
.collage figure { overflow: hidden; border-radius: 6px; aspect-ratio: 1 / 1; }
.collage img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.9s var(--ease); }
.collage figure:hover img { transform: scale(1.04); }
.collage__tall { grid-column: 1; grid-row: 1 / 3; align-self: center; }
.collage__a { grid-column: 2; grid-row: 1; }
.collage__b { grid-column: 2; grid-row: 2; }

/* ── 3. Angebote ── */
.offers { background: var(--cream-2); padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 82rem;
  margin-inline: auto;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px color-mix(in oklch, var(--ink) 10%, transparent); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5em 0.95em;
  border-radius: 99px;
}
.card__body { padding: clamp(1.25rem, 2vw, 1.75rem); display: flex; flex-direction: column; flex: 1; }
.card__kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.card__title { font-size: 1.55rem; color: var(--sage-deep); margin-bottom: 0.7rem; }
.card__body p { color: var(--ink-soft); font-size: 0.95rem; }
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}
.price {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--sage-deep);
  font-variant-numeric: lining-nums tabular-nums;
}
.offers__note { text-align: center; margin-top: 2.5rem; font-size: 0.92rem; color: var(--ink-soft); }
.offers__note a { color: var(--accent); }

/* ── 4. Bewertungen ── */
.reviews { padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.score {
  max-width: 62rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--sage-night);
  color: var(--cream);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
}
.score__num { display: grid; gap: 0.2rem; text-align: center; }
.score__num strong { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 400; line-height: 1; }
.score__stars { color: oklch(0.82 0.15 85); font-size: 0.95rem; letter-spacing: 0.1em; }
.score__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; }
.score__text { font-size: 1.02rem; opacity: 0.9; max-width: 34rem; }

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 82rem;
  margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
}
.quote {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
}
.quote__stars { color: oklch(0.72 0.16 60); letter-spacing: 0.14em; font-size: 0.92rem; }
.quote__text {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 1rem 0 1.5rem;
}
.quote__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.quote__avatar {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--sage-deep);
  color: var(--cream);
  font-family: var(--display);
  font-size: 1rem;
  flex: none;
}
.quote__author strong { display: block; font-size: 0.94rem; font-weight: 600; }
.quote__meta { display: block; font-size: 0.82rem; color: var(--ink-soft); font-style: normal; }
.quotes__link { text-align: center; margin-top: 2rem; }
.quotes__link a { color: var(--accent); font-weight: 600; font-size: 0.92rem; }

/* ── 5. Der Ort ── */
.place {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  background: var(--sage-night);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}
.place__text { max-width: 34rem; margin-left: auto; }
.place__text .h2 { color: var(--cream); margin-bottom: 1.3rem; }
.place__text .h2 em { color: var(--accent); }
.place__text p { opacity: 0.88; }
.place__text .chips { margin: 1.6rem 0; }
.place__img {
  border-radius: 10px;
  overflow: hidden;
  max-width: 46rem;
  aspect-ratio: 4 / 3;
  max-height: 34rem;
}
.place__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }

/* ── 6. Fakten ── */
.facts { padding: clamp(4rem, 9vw, 7rem) var(--pad); background: var(--cream-2); }
.facts .h2 { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 78rem;
  margin-inline: auto;
}
.fact {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
}
.fact__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent) 20%, var(--cream));
  color: var(--sage-deep);
}
.fact__icon svg { width: 1.4rem; height: 1.4rem; }
.fact h3 { font-size: 1.15rem; color: var(--sage-deep); margin-bottom: 0.6rem; }
.fact p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.75; }
.fact a { color: var(--accent); }
.fact__hint { font-size: 0.85rem; opacity: 0.75; font-style: italic; }

/* ── 7. SEO-Text ── */
.prose {
  max-width: 48rem;
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
}
.prose h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--sage-deep);
  text-align: center;
  margin-bottom: 1.75rem;
}
.prose h3 { font-size: 1.2rem; color: var(--ink); margin: 2rem 0 0.75rem; }
.prose p { color: var(--ink-soft); margin-bottom: 1rem; }
.prose strong { color: var(--ink); font-weight: 600; }

/* ── 8. CTA ── */
.cta {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}
.cta p { color: var(--ink-soft); margin: 1rem 0 2rem; }
.cta__hint { font-size: 0.9rem; margin: 1.25rem 0 0; }
.cta__hint a { color: var(--accent); font-weight: 600; }

/* ── Footer ── */
.footer { background: var(--sage-night); color: var(--cream); padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad) 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 82rem;
  margin-inline: auto;
  padding-bottom: 3rem;
}
.footer .kicker { color: var(--accent); }
.footer__logo { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: 0.14em; }
.footer__sub { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.7; margin-top: 0.3rem; }
.footer__desc { margin: 1.25rem 0 1.75rem; opacity: 0.85; font-size: 0.95rem; max-width: 26rem; }
.footer__btns { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.footer__h { font-family: var(--display); font-size: 1.4rem; margin-bottom: 0.9rem; }
.footer__hours { line-height: 2; font-size: 0.95rem; opacity: 0.9; }
.footer__accent { color: var(--accent); font-style: italic; }
.footer__addr { margin-top: 1rem; font-size: 0.9rem; opacity: 0.7; }
.footer__ig { font-family: var(--display); font-size: 1.5rem; margin-bottom: 1.25rem; }
.footer__legal-links { display: flex; gap: 1.25rem; margin-top: 1.5rem; font-size: 0.88rem; }
.footer__legal-links a { opacity: 0.75; }
.footer__legal-links a:hover { opacity: 1; color: var(--accent); }
.footer__bar {
  border-top: 1px solid color-mix(in oklch, var(--cream) 15%, transparent);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  opacity: 0.6;
  text-align: center;
}

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .intro, .place { grid-template-columns: 1fr; }
  .place__text { margin-left: 0; }
  .place__img { order: -1; }
  .collage { height: clamp(20rem, 60vw, 26rem); }
  .score { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  /* Mobile: Video oben, läuft nach unten in die Cremefläche aus,
     Text folgt darunter — wie bei findelkind.cafe */
  .hero {
    display: flex;
    flex-direction: column;
    padding-bottom: clamp(2.5rem, 8vw, 3.5rem);
  }
  .hero__media {
    order: -1;
    height: 46svh;
    min-height: 300px;
  }
  .hero__media::after {
    background: linear-gradient(180deg,
      transparent 0%,
      transparent 42%,
      color-mix(in oklch, var(--cream) 55%, transparent) 68%,
      color-mix(in oklch, var(--cream) 92%, transparent) 86%,
      var(--cream) 100%);
  }
  .hero__inner {
    position: relative;
    z-index: 2;
    max-width: none;
    justify-self: stretch;
    margin-top: -4.5rem;
    padding: 0 var(--pad);
  }
}
@media (max-width: 560px) {
  .nav { padding-inline: 1rem; }
  .nav__actions .btn { font-size: 0.66rem; padding: 0.8em 1.1em; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ── Reservierungs-Widget (über eigenen Origin eingebettet) ── */
.cta__lead { color: var(--ink-soft); margin: 1rem 0 2.25rem; }
.resa {
  max-width: 30rem;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 50px color-mix(in oklch, var(--ink) 12%, transparent);
}
.resa__frame {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: var(--cream);
}
@media (max-width: 560px) {
  .resa { max-width: 100%; border-radius: 12px; }
  .resa__frame { height: 620px; }
}

/* ── Footer: Signatur ── */
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.footer__by a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 45%, transparent);
}
.footer__by a:hover { border-color: var(--accent); }

/* ── Nav: Social-Icons ── */
.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.nav__social {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}
.nav__social svg { width: 1.15rem; height: 1.15rem; }
.nav__social:hover { color: var(--sage-deep); background: color-mix(in oklch, var(--accent) 18%, transparent); }
@media (max-width: 560px) { .nav__social { display: none; } }

/* ── Echtes VERDE-Wortbild ── */
.nav__brand { display: grid; gap: 0.25rem; justify-items: start; }
.nav__logo { width: clamp(112px, 11.5vw, 150px); height: auto; display: block; }
.footer__logo-img {
  width: clamp(150px, 16vw, 210px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(94%) sepia(6%) saturate(220%) hue-rotate(25deg) brightness(102%);
}
