/* ============================================================
   Sweeties Reisegewerbe – Stylesheet
   Übertragen aus dem Next.js/Tailwind-Design (globals.css + Komponenten)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;

  /* --- Farben (1:1 aus globals.css übernommen) --- */
  --background: oklch(0.96 0.018 92);
  --foreground: oklch(0.4 0.045 55);
  --card: oklch(0.985 0.012 92);
  --card-foreground: oklch(0.4 0.045 55);
  --primary: oklch(0.74 0.09 18);
  --primary-foreground: oklch(0.99 0.01 90);
  --secondary: oklch(0.82 0.08 140);
  --secondary-foreground: oklch(0.38 0.05 130);
  --muted: oklch(0.93 0.02 92);
  --muted-foreground: oklch(0.55 0.035 60);
  --accent: oklch(0.86 0.05 235);
  --accent-foreground: oklch(0.38 0.05 250);
  --destructive: oklch(0.577 0.245 27.325);
  --border: oklch(0.88 0.02 85);

  /* --- Radien --- */
  --radius: 1rem;
  --radius-sm: calc(var(--radius) * 0.6);
  --radius-md: calc(var(--radius) * 0.8);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) * 1.4);
  --radius-2xl: calc(var(--radius) * 1.8);
  --radius-3xl: calc(var(--radius) * 2.2);
  --radius-4xl: calc(var(--radius) * 2.6);

  /* --- Typografie --- */
  --font-sans: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Baloo 2', ui-sans-serif, system-ui, sans-serif;

  /* --- Layout --- */
  --max-width: 72rem; /* max-w-6xl */
  --max-width-md: 56rem; /* max-w-4xl */
  --max-width-sm: 42rem; /* max-w-2xl */
}

/* ---------- Reset & Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

picture {
  display: contents;
}

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 1.5rem; }
}

.section-pad {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .section-pad { padding-block: 5rem; }
}

/* Sichtbarer Fokus-Ring (Barrierefreiheit) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Eyebrow / Kicker ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.section-heading {
  max-width: var(--max-width-sm);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: center;
}
.section-heading h2 { margin-top: 0.5rem; }
.section-heading p {
  margin-top: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

h2.heading-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--foreground);
}
@media (min-width: 768px) {
  h2.heading-lg { font-size: 2.25rem; }
}

/* ---------- Buttons / CTAs ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.12);
}
.btn-secondary {
  background: var(--background);
  color: var(--primary);
  border-color: color-mix(in oklch, var(--primary) 40%, transparent);
}
.btn-secondary:hover {
  background: color-mix(in oklch, var(--primary) 10%, transparent);
}
.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: color-mix(in oklch, var(--card) 95%, transparent);
  backdrop-filter: blur(8px);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand__logo {
  position: relative;
  display: block;
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--secondary) 60%, transparent);
}
.brand__logo img { height: 100%; width: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .brand__logo { height: 4rem; width: 4rem; }
}
.brand__text { display: none; flex-direction: column; line-height: 1; }
@media (min-width: 640px) {
  .brand__text { display: flex; }
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .brand__name { font-size: 1.5rem; }
}
.brand__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .main-nav { display: flex; }
}
.main-nav a,
.mobile-nav a {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in oklch, var(--foreground) 80%, transparent);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover,
.mobile-nav a:hover {
  background: color-mix(in oklch, var(--primary) 12%, transparent);
  color: var(--primary);
}

.nav-toggle {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--foreground);
}
.nav-toggle:hover { background: color-mix(in oklch, var(--primary) 12%, transparent); }
@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: var(--card);
  padding: 0.5rem 1rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { display: block; padding: 0.75rem 1rem; font-size: 1rem; }
@media (min-width: 768px) {
  .mobile-nav { display: none !important; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero__top { background: var(--card); }
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 2rem;
  text-align: center;
}
.badge {
  border-radius: 999px;
  background: color-mix(in oklch, var(--secondary) 40%, transparent);
  padding: 0.375rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary-foreground);
}
.hero h1 {
  max-width: 60rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--foreground);
}
@media (min-width: 768px) { .hero h1 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 2.25rem; } }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero__image {
  position: relative;
  aspect-ratio: 16 / 7;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Celebrate banner
   ============================================================ */
.celebrate { background: var(--accent); }
.celebrate__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-block: 3.5rem;
  text-align: center;
}
@media (min-width: 768px) { .celebrate__inner { padding-block: 4rem; } }
.celebrate__title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: color-mix(in oklch, var(--accent-foreground) 70%, transparent);
}
.celebrate__title-row svg { width: 2rem; height: 2rem; }
.celebrate__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent-foreground);
}
@media (min-width: 768px) { .celebrate__title { font-size: 2.25rem; } }
.celebrate__sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent-foreground);
}
.celebrate__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}
.celebrate__tags li { display: flex; align-items: center; gap: 0.75rem; }
.celebrate__tag {
  border-radius: 999px;
  background: color-mix(in oklch, var(--card) 70%, transparent);
  padding: 0.375rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent-foreground);
}
.celebrate__tags svg {
  display: none;
  width: 1rem;
  height: 1rem;
  color: color-mix(in oklch, var(--accent-foreground) 50%, transparent);
}
@media (min-width: 640px) {
  .celebrate__tags svg { display: block; }
}

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: var(--card);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--card) 90%, transparent);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
}
.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}
.service-card__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}
.service-card__body p {
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ============================================================
   Pricing
   ============================================================ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--secondary) 30%, transparent);
  padding: 0.375rem;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.625rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: color-mix(in oklch, var(--foreground) 70%, transparent);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.tab-btn svg { width: 1rem; height: 1rem; }
.tab-btn:hover { color: var(--primary); }
.tab-btn.is-active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
}

.tab-panel {
  margin-top: 1.5rem;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: var(--card);
  padding: 1.5rem;
}
@media (min-width: 768px) { .tab-panel { padding: 2rem; } }
.tab-panel__intro {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}
.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
}
.price-list li:last-child { border-bottom: none; }
.price-list .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
}
.price-list .note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.price-pill {
  flex-shrink: 0;
  border-radius: 999px;
  background: color-mix(in oklch, var(--primary) 10%, transparent);
  padding: 0.375rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}
.tab-panel__footnote {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================
   About
   ============================================================ */
.about { background: color-mix(in oklch, var(--secondary) 25%, transparent); }
.about__inner {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .about__inner { grid-template-columns: 1fr 1fr; }
}
.about__image {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__kicker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.about__kicker .brand__logo { height: 3rem; width: 3rem; }
.about p.lead {
  margin-top: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}
.about-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .about-points { grid-template-columns: repeat(3, 1fr); }
}
.about-points li {
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: var(--card);
  padding: 1rem;
}
.about-points svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.about-points .label {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--foreground);
}
.about-points .text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ============================================================
   Request builder
   ============================================================ */
.request { background: color-mix(in oklch, var(--secondary) 25%, transparent); }
.request-form {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .request-form { grid-template-columns: 1.5fr 1fr; }
}
.panel {
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: var(--card);
  padding: 1.5rem;
}
@media (min-width: 768px) { .panel { padding: 2rem; } }
.panel--sticky { position: sticky; top: 6rem; }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.field select,
.field input,
.field textarea {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
}
.field select:focus,
.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--primary) 40%, transparent);
}
.field textarea { resize: none; }

.mode-switch-label { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--background);
  padding: 0.25rem;
}
.mode-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.625rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: color-mix(in oklch, var(--foreground) 70%, transparent);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mode-btn svg { width: 1rem; height: 1rem; }
.mode-btn:hover { color: var(--primary); }
.mode-btn.is-active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
}

.pauschal-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.paket-btn {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.paket-btn:hover { border-color: color-mix(in oklch, var(--primary) 50%, transparent); }
.paket-btn.is-active {
  border-color: var(--primary);
  background: color-mix(in oklch, var(--primary) 8%, transparent);
}
.paket-btn__check {
  margin-top: 0.125rem;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.paket-btn.is-active .paket-btn__check {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}
.paket-btn__check svg { width: 0.875rem; height: 0.875rem; display: none; }
.paket-btn.is-active .paket-btn__check svg { display: block; }
.paket-btn__body { flex: 1; }
.paket-btn__top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.paket-btn__name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--foreground); }
.paket-btn__price { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--primary); }
.paket-btn__price span { font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground); }
.paket-btn__desc { margin-top: 0.25rem; display: block; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.personen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
}
.personen-row span { font-weight: 600; color: var(--foreground); }

.produkte-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.produkt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
}
.produkt-row .name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--foreground); }
.produkt-row .meta { font-size: 0.875rem; color: var(--muted-foreground); }

.stepper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.25rem;
}
.stepper button {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--foreground);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.stepper button:hover { background: color-mix(in oklch, var(--primary) 12%, transparent); color: var(--primary); }
.stepper button svg { width: 1rem; height: 1rem; }
.stepper .value {
  width: 2rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
  font-variant-numeric: tabular-nums;
}

.summary-box {
  border-radius: var(--radius-2xl);
  background: color-mix(in oklch, var(--primary) 8%, transparent);
  padding: 1.25rem;
  text-align: center;
}
.summary-box .label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted-foreground);
}
.summary-box .amount {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--primary);
}
.summary-box .hint {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-fields { display: grid; gap: 1rem; margin-top: 1.25rem; }
.contact-fields .two-col { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .contact-fields .two-col { grid-template-columns: 1fr 1fr; }
}

.form-note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--destructive);
}
.form-success {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--secondary-foreground);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--card); }
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.footer-lead p {
  margin-top: 1rem;
  max-width: 28rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}
.contact-list { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .contact-list { grid-template-columns: 1fr 1fr; }
}
.contact-list li:last-child { grid-column: 1 / -1; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: var(--background);
  padding: 1.25rem;
  transition: border-color 0.2s ease;
}
a.contact-card:hover { border-color: color-mix(in oklch, var(--primary) 50%, transparent); }
.contact-card svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; color: var(--primary); }
.contact-card .k { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; color: var(--muted-foreground); }
.contact-card .v { display: block; margin-top: 0.125rem; font-family: var(--font-display); font-weight: 700; color: var(--foreground); }

.footer-bottom {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  padding-top: 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand .brand__logo { height: 2.5rem; width: 2.5rem; }
.footer-brand span.name { font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; letter-spacing: 0.02em; color: var(--foreground); }
.footer-copy { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-legal { display: flex; gap: 1rem; font-size: 0.875rem; font-weight: 600; color: var(--muted-foreground); }
.footer-legal a:hover { color: var(--primary); }

/* ---------- Statische Rechtsseiten (Impressum/Datenschutz) ---------- */
.legal-page .container { padding-block: 4rem; max-width: 48rem; }
.legal-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.legal-page p { line-height: 1.7; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
}
