/* ═══════════════════════════════════════════════════════════
   GELATERIA GIRASOLE — Design Tokens
   Warme, sonnige Gelateria-Identität: Sonnenblumengelb, Pistazie,
   Aprikosenrot auf cremeweißem Grund. Signature-Element: die
   wellenförmige "Gelato-Drip"-Trennlinie zwischen Sektionen.
   ═══════════════════════════════════════════════════════════ */

   :root {
    --cream:         #FBF3E7;
    --cream-deep:     #F4E8D6;
    --espresso:       #2B1D14;
    --espresso-soft:  #4A3626;
    --pistachio:      #4C6B3F;
    --pistachio-deep: #33482A;
    --sunflower:      #F2A900;
    --sunflower-deep: #D69200;
    --apricot:        #E4632B;
    --apricot-deep:   #C24F1E;
    --fragola:        #F0A6A0;
    --white:          #FFFFFF;
  
    --border:      #E4D3B8;
    --border-soft: rgba(43, 29, 20, 0.1);
  
    --radius:    10px;
    --radius-lg: 22px;
    --shadow-soft: 0 10px 34px rgba(43, 29, 20, 0.10);
    --shadow-deep: 0 20px 50px rgba(43, 29, 20, 0.22);
  
    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Nunito', system-ui, sans-serif;
  }
  
  /* ── Reset ──────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; }
  
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* ── Fonts ──────────────────────────────────────── */
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Fraunces-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Fraunces-700.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Fraunces-500i.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Nunito-400.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Nunito-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Nunito-700.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/Nunito-800.woff2') format('woff2');
  }
  
  /* ── Focus ──────────────────────────────────────── */
  a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid var(--apricot);
    outline-offset: 3px;
    border-radius: 4px;
  }
  
  /* ── Signature: Gelato-Drip Divider ────────────────
     Wellenförmige Kante, wie der Rand eines Eisglases
     oder ein tropfender Löffel — trennt Sektionen statt
     einer geraden Linie. */
  .drip-divider {
    width: 100%;
    height: 46px;
    display: block;
    line-height: 0;
  }
  .drip-divider svg { width: 100%; height: 100%; display: block; }
  
  /* ── Layout helpers ─────────────────────────────── */
  .section-eyebrow {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--apricot-deep);
    margin-bottom: 0.5rem;
    display: block;
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--espresso);
    margin-bottom: 1.75rem;
  }
  .section-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem;
  }
  
  /* ── Header ─────────────────────────────────────── */
  #site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.75rem;
    background: rgba(251, 243, 231, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
  }
  
  .header-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--espresso);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .header-logo .logo-mark {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  .header-logo span { color: var(--apricot); font-style: italic; }
  
  .header-nav {
    display: flex;
    align-items: center;
    gap: 1.9rem;
  }
  .header-nav a {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--espresso-soft);
    transition: color 0.15s;
  }
  .header-nav a:hover { color: var(--apricot-deep); }
  
  .btn-scoop {
    background: var(--apricot);
    color: var(--white) !important;
    padding: 0.6rem 1.3rem;
    border-radius: 99px;
    font-weight: 800 !important;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s, background 0.15s;
  }
  .btn-scoop:hover { background: var(--apricot-deep); transform: translateY(-1px); }
  
  .burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
  }
  .burger-btn span {
    width: 22px;
    height: 2.5px;
    background: var(--espresso);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .burger-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger-btn.open span:nth-child(2) { opacity: 0; }
  .burger-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  
  #nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  #nav-overlay.open { transform: translateY(0); }
  #nav-overlay a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  /* ── Banner + Events (kombiniert) ──────────────────
     Ein Block: Bannertext oben als Streifen, darunter
     automatisch die nächsten Veranstaltungen. Ist der
     Banner deaktiviert, verschwindet der GESAMTE Block
     inkl. Events — siehe main.js initBannerEvents(). */
  #banner-events { display: none; }
  #banner-events.active { display: block; }
  
  .banner-strip {
    padding: 0.85rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--white);
    background: var(--pistachio);
  }
  .banner-strip.warnung { background: var(--apricot-deep); }
  
  .events-strip {
    background: var(--cream-deep);
    border-bottom: 1px solid var(--border-soft);
    padding: 1.5rem 1.5rem 1.1rem;
    position: relative;
  }
  .events-strip-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 10px;
    scrollbar-width: thin;
  }
  .event-chip {
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.65rem 1rem;
    min-width: 240px;
    position: relative;
  }
  .event-chip .event-date {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--apricot-deep);
    display: block;
    margin-bottom: 0.2rem;
  }
  .event-chip .event-title {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.15rem;
  }
  .event-chip .event-desc {
    font-size: 0.78rem;
    color: var(--espresso-soft);
    display: block;
  }
  .event-chip.ausgebucht { opacity: 0.75; }
  .event-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--espresso);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
  }
  
  /* ── Hero ───────────────────────────────────────── */
  #hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43,29,20,0.05) 0%, rgba(43,29,20,0.65) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 3rem 1.75rem 5rem;
    max-width: 720px;
  }
  .hero-eyebrow {
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sunflower);
    margin-bottom: 0.9rem;
  }
  .hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.05;
    margin-bottom: 1.1rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--sunflower);
  }
  .hero-tagline {
    font-size: 1.08rem;
    opacity: 0.92;
    max-width: 480px;
    margin-bottom: 1.9rem;
  }
  .hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--apricot);
    color: var(--white);
    padding: 0.85rem 1.6rem;
    border-radius: 99px;
    font-weight: 800;
    box-shadow: var(--shadow-deep);
    transition: transform 0.15s, background 0.15s;
  }
  .btn-primary:hover { background: var(--apricot-deep); transform: translateY(-2px); }
  .btn-secondary {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 0.85rem 1.6rem;
    border-radius: 99px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    transition: background 0.15s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.28); }
  
  /* ── Tagesempfehlung ────────────────────────────── */
  #tages-of-the-day {
    background: var(--pistachio);
    color: var(--white);
  }
  .tages-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 1.1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .tages-label {
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--sunflower);
    color: var(--espresso);
    padding: 0.3rem 0.7rem;
    border-radius: 99px;
    flex-shrink: 0;
  }
  .tages-text { flex: 1; min-width: 200px; }
  .tages-text strong { font-family: var(--font-display); font-size: 1.05rem; margin-right: 0.5rem; }
  .tages-text span { font-size: 0.9rem; opacity: 0.85; }
  .tages-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--sunflower);
  }
  
  /* ── Speisekarte ────────────────────────────────── */
  #speisekarte { background: var(--cream); }
  
  .allergen-infobox {
    font-size: 0.82rem;
    color: var(--espresso-soft);
    background: var(--cream-deep);
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .tab-nav {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    margin-bottom: 2rem;
    padding-bottom: 0.3rem;
    scrollbar-width: thin;
  }
  .tab-btn {
    flex-shrink: 0;
    padding: 0.55rem 1.15rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.86rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--espresso-soft);
    transition: all 0.15s;
  }
  .tab-btn.active, .tab-btn:hover {
    background: var(--pistachio);
    border-color: var(--pistachio);
    color: var(--white);
  }
  
  .menu-list { display: none; flex-direction: column; gap: 0.1rem; }
  .menu-list.visible { display: flex; }
  
  .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .menu-item-info { flex: 1; }
  .menu-item-name-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.2rem; }
  .menu-item-name-row h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.08rem;
  }
  .menu-item-info p { font-size: 0.88rem; color: var(--espresso-soft); }
  .menu-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--apricot-deep);
    white-space: nowrap;
  }
  
  .diet-badge {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.12rem 0.4rem;
    border-radius: 5px;
  }
  .diet-badge.vegan { background: var(--pistachio); color: var(--white); }
  .diet-badge.veggie { background: var(--sunflower); color: var(--espresso); }
  
  .allergen-btn {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    font-size: 0.72rem;
    color: var(--espresso-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .allergen-btn.active { background: var(--apricot); border-color: var(--apricot); color: var(--white); }
  
  .allergen-row {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    background: var(--cream-deep);
    border-radius: 8px;
    padding: 0.55rem 0.8rem;
    color: var(--espresso-soft);
  }
  .allergen-code { font-weight: 800; }
  .allergen-none { font-style: italic; }
  
  /* ── Banner+Events sowie generische Section-Bands ── */
  section { position: relative; }
  
  /* ── Galerie ────────────────────────────────────── */
  #galerie { background: var(--pistachio-deep); color: var(--white); }
  #galerie .section-eyebrow { color: var(--sunflower); }
  #galerie .section-title { color: var(--white); }
  
  .galerie-slideshow {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 16/8;
    touch-action: pan-y;
  }
  .galerie-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
  }
  .galerie-slide { min-width: 100%; height: 100%; }
  .galerie-slide img { width: 100%; height: 100%; object-fit: cover; }
  
  .galerie-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    color: var(--espresso);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
  }
  .galerie-arrow:hover { background: var(--white); }
  .galerie-arrow.prev { left: 14px; }
  .galerie-arrow.next { right: 14px; }
  
  /* ── Über uns ───────────────────────────────────── */
  #ueber-uns { background: var(--cream); }
  .ueber-inner { max-width: 760px; margin: 0 auto; padding: 4.5rem 1.5rem; text-align: center; }
  .ueber-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--pistachio-deep);
    line-height: 1.4;
    margin-bottom: 1.75rem;
  }
  .ueber-text { font-size: 1rem; color: var(--espresso-soft); text-align: left; }
  .ueber-meta { display: flex; align-items: center; justify-content: center; gap: 0.9rem; margin-top: 2rem; }
  .ueber-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--sunflower);
    color: var(--espresso);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
  }
  .ueber-meta-text { text-align: left; font-size: 0.86rem; }
  .ueber-meta-text strong { display: block; font-family: var(--font-display); }
  
  /* ── Team ───────────────────────────────────────── */
  #team { background: var(--cream-deep); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
  }
  .team-card { text-align: center; }
  .team-photo {
    width: 120px; height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--pistachio);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-soft);
  }
  .team-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
  .team-role { font-size: 0.8rem; font-weight: 700; color: var(--apricot-deep); text-transform: uppercase; letter-spacing: 0.04em; margin: 0.2rem 0 0.6rem; }
  .team-text { font-size: 0.88rem; color: var(--espresso-soft); }
  
  /* ── Bewertungen ────────────────────────────────── */
  #bewertungen { background: var(--cream); }
  
  .rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
  }
  .rating-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
  }
  .rating-card .stars { color: var(--sunflower); font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 0.08em; }
  .rating-card .rating-text { font-size: 0.92rem; margin-bottom: 0.9rem; }
  .rating-card .rating-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--espresso-soft); }
  .rating-card .rating-meta strong { color: var(--espresso); }
  .rating-reply {
    margin-top: 0.9rem;
    padding: 0.7rem 0.9rem;
    background: var(--cream-deep);
    border-left: 3px solid var(--pistachio);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--espresso-soft);
  }
  .rating-reply strong { color: var(--pistachio-deep); display: block; margin-bottom: 0.2rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }
  
  /* ── FAQ ────────────────────────────────────────── */
  #faq { background: var(--cream-deep); }
  .faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    padding: 1.05rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
  }
  .faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--cream-deep);
    color: var(--apricot-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.2s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--apricot); color: var(--white); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faq-answer > div {
    font-size: 0.9rem;
    color: var(--espresso-soft);
    padding: 0 1.3rem 1.2rem;
  }
  
  /* ── Blog ───────────────────────────────────────── */
  #blog { background: var(--cream); }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
  }
  .blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
  .blog-card-img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--cream-deep);
  }
  .blog-card-body { padding: 1.3rem; }
  .blog-date { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--apricot-deep); margin-bottom: 0.4rem; display: block; }
  .blog-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 0.5rem; }
  .blog-card p { font-size: 0.88rem; color: var(--espresso-soft); margin-bottom: 0.9rem; }
  .blog-readmore { font-weight: 800; font-size: 0.82rem; color: var(--pistachio-deep); }
  
  .blog-more-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
  }
  .blog-more-btn {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--pistachio-deep);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 99px;
    padding: 0.5rem 1.1rem;
    transition: background 0.15s, border-color 0.15s;
  }
  .blog-more-btn:hover { background: var(--cream-deep); border-color: var(--pistachio); }
  
  /* Blog Einzelansicht */
  .blog-post-view { max-width: 720px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
  .blog-back-sticky {
    position: sticky;
    top: 76px;
    z-index: 10;
    margin-bottom: 1.5rem;
    margin-left: -1.5rem;
    padding-left: 1.5rem;
  }
  .blog-post-view .blog-back {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--pistachio-deep);
    display: inline-block;
    background: var(--cream);
    padding: 0.5rem 0.9rem 0.5rem 0;
    border-radius: 99px;
  }
  .blog-post-view h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 0.6rem; }
  .blog-post-view .blog-date { margin-bottom: 2rem; }
  .blog-post-content { font-size: 1.02rem; color: var(--espresso-soft); }
  .blog-post-content p { margin-bottom: 1.2rem; }
  .blog-post-content img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
  .blog-post-content strong { color: var(--espresso); }
  
  /* ── Info: Öffnungszeiten + Anfahrt ─────────────── */
  #info { background: var(--cream-deep); }
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .info-block h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
  }
  .hours-table { width: 100%; border-collapse: collapse; }
  .hours-table td { padding: 0.5rem 0; font-size: 0.92rem; border-bottom: 1px solid var(--border-soft); }
  .hours-table tr.today td { font-weight: 800; color: var(--apricot-deep); }
  .hours-table tr.today td:first-child::before { content: "● "; }
  
  .address-info p { font-size: 0.95rem; margin-bottom: 1.2rem; }
  .address-info a { color: var(--apricot-deep); font-weight: 700; }
  
  .maps-embed {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    margin-bottom: 0.9rem;
  }
  .maps-embed iframe { width: 100%; height: 100%; border: 0; }
  .maps-consent-wrap .maps-consent-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43,29,20,0.85);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .maps-consent-btn {
    background: var(--sunflower);
    color: var(--espresso);
    padding: 0.6rem 1.3rem;
    border-radius: 99px;
    font-weight: 800;
  }
  
  .btn-maps {
    display: inline-block;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--pistachio-deep);
  }
  
  /* ── Footer ─────────────────────────────────────── */
  footer {
    background: var(--espresso);
    color: var(--cream);
    text-align: center;
    padding: 2.5rem 1.5rem;
    font-size: 0.85rem;
  }
  .footer-links { margin-bottom: 0.8rem; }
  .footer-links a { font-weight: 700; color: var(--sunflower); }
  .footer-reset {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
    margin-bottom: 1rem;
  }
  .footer-reset:hover { opacity: 1; }
  
  /* ── WhatsApp Button ────────────────────────────── */
  .whatsapp-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--pistachio);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-deep);
    z-index: 50;
    transition: transform 0.15s;
  }
  .whatsapp-btn:hover { transform: scale(1.08); }
  
  /* ── Responsive ─────────────────────────────────── */
  @media (max-width: 860px) {
    .header-nav { display: none; }
    .burger-btn { display: flex; }
    .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .section-inner { padding: 3.5rem 1.25rem; }
  
    /* Events auf Mobile: eine Karte zentriert pro Swipe, mit Snap.
       Etwas schmaler als die volle Breite, damit links und rechts
       die Nachbar-Events sichtbar hereinragen. */
    .events-strip-inner {
      scroll-snap-type: x mandatory;
      padding-left: 2.2rem;
      padding-right: 2.2rem;
      scroll-padding-inline: 2.2rem;
    }
    .event-chip {
      min-width: calc(100% - 4.4rem);
      width: calc(100% - 4.4rem);
      scroll-snap-align: center;
      white-space: normal;
    }
    .event-chip .event-desc { white-space: normal; }
    .events-strip::after {
      content: "›";
      position: absolute;
      right: 0.4rem;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--white);
      color: var(--apricot-deep);
      font-size: 1.2rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-soft);
      pointer-events: none;
      transition: opacity 0.15s;
    }
    .events-strip.at-end::after { opacity: 0; }
  }