/* ==========================================================
   Il Gelato – Eissalon Arno Mazzer KG
   Modern Redesign 2026
   ========================================================== */

/* ----------------------------------------------------------
   1. GOOGLE FONTS
   ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------------------------
   2. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  /* Farben (beibehalten) */
  --mint: #3ecfaa;
  --mint-light: #d6f5ed;
  --mint-dark: #2ba882;
  --teal: #1d9e75;
  --cream: #fdf8f4;
  --cream-dark: #f5ede3;
  --coral: #f06a47;
  --coral-light: #fde8e2;
  --dark: #1a2e27;
  --dark-mid: #223830;
  --dark-lighter: #2d4a3e;
  --text: #2c3e35;
  --text-mid: #4a6358;
  --text-light: #6b7c76;
  --white: #ffffff;

  /* Neue Typografie */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-tight: 900px;
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Schatten – subtiler, moderner */
  --shadow-xs: 0 1px 2px rgba(26, 46, 39, 0.04);
  --shadow-sm: 0 2px 8px rgba(26, 46, 39, 0.06);
  --shadow: 0 4px 20px rgba(26, 46, 39, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 46, 39, 0.12);
  --shadow-xl: 0 24px 60px rgba(26, 46, 39, 0.16);

  /* Uebergaenge */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease);
  --transition-fast: 0.15s var(--ease);

  /* Nav */
  --nav-height: 64px;

  /* Spacing */
  --section-gap: 8rem;
  --section-gap-sm: 5rem;
}

/* ----------------------------------------------------------
   3. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

::selection {
  background: var(--mint-light);
  color: var(--dark);
}

/* ----------------------------------------------------------
   4. TYPOGRAFIE
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 400; }
h4 { font-size: 1.15rem; font-weight: 400; }

p {
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
}

em {
  font-style: italic;
  color: var(--teal);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin-top: 1rem;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ----------------------------------------------------------
   5. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-tight {
  max-width: var(--container-tight);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-gap) 0;
}

.section-sm {
  padding: var(--section-gap-sm) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 207, 170, 0.2), transparent);
  border: none;
  margin: 0;
}

/* ----------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--dark);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(26, 46, 39, 0.2);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-mint {
  background: var(--mint);
  color: var(--dark);
}

.btn-mint:hover {
  background: var(--mint-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ----------------------------------------------------------
   7. BADGES
   ---------------------------------------------------------- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-klassiker {
  background: rgba(62, 207, 170, 0.12);
  color: var(--teal);
}

.badge-frucht {
  background: rgba(240, 106, 71, 0.1);
  color: #c0412a;
}

.badge-vegan {
  background: rgba(62, 207, 170, 0.08);
  color: var(--dark);
  border: 1px solid rgba(62, 207, 170, 0.2);
}

.badge-saisonal {
  background: rgba(254, 243, 226, 0.8);
  color: #b07020;
}

.badge-accent {
  background: var(--mint);
  color: var(--dark);
}

.badge-dark {
  background: var(--dark);
  color: var(--mint);
}

/* ----------------------------------------------------------
   8. NAVIGATION
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(253, 248, 244, 0.7);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(26, 46, 39, 0.06);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 248, 244, 0.95);
  box-shadow: 0 1px 0 rgba(26, 46, 39, 0.06);
}

.navbar-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.logo em {
  font-style: italic;
  color: var(--dark);
}

.logo .dot {
  color: var(--mint);
  font-size: 0.5rem;
  margin-left: 0.15rem;
  line-height: 1;
  position: relative;
  top: -4px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-nav {
  background: var(--dark) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 500 !important;
  font-size: 0.8rem !important;
  transition: all var(--transition) !important;
}

.btn-nav::after {
  display: none !important;
}

.btn-nav:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(253, 248, 244, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 2rem 2rem;
  border-bottom: 1px solid rgba(26, 46, 39, 0.06);
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--transition);
}

.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav ul li a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(26, 46, 39, 0.05);
  transition: color var(--transition);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: var(--teal);
}

.mobile-nav ul li:last-child a {
  border-bottom: none;
  color: var(--teal);
  font-weight: 500;
}

/* ----------------------------------------------------------
   9. PAGE HEADER (Unterseiten)
   ---------------------------------------------------------- */
.page-header {
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  background: var(--cream);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--mint);
}

/* Wave dividers removed - modern design uses clean lines */
.page-header-wave,
.wave-divider {
  display: none;
}

/* ----------------------------------------------------------
   10. HERO (index.html)
   ---------------------------------------------------------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(62,207,170,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--mint);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-title em {
  color: var(--teal);
  font-style: italic;
  display: inline;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

/* Pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(26, 46, 39, 0.08);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: all var(--transition);
}

.pill:hover {
  border-color: rgba(62, 207, 170, 0.3);
  background: rgba(62, 207, 170, 0.04);
}

.pill-icon {
  font-size: 0.8rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(26, 46, 39, 0.04);
}

.hero-badge-icon {
  font-size: 1.5rem;
}

.hero-badge-text {
  font-size: 0.72rem;
  color: var(--text-mid);
}

.hero-badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

/* ----------------------------------------------------------
   11. STATS BAR
   ---------------------------------------------------------- */
.stats-bar {
  background: var(--dark);
  padding: 3.5rem 0;
  position: relative;
  border-top: 4px solid transparent;
  border-image: linear-gradient(to right, #009246 33.33%, #f5f5f5 33.33%, #f5f5f5 66.66%, #CE2B37 66.66%) 1;
}

.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 0 3.5rem;
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   12. HIGHLIGHTS (index.html)
   ---------------------------------------------------------- */
.highlights {
  background: var(--cream);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 46, 39, 0.06);
  transition: all var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(62, 207, 170, 0.15);
}

.highlight-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.highlight-card-body {
  padding: 1.25rem;
}

.highlight-card-body .badge {
  margin-bottom: 0.6rem;
}

.highlight-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.highlight-card-body p {
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   13. REVIEWS
   Bewusst ANDEREN Hintergrund als craft-section (#1c1410):
   Warmes Espresso-Dunkel statt Grün-Dunkel
   ---------------------------------------------------------- */
.reviews {
  background: #18110d;
  padding: var(--section-gap) 0;
  position: relative;
}

.reviews::before {
  content: 'Recensioni';
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-style: italic;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.reviews .section-header {
  margin-bottom: 3rem;
}

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.score-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--mint);
  line-height: 1;
}

.score-stars {
  color: var(--mint);
  font-size: 1.1rem;
  display: block;
  letter-spacing: 2px;
}

.score-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 0.15rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(62, 207, 170, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(62, 207, 170, 0.15);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

.review-date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}

.review-stars {
  color: var(--mint);
  font-size: 0.8rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.6rem;
}

.review-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* Reviews – helle Variante (index.html) */
.reviews-light {
  background: var(--cream);
}

.reviews-light .section-label {
  color: var(--teal);
}

.reviews-light h2 {
  color: var(--dark);
}

.reviews-score-light .score-number {
  color: var(--teal);
}

.reviews-score-light .score-stars {
  color: var(--teal);
}

.reviews-score-light .score-label {
  color: var(--text-light);
}

.reviews-grid-light .review-card {
  background: var(--white);
  border-color: rgba(26, 46, 39, 0.07);
}

.reviews-grid-light .review-card:hover {
  background: var(--white);
  border-color: rgba(62, 207, 170, 0.2);
  box-shadow: var(--shadow-sm);
}

.reviews-grid-light .review-name {
  color: var(--dark);
}

.reviews-grid-light .review-date {
  color: var(--text-light);
}

.reviews-grid-light .review-stars {
  color: var(--teal);
}

.reviews-grid-light .review-text {
  color: var(--text-mid);
}

.review-highlight {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 500;
}

.reviews-grid-light .review-highlight {
  color: var(--teal);
}

.reviews-grid-light .review-avatar {
  background: rgba(62, 207, 170, 0.1);
  color: var(--teal);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
}

.google-badge-light {
  color: var(--text-light);
  border-color: rgba(26, 46, 39, 0.1);
}

/* ----------------------------------------------------------
   14. CTA BANNER
   ---------------------------------------------------------- */
.cta-banner {
  background: var(--mint);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.cta-banner h2 em {
  color: var(--dark-mid);
}

.cta-banner p {
  color: var(--dark-mid);
  margin-bottom: 2rem;
  font-weight: 400;
}

.cta-banner .btn-outline {
  border-color: rgba(26, 46, 39, 0.25);
  color: var(--dark);
}

.cta-banner .btn-outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--cream);
}

/* ----------------------------------------------------------
   14b. VISIT SECTION (Standort-CTA)
   ---------------------------------------------------------- */
.visit-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.visit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.visit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 39, 0.92) 0%,
    rgba(26, 46, 39, 0.75) 50%,
    rgba(26, 46, 39, 0.88) 100%
  );
}

.visit-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.visit-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.visit-text h2 em {
  color: var(--mint);
}

.visit-text p {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 440px;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Visit Cards – Öffnungszeiten */
.visit-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visit-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}

.visit-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(62, 207, 170, 0.3);
}

.visit-card-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.35rem;
}

.visit-card-top h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.visit-card-address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  font-weight: 300;
}

.visit-card-hours {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.visit-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.visit-hour-row span:first-child {
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.visit-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mint);
  transition: gap var(--transition);
}

.visit-card-link:hover {
  gap: 0.65rem;
}

/* ----------------------------------------------------------
   15. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-logo em {
  color: var(--white);
  font-style: italic;
}

.footer-logo .dot {
  color: var(--mint);
  font-size: 0.5rem;
  margin-left: 0.1rem;
  position: relative;
  top: -4px;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--mint);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--mint);
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 300;
}

.footer-hours-list li:last-child {
  border-bottom: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-legal a:hover {
  color: var(--mint);
}

/* ----------------------------------------------------------
   15b. HOMEPAGE EXTRA SECTIONS
   ---------------------------------------------------------- */

/* ── USP Section ── */
.usp-section {
  background: var(--cream);
}

.usp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.usp-visuals {
  position: relative;
}

.usp-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.usp-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usp-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

.usp-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usp-years-badge {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.usp-years-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--mint);
  line-height: 1;
  font-weight: 400;
}

.usp-years-text {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  line-height: 1.3;
}

.usp-content p {
  margin-bottom: 0.5rem;
}

.usp-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.usp-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.usp-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(62, 207, 170, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 0.1rem;
}

.usp-feature h4 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.usp-feature p {
  font-size: 0.82rem;
  margin: 0;
}

/* ── Photo Strip ── */
.photo-strip {
  overflow: hidden;
  background: var(--dark);
}

.photo-strip-inner {
  display: flex;
  height: 340px;
}

.photo-strip-item {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(0.85);
}

.photo-strip-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.photo-strip-cta {
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 180px;
}

.photo-strip-cta-inner {
  text-align: center;
  padding: 1.5rem;
}

.photo-strip-cta-inner span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

/* ── Italia Badge ── */
.italia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem 0.35rem 0.4rem;
  margin-bottom: 0.5rem;
}

.italia-flag {
  display: flex;
  border-radius: 2px;
  overflow: hidden;
  width: 20px;
  height: 14px;
  flex-shrink: 0;
}

.italia-flag span {
  flex: 1;
  display: block;
}

.italia-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── Craft / Process Section ── */
.craft-section {
  background: #1c1410;
  position: relative;
  overflow: hidden;
}

.craft-section::before {
  content: 'Artigianale';
  position: absolute;
  bottom: -1rem;
  right: -2rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-style: italic;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.craft-content h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.craft-content h2 em {
  color: var(--mint);
}

.craft-content p {
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.craft-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.craft-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.craft-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.craft-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(62, 207, 170, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  font-weight: 400;
}

.craft-step h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.craft-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin: 0;
}

/* ── Highlight card img-wrap ── */
.highlight-card-img-wrap {
  overflow: hidden;
  height: 200px;
}

.highlight-card-img-wrap img,
.highlight-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.highlight-card:hover .highlight-card-img-wrap img {
  transform: scale(1.04);
}

/* ----------------------------------------------------------
   16. ABOUT PAGE
   ---------------------------------------------------------- */
.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.4;
  border: 1px solid rgba(26, 46, 39, 0.04);
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about-content p {
  margin-bottom: 1rem;
}

/* Values Section */
.values-section {
  background: var(--white);
  padding: var(--section-gap) 0;
}

.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 46, 39, 0.06);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: rgba(62, 207, 170, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.82rem;
}

/* Timeline */
.timeline-section {
  padding: var(--section-gap) 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(62, 207, 170, 0.2);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--mint);
  position: relative;
  top: 0.5rem;
}

.timeline-spacer {
  min-height: 1px;
}

.timeline-content {
  padding: 0;
}

.timeline-year {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------
   17. SPEISEKARTE / MENU
   ---------------------------------------------------------- */
.menu-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  background: transparent;
  border: 1.5px solid rgba(26, 46, 39, 0.1);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-btn.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 46, 39, 0.06);
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(62, 207, 170, 0.12);
}

.menu-card.hidden {
  display: none;
}

.menu-card-img-wrap {
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-img {
  transform: scale(1.03);
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.menu-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.menu-card-body p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.allergen-info {
  font-size: 0.72rem !important;
  color: var(--text-light) !important;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(26, 46, 39, 0.05);
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
}

/* ----------------------------------------------------------
   18. GALERIE
   ---------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,39,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-title {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 39, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ----------------------------------------------------------
   19. STANDORTE / LOCATIONS
   ---------------------------------------------------------- */
/* Einzelner Standort (kein Grid nötig) */
.location-single {
  max-width: 680px;
  margin: 0 auto;
}

.location-card-full {
  width: 100%;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(26, 46, 39, 0.06);
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(62, 207, 170, 0.12);
}

.location-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.location-card-body {
  padding: 1.75rem;
}

.location-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.location-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.location-info-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.location-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 46, 39, 0.06);
}

.location-hours h4 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(26, 46, 39, 0.04);
  font-weight: 300;
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 500;
  color: var(--text);
}

.location-actions {
  margin-top: 1.5rem;
}

/* Location Card Header */
.location-card-header {
  background: var(--dark);
  padding: 2rem 1.75rem;
  position: relative;
}

.location-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(62, 207, 170, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.location-card-header h3 {
  color: var(--white);
  font-size: 1.4rem;
}

.location-card-header h3 em {
  color: var(--mint);
}

.location-detail {
  margin-bottom: 1.5rem;
}

.location-detail h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.location-detail p {
  font-size: 0.85rem;
}

.location-detail a {
  color: var(--teal);
  transition: color var(--transition);
}

.location-detail a:hover {
  color: var(--mint-dark);
}

/* Hours List (shared) */
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(26, 46, 39, 0.05);
  font-weight: 300;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:first-child {
  font-weight: 500;
  color: var(--text);
}

/* Location Map */
.location-map {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: var(--cream);
  border: 1px dashed rgba(26, 46, 39, 0.1);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.82rem;
}

.location-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Maps Placeholder (legacy) */
.maps-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  background: var(--white);
  border: 1px dashed rgba(26, 46, 39, 0.12);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ----------------------------------------------------------
   20. KONTAKT / CONTACT
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(26, 46, 39, 0.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-info-card h3 {
  margin-bottom: 0.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.contact-info-item p {
  font-size: 0.85rem;
}

.contact-info-item a {
  color: var(--teal);
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--mint-dark);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

.contact-social a:hover {
  color: var(--teal);
}

.contact-social a svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(26, 46, 39, 0.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(26, 46, 39, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(62, 207, 170, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(240, 106, 71, 0.08);
}

.form-error {
  display: block;
  font-size: 0.72rem;
  color: var(--coral);
  margin-top: 0.3rem;
  font-weight: 400;
  min-height: 0;
}

.form-error-msg {
  display: none;
  font-size: 0.72rem;
  color: var(--coral);
  margin-top: 0.3rem;
  font-weight: 400;
}

.form-error-msg.show {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.85rem;
}

/* Success Message */
.form-success {
  background: rgba(62, 207, 170, 0.08);
  border: 1px solid rgba(62, 207, 170, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 500;
}

.success-message {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-message.show {
  display: block;
}

/* ----------------------------------------------------------
   21. ANIMATIONS
   ---------------------------------------------------------- */

/* Fade In */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ----------------------------------------------------------
   22. RESPONSIVE
   ---------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-gap: 5rem;
    --section-gap-sm: 3.5rem;
  }

  .hero-inner {
    gap: 3rem;
  }

  .hero-img {
    height: 420px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .usp-inner {
    gap: 3rem;
  }

  .usp-img-secondary {
    right: -1rem;
  }

  .craft-inner {
    gap: 3rem;
  }

  .photo-strip-inner {
    height: 260px;
  }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding: 2rem 0;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-tag::before {
    display: none;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-img {
    height: 320px;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
  }

  .stats-inner {
    gap: 0;
    flex-wrap: wrap;
  }

  .stat-item {
    padding: 0 2rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.span-2,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page-header {
    padding: calc(var(--nav-height) + 3rem) 0 3rem;
  }

  .visit-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visit-text p {
    max-width: 100%;
  }

  .visit-cards {
    flex-direction: row;
  }

  .visit-card {
    flex: 1;
  }

  .usp-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .usp-img-secondary {
    right: 1rem;
    bottom: -1rem;
  }

  .usp-years-badge {
    right: 0;
  }

  .craft-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .photo-strip-inner {
    height: 220px;
  }

  .photo-strip-item:nth-child(4) {
    display: none;
  }

  .visit-cards {
    flex-direction: column;
  }

  .about-img {
    height: 350px;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .timeline-spacer {
    display: none;
  }

  .timeline-dot {
    order: -1;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-img {
    height: 260px;
  }

  .stats-inner {
    gap: 0;
    row-gap: 2rem;
  }

  .stat-item {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.span-2,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .cta-banner {
    padding: 3.5rem 0;
  }

  .section {
    padding: 4rem 0;
  }
}

/* ============================================================
   TOOLS – WETTER WIDGET
   ============================================================ */
.wetter-section {
  position: relative;
  background: linear-gradient(135deg, #0a6147 0%, #1d9e75 50%, #3ecfaa 100%);
  padding: 4.5rem 0;
  overflow: hidden;
}

.wetter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 20%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.wetter-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

/* — Weather panel (left) — */
.wetter-weather-panel {
  flex: 1;
  color: #fff;
}

.wetter-city-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  margin: 0 0 0.9rem;
}

.wetter-temp-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.wetter-icon-xl {
  font-size: 3.75rem;
  line-height: 1;
}

.wetter-temp {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.wetter-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* — Separator — */
.wetter-sep {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.wetter-sep::before,
.wetter-sep::after {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.22);
}

.wetter-cone {
  font-size: 2rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

/* — Recommendation panel (right) — */
.wetter-rec-panel {
  flex: 1.3;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  color: #fff;
}

.wetter-rec-eyebrow {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}

.wetter-rec-name {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.wetter-rec-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.78);
  margin: 0 0 1.4rem;
  line-height: 1.55;
}

.wetter-cta {
  display: inline-block;
  background: #fff;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wetter-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.wetter-loading {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-style: italic;
}

/* ============================================================
   TOOLS – GESCHMACKS-FINDER (Quiz)
   ============================================================ */
@keyframes floatPill {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -3deg)); }
  50%       { transform: translateY(-10px) rotate(var(--rot, -3deg)); }
}

@keyframes quizGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,207,170,0.4), 0 8px 32px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(62,207,170,0), 0 8px 32px rgba(0,0,0,0.4); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  40%       { transform: translateY(-12px) scale(1.08); }
  60%       { transform: translateY(-6px) scale(1.04); }
}

.quiz-teaser-section {
  background: linear-gradient(145deg, #0b1f17 0%, #112d20 45%, #0d2318 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial-Glow Mitte */
.quiz-teaser-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(62,207,170,0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Dekorativer Hintergrundtext */
.quiz-teaser-section::after {
  content: 'Gusto';
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  font-family: var(--font-display);
  font-size: 16rem;
  font-style: italic;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

/* Schwebende Sorten-Pills */
.quiz-float-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.qfp {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border-radius: 2rem;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  white-space: nowrap;
  animation: floatPill 4s ease-in-out infinite;
}

.qfp-1 { top: 12%; left: 6%;  --rot: -4deg; animation-delay: 0s; }
.qfp-2 { top: 20%; right: 7%; --rot:  3deg; animation-delay: 0.7s; }
.qfp-3 { top: 55%; left: 4%;  --rot: -2deg; animation-delay: 1.4s; }
.qfp-4 { top: 70%; right: 5%; --rot:  5deg; animation-delay: 0.3s; }
.qfp-5 { bottom: 15%; left: 14%; --rot: -3deg; animation-delay: 1s; }
.qfp-6 { bottom: 18%; right: 12%; --rot:  2deg; animation-delay: 1.8s; }

.quiz-teaser-inner {
  position: relative;
  z-index: 1;
}

.quiz-teaser-icon {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
  animation: iconBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(62,207,170,0.35));
}

.quiz-teaser-section .section-label {
  color: var(--mint);
  display: block;
  margin-bottom: 0.75rem;
}

.quiz-teaser-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.quiz-teaser-section h2 em {
  color: var(--mint);
}

.quiz-teaser-section p {
  color: rgba(255,255,255,0.5);
  max-width: 380px;
  margin: 0 auto 2.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Großer CTA-Button mit Glow */
.quiz-start-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--mint);
  color: var(--dark);
  border: none;
  border-radius: 3rem;
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  animation: quizGlow 2.5s ease-in-out infinite;
  letter-spacing: 0.01em;
}

.quiz-start-cta:hover {
  background: #2fbf96;
  transform: translateY(-2px) scale(1.02);
}

.quiz-start-cta svg {
  transition: transform 0.2s;
}

.quiz-start-cta:hover svg {
  transform: translateX(4px);
}

.quiz-meta-hint {
  margin-top: 1.25rem !important;
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.3) !important;
  letter-spacing: 0.03em;
}

/* Quiz Modal */
.quiz-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,26,20,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.quiz-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.quiz-modal-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.quiz-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(26,46,39,0.06);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 0.5rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.quiz-modal-close:hover {
  background: rgba(26,46,39,0.1);
}

.quiz-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.quiz-progress-dot {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: rgba(26,46,39,0.1);
  transition: background 0.35s;
}

.quiz-progress-dot.done {
  background: var(--mint);
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-question {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.quiz-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.quiz-option-btn {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 1rem 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  width: 100%;
}

.quiz-option-btn:hover {
  border-color: var(--mint);
  background: rgba(62,207,170,0.06);
  transform: translateY(-1px);
}

.quiz-option-btn.selected {
  border-color: var(--teal);
  background: rgba(29,158,117,0.08);
}

.quiz-option-emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.quiz-option-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  line-height: 1.3;
}

.quiz-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

/* Quiz Result */
.quiz-result {
  text-align: center;
  animation: fadeUp 0.4s ease;
}

.quiz-result-check {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.quiz-result-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}

.quiz-result-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--dark);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.quiz-result-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 320px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.quiz-result-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.quiz-result-again {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-body);
  margin-top: 1rem;
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================================
   TOOLS – ALLERGEN-FILTER
   ============================================================ */
.allergen-filter-wrap {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: #fff8f5;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240,106,71,0.12);
}

.allergen-filter-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.allergen-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.allergen-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  background: var(--white);
  border: 1.5px solid rgba(26,46,39,0.1);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s;
  user-select: none;
  line-height: 1.6;
}

.allergen-label:hover {
  border-color: var(--coral);
}

.allergen-label input {
  width: 13px;
  height: 13px;
  accent-color: var(--coral);
  cursor: pointer;
}

.allergen-label.active {
  border-color: var(--coral);
  background: rgba(240,106,71,0.07);
  color: #c0441f;
}

.menu-card.allergen-hidden {
  opacity: 0.18;
  pointer-events: none;
  filter: grayscale(0.5);
  transition: opacity 0.3s, filter 0.3s;
}

.allergen-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  display: none;
  grid-column: 1/-1;
}

@media (max-width: 768px) {
  .wetter-section {
    padding: 3rem 0;
  }

  .wetter-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .wetter-sep {
    display: none;
  }

  .wetter-temp {
    font-size: 3.5rem;
  }

  .wetter-rec-panel {
    padding: 1.5rem 1.75rem;
  }

  .quiz-float-pills {
    display: none;
  }

  .quiz-teaser-icon {
    font-size: 3.5rem;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .quiz-modal-inner {
    padding: 1.75rem 1.5rem;
  }

  .allergen-filter-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
