/* ============================================
   NOSTIMO COFFEE HOUSE
   Hell · Creme · Latte-Art
   ============================================ */

:root {
  --brown-dark:    #3A2415;
  --brown-mid:     #6B4428;
  --brown-warm:    #8B5A3C;
  --caramel:       #BC7E4E;
  --caramel-light: #D6A579;
  --crema:         #C99A6B;
  --cream:         #F2E6D0;
  --cream-mid:     #F8F1E5;
  --cream-light:   #FDFBF6;
  --white:         #FFFFFF;
  --text-dark:     #2E1B0E;
  --text-mid:      #6B4A30;
  --text-muted:    #9C7C64;
  --gold:          #C9A84C;
  --autumn-orange: #D4682A;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --ease:  0.35s cubic-bezier(0.4,0,0.2,1);

  --card-shadow:    0 2px 16px rgba(58,36,21,0.06);
  --card-shadow-lg: 0 10px 44px rgba(58,36,21,0.10);
  --card-radius:    14px;
  --card-bg:        var(--white);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 14px;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--caramel); color: var(--white);
  padding: 15px 38px; border-radius: var(--card-radius);
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.4px;
  box-shadow: 0 4px 20px rgba(188,126,78,0.3);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover { background: var(--brown-warm); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(188,126,78,0.4); }

/* Ghost-Button jetzt für HELLEN Hintergrund */
.btn-ghost {
  display: inline-block;
  color: var(--text-mid);
  font-size: 0.88rem; font-weight: 500;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(107,74,48,0.35);
  transition: color var(--ease), border-color var(--ease);
}
.btn-ghost:hover { color: var(--brown-dark); border-color: var(--brown-dark); }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--caramel); color: var(--caramel);
  padding: 13px 32px; border-radius: var(--card-radius);
  font-size: 0.88rem; font-weight: 500;
  transition: background var(--ease), color var(--ease);
}
.btn-secondary:hover { background: var(--caramel); color: var(--white); }

.btn-instagram {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  padding: 15px 38px; border-radius: var(--card-radius);
  font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 4px 20px rgba(220,39,67,0.22);
  transition: opacity var(--ease), transform var(--ease);
}
.btn-instagram:hover { opacity: 0.88; transform: translateY(-2px); }


/* ============================================
   NAVBAR – dunkle Schrift (heller Hero)
   ============================================ */

.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  padding: 20px 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(253,251,246,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  box-shadow: var(--card-shadow);
}

.nav-container {
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { font-family: var(--serif); font-size: 1.18rem; font-weight: 700; color: var(--brown-dark); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 0.84rem; font-weight: 500; color: var(--text-mid);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--caramel);
  transition: width var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-instagram { color: var(--text-mid); display: flex; align-items: center; }
.nav-instagram:hover { color: var(--caramel); }


/* ============================================
   HERO – hell mit Latte-Art
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(165deg, #FDFBF6 0%, #F7EEDC 50%, #EFE0C6 100%);
  overflow: hidden;
}

/* dezente Lichtflecken */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(214,165,121,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(188,126,78,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
  width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center;
}

.hero-text-col { animation: heroIn 1s cubic-bezier(0.4,0,0.2,1) forwards; }

.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 22px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700; color: var(--brown-dark);
  line-height: 1.12; margin-bottom: 24px;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--caramel); }
.hero-text {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--text-mid); line-height: 1.85;
  margin-bottom: 40px; max-width: 440px;
}
.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

/* ---- Latte-Art Tasse (Draufsicht) ---- */
.hero-visual-col {
  display: flex; flex-direction: column; align-items: center;
  animation: heroIn 1.1s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}

.latte-scene {
  position: relative;
  width: 360px; height: 330px;
  display: flex; align-items: center; justify-content: center;
}

/* Henkel – schlichter heller Steg (Draufsicht) */
.latte-handle {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 104px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(58,36,21,0.10), inset 0 0 0 1px rgba(188,126,78,0.10);
  z-index: 1;
}

.latte-cup {
  position: relative;
  z-index: 2;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 30px 60px rgba(58,36,21,0.18),
    0 8px 20px rgba(58,36,21,0.10),
    inset 0 0 0 10px #fff,
    inset 0 0 0 12px rgba(188,126,78,0.15);
  display: flex; align-items: center; justify-content: center;
  animation: cupFloat 6s ease-in-out 4.4s infinite;
}

.latte-coffee {
  position: relative;
  width: 250px; height: 250px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #D7B084 0%, var(--crema) 45%, #B5895C 80%, #A6794E 100%);
  box-shadow: inset 0 4px 16px rgba(90,50,20,0.25);
  overflow: hidden;
}

/* Crema-Textur: feine Verwirbelungen auf der Kaffeeoberfläche */
.latte-coffee::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 40% 18% at 30% 64%, rgba(240,215,180,0.20) 0%, transparent 70%),
    radial-gradient(ellipse 34% 14% at 68% 42%, rgba(245,225,195,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 50% 22% at 55% 75%, rgba(150,95,50,0.14) 0%, transparent 70%),
    conic-gradient(from 40deg at 50% 50%,
      transparent 0deg, rgba(235,205,170,0.07) 40deg, transparent 90deg,
      rgba(140,90,50,0.06) 150deg, transparent 200deg,
      rgba(235,205,170,0.07) 260deg, transparent 320deg);
  pointer-events: none;
}

/* Wellenringe, wo der Milchstrahl auftrifft */
.pour-ripple {
  position: absolute;
  left: 50%; top: 38%;
  width: 30px; height: 13px;
  border: 1.5px solid rgba(255,252,245,0.55);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0.2);
  opacity: 0;
  pointer-events: none;
}
.pour-ripple.r1 { animation: rippleOut 0.9s ease-out 0.85s 2; }
.pour-ripple.r2 { animation: rippleOut 0.9s ease-out 1.25s 2; }
.pour-ripple.r3 { animation: rippleOut 0.9s ease-out 1.65s 2; }

/* Farn – einzelne Blätter "poppen" im Zickzack-Takt (wie gegossen) */
.latte-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
  /* leicht weiche Kanten – wie Milch, die in Crema zerfließt */
  filter: blur(0.4px);
}
.leaf {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 0.5px 1px rgba(110,65,28,0.14));
  animation: leafPop 0.5s cubic-bezier(0.34,0.9,0.4,1) both;
}
.stroke-through {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scaleY(0);
  opacity: 0;
  filter: drop-shadow(0 0.5px 1px rgba(110,65,28,0.14));
  animation: throughGrow 0.8s cubic-bezier(0.4,0,0.2,1) 2.5s forwards;
}

/* Milchstrahl – breiter, länger, zickzack */
.milk-stream {
  position: absolute;
  top: -12px; left: 50%;
  margin-left: -4px;
  width: 8px; height: 178px;
  border-radius: 99px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 22%, rgba(255,255,255,0.72) 100%);
  box-shadow: 0 0 9px rgba(255,255,255,0.5);
  opacity: 0;
  z-index: 4;
  animation: streamFlow 3.4s ease-in-out 0.4s both;
}

/* kleiner Crema-Glanz */
.latte-highlight {
  position: absolute; top: 40px; left: 60px;
  width: 70px; height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  filter: blur(8px);
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 3;
}

.latte-caption {
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 1s ease 3.9s forwards;
}

.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(107,74,48,0.5), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.4s ease-in-out infinite;
}


/* ============================================
   BREW
   ============================================ */

.brew-section { background: var(--cream-mid); padding: 120px 0; border-top: 1px solid rgba(188,126,78,0.1); }
.brew-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.brew-visual {
  background: var(--card-bg); border-radius: var(--card-radius);
  box-shadow: var(--card-shadow-lg);
  padding: 60px 40px;
  display: flex; align-items: center; justify-content: center;
}

.cup-scene { position: relative; width: 160px; padding-top: 52px; }
.steam-group {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 14px; opacity: 0; transition: opacity 0.8s ease;
}
.steam-group.active { opacity: 1; }
.steam-line { border-radius: 99px; background: rgba(150,90,50,0.3); transform-origin: bottom center; }
.steam-line.s1 { width: 3px; height: 28px; animation: steam1 2.5s ease-in-out infinite; }
.steam-line.s2 { width: 3px; height: 40px; animation: steam2 2.5s ease-in-out 0.5s infinite; }
.steam-line.s3 { width: 3px; height: 24px; animation: steam1 2.5s ease-in-out 1s infinite; }

.cup-outer {
  width: 140px; height: 112px; background: var(--cream-light);
  border-radius: 6px 6px 30px 30px; margin: 0 auto; overflow: hidden; position: relative;
  box-shadow: inset 0 0 0 2px rgba(188,126,78,0.22), var(--card-shadow);
}
.cup-liquid {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, #2E1B0E 0%, #7A4028 100%);
  height: 0; transition: height 3.5s cubic-bezier(0.25,0.1,0.25,1);
  border-radius: 0 0 28px 28px;
}
.cup-handle-wrap { position: absolute; right: -2px; top: 70px; }
.cup-handle { width: 30px; height: 46px; border: 3px solid rgba(188,126,78,0.4); border-left: none; border-radius: 0 24px 24px 0; }
.cup-saucer {
  width: 170px; height: 13px; background: var(--cream-light); border-radius: 50%;
  margin: 5px auto 0; box-shadow: var(--card-shadow); border: 2px solid rgba(188,126,78,0.16);
}
.brew-text h2 { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.35rem); color: var(--brown-dark); line-height: 1.25; margin-bottom: 20px; }
.brew-text p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.85; }


/* ============================================
   SPEISEKARTE
   ============================================ */

.menu { padding: 130px 0; background: var(--cream-light); }
.menu-header h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--brown-dark); margin-top: 4px; }
.menu-tabs { display: flex; gap: 10px; margin: 36px 0 48px; flex-wrap: wrap; }
.menu-tab {
  background: none; border: 1.5px solid rgba(138,90,60,0.22); color: var(--text-muted);
  padding: 10px 24px; border-radius: var(--card-radius);
  font-family: var(--sans); font-size: 0.84rem; font-weight: 500; cursor: pointer;
  transition: all var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.menu-tab:hover { border-color: var(--caramel); color: var(--caramel); }
.menu-tab.active { background: var(--brown-dark); border-color: var(--brown-dark); color: var(--white); }
.badge { background: var(--caramel); color: var(--white); font-size: 0.6rem; padding: 2px 8px; border-radius: 99px; font-weight: 600; letter-spacing: 0.4px; }
.menu-card .badge { font-size: 0.58rem; padding: 2px 7px; vertical-align: middle; margin-left: 6px; line-height: 1.4; display: inline-block; }

.menu-content { display: none; }
.menu-content.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }

.menu-card {
  background: var(--card-bg); padding: 32px 28px 28px; border-radius: var(--card-radius);
  border-top: 3px solid transparent; box-shadow: var(--card-shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-lg); border-top-color: var(--caramel); }
.menu-card h3 { font-family: var(--serif); font-size: 1.18rem; color: var(--brown-dark); margin-bottom: 7px; }
.menu-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

.coming-soon-box { padding: 80px 0; text-align: center; }
.coming-soon-box h3 { font-family: var(--serif); font-size: 1.75rem; color: var(--brown-dark); margin-bottom: 14px; }
.coming-soon-box p { color: var(--text-muted); max-width: 420px; margin: 0 auto 32px; }


/* ============================================
   DRINK ILLUSTRATIONS
   ============================================ */

.drink-illustration { height: 80px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 22px; position: relative; }

.di-cup-small { width: 44px; height: 36px; background: var(--cream); border-radius: 3px 3px 12px 12px; border: 2px solid var(--caramel); overflow: hidden; position: relative; }
.di-cup-small .di-liquid { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(to top, #2E1B0E, #6A3018); border-radius: 0 0 10px 10px; }
.di-saucer-small { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 8px; background: var(--cream); border-radius: 50%; border: 2px solid var(--caramel); }

.di-cup-mid { width: 60px; height: 52px; background: var(--cream); border-radius: 4px 4px 18px 18px; border: 2px solid var(--caramel); overflow: hidden; position: relative; }
.di-cup-mid .di-liquid { position: absolute; bottom: 0; left: 0; right: 0; height: 58%; background: linear-gradient(to top, #4A2010, #8B5030); border-radius: 0 0 16px 16px; }
.di-cup-mid .di-liquid.dark { background: linear-gradient(to top, #2E1B0E, #5A2818); height: 70%; }
.di-foam { position: absolute; top: 0; left: 0; right: 0; height: 38%; background: rgba(255,252,245,0.95); }
.di-foam-dot { position: absolute; background: rgba(160,100,60,0.22); border-radius: 50%; top: 6px; }
.di-foam-dot.d1 { width: 8px; height: 8px; left: 8px; }
.di-foam-dot.d2 { width: 6px; height: 6px; left: 50%; transform: translateX(-50%); top: 10px; }
.di-foam-dot.d3 { width: 7px; height: 7px; right: 8px; top: 8px; }
.di-latte-art { position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 36px; height: 20px; border-radius: 50%; background: rgba(240,220,190,0.55); }
.di-saucer-mid { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 78px; height: 9px; background: var(--cream); border-radius: 50%; border: 2px solid var(--caramel); }
.di-saucer-mid.autumn { border-color: var(--autumn-orange); background: #FDE8D0; }

.di-glass-tall { width: 42px; height: 68px; background: rgba(245,235,210,0.35); border: 2px solid rgba(188,126,78,0.35); border-radius: 4px 4px 8px 8px; overflow: hidden; position: relative; }
.di-liquid-tall { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, #3A1A08, #8A5030); }
.di-milk-layer { position: absolute; bottom: 60%; left: 0; right: 0; height: 15%; background: rgba(240,225,200,0.7); }

.di-glass-iced { width: 44px; height: 70px; background: rgba(220,240,255,0.22); border: 2px solid rgba(140,180,220,0.45); border-radius: 5px 5px 10px 10px; overflow: hidden; position: relative; }
.di-liquid-iced { position: absolute; bottom: 0; left: 0; right: 0; height: 75%; background: linear-gradient(to top, #3A2010, #8B6040 50%, rgba(180,140,100,0.4) 100%); }
.di-ice { position: absolute; background: rgba(220,240,255,0.82); border: 1px solid rgba(180,210,240,0.55); border-radius: 3px; z-index: 2; }
.di-ice.i1 { width: 14px; height: 14px; bottom: 30px; left: 5px; transform: rotate(12deg); }
.di-ice.i2 { width: 12px; height: 12px; bottom: 22px; right: 6px; transform: rotate(-8deg); }
.di-ice.i3 { width: 10px; height: 10px; bottom: 42px; left: 14px; transform: rotate(20deg); }
.di-straw { position: absolute; right: 8px; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, var(--caramel), var(--brown-mid)); border-radius: 99px; z-index: 3; }

.di-cup-mid.autumn { border-color: var(--autumn-orange); }
.di-liquid.spiced { background: linear-gradient(to top, #6A2A08, #C06030) !important; height: 65% !important; }
.di-spice-top { position: absolute; top: 0; left: 0; right: 0; height: 30%; background: rgba(200,140,80,0.3); border-bottom: 1px dashed rgba(200,140,80,0.35); }
.di-leaf { position: absolute; background: var(--autumn-orange); border-radius: 50% 0 50% 0; }
.di-leaf.l1 { width: 12px; height: 16px; top: 8px; left: 2px; transform: rotate(-20deg); opacity: 0.72; }
.di-leaf.l2 { width: 10px; height: 13px; top: 14px; right: 4px; transform: rotate(15deg); background: var(--gold); opacity: 0.62; }

.di-liquid-matcha { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, #4A6040, #7A9468); }

.di-croissant { width: 62px; height: 38px; background: linear-gradient(135deg, #E8C070, #C89040); border-radius: 60% 60% 40% 40% / 80% 80% 40% 40%; box-shadow: inset 0 -4px 8px rgba(100,60,0,0.18); position: relative; }
.di-croissant::before, .di-croissant::after { content: ''; position: absolute; background: linear-gradient(135deg, #D4A840, #B07820); border-radius: 50%; width: 28px; height: 20px; bottom: 4px; }
.di-croissant::before { left: -8px; transform: rotate(-30deg); }
.di-croissant::after { right: -8px; transform: rotate(30deg); }

.di-focaccia { width: 72px; height: 36px; background: linear-gradient(160deg, #E8C870, #C89840); border-radius: 8px; display: flex; align-items: center; justify-content: space-around; padding: 0 12px; box-shadow: inset 0 2px 4px rgba(200,160,40,0.35), var(--card-shadow); }
.di-foc-dot { width: 8px; height: 8px; background: rgba(100,60,10,0.38); border-radius: 50%; }

.di-cookie { width: 56px; height: 56px; background: linear-gradient(145deg, #D4A050, #B07830); border-radius: 50%; position: relative; box-shadow: inset 0 -3px 6px rgba(100,60,0,0.18); }
.di-chip { position: absolute; background: #3A1A08; border-radius: 3px; }
.di-chip { width: 10px; height: 8px; top: 12px; left: 14px; transform: rotate(-15deg); }
.di-chip.c2 { width: 9px; height: 7px; top: 28px; left: 26px; transform: rotate(10deg); }
.di-chip.c3 { width: 8px; height: 7px; top: 14px; right: 12px; transform: rotate(-5deg); }


/* ============================================
   ÜBER UNS
   ============================================ */

.about { padding: 130px 0; background: var(--cream-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.about-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, #F3E7D2 0%, #E6CFAE 60%, #D9B98C 100%);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  border: 1px solid rgba(188,126,78,0.18);
}
.about-ph-label {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); background: rgba(255,255,255,0.6);
  padding: 4px 12px; border-radius: 99px;
}
.about-ph-name { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--brown-mid); }
.about-ph-sub { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

.about-text h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--brown-dark); margin-bottom: 22px; line-height: 1.2; }
.about-text p { color: var(--text-mid); font-size: 0.96rem; margin-bottom: 18px; line-height: 1.85; }
.about-signature { font-family: var(--serif); font-style: italic; font-size: 1.1em; color: var(--brown-dark); margin-top: 24px; margin-bottom: 4px; }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.value-item { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: var(--text-mid); }
.value-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--caramel); flex-shrink: 0; }


/* ============================================
   INSTAGRAM
   ============================================ */

.instagram-section {
  padding: 100px 0; background: var(--cream-mid); text-align: center;
  border-top: 1px solid rgba(188,126,78,0.1); border-bottom: 1px solid rgba(188,126,78,0.1);
}
.insta-inner {
  background: var(--card-bg); border-radius: var(--card-radius); box-shadow: var(--card-shadow-lg);
  padding: 64px 56px; max-width: 620px; margin: 0 auto;
}
.insta-inner h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.5rem); color: var(--brown-dark); margin-bottom: 14px; }
.insta-inner p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 36px; line-height: 1.8; }


/* ============================================
   ÖFFNUNGSZEITEN – jetzt hell
   ============================================ */

.hours { padding: 130px 0; background: var(--cream-light); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }

.hours-left {
  background: var(--card-bg); border-radius: var(--card-radius); box-shadow: var(--card-shadow-lg);
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.hours-left h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--brown-dark); line-height: 1.2; margin-bottom: 36px; }
.hours-table { margin-bottom: 28px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(58,36,21,0.07); }
.hours-row .day { font-size: 0.88rem; color: var(--text-muted); }
.hours-row .time { font-size: 0.88rem; color: var(--caramel); font-weight: 600; }
.hours-row.dimmed .time { color: rgba(58,36,21,0.28); }
.location-info p, .location-info a { font-size: 0.88rem; color: var(--text-muted); display: block; margin-bottom: 6px; }
.location-info a { color: var(--caramel); font-weight: 500; }
.location-info a:hover { text-decoration: underline; }

.map-box {
  border-radius: var(--card-radius); overflow: hidden;
  box-shadow: var(--card-shadow-lg); height: 100%; min-height: 380px;
  border: 1px solid rgba(188,126,78,0.18);
}
.hours-map { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(0.9) sepia(0.08); }

/* Karten-Platzhalter (Datenschutz): füllt die map-box wie die Karte selbst */
.map-consent {
  width: 100%; height: 100%; min-height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 36px; box-sizing: border-box;
  background: var(--cream-mid);
  background-image: radial-gradient(circle at 50% 38%, var(--cream-light), var(--cream-mid));
}
.map-consent-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--brown-dark); margin-bottom: 14px;
}
.map-consent-text {
  font-family: var(--sans); font-size: 0.86rem; line-height: 1.6;
  color: var(--text-muted); max-width: 320px; margin-bottom: 16px;
}
.map-consent-address {
  font-family: var(--sans); font-size: 0.84rem; font-weight: 500;
  color: var(--text-mid); margin-bottom: 26px;
}
.map-consent-btn { cursor: pointer; }


/* ============================================
   FOOTER (einziger dunkler Bereich)
   ============================================ */

.footer { background: var(--brown-dark); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.42); line-height: 1.8; }
.footer h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--caramel-light); margin-bottom: 16px; }
.footer ul li { margin-bottom: 9px; }
.footer ul a, .footer p, .footer-link { font-size: 0.86rem; color: rgba(255,255,255,0.42); display: block; margin-bottom: 6px; }
.footer ul a:hover, .footer-link:hover { color: var(--caramel-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px; text-align: center; font-size: 0.76rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.28); }
.footer-bottom a:hover { color: var(--caramel-light); }


/* ============================================
   ANIMATIONEN
   ============================================ */

@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Blatt poppt auf (ein Schwung aus dem Kännchen) */
@keyframes leafPop {
  0%   { opacity: 0; transform: scale(0.15); }
  70%  { opacity: 1; transform: scale(1.07); }
  100% { opacity: 1; transform: scale(1); }
}

/* Durchzug: Mittelstrich wächst von oben nach unten durch die Blätter */
@keyframes throughGrow {
  0%   { opacity: 1; transform: scaleY(0); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* Milchstrahl: erscheint, wackelt im Zickzack, zieht zur Mitte, blendet aus */
@keyframes streamFlow {
  0%   { opacity: 0; transform: translateX(0); }
  6%   { opacity: 1; transform: translateX(16px); }
  11%  { transform: translateX(-16px); }
  16%  { transform: translateX(15px); }
  21%  { transform: translateX(-15px); }
  26%  { transform: translateX(13px); }
  31%  { transform: translateX(-13px); }
  36%  { transform: translateX(11px); }
  41%  { transform: translateX(-11px); }
  46%  { transform: translateX(8px); }
  51%  { transform: translateX(-8px); }
  56%  { transform: translateX(4px); }
  61%  { opacity: 1; transform: translateX(0); }
  74%  { opacity: 0; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(0); }
}

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

/* Wellenring breitet sich aus und verblasst */
@keyframes rippleOut {
  0%   { opacity: 0.65; transform: translate(-50%,-50%) scale(0.2); }
  100% { opacity: 0;    transform: translate(-50%,-50%) scale(1.7); }
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

@keyframes steam1 { 0% { transform: translateY(0) scaleX(1); opacity: 0.45; } 100% { transform: translateY(-28px) scaleX(2); opacity: 0; } }
@keyframes steam2 { 0% { transform: translateY(0) scaleX(1); opacity: 0.6; } 100% { transform: translateY(-38px) scaleX(1.6); opacity: 0; } }

.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-top: 90px; padding-bottom: 40px; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero { min-height: auto; }
  .brew-inner, .about-grid, .hours-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hours-left { padding: 36px 28px; }
  .insta-inner { padding: 48px 32px; }
}
@media (max-width: 520px) {
  .footer-grid, .menu-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .latte-scene { width: 260px; height: 260px; }
  .latte-cup { width: 250px; height: 250px; }
  .latte-coffee { width: 205px; height: 205px; }
}
