/* ══════════════════════════════════════════════════
   THE LIVING – style.css
   ══════════════════════════════════════════════════ */

/* ── FARB- UND SCHRIFT-VARIABLEN ─────────────────── */
:root {
  --bg:           #f2e4d2;
  --text:         #1e3528;
  --tan:          #c9a882;
  --tan-dark:     #b8916a;
  --white:        #ffffff;
  --border:       rgba(0,0,0,0.09);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;
}

/* ══════════════════════════════════════════════════
   NEUERÖFFNUNG BALLOON INTRO
   ══════════════════════════════════════════════════ */

#grand-opening {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  pointer-events: none;
  overflow: hidden;
}

/* Großer Ballon — füllt ganzen Bildschirm */
.go-main-balloon {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 30%, #2e5c3e 0%, #1e3528 55%, #0f1f14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  clip-path: inset(0% 0% 0% 0% round 0px);
}

/* Glanz */
.go-shine {
  position: absolute;
  top: 8%;
  left: 18%;
  width: 28%;
  height: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Text auf dem Ballon */
.go-content {
  text-align: center;
  color: #f2e4d2;
  padding: 2rem;
  animation: goFadeIn 0.9s ease both;
}

@keyframes goFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.go-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.35em;
  font-weight: 300;
  color: rgba(242,228,210,0.75);
  margin-bottom: 0.8rem;
  display: block;
}

.go-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.08em;
  color: #f2e4d2;
  margin-bottom: 1.2rem;
}

.go-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  letter-spacing: 0.3em;
  color: rgba(242,228,210,0.6);
  margin-bottom: 1.5rem;
}

.go-sub {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #c9a882;
  border: 1px solid rgba(201,168,130,0.4);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
}

/* Grünes Bild geht einfach weg */
.go-main-balloon.fly-away {
  animation: goFadeOut 0.7s ease-in forwards;
}

@keyframes goFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* Mini-Ballons Container */
#go-mini-balloons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.go-mini {
  position: absolute;
  bottom: -180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: miniFloat linear forwards;
  opacity: 0;
}

.go-mini-body {
  width: 100%;
  border-radius: 50% 50% 48% 48% / 56% 56% 44% 44%;
  flex-shrink: 0;
  position: relative;
  box-shadow: inset -6px -8px 16px rgba(0,0,0,0.2), inset 4px 4px 10px rgba(255,255,255,0.12);
}

/* Glanzpunkt oben links */
.go-mini-body::before {
  content: '';
  position: absolute;
  top: 14%;
  left: 20%;
  width: 28%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.28) 0%, transparent 70%);
  border-radius: 50%;
}

/* Kleiner Knoten unten */
.go-mini-body::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: inherit;
  border-radius: 50% 50% 40% 40%;
  filter: brightness(0.7);
}

.go-mini-string {
  width: 16px;
  height: 65px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='65'%3E%3Cpath d='M8,0 C13,10 3,18 8,28 C13,38 3,46 8,56 C12,63 7,65 8,65' stroke='rgba(201,168,130,0.88)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center top;
  background-size: contain;
}

@keyframes miniFloat {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(-110vh) rotate(12deg); opacity: 0; }
}

@keyframes balloonSway {
  from { transform: rotate(-4deg); }
  to   { transform: rotate(4deg); }
}

/* Grand Opening overlay komplett ausblenden */
#grand-opening.go-done {
  animation: goHide 0.5s ease forwards;
}

@keyframes goHide {
  to { opacity: 0; pointer-events: none; }
}

/* ── GRAND OPENING KLEBESTREIFEN ─────────────────── */
.go-banner {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 14%;
  background: linear-gradient(to bottom, #fefaf4 0%, #f5ece0 100%);
  padding: 1rem 5rem;
  transform: rotate(-2deg);
  transform-origin: left center;
  box-shadow: 0 6px 28px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.15);
  z-index: 5;
  clip-path: inset(0 100% 0 0);
  animation: bannerUnroll 0.85s cubic-bezier(0.34, 1.4, 0.64, 1) 1.8s forwards;
}

@keyframes bannerUnroll {
  0%   { clip-path: inset(0 100% 0 0); }
  75%  { clip-path: inset(0 -2% 0 0); transform: rotate(-2deg) scale(1.015); }
  100% { clip-path: inset(0 -2% 0 0); transform: rotate(-2deg) scale(1); }
}

.go-tape {
  position: absolute;
  top: -13px;
  width: 68px;
  height: 26px;
  background: rgba(255,238,160,0.75);
  border: 1px solid rgba(200,175,60,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.go-tape-l { left: 8%;  transform: rotate(-3.5deg); }
.go-tape-r { right: 8%; transform: rotate(2.5deg); }

.go-banner-inner { text-align: center; }

.go-banner-top {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: rgba(30,53,40,0.45);
  margin-bottom: 0.35rem;
}

.go-banner-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #1e3528;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
  line-height: 1.1;
}

.go-banner-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 0.5rem;
  font-size: clamp(0.58rem, 1.2vw, 0.7rem);
  color: rgba(30,53,40,0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.go-dot { color: #c9a882; font-weight: 700; }

/* ── EVENT INFO SCREEN (Phase 2) ────────────────── */
@keyframes wordSlam {
  0%   { opacity: 0; transform: scale(2.2) translateY(-15px); filter: blur(6px); }
  55%  { opacity: 1; transform: scale(0.94) translateY(5px); filter: blur(0); }
  75%  { transform: scale(1.04) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes esSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

#go-event-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, #2e5c3e 0%, #1e3528 55%, #0f1f14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
  z-index: 100000;
}

#go-event-screen.active  { opacity: 1; }
#go-event-screen.fly-away { animation: goFadeOut 0.7s ease-in forwards; }

.go-es-wrap {
  text-align: center;
  color: #f2e4d2;
  padding: 2rem 1.5rem;
  max-width: 680px;
  width: 100%;
}

.go-es-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  margin-bottom: 0.9rem;
}

.go-es-word {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 14vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f2e4d2;
  opacity: 0;
}

.go-es-nur  { animation: wordSlam 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards; }
.go-es-heute{ animation: wordSlam 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.78s forwards; }

.go-es-den {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #c9a882;
  margin-top: 0.5rem;
  opacity: 0;
  animation: esSlideUp 0.5s ease 1.1s forwards;
}

.go-es-time {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.65rem, 1.5vw, 0.82rem);
  letter-spacing: 0.25em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(242,228,210,0.45);
  margin-bottom: 1.3rem;
  opacity: 0;
  animation: esSlideUp 0.5s ease 1.4s forwards;
}

.go-es-ornament {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(201,168,130,0.45);
  margin-bottom: 1.3rem;
  opacity: 0;
  animation: esSlideUp 0.4s ease 1.55s forwards;
}

.go-es-list {
  list-style: none;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: esSlideUp 0.5s ease 1.7s forwards;
}

.go-es-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.75rem, 1.8vw, 0.98rem);
  letter-spacing: 0.12em;
  color: rgba(242,228,210,0.72);
  line-height: 2.2;
}

.go-es-highlight {
  font-size: clamp(1.05rem, 2.8vw, 1.4rem) !important;
  color: #c9a882 !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  margin-bottom: 0.4rem;
  display: block;
}

.go-es-cta {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  font-weight: 300;
  color: rgba(242,228,210,0.58);
  letter-spacing: 0.06em;
  line-height: 1.6;
  opacity: 0;
  animation: esSlideUp 0.5s ease 1.9s forwards;
}

.go-es-cta em {
  color: rgba(242,228,210,0.88);
  font-style: italic;
}

/* ── PROMO TAPE (Klebestreifen) ──────────────────── */
#promo-tape {
  position: fixed;
  top: 140px;
  left: -4%;
  right: -4%;
  z-index: 90;
  pointer-events: none;
}

.promo-tape-strip {
  background: linear-gradient(135deg, #1e3528 0%, #2e5c3e 50%, #1a4028 100%);
  padding: 1rem 8%;
  transform: rotate(-2deg);
  transform-origin: left center;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: inset(0 100% 0 0);
  pointer-events: auto;
}

/* Klebestreifen-Kanten: leichte Schraffur in gold */
.promo-tape-strip::before,
.promo-tape-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 36px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(201,168,130,0.18) 0px, rgba(201,168,130,0.18) 2px,
    transparent 2px, transparent 7px
  );
}
.promo-tape-strip::before { left: 0; }
.promo-tape-strip::after  { right: 0; }

@keyframes tapeUnroll {
  0%   { clip-path: inset(0 100% 0 0); transform: rotate(-2deg); }
  75%  { clip-path: inset(0 -4% 0 0); transform: rotate(-2deg) scale(1.01); }
  100% { clip-path: inset(0 -4% 0 0); transform: rotate(-2deg) scale(1); }
}

.promo-tape-content {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  text-align: center;
}

.promo-tape-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: #c9a882;
  letter-spacing: 0.05em;
  line-height: 1;
}

.promo-tape-auf {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.72rem, 1.8vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #f2e4d2;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-tape-sep {
  color: rgba(201,168,130,0.5);
  font-size: 1.2rem;
  line-height: 1;
}

.promo-tape-extras {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.58rem, 1.2vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(242,228,210,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .promo-tape-sep,
  .promo-tape-extras { display: none; }
}

.promo-tape-dot {
  color: #c9a882;
  font-size: 0.5rem;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .promo-tape-strip {
    transform: rotate(0deg);
    padding: 0.75rem 5%;
  }
  @keyframes tapeUnroll {
    0%   { clip-path: inset(0 100% 0 0); transform: rotate(0deg); }
    75%  { clip-path: inset(0 -4% 0 0); transform: rotate(0deg) scale(1.01); }
    100% { clip-path: inset(0 -4% 0 0); transform: rotate(0deg) scale(1); }
  }
  .promo-tape-close { transform: translateY(-50%); }
  .promo-tape-auf { letter-spacing: 0.08em; }
}

/* ── MATCHA BADGE (floating, bottom right) ────────── */
#matcha-badge {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 9500;
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  animation: badgeBounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
  cursor: default;
}

@keyframes badgeBounceIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.matcha-badge-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #1e3528;
  border: 2.5px solid rgba(201,168,130,0.55);
  box-shadow: 0 6px 24px rgba(30,53,40,0.38), 0 2px 8px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#matcha-badge:hover .matcha-badge-ring {
  transform: scale(1.07);
  box-shadow: 0 10px 32px rgba(30,53,40,0.48);
}

.matcha-badge-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.82;
}

.matcha-badge-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.4rem;
  text-align: center;
}

.matcha-badge-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #f2e4d2;
  line-height: 1;
  letter-spacing: 0.02em;
}

.matcha-badge-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,228,210,0.8);
  line-height: 1.4;
  margin-top: 0.15rem;
}

/* ── SCROLL PROGRESS BAR ─────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #1e3528;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; }

/* ── TOPBAR ──────────────────────────────────────── */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 2rem;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
}

.topbar-link:hover { opacity: 0.55; }

.topbar-social-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.icon-social {
  width: 22px;
  height: 22px;
}

/* ── NAVIGATION ──────────────────────────────────── */
/* Topbar + Nav gemeinsam sticky */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

.sticky-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.55; }

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.nav-logo-img:hover { transform: scale(1.07); }

.nav-center {
  flex: 1;
  justify-content: center;
}

.btn-nav {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: var(--tan);
  color: var(--text);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: background 0.2s;
}

.btn-nav:hover { background: var(--tan-dark); }

/* ── ALLGEMEINE BUTTONS ──────────────────────────── */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover { opacity: 0.82; transform: translateY(-1px); }
.btn-tan   { background: var(--tan);  color: var(--text); }
.btn-black { background: var(--text); color: var(--white); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem 26rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ── PHOTO WALL ──────────────────────────────────── */
.photo-wall {
  position: absolute;
  inset: -8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  z-index: 0;
  pointer-events: none;
}

.wall-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 6px;
  border: 6px solid white;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.18);
  display: block;
  opacity: 0;
  animation: wallFlash linear infinite;
}

@keyframes wallFlash {
  0%    { opacity: 0;    filter: brightness(1) saturate(1); }
  10%   { opacity: 0.55; filter: brightness(1) saturate(1); }
  72%   { opacity: 0.55; filter: brightness(1) saturate(1); }
  88%   { opacity: 0;    filter: brightness(1) saturate(1); }
  100%  { opacity: 0;    filter: brightness(1) saturate(1); }
}

.wall-photo:nth-child(1)  { animation-duration:10s;   animation-delay:0s;    transform:rotate(-2.5deg) translateY(4px);  }
.wall-photo:nth-child(2)  { animation-duration:9s;    animation-delay:1.4s;  transform:rotate(1.8deg)  translateY(-3px); }
.wall-photo:nth-child(3)  { animation-duration:11s;   animation-delay:2.8s;  transform:rotate(-1.2deg) translateY(6px);  }
.wall-photo:nth-child(4)  { animation-duration:8.5s;  animation-delay:0.7s;  transform:rotate(3deg)    translateY(-5px); }
.wall-photo:nth-child(5)  { animation-duration:10s;   animation-delay:3.6s;  transform:rotate(1.5deg)  translateY(3px);  }
.wall-photo:nth-child(6)  { animation-duration:9.5s;  animation-delay:1.9s;  transform:rotate(-3.2deg) translateY(-4px); }
.wall-photo:nth-child(7)  { animation-duration:8s;    animation-delay:4.3s;  transform:rotate(2.2deg)  translateY(5px);  }
.wall-photo:nth-child(8)  { animation-duration:11s;   animation-delay:2.2s;  transform:rotate(-1.8deg) translateY(-2px); }
.wall-photo:nth-child(9)  { animation-duration:9s;    animation-delay:5.1s;  transform:rotate(3.5deg)  translateY(4px);  }
.wall-photo:nth-child(10) { animation-duration:10.5s; animation-delay:3s;    transform:rotate(-2deg)   translateY(-6px); }
.wall-photo:nth-child(11) { animation-duration:8.5s;  animation-delay:1s;    transform:rotate(1deg)    translateY(3px);  }
.wall-photo:nth-child(12) { animation-duration:9s;    animation-delay:4.7s;  transform:rotate(-2.8deg) translateY(-4px); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 38%,
    rgba(242,228,210,0.88) 0%,
    rgba(242,228,210,0.70) 55%,
    rgba(242,228,210,0.42) 100%
  );
  z-index: 1;
  pointer-events: none;
}

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

.hero-content { max-width: 950px; width: 100%; }

.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.8rem;
  color: #1e3528;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-the {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  display: block;
  margin-bottom: 0.1em;
}

.hero-living {
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  display: block;
  line-height: 0.9;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  margin-bottom: 2.5rem;
  color: rgba(30,53,40,0.6);
  text-transform: uppercase;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-img-wrap {
  width: min(380px, 88%);
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
}

.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── ALLGEMEINE SECTION-STYLES ───────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: 3rem;
}

/* ── SPEISEKARTE ─────────────────────────────────── */
.menu-section { background: var(--bg); }

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.food-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.food-card:hover img { transform: scale(1.07); }

/* Hover-Overlay */
.food-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 0.9rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.food-card:hover .food-hover-overlay { opacity: 1; }

.food-hover-overlay span {
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transform: translateY(6px);
  transition: transform 0.35s ease;
}

.food-card:hover .food-hover-overlay span { transform: translateY(0); }

/* 5-Spalten Grid */
.food-grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ── MASONRY GRID (Option E) ─────────────────────── */
.masonry-grid {
  columns: 3;
  column-gap: 1rem;
  margin-bottom: 3.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 14px;
}

.masonry-item:hover img { transform: scale(1.03); }

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  border-radius: 14px;
  transition: background 0.3s ease;
}

.masonry-item:hover::after { background: rgba(0,0,0,0.08); }

@media (max-width: 768px) { .masonry-grid { columns: 2; } }
@media (max-width: 480px) { .masonry-grid { columns: 1; } }

/* ── POLAROID (Option F) ─────────────────────────── */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  padding: 1rem 0.5rem;
}

.polaroid {
  background: #fff;
  padding: 0.8rem 0.8rem 2.8rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.08);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
  z-index: 10;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  height: auto;
}

@media (max-width: 768px) { .polaroid-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; } }
@media (max-width: 480px) { .polaroid-grid { grid-template-columns: 1fr; } }

/* ── MAGAZINE LAYOUT (Option G) ─────────────────── */
.magazine-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px 260px;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.mag-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.mag-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mag-item:hover img { transform: scale(1.06); }

.mag-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  border-radius: 14px;
}

.mag-item:hover::after { background: rgba(0,0,0,0.07); }

/* Großes Hauptbild links — nimmt 2 Reihen ein */
.mag-featured {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Breites Bild unten links — nimmt 2 Spalten */
.mag-wide {
  grid-column: 1 / 3;
  grid-row: 3;
}

@media (max-width: 768px) {
  .magazine-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mag-featured { grid-column: 1 / 3; grid-row: auto; height: 280px; }
  .mag-wide     { grid-column: 1 / 3; grid-row: auto; height: 200px; }
}

@media (max-width: 480px) {
  .magazine-grid { grid-template-columns: 1fr; }
  .mag-featured, .mag-wide { grid-column: 1; }
}

/* ── BLUR → SCHARF (Option H) ───────────────────── */
.blur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.blur-card {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.blur-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(6px) brightness(0.85) saturate(0.7);
  transform: scale(1.08);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.blur-card:hover img {
  filter: blur(0px) brightness(1) saturate(1);
  transform: scale(1);
}

@media (max-width: 768px) { .blur-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .blur-grid { grid-template-columns: 1fr; } }

/* ── 3D TILT (Option I) ──────────────────────────── */
.tilt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  perspective: 1000px;
}

.tilt-card {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  will-change: transform;
}

.tilt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.15s ease;
}

/* Glanz-Effekt der mit dem Tilt wandert */
.tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.tilt-card:hover .tilt-shine { opacity: 1; }

@media (max-width: 768px) { .tilt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tilt-grid { grid-template-columns: 1fr; } }

/* ── AUTO-SCROLL STRIP (Option K) ───────────────── */
.strip-outer {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3.5rem;
  /* Weiche Ränder links & rechts */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.strip-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: stripScroll 28s linear infinite;
}

/* Beim Hover pausiert der Strip */
.strip-outer:hover .strip-track {
  animation-play-state: paused;
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.strip-item {
  width: 300px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strip-item:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.strip-item:hover img { transform: scale(1.07); }

/* ── SPOTLIGHT (Option L) ────────────────────────── */
.spotlight-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0e1a12;
  padding: 1.2rem;
  margin-bottom: 3.5rem;
  cursor: none;
}

/* Der Lichtkegel — folgt der Maus via JS */
.spotlight-beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    circle 260px at var(--bx, 50%) var(--by, 50%),
    transparent 0%,
    rgba(0,0,0,0.82) 100%
  );
  transition: background 0.05s linear;
}

/* Wenn die Maus außerhalb ist: alles dunkel */
.spotlight-stage.dark .spotlight-beam {
  background: rgba(0,0,0,0.88);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.spotlight-card {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.spotlight-card:hover img { transform: scale(1.06); }

@media (max-width: 768px) { .spotlight-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── FILMSTREIFEN (Option M) ─────────────────────── */
.film-strip-outer {
  background: #111;
  border-radius: 6px;
  padding: 0;
  margin-bottom: 3.5rem;
  overflow: hidden;
  user-select: none;
}

/* Perforationslöcher */
.film-perfs {
  display: flex;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  padding: 6px 12px;
  background: #111;
}

.film-perfs span {
  display: block;
  width: 18px;
  height: 14px;
  border-radius: 3px;
  background: #000;
  border: 1.5px solid #333;
  flex-shrink: 0;
}

/* Scrollbarer Streifen */
.film-track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 12px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.film-track:active { cursor: grabbing; }
.film-track::-webkit-scrollbar { display: none; }

/* Einzelnes Frame */
.film-frame {
  flex: 0 0 280px;
  height: 280px;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  border: 3px solid #2a2a2a;
  overflow: hidden;
}

.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}

.film-frame:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.1);
}

/* Framenummer unten rechts */
.film-num {
  position: absolute;
  bottom: 6px;
  right: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  font-family: monospace;
  letter-spacing: 0.1em;
  pointer-events: none;
}

/* ── FOOD SLIDER (Option C) ──────────────────────── */
.food-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.food-slider {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  cursor: grab;
}

.food-slider:active { cursor: grabbing; }
.food-slider::-webkit-scrollbar { display: none; }

.food-slide {
  flex: 0 0 calc(33.333% - 0.8rem);
  min-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-slide:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.food-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.food-slide:hover img { transform: scale(1.05); }

.food-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(30,53,40,0.25);
  background: white;
  color: #1e3528;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-slider-btn:hover { background: #1e3528; color: white; border-color: #1e3528; }

/* ── LIGHTBOX ────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  width: auto;
  height: auto;
}

.lightbox-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  margin-top: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 9001;
}

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

.lightbox-prev,
.lightbox-next {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  margin: 0 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.15); }

/* ── FOOD IMG PLACEHOLDER ────────────────────────── */
.food-img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.food-label-sub {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-top: 0.2rem;
  font-weight: 400;
}

.food-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 0.9rem 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

/* ── TABS ────────────────────────────────────────── */
.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.menu-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  color: rgba(0,0,0,0.42);
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.menu-tab:hover { color: var(--text); }
.menu-tab.active { color: var(--text); border-bottom-color: var(--text); }

.menu-category {
  height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(30,53,40,0.2) transparent;
}

.menu-category::-webkit-scrollbar { width: 5px; }
.menu-category::-webkit-scrollbar-track { background: transparent; }
.menu-category::-webkit-scrollbar-thumb { background: rgba(30,53,40,0.2); border-radius: 10px; }

.menu-list { display: flex; flex-direction: column; padding-top: 0.5rem; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
}

.menu-item h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.25rem; letter-spacing: 0.02em; }
.menu-item p  { font-size: 0.78rem; color: rgba(0,0,0,0.5); line-height: 1.5; }

.price { font-size: 0.88rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }

.menu-category-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1e3528;
  padding: 1.4rem 0 0.4rem;
  border-top: 1px solid rgba(30,53,40,0.12);
  margin-top: 0.5rem;
}

.menu-category-label:first-child { border-top: none; padding-top: 0.5rem; }

.allergen-note {
  margin-top: 2rem;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.38);
  text-align: center;
  line-height: 1.7;
}

/* ── KARUSSELL ───────────────────────────────────── */
.carousel-wrapper { position: relative; }

.reviews-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  cursor: grab;
}

.reviews-carousel:active { cursor: grabbing; }
.reviews-carousel::-webkit-scrollbar { display: none; }

.reviews-carousel .review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  scroll-snap-align: start;
}

.atmo-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.atmo-carousel:active { cursor: grabbing; }
.atmo-carousel::-webkit-scrollbar { display: none; }

.atmo-carousel .atmo-card {
  flex: 0 0 calc(25% - 1.2rem);
  min-width: 240px;
  scroll-snap-align: start;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(30,53,40,0.2);
  background: white;
  color: #1e3528;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover { background: #1e3528; color: white; border-color: #1e3528; }

.carousel-dots { display: flex; gap: 0.4rem; align-items: center; flex: 1; }

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(30,53,40,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dot.active { background: #1e3528; width: 20px; border-radius: 3px; }

/* ── BEWERTUNGEN ─────────────────────────────────── */
.reviews-section { background: var(--bg); }
.reviews-section .container { text-align: center; }

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--text);
  color: var(--white);
  padding: 0.9rem 2rem;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 3rem;
  transition: opacity 0.2s;
}

.btn-google:hover { opacity: 0.82; }

.review-card { background: var(--white); padding: 1.8rem; border-radius: 10px; }

.review-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c, #888);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stars { color: #f4b400; font-size: 1rem; letter-spacing: 0.05em; }

.review-card p { font-size: 0.82rem; line-height: 1.65; color: rgba(0,0,0,0.6); margin-bottom: 1rem; }
.review-card strong { font-size: 0.68rem; letter-spacing: 0.14em; color: var(--text); }

/* ── ÜBER UNS ────────────────────────────────────── */
.about-section { background: var(--bg); }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 5rem; align-items: center; max-width: 720px; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text p { font-size: 0.86rem; line-height: 1.85; color: rgba(0,0,0,0.65); margin-bottom: 1rem; text-align: justify; }
.about-text .btn { margin-top: 1.2rem; }

.about-signature {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(30,53,40,0.15);
  font-size: 0.78rem !important;
  color: rgba(0,0,0,0.5) !important;
}

.about-sig-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; letter-spacing: 0.18em; color: #1e3528; }
.about-sig-addr { letter-spacing: 0.06em; color: rgba(0,0,0,0.45); }

.about-img-wrap { aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden; }

.about-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(0,0,0,0.3);
  font-size: 0.82rem;
  text-align: center;
  padding: 2rem;
}

/* ── STANDORT ────────────────────────────────────── */
.location-section { background: var(--bg); }

.location-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }

.info-block { margin-bottom: 2rem; }
.info-block h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem; }
.info-block p  { font-size: 0.86rem; line-height: 1.7; color: rgba(0,0,0,0.65); }
.info-block a  { color: rgba(0,0,0,0.65); text-decoration: none; transition: color 0.2s; }
.info-block a:hover { color: var(--text); text-decoration: underline; }

.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.83rem; }
.hours li span:first-child { color: rgba(0,0,0,0.48); }
.hours li span:last-child  { font-weight: 600; }

.map-container { border-radius: 12px; overflow: hidden; height: 460px; background: rgba(0,0,0,0.05); }
.map-container iframe { display: block; width: 100%; height: 100%; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--text); color: rgba(255,255,255,0.55); padding: 3.5rem 2rem; text-align: center; }

.footer-inner { max-width: 800px; margin: 0 auto; }

.footer-logo-img { width: 110px; height: 110px; object-fit: contain; border-radius: 50%; margin: 0 auto 1.2rem; display: block; opacity: 0.92; }

.footer-addr { font-size: 0.78rem; letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.footer-addr a { color: rgba(255,255,255,0.55); text-decoration: none; }

.footer-nav {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  position: static !important;
  box-shadow: none !important;
}

.footer-nav a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.1em; transition: color 0.2s; }
.footer-nav a:hover { color: white; }
.footer-nav span { color: rgba(255,255,255,0.3); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.32); }

/* ── ÖFFNUNGS-BANNER ─────────────────────────────── */
.opening-banner { background: #1e3528; color: rgba(242,228,210,0.9); text-align: center; padding: 0.75rem 2rem; font-size: 0.75rem; letter-spacing: 0.12em; }
.opening-banner strong { color: #f2e4d2; font-weight: 600; }

/* ── FEATURE STRIP ───────────────────────────────── */
.feature-strip { background: #2c4a35; padding: 1.4rem 2rem; }

.feature-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(242,228,210,0.88);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.feature-dot { color: rgba(242,228,210,0.35); font-size: 0.6rem; }

/* ── FLIP KARTEN (Option 1) ──────────────────────── */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.flip-card {
  height: 260px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 14px;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Vorderseite — dunkelgrün */
.flip-front {
  background-color: #1e3528;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  overflow: hidden;
}

/* Option A — Verlauf */
.flip-front-tiles {
  background: linear-gradient(145deg, #2a4d38 0%, #1e3528 45%, #0f1f14 100%);
}

.flip-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,15,0.85) 0%, rgba(10,25,15,0.3) 100%);
  border-radius: 14px;
}

.flip-title {
  position: relative;
  z-index: 1;
  color: #f2e4d2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

/* Rückseite — warmes Beige */
.flip-back {
  background: #f2e4d2;
  border: 1px solid rgba(30,53,40,0.12);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem;
  gap: 0.8rem;
}

.flip-back h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #1e3528;
  letter-spacing: 0.06em;
}

.flip-back p {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(30,53,40,0.7);
}

@media (max-width: 960px) { .flip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .flip-grid { grid-template-columns: 1fr; } }

/* ── WARUM THE LIVING — einfache Info-Karten ─────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.why-card {
  background: linear-gradient(145deg, #2a4d38 0%, #1e3528 50%, #0f1f14 100%);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.why-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,130,0.65);
  font-weight: 500;
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #f2e4d2;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.why-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  line-height: 1.85;
  color: rgba(242,228,210,0.62);
  margin: 0;
  margin-top: 0.3rem;
}

@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ── ATMOSPHÄRE KARTEN ───────────────────────────── */
.atmo-section { background: var(--bg); padding: 4rem 0 5rem; }

.ornament { text-align: center; color: rgba(30,53,40,0.3); letter-spacing: 0.3em; font-size: 0.75rem; margin-bottom: 1.5rem; }

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

.atmo-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(30,53,40,0.07);
}

.atmo-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(30,53,40,0.1); }

.atmo-card-coffee {
  background-image: url('coffee.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  padding: 0;
  border: none;
}

.atmo-card-coffee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,15,0.75) 0%, rgba(10,25,15,0.2) 50%, transparent 100%);
  border-radius: 12px;
  transition: background 0.4s ease;
}

.atmo-card-coffee:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(30,53,40,0.2); }

.atmo-card-coffee:hover::before {
  background: linear-gradient(to top, rgba(10,25,15,0.85) 0%, rgba(10,25,15,0.3) 55%, transparent 100%);
}

.atmo-card-coffee::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('coffee.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  z-index: -1;
  transition: transform 0.5s ease;
}

.atmo-card-coffee:hover::after { transform: scale(1.06); }

.coffee-card-text {
  position: relative;
  z-index: 1;
  color: white !important;
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
  padding: 1.5rem !important;
  margin: 0 !important;
  text-align: left;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.atmo-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }

.atmo-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: #1e3528;
  margin-bottom: 0.7rem;
  letter-spacing: 0.05em;
}

.atmo-card p { font-size: 0.82rem; line-height: 1.7; color: rgba(0,0,0,0.52); }

/* ── TRANSIT BADGES ──────────────────────────────── */
.transit-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 0.3rem; }

.transit-item { display: flex; align-items: center; gap: 0.9rem; font-size: 0.85rem; color: rgba(0,0,0,0.68); line-height: 1.4; }
.transit-item small { font-size: 0.72rem; color: rgba(0,0,0,0.4); display: block; }

.transit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  color: white;
}

.transit-badge.ubahn { background: #1e3528; }
.transit-badge.bus   { background: #c9a882; color: #1e3528; }

/* ── ANIMATIONEN ─────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

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

.hero-eyebrow  { animation: fadeUp 0.7s ease 0.1s both; }
.hero-the      { animation: fadeUp 0.8s ease 0.3s both; }
.hero-living   { animation: fadeUp 0.9s ease 0.45s both; }
.hero-tagline  { animation: fadeUp 0.7s ease 0.7s both; }
.hero-btns     { animation: fadeUp 0.7s ease 0.9s both; }
.hero-img-wrap { animation: fadeUp 0.8s ease 1.1s both; }

.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn:active, .btn-nav:active { transform: scale(0.97); }

.atmo-card:nth-child(1).visible { transition-delay: 0s; }
.atmo-card:nth-child(2).visible { transition-delay: 0.1s; }
.atmo-card:nth-child(3).visible { transition-delay: 0.2s; }
.atmo-card:nth-child(4).visible { transition-delay: 0.3s; }

.review-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(30,53,40,0.1); }

.menu-item { transition: background 0.2s ease; }
.menu-item:hover { background: rgba(30,53,40,0.03); border-radius: 4px; }

/* ── COOKIE BANNER ───────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #1e3528;
  color: #f2e4d2;
  padding: 1.2rem 2rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 240px; }
.cookie-text strong { font-size: 0.78rem; letter-spacing: 0.08em; display: block; margin-bottom: 0.4rem; }
.cookie-text p  { font-size: 0.72rem; color: rgba(242,228,210,0.65); line-height: 1.65; }
.cookie-text a  { color: #c9a882; }

.cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn-decline {
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(242,228,210,0.3);
  background: transparent;
  color: rgba(242,228,210,0.75);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: rgba(242,228,210,0.7); color: #f2e4d2; }

.cookie-btn-accept {
  padding: 0.65rem 1.4rem;
  background: #c9a882;
  color: #1e3528;
  border: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #b8916a; }

/* ── MAPS PLACEHOLDER ────────────────────────────── */
#maps-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(30,53,40,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps-placeholder-inner { text-align: center; padding: 2rem; }
.maps-placeholder-icon  { font-size: 2.5rem; margin-bottom: 0.8rem; }
.maps-placeholder-text  { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; }
.maps-placeholder-sub   { font-size: 0.75rem; color: rgba(0,0,0,0.45); line-height: 1.6; max-width: 280px; margin: 0 auto 1.2rem; }

.maps-placeholder-btn {
  background: #1e3528;
  color: #f2e4d2;
  border: none;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.maps-placeholder-btn:hover { opacity: 0.8; }

/* ── LEGAL PAGES (Impressum / Datenschutz) ───────── */
.legal-hero {
  background: linear-gradient(135deg, #1e3528 0%, #264535 50%, #1a2e22 100%);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46,92,62,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.legal-hero-logo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 1.4rem;
  opacity: 0.92;
  position: relative;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #f2e4d2;
  margin-bottom: 0.6rem;
  position: relative;
}

.legal-hero-sub {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: rgba(242,228,210,0.45);
  position: relative;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(242,228,210,0.6);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  transition: color 0.2s;
}
.legal-back:hover { color: #c9a882; }

.legal-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 2rem 6rem;
}

/* Einfaches Layout für Datenschutz / Impressum */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2rem 6rem;
}

.legal-page .back-link {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #1e3528;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.legal-page .back-link:hover { opacity: 1; }

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1e3528;
  margin-top: 2.8rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(30,53,40,0.12);
  padding-bottom: 0.4rem;
}

.legal-page h2:first-of-type { margin-top: 0; }

.legal-page p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(0,0,0,0.65);
  margin-bottom: 1rem;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.4rem;
  padding: 0;
}

.legal-page li {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(0,0,0,0.65);
  margin-bottom: 0.3rem;
}

.legal-page a {
  color: #1e3528;
  text-decoration: underline;
}

.legal-page code {
  background: rgba(30,53,40,0.08);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.82rem;
  color: #1e3528;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.legal-grid-full { grid-column: 1 / -1; }

.legal-card {
  background: white;
  border-radius: 14px;
  padding: 1.8rem;
  border-left: 3px solid #1e3528;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.legal-card-green {
  background: #1e3528;
  color: #f2e4d2;
  border-left-color: #c9a882;
}

.legal-card h2 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1e3528;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-card h2::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e3528;
  flex-shrink: 0;
}

.legal-card-green h2 { color: #c9a882; }
.legal-card-green h2::before { background: #c9a882; }

.legal-card p,
.legal-card li {
  font-size: 0.83rem;
  line-height: 1.85;
  color: rgba(0,0,0,0.62);
  margin-bottom: 0.4rem;
}

.legal-card-green p,
.legal-card-green li { color: rgba(242,228,210,0.72); }

.legal-card ul { padding-left: 1.1rem; margin-top: 0.4rem; }
.legal-card a { color: #1e3528; text-decoration: underline; }
.legal-card-green a { color: #c9a882; }

.legal-card code {
  background: rgba(30,53,40,0.08);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.78rem;
  color: #1e3528;
}

.legal-stamp {
  text-align: center;
  padding-top: 2.5rem;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.06em;
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-grid-full { grid-column: 1; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .food-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-grid { grid-template-columns: 1fr; }
  .map-container { height: 320px; }
  .atmo-grid    { grid-template-columns: repeat(2, 1fr); }
  .food-grid-5  { grid-template-columns: repeat(3, 1fr); }
  .food-slide   { flex: 0 0 calc(50% - 0.6rem); }
}

/* ── HAMBURGER & MOBILE MENU ─────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.desktop-only { }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0 1rem;
}
.mobile-menu a {
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-inner .nav-links { display: none; }
  .desktop-only         { display: none; }
  .hamburger            { display: flex; }
  .hero-btns            { flex-direction: column; align-items: center; }
  .topbar-inner         { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  section               { padding: 3.5rem 0; }
  .food-slide           { flex: 0 0 calc(85% - 0.6rem); }
  .photo-wall           { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 65px; }
  .hero                 { padding-bottom: 8rem; }
  #matcha-badge         { bottom: 1rem; right: 0.5rem; }
  #matcha-badge .matcha-badge-ring { width: 68px; height: 68px; }
}

@media (max-width: 600px) {
  .atmo-grid          { grid-template-columns: 1fr; }
  .feature-strip-inner { gap: 1rem; }
  .feature-dot        { display: none; }
}

@media (max-width: 480px) {
  .food-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .menu-tab  { padding: 0.7rem 1rem; font-size: 0.62rem; }
}
