/* ============================================================
   BrotZeit & Kaffee Sub-Marken-Theme
   Basis: ui_kits/website/site.css — Brand-Farbe überschreibt Orange-Rolle.
   ============================================================ */

/* ===== Marken-Overrides ===== */
:root {
  --brand:             #8B5E34;
  --brand-deep:        #6B4626;
  --brand-soft:        #B08055;
  --sued-orange:       var(--brand);
  --sued-orange-deep:  var(--brand-deep);
  --sued-orange-light: var(--brand-soft);
  --fg-on-orange:      #FFF6EC;
  --shadow-cta:        0 12px 32px rgba(139, 94, 52, 0.30);
  --hero-overlay:      linear-gradient(180deg, rgba(30,18,8,0.16) 0%, rgba(20,10,3,0.90) 90%);
  /* Gesamthöhe: BrandBar ~35px + 12px Abstand + Pill ~56px + 13px Luft */
  --header-h: 116px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--brand); color: var(--fg-on-orange); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }

/* ===== BRAND BAR ===== */
.brandbar {
  display: flex; align-items: center; gap: 20px;
  padding: 8px var(--gutter);
  background: var(--sued-blue-deep);
  font-size: 12px;
}
.brandbar__label {
  color: rgba(250,247,241,0.85); font-weight: 500;
  letter-spacing: 0.04em; white-space: nowrap;
}
.brandbar__links {
  display: flex; gap: 18px; overflow-x: auto; scrollbar-width: none;
}
.brandbar__links a {
  color: rgba(250,247,241,0.85); text-decoration: none;
  font-weight: 500; white-space: nowrap;
}
.brandbar__links a:hover { color: #FFFFFF; }
.brandbar__links a.is-active {
  color: #FFFFFF; font-weight: 700;
  border-bottom: 2px solid var(--brand-soft);
  padding-bottom: 2px;
}
@media (max-width: 900px) { .brandbar__label { display: none; } }

/* ===== SITE HEADER (BrandBar-Wrapper) ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}

/* ===== NAV — Floating Glass Pill unter BrandBar ===== */
.nav-inner {
  position: fixed;
  top: calc(35px + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 11px 28px;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 33, 101, 0.10);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(34, 33, 101, 0.10);
  width: max-content;
  max-width: 1000px;
  transition:
    background 0.3s cubic-bezier(0.32, 0.72, 0, 1),
    border-color 0.3s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.site-header.is-scrolled .nav-inner {
  background: rgba(250, 247, 241, 0.97);
  border-color: rgba(34, 33, 101, 0.18);
  box-shadow: 0 8px 32px rgba(34, 33, 101, 0.15);
}
.nav-inner__logo img { height: 34px; }
.nav-inner__links {
  display: flex; gap: 20px; list-style: none; margin: 0; padding: 0;
  white-space: nowrap;
}
.nav-inner__links a {
  font-size: 14px; font-weight: 500; color: var(--sued-blue);
  transition: color 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}
.nav-inner__links a:hover { color: var(--brand-deep); }
.nav-inner__cta {
  padding: 9px 18px;
  background: var(--brand); color: var(--fg-on-orange);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--tracking-wide); text-transform: uppercase; white-space: nowrap;
  transition: background 0.2s cubic-bezier(0.32, 0.72, 0, 1), transform 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}
.nav-inner__cta:hover { background: var(--brand-deep); transform: translateY(-1px); }
.nav-inner__cta:active { transform: translateY(0) scale(0.97); }
@media (max-width: 900px) { .nav-inner__links { display: none; } }
@media (max-width: 760px) {
  .nav-inner {
    top: calc(35px + 8px);
    width: calc(100vw - 32px);
    max-width: none;
    padding: 10px 20px;
    gap: 0;
    justify-content: space-between;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh; min-height: 92dvh;
  padding-top: var(--header-h);
  display: flex; align-items: flex-end;
  overflow: hidden; color: var(--cream);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.06) saturate(1.05);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: var(--hero-overlay);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) var(--section-y);
  max-width: var(--container-max); margin: 0 auto; width: 100%;
}
.hero__eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--cream); /* Cream auf dunklem Overlay */
  margin: 0 0 16px;
  display: inline-flex; align-items: center; gap: 12px;
  text-shadow: 0 1px 12px rgba(20, 10, 3, 0.55);
}
.hero__eyebrow::before {
  content: ""; display: block; width: 32px; height: 2px; background: var(--brand-soft);
}
.hero__title {
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: #FFFFFF; margin: 0 0 20px; max-width: 18ch;
}
.hero__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--brand-soft);
}
.hero__lede {
  font-size: clamp(17px, 1.4vw, 22px); line-height: 1.5;
  color: var(--cream); max-width: 52ch; margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num {
  font-weight: 700; font-size: clamp(28px, 3vw, 40px); line-height: 1;
  color: #FFFFFF; letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 10px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--brand-soft);
  font-weight: 700; margin-top: 6px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; font-family: var(--font-sans);
  font-size: 14px; font-weight: 700;
  letter-spacing: var(--tracking-wide);
  border: 0; border-radius: var(--radius-pill); cursor: pointer;
  transition:
    transform .2s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow .2s cubic-bezier(0.32, 0.72, 0, 1),
    background-color .2s cubic-bezier(0.32, 0.72, 0, 1);
}
.btn:active { transform: translateY(0) scale(0.97); }
.btn--primary {
  background: var(--brand); color: var(--fg-on-orange);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn--secondary {
  background: rgba(255,255,255,0.14); color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.btn--secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }

/* ===== MENÜ-SEKTION ===== */
#speisekarte { scroll-margin-top: var(--header-h); }
.menu { background: var(--cream); }
.menu__head { text-align: center; margin-bottom: 56px; }
.menu__ey {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--brand-deep); margin: 0 0 14px;
}
.menu__title { color: var(--sued-blue); margin: 0 0 16px; }
.menu__chip {
  display: inline-block; padding: 5px 14px;
  background: var(--cream-dark); border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.menu__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.menu__item { text-align: center; }
.menu__photo-wrap {
  width: clamp(140px, 14vw, 180px); height: clamp(140px, 14vw, 180px);
  border-radius: 50%; overflow: hidden; margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(139,94,52,0.22);
  border: 4px solid var(--cream);
  outline: 2px solid var(--brand-soft);
  position: relative;
}
.menu__photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.menu__item:hover .menu__photo-wrap img { transform: scale(1.06); }
.menu__name { color: var(--sued-blue); margin: 0 0 6px; }
.menu__desc { color: var(--ink-muted); font-size: 14px; margin: 0 0 8px; line-height: 1.4; }
.menu__price {
  font-family: var(--font-sans); font-variant-numeric: tabular-nums;
  font-weight: 700; font-size: 16px; color: var(--brand-deep);
}
@media (max-width: 900px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .menu__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* ===== STANDORTE ===== */
#standorte { scroll-margin-top: var(--header-h); }
.standorte { background: var(--sued-blue); color: var(--cream); }
.standorte__head { text-align: center; margin-bottom: 48px; }
.standorte__ey {
  font-size: 12px; font-weight: 600;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--brand-soft); margin: 0 0 14px;
}
.standorte__title { color: var(--cream); margin: 0 0 14px; }
.standorte__lede { color: rgba(250,247,241,0.8); font-size: 17px; max-width: 56ch; margin: 0 auto; }
.standorte__chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 40px;
}
.standorte__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(220,219,237,0.2);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; color: var(--cream);
  transition: background 0.2s;
}
.standorte__chip:hover { background: rgba(255,255,255,0.14); }
.standorte__chip svg { color: var(--brand-soft); flex-shrink: 0; }
.standorte__cta { text-align: center; }

/* ===== ÖFFNUNGSZEITEN — 365-Tage-USP ===== */
#zeiten { scroll-margin-top: var(--header-h); }
.zeiten { background: var(--cream-dark); }
.zeiten__head { text-align: center; margin-bottom: 48px; }
.zeiten__ey {
  font-size: 12px; font-weight: 600;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--brand-deep); margin: 0 0 14px;
}
.zeiten__title { color: var(--sued-blue); margin: 0 0 14px; }
/* USP-Banner: 365 Tage im Jahr — hervorgehoben */
.zeiten__usp-banner {
  max-width: 680px; margin: 0 auto 32px;
  background: var(--brand); color: var(--fg-on-orange);
  border-radius: var(--radius-lg); padding: 28px 40px;
  text-align: center;
  box-shadow: var(--shadow-cta);
}
.zeiten__usp-number {
  font-size: clamp(56px, 7vw, 80px); font-weight: 700;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--fg-on-orange);
}
.zeiten__usp-label {
  font-size: 14px; font-weight: 700;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--fg-on-orange); opacity: 0.85;
  margin-top: 6px;
}
.zeiten__usp-sub {
  font-size: 14px; color: var(--fg-on-orange);
  opacity: 0.8; margin-top: 10px; font-style: italic;
  font-family: var(--font-serif);
}
.zeiten__card {
  max-width: 680px; margin: 0 auto;
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 36px 48px;
  box-shadow: var(--shadow-card);
}
.zeiten__row {
  display: grid; grid-template-columns: 1fr auto; gap: 12px 24px;
  align-items: center; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.zeiten__row:last-child { border-bottom: none; }
.zeiten__day { font-weight: 600; color: var(--sued-blue); font-size: 15px; }
.zeiten__time {
  font-variant-numeric: tabular-nums; font-weight: 700;
  color: var(--brand-deep); font-size: 15px;
}
.zeiten__note {
  margin-top: 24px; text-align: center;
  font-size: 13px; color: var(--ink-muted); font-style: italic;
}
@media (max-width: 600px) {
  .zeiten__card { padding: 28px 24px; }
  .zeiten__usp-banner { padding: 24px 24px; }
}

/* ===== KONTAKT ===== */
#kontakt { scroll-margin-top: var(--header-h); }
.contact { background: var(--sued-blue-deep); color: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__ey {
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--brand-soft); margin: 0 0 16px;
}
.contact__title { color: var(--cream); margin: 0 0 24px; }
.contact__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--brand-soft);
}
.contact__body { color: rgba(250,247,241,0.8); font-size: 17px; margin: 0 0 32px; line-height: 1.6; }
.contact__meta {
  display: grid; grid-template-columns: 100px 1fr; gap: 10px 20px;
  align-items: baseline; padding-top: 24px;
  border-top: 1px solid rgba(220,219,237,0.15);
}
.contact__meta-lbl {
  font-size: 10px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--brand-soft); font-weight: 700;
}
.contact__meta-val { color: var(--cream); font-size: 15px; }
.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(220,219,237,0.15);
  border-radius: 12px; padding: 32px;
}
.contact__form-title { color: var(--cream); font-weight: 700; font-size: 22px; margin: 0 0 24px; }
.contact__field { display: flex; flex-direction: column; margin-bottom: 18px; }
.contact__field label {
  font-size: 10px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--brand-soft);
  margin-bottom: 8px; font-weight: 700;
}
.contact__field input,
.contact__field textarea,
.contact__field select {
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(220,219,237,0.3);
  padding: 10px 0; color: var(--cream);
  font-family: var(--font-sans); font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus { border-bottom-color: var(--brand-soft); }
.contact__field textarea { min-height: 60px; resize: vertical; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact__submit {
  margin-top: 8px; width: 100%; padding: 14px 20px;
  background: var(--brand); color: var(--fg-on-orange);
  border: 0; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  letter-spacing: var(--tracking-wide); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact__submit:hover { background: var(--brand-deep); transform: translateY(-1px); }
.contact__success {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(220,219,237,0.15);
  border-radius: 12px; padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.contact__success-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.contact__success-title { font-weight: 700; font-size: 26px; color: var(--cream); margin: 0 0 6px; }
.contact__success-sub { font-size: 16px; color: rgba(250,247,241,0.8); margin: 0 0 32px; }
.contact__success-steps {
  list-style: none; padding: 0; margin: 0 0 32px; width: 100%;
  text-align: left; display: flex; flex-direction: column; gap: 14px;
}
.contact__success-step {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(250,247,241,0.85); line-height: 1.5;
}
.contact__success-step-num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(139,94,52,0.20);
  border: 1px solid var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--brand-soft);
}
.contact__success-btn {
  background: transparent; color: var(--cream);
  border: 2px solid rgba(220,219,237,0.4); border-radius: var(--radius-pill);
  padding: 12px 24px; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.contact__success-btn:hover { background: rgba(255,255,255,0.08); }
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact__row { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--sued-blue-deep); color: var(--cream);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(220,219,237,0.15);
}
.footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(220,219,237,0.15);
}
.footer__brand-logo img {
  height: 40px; margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  font-size: 11px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--brand-soft); font-weight: 700;
  margin-bottom: 14px;
}
.footer__addr { font-size: 13px; line-height: 1.6; color: rgba(250,247,241,0.65); max-width: 30ch; }
.footer__col h4 {
  font-size: 11px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--brand-soft);
  margin: 0 0 16px; font-weight: 700;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 8px; }
.footer__col a {
  font-size: 14px; color: rgba(250,247,241,0.8);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--brand-soft); }
.footer__bottom {
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; font-size: 11px;
  color: rgba(250,247,241,0.45); letter-spacing: 0.05em;
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a {
  text-transform: uppercase; font-size: 11px; font-weight: 600;
  color: rgba(250,247,241,0.45); transition: color 0.2s;
}
.footer__legal a:hover { color: var(--brand-soft); }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; } }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.06s; }
.reveal--d2 { transition-delay: 0.12s; }
.reveal--d3 { transition-delay: 0.18s; }
.reveal--d4 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
