/* ==========================================================================
   Garten Café Magnolia – Stylesheet
   ========================================================================== */

/* ------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   ------------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --dark:        #122523;
  --light:       #F6EEE3;
  --primary:     #1C5E52;
  --accent:      #d90076;
  --secondary:   #FFDCDC;
  --surface-dark: #122523;
  --surface-dark-strong: #10201e;

  /* Derived */
  --dark-80:     rgba(18,37,35,.8);
  --primary-10:  rgba(28,94,82,.1);
  --primary-20:  rgba(28,94,82,.2);
  --accent-10:   rgba(217,0,118,.1);
  --accent-90:   rgba(217,0,118,.9);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --sp-xs:  .5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  7rem;

  /* Layout */
  --max-w:  1180px;
  --radius: .75rem;
  --radius-lg: 1.5rem;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .28s;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
}

/* ------------------------------------------------------------------
   2. Reset & Base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ------------------------------------------------------------------
   3. Skip-to-content
   ------------------------------------------------------------------ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--accent);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ------------------------------------------------------------------
   4. Typography
   ------------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { max-width: 70ch; }

.serif { font-family: var(--font-serif); font-style: italic; }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #2ea88e 40%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* ------------------------------------------------------------------
   5. Layout Utilities
   ------------------------------------------------------------------ */
.container {
  width: min(var(--max-w), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding-block: var(--sp-xl);
}

.section--sm { padding-block: var(--sp-lg); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: var(--sp-md); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: var(--sp-md); }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.gap-sm { gap: var(--sp-sm); }
.gap-md { gap: var(--sp-md); }

.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }

/* ------------------------------------------------------------------
   6. Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  border-radius: inherit;
}

.btn:hover::after { opacity: 1; }
.btn:hover       { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active      { transform: translateY(0); }

/* Primary */
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(28,94,82,.3);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(28,94,82,.4); }

/* Accent */
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(217,0,118,.3);
}
.btn-accent:hover { box-shadow: 0 8px 24px rgba(217,0,118,.4); }

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

/* Ghost light */
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* Small */
.btn-sm { padding: .5rem 1.2rem; font-size: .875rem; }

/* ------------------------------------------------------------------
   7. Header / Navigation
   ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: .9rem 0;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              padding var(--dur) var(--ease);
  background: rgba(18,37,35,.86);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.site-header .site-logo,
.site-header .main-nav a,
.site-header .hamburger {
  color: rgba(255,255,255,.95);
}

.site-header .hamburger span {
  background: rgba(255,255,255,.95);
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active,
.site-header .hamburger:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.site-header.scrolled {
  background: rgba(18,37,35,.92);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), var(--shadow-sm);
  padding: .55rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: var(--dark);
  transition: opacity var(--dur) var(--ease);
  flex-shrink: 0;
}
.site-logo:hover { opacity: .8; }

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text-top    { display: block; font-size: .7rem; font-weight: 500; opacity: .7; letter-spacing: .05em; text-transform: uppercase; }
.logo-text-bottom { display: block; line-height: 1; }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.main-nav a {
  padding: .45rem .85rem;
  border-radius: 99px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.95);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,.14);
  color: #fff;
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--dur) var(--ease);
}
.hamburger:hover { background: var(--primary-10); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--light);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  padding: var(--sp-xl);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  padding: .5rem;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--primary); transform: translateX(8px); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 50%;
  transition: background var(--dur) var(--ease);
}
.mobile-nav-close:hover { background: var(--primary-10); }

@media (max-width: 768px) {
  .main-nav, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* ------------------------------------------------------------------
   8. Hero Section
   ------------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, var(--surface-dark) 0%, #1a3e3a 100%);
  color: #fff;
}

/* Animated botanical background shapes */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 70vmax;
  height: 70vmax;
  top: -20%;
  right: -15%;
  background: radial-gradient(ellipse, rgba(28,94,82,.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroBlob1 10s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 50vmax;
  height: 50vmax;
  bottom: -15%;
  left: -10%;
  background: radial-gradient(ellipse, rgba(217,0,118,.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroBlob2 12s ease-in-out infinite alternate;
}

@keyframes heroBlob1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, 4%) scale(1.06); }
}
@keyframes heroBlob2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-2%, -3%) scale(1.08); }
}

/* Leaf shapes */
.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-leaf {
  position: absolute;
  opacity: .12;
  animation: leafFloat 8s ease-in-out infinite alternate;
}

@keyframes leafFloat {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(2%, 3%) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
  animation: fadeUp .7s var(--ease) .2s both;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  animation: fadeUp .7s var(--ease) .35s both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
  animation: fadeUp .7s var(--ease) .5s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp .7s var(--ease) .65s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease) 1.5s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.7); }
}

/* ------------------------------------------------------------------
   9. Section Headers
   ------------------------------------------------------------------ */
.section-header {
  margin-bottom: var(--sp-lg);
}

.section-tag {
  display: inline-block;
  background: var(--primary-10);
  color: var(--primary);
  border-radius: 99px;
  padding: .3rem .9rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-header h2 {
  margin-bottom: .75rem;
}

.section-header p {
  color: color-mix(in srgb, var(--dark) 65%, transparent);
  font-size: 1.05rem;
}

/* ------------------------------------------------------------------
   10. USP Cards (Features)
   ------------------------------------------------------------------ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.25rem;
}

.usp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .usp-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }

.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.usp-card:hover::before { transform: scaleX(1); }
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.usp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.usp-card:hover .usp-icon { background: var(--primary-20); transform: scale(1.1) rotate(-5deg); }

.usp-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.usp-card p  { font-size: .9rem; color: color-mix(in srgb, var(--dark) 65%, transparent); }

/* ------------------------------------------------------------------
   11. Arrangements / Cards
   ------------------------------------------------------------------ */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-20), rgba(217,0,118,.1));
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card-img img { transform: scale(1.06); }

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.card-body h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.card-body p  { font-size: .9rem; color: color-mix(in srgb, var(--dark) 65%, transparent); flex: 1; margin-bottom: 1.2rem; }

.card-price {
  font-size: .85rem;
  color: color-mix(in srgb, var(--dark) 55%, transparent);
  margin-bottom: 1rem;
}
.card-price strong { font-size: 1.15rem; color: var(--dark); }

/* ------------------------------------------------------------------
   12. Opening Hours & Map
   ------------------------------------------------------------------ */
.hours-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  align-items: start;
}

@media (max-width: 800px) {
  .hours-map-grid { grid-template-columns: 1fr; }
}

.hours-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
}

[data-theme="dark"] .hours-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(0,0,0,.06); }
[data-theme="dark"] .hours-table tr { border-color: rgba(255,255,255,.07); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .65rem 0; font-size: .95rem; }
.hours-table td:last-child { text-align: right; color: var(--primary); font-weight: 600; }
.hours-table .closed td:last-child { color: #aaa; }
.hours-table .today td { font-weight: 700; color: var(--primary); }

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-top: 1.25rem;
  padding: .75rem 1rem;
  background: var(--primary-10);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--primary);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ------------------------------------------------------------------
   13. Google Review CTA
   ------------------------------------------------------------------ */
.review-section {
  background: linear-gradient(135deg, var(--surface-dark), #1a3e3a);
  color: #fff;
  text-align: center;
  padding-block: var(--sp-xl);
}

.review-section h2 { color: #fff; margin-bottom: .75rem; }
.review-section p  { color: rgba(255,255,255,.75); margin-inline: auto; margin-bottom: 2rem; }

.stars {
  display: flex;
  justify-content: center;
  gap: .2rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

/* ------------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------------ */
.site-footer {
  background: var(--surface-dark-strong);
  color: rgba(255,255,255,.82);
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: .75rem;
  max-width: 26ch;
}

.footer-logo-top {
  color: rgba(255,255,255,.6);
}

.footer-logo-bottom {
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col a  { font-size: .9rem; color: rgba(255,255,255,.76); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: #fff; }

.footer-muted {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
}

.footer-muted.spaced {
  margin-top: .5rem;
}

.footer-col li.spaced {
  margin-top: .5rem;
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.58);
}

/* ------------------------------------------------------------------
   15. Page Hero (Unterseiten)
   ------------------------------------------------------------------ */
.page-hero {
  background: var(--surface-dark);
  color: #fff;
  padding-top: calc(var(--sp-xl) + 4rem);
  padding-bottom: var(--sp-lg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(28,94,82,.4) 0%, transparent 65%);
}

.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .4; }

/* ------------------------------------------------------------------
   16. Über Uns
   ------------------------------------------------------------------ */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-align: center;
}

[data-theme="dark"] .team-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-20), rgba(217,0,118,.1));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.team-card .card-body {
  padding: 1.5rem;
}

.team-card h3 { margin-bottom: .2rem; }
.team-role {
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.team-card p { font-size: .9rem; color: color-mix(in srgb, var(--dark) 65%, transparent); margin-inline: auto; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--dur) var(--ease);
}

[data-theme="dark"] .value-item { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.value-item:hover { transform: translateX(6px); }

.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.value-item h4 { margin-bottom: .2rem; font-size: 1rem; }
.value-item p  { font-size: .875rem; color: color-mix(in srgb, var(--dark) 65%, transparent); }

/* ------------------------------------------------------------------
   17. Speisekarte – Tabs & Accordion
   ------------------------------------------------------------------ */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: var(--sp-md);
}

.menu-tab-btn {
  padding: .6rem 1.3rem;
  border-radius: 99px;
  background: rgba(0,0,0,.05);
  color: var(--dark);
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

[data-theme="dark"] .menu-tab-btn { background: rgba(255,255,255,.07); }

.menu-tab-btn.active {
  background: var(--primary);
  color: #fff;
}

.menu-tab-panel { display: none; }
.menu-tab-panel.active { display: block; }

.menu-filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: .35rem .85rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(0,0,0,.05);
  color: var(--dark);
  transition: background var(--dur) var(--ease);
}

[data-theme="dark"] .filter-btn { background: rgba(255,255,255,.07); }
.filter-btn.active { background: var(--accent); color: #fff; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}

.menu-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

[data-theme="dark"] .menu-item { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.menu-item-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-10), rgba(217,0,118,.07));
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.menu-item:hover .menu-item-img img { transform: scale(1.05); }

.menu-item-body { padding: 1rem 1.15rem 1.25rem; flex: 1; display: flex; flex-direction: column; }

.menu-item-body h4 { margin-bottom: .3rem; }
.menu-item-body p  { font-size: .85rem; color: color-mix(in srgb, var(--dark) 65%, transparent); flex: 1; margin-bottom: .75rem; }

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.menu-price { font-weight: 700; font-size: 1rem; color: var(--primary); }

.badges { display: flex; gap: .3rem; flex-wrap: wrap; }
.badge {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.badge-vegan   { background: #d4edda; color: #155724; }
.badge-veggie  { background: #d4edda; color: #155724; }
.badge-gf      { background: #fff3cd; color: #856404; }

[data-theme="dark"] .badge-vegan, [data-theme="dark"] .badge-veggie { background: rgba(21,87,36,.3); color: #6fcf7c; }
[data-theme="dark"] .badge-gf { background: rgba(133,100,4,.3); color: #f0c040; }

/* ------------------------------------------------------------------
   18. Tisch Reservieren – Form
   ------------------------------------------------------------------ */
.reservation-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-md);
  align-items: start;
}

@media (max-width: 820px) {
  .reservation-wrap { grid-template-columns: 1fr; }
}

.reservation-info {
  padding: 2.5rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 7rem;
}

.reservation-info h3 { color: #fff; margin-bottom: .75rem; }
.reservation-info p  { color: rgba(255,255,255,.7); font-size: .9rem; }

.res-info-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.res-info-item { display: flex; align-items: flex-start; gap: .7rem; }
.res-info-item .icon { font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.res-info-item span { font-size: .9rem; color: rgba(255,255,255,.7); }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
}

[data-theme="dark"] .form-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group label .required { color: var(--accent); margin-left: .15rem; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  background: var(--light);
  color: var(--dark);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  -webkit-appearance: none;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(28,94,82,.1);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .875rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary);
  margin-top: .15rem;
  cursor: pointer;
}

.form-checkbox a { color: var(--primary); text-decoration: underline; }

.field-error {
  font-size: .78rem;
  color: #c0392b;
  min-height: 1.1em;
}

.honeypot-field { display: none !important; }

/* ------------------------------------------------------------------
   19. Arrangements Page
   ------------------------------------------------------------------ */
.arrangements-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.arrangement-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

[data-theme="dark"] .arrangement-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.arrangement-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.arrangement-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-20), rgba(217,0,118,.1));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.arrangement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.arrangement-card:hover .arrangement-img img { transform: scale(1.07); }

.arrangement-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
}

.arrangement-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.arrangement-body h3 { margin-bottom: .6rem; }
.arrangement-body p  { font-size: .9rem; color: color-mix(in srgb, var(--dark) 65%, transparent); flex: 1; margin-bottom: 1.25rem; }

.arrangement-meta {
  display: flex;
  gap: 1.25rem;
  font-size: .82rem;
  color: color-mix(in srgb, var(--dark) 60%, transparent);
  margin-bottom: 1.25rem;
}
.arrangement-meta span { display: flex; align-items: center; gap: .3rem; }
.arrangement-price { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 1.25rem; }

.arrangement-includes {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: .85rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.arrangement-includes li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  margin-right: .4rem;
}

/* ------------------------------------------------------------------
   20. Impressum & Datenschutz
   ------------------------------------------------------------------ */
.legal-content {
  max-width: 720px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--sp-lg);
  margin-bottom: .75rem;
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(0,0,0,.08);
}
[data-theme="dark"] .legal-content h2 { border-color: rgba(255,255,255,.08); }
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.legal-content p  { margin-bottom: 1rem; font-size: .95rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: .95rem; margin-bottom: .3rem; }
.legal-content a  { color: var(--primary); text-decoration: underline; }
.legal-content address { font-style: normal; }

/* ------------------------------------------------------------------
   21. Toast Notifications
   ------------------------------------------------------------------ */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  pointer-events: none;
}

.toast {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  font-weight: 500;
  max-width: 340px;
  border-left: 4px solid var(--primary);
  animation: toastIn .35s var(--ease) both;
}

.toast.success { border-color: var(--primary); }
.toast.error   { border-color: #e74c3c; }
.toast.info    { border-color: var(--accent); }

.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-msg  { flex: 1; }

.toast-close {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  opacity: .6;
  cursor: pointer;
  transition: opacity var(--dur) var(--ease);
  border-radius: 4px;
}
.toast-close:hover { opacity: 1; }

@keyframes toastIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

.toast.removing {
  animation: toastOut .3s var(--ease) both;
}

@keyframes toastOut {
  to { transform: translateX(110%); opacity: 0; }
}

/* ------------------------------------------------------------------
   22. Click Spark
   ------------------------------------------------------------------ */
#click-spark-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

/* ------------------------------------------------------------------
   23. Scroll Reveal
   ------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ------------------------------------------------------------------
   24. Animations
   ------------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ------------------------------------------------------------------
   25. Prefers-reduced-motion
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  #click-spark-canvas { display: none; }
}

/* ------------------------------------------------------------------
   26. Misc Utilities
   ------------------------------------------------------------------ */
.divider {
  height: 1px;
  background: rgba(0,0,0,.08);
  margin-block: var(--sp-lg);
}
[data-theme="dark"] .divider { background: rgba(255,255,255,.08); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .7rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--primary-10);
  color: var(--primary);
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary-10), rgba(217,0,118,.06));
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border: 1px solid var(--primary-20);
}

/* Placeholder image boxes */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  background: linear-gradient(135deg, var(--primary-10), rgba(217,0,118,.07));
  color: color-mix(in srgb, var(--dark) 40%, transparent);
  font-size: .8rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}
.img-placeholder svg { opacity: .35; }

/* Page transitions */
body.page-transition-out > .site-main {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.site-main {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  animation: fadeIn .35s var(--ease);
}

/* Booking success */
.booking-success {
  text-align: center;
  padding: 3rem 2rem;
}
.booking-success .icon { font-size: 3rem; margin-bottom: 1rem; }

/* -- Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 800;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover   { transform: translateY(-3px); }

/* -- Section BG alternates */
.bg-light  { background: var(--light); }
.bg-tint   { background: color-mix(in srgb, var(--light) 50%, #fff); }
[data-theme="dark"] .bg-tint { background: color-mix(in srgb, var(--light) 50%, #111); }

/* -- Form success overlay */
.form-success-msg {
  background: var(--primary-10);
  border: 1px solid var(--primary-20);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--primary);
}
.form-success-msg h3 { margin-bottom: .5rem; }

/* ------------------------------------------------------------------
   27. Coming Soon / Under Construction
   ------------------------------------------------------------------ */
.construction-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(145deg, var(--surface-dark) 0%, #1a3e3a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.construction-page::before,
.construction-page::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.construction-page::before {
  width: 46vmax;
  height: 46vmax;
  top: -18%;
  right: -12%;
  background: radial-gradient(circle, rgba(28,94,82,.38) 0%, transparent 70%);
  animation: floatBlobA 12s ease-in-out infinite alternate;
}

.construction-page::after {
  width: 38vmax;
  height: 38vmax;
  bottom: -18%;
  left: -10%;
  background: radial-gradient(circle, rgba(217,0,118,.22) 0%, transparent 70%);
  animation: floatBlobB 14s ease-in-out infinite alternate;
}

.construction-card {
  width: min(760px, 100%);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(1.8rem, 3vw, 3rem);
  border-radius: 1.4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.construction-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(28,94,82,.35), rgba(217,0,118,.25));
  z-index: -1;
  filter: blur(24px);
  opacity: .7;
}

.construction-logo-wrap {
  width: 112px;
  height: 112px;
  margin: 0 auto 1.1rem;
  animation: logoFloat 3.4s ease-in-out infinite;
}

.construction-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}

.construction-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: rgba(255,255,255,.72);
  margin-bottom: .55rem;
  margin-inline: auto;
  text-align: center;
}

.construction-card h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.construction-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin: 0 auto 1rem;
  max-width: 56ch;
}

.construction-text {
  font-size: .98rem;
  color: rgba(255,255,255,.78);
  margin: 0 auto 1.5rem;
  max-width: 62ch;
}

.construction-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .5rem .95rem;
  border-radius: 99px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.92);
  font-size: .86rem;
  font-weight: 600;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatBlobA {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, 4%) scale(1.08); }
}

@keyframes floatBlobB {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-4%, -2%) scale(1.06); }
}
