/* ============================================================
   Party-Küche Heuer — Redesign 2026
   Shared Stylesheet für index.html + anfrage.html
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Marken-Farben (leicht modernisiert) */
  --brand-blue:        #0a4d80;
  --brand-blue-dark:   #083d66;
  --brand-blue-light:  #e8f1f8;
  --brand-red:         #c8102e;
  --brand-red-dark:    #a00d25;

  /* Neutrale Farben (warm) */
  --cream:             #faf7f2;
  --cream-dark:        #f2ece2;
  --ink:               #1a2332;
  --ink-soft:          #475569;
  --ink-muted:         #64748b;
  --line:              #e5e0d6;
  --line-strong:       #cbd5e1;
  --white:             #ffffff;

  /* Akzente */
  --gold:              #b88a3e;

  /* Radius & Schatten */
  --radius-sm:         6px;
  --radius:            12px;
  --radius-lg:         20px;
  --shadow-sm:         0 1px 2px rgba(10, 35, 66, 0.06);
  --shadow:            0 4px 16px rgba(10, 35, 66, 0.08);
  --shadow-lg:         0 12px 40px rgba(10, 35, 66, 0.12);

  /* Typografie */
  --font-heading:      "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --container:         1140px;
  --section-pad:       clamp(48px, 8vw, 96px) 20px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-red); }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
p  { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.65;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-pad); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  text-decoration: none;
}
.brand:hover { color: var(--brand-blue); }
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .brand-logo { height: 38px; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-cta {
  padding: 12px 22px;
  font-size: 0.92rem;
}
.header-phone {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { width: 18px; height: 18px; color: var(--brand-blue); }
.header-phone:hover { color: var(--brand-red); }

/* Mobile Header Adjustments */
@media (max-width: 640px) {
  .site-header .wrap { padding: 12px 16px; gap: 12px; }
  .brand-text { display: none; }
  .header-right { gap: 10px; }
  .header-phone { display: none; }
  .header-cta { padding: 10px 16px; font-size: 0.88rem; }
  .header-cta svg { display: none; }
}

/* Footer logo */
.site-footer-logo {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 14px;
  border-radius: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--brand-red);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
}
.btn-primary:hover {
  background: var(--brand-red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--brand-blue);
  border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-1px);
}
.btn-lg { padding: 20px 40px; font-size: 1.05rem; }
.cta-note {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(32px, 5vw, 48px) 20px clamp(48px, 7vw, 80px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.hero h1 { margin-bottom: 20px; color: var(--ink); }
.hero h1 em {
  font-style: italic;
  color: var(--brand-blue);
  font-weight: 600;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 48ch;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-stats {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,35,66,0) 60%, rgba(10,35,66,0.25) 100%);
}
.hero-media-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}
.hero-media-tag svg {
  width: 28px; height: 28px;
  color: var(--brand-red);
  flex-shrink: 0;
}
.hero-media-tag strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.hero-media-tag span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 4 / 3; order: -1; }
}

/* ---------- Section-Intro (zentriert) ---------- */
.section-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-intro p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Benefits / Features ---------- */
.bg-white { background: var(--white); }
.bg-cream-dark { background: var(--cream-dark); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-blue-light);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.feature-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ---------- Prozess (3 Schritte) ---------- */
.process-section { background: var(--brand-blue); color: var(--white); position: relative; overflow: hidden; }
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.process-section .container { position: relative; z-index: 1; }
.process-section h2,
.process-section .eyebrow { color: var(--white); }
.process-section .eyebrow { color: rgba(255,255,255,0.75); }
.process-section .section-intro p { color: rgba(255,255,255,0.85); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(4px);
}
.process-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.process-step h3 { color: var(--white); margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }

/* ---------- Trust / Stats ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.trust-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.4;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--gold);
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-text {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.author-name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.author-role { font-size: 0.82rem; color: var(--ink-muted); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--brand-blue-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a4d80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-body {
  padding: 0 24px 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-body a { color: var(--brand-blue); font-weight: 600; }

/* ---------- Final CTA Section ---------- */
.final-cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(10, 77, 128, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 16, 46, 0.15) 0%, transparent 50%);
}
.final-cta .container { position: relative; z-index: 1; max-width: 760px; }
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); }
.final-cta .lead { color: rgba(255,255,255,0.8); margin: 20px auto 36px; }
.final-cta .eyebrow { color: rgba(255,255,255,0.7); }
.final-cta-list {
  max-width: 520px;
  margin: 0 auto 40px;
  text-align: left;
}
.final-cta-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.98rem;
}
.final-cta-list svg {
  width: 22px; height: 22px;
  color: #22c55e;
  flex-shrink: 0;
}
.final-cta-contact {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.final-cta-phones {
  display: flex;
  gap: 8px 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}
.final-cta-phones a { color: var(--white); }
.final-cta-phones a:hover { color: var(--brand-red); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-blue-dark);
  color: var(--white);
  padding: 40px 20px 32px;
  text-align: center;
  font-size: 0.88rem;
}
.site-footer p,
.site-footer span { color: var(--white); }
.site-footer a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.site-footer a:hover { color: var(--brand-red); }
.site-footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
.site-footer-links {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.site-footer p.site-footer-copyright {
  margin-top: 16px;
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* ============================================================
   ANFRAGE-SEITE
   ============================================================ */

.offer-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: clamp(32px, 5vw, 56px) 20px 24px;
}
.offer-hero .container { text-align: center; max-width: 720px; }
.offer-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.offer-hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

.offer-layout {
  padding: 48px 20px 80px;
  background: var(--cream-dark);
}
.offer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-sidebar { order: 2; }
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form-card-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.form-card-head h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-card-head p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
}
.form-card-head .required-mark { color: var(--brand-red); font-weight: 700; }

.form-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-blue);
  margin-bottom: 18px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field label .optional {
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 0.82rem;
}
.field .required-mark { color: var(--brand-red); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(10, 77, 128, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

/* Radio group (card style) */
.radio-stack { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  background: var(--white);
}
.radio-option:hover { border-color: var(--brand-blue); background: var(--brand-blue-light); }
.radio-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-blue);
  margin-top: 2px;
  flex-shrink: 0;
}
.radio-option:has(input:checked) {
  border-color: var(--brand-blue);
  background: var(--brand-blue-light);
}
.radio-title {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 2px;
}
.radio-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Checkbox */
.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
}
.check-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-blue);
  flex-shrink: 0;
}
.check-row label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
}
.check-row a { color: var(--brand-blue); font-weight: 600; }

.submit-wrap { margin-top: 12px; }
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  background: var(--brand-red);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.28);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.submit-btn svg { width: 20px; height: 20px; }
.submit-btn:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.38);
}

/* ---------- Offer Sidebar ---------- */
.offer-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) { .offer-sidebar { position: static; } }

.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.side-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--ink);
}

.step-list { display: flex; flex-direction: column; gap: 16px; }
.step-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-bubble {
  width: 30px; height: 30px;
  background: var(--brand-blue);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.step-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.step-list span:not(.step-bubble) { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.5; }

.trust-list { display: flex; flex-direction: column; gap: 14px; }
.trust-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.trust-list svg {
  width: 20px; height: 20px;
  color: var(--brand-blue);
  flex-shrink: 0;
}
.trust-list strong { color: var(--ink); }

.guarantee-card {
  background: var(--brand-blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.guarantee-card svg {
  width: 28px; height: 28px;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.guarantee-card span {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.5;
}

.phone-card {
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.phone-card-small {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.phone-card-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin: 2px 0 6px;
}
.phone-card-number:hover { color: var(--brand-red); }
.phone-card-hours {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ---------- Occasions Gallery ---------- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .occasions-grid { grid-template-columns: 1fr; gap: 20px; }
}
.occasion-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  box-shadow: 0 12px 32px rgba(10, 40, 70, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(10, 40, 70, 0.16);
}
.occasion-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.occasion-card:hover img { transform: scale(1.04); }
.occasion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 50, 0) 35%, rgba(10, 25, 45, 0.82) 100%);
}
.occasion-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px;
  color: #fff;
  z-index: 1;
}
.occasion-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.occasion-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

/* ---------- Panorama / Feast Band ---------- */
.panorama {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  overflow: hidden;
  background: var(--ink);
  padding: 0;
}
.panorama img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 45, 0.45) 0%, rgba(10, 25, 45, 0.65) 100%);
}
.panorama-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  color: #fff;
  max-width: 880px;
  margin: 0 auto;
}
.panorama-content .eyebrow {
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.panorama-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  max-width: 820px;
  margin: 0 0 16px;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.panorama-content p {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

/* ---------- Status Pages (Danke / Fehler) ---------- */
.status-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.status-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(10, 40, 70, 0.06);
}
.status-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status-icon svg { width: 40px; height: 40px; }
.status-success .status-icon {
  background: #e6f4ea;
  color: #1e7e34;
}
.status-error .status-icon {
  background: #fde8ea;
  color: var(--brand-red);
}
.status-card .eyebrow { margin-bottom: 12px; }
.status-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: balance;
}
.status-lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}
.status-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 440px;
  margin: 0 auto 36px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.status-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.status-step-num {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status-step strong { display: block; color: var(--ink); font-size: 0.98rem; }
.status-step span   { display: block; color: var(--ink-muted); font-size: 0.88rem; margin-top: 2px; }

.status-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 32px;
}
@media (max-width: 520px) {
  .status-contact-grid { grid-template-columns: 1fr; }
}
.status-contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.status-contact-box:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}
.status-contact-box svg { width: 24px; height: 24px; color: var(--brand-blue); }
.status-contact-box strong { font-size: 1.02rem; }
.status-contact-box span   { font-size: 0.85rem; color: var(--ink-muted); }

.status-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 520px) {
  .status-card { padding: 36px 20px; }
  .status-actions .btn { width: 100%; }
}

/* ---------- Utilities ---------- */
@media (max-width: 520px) {
  .btn { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
}
