@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500,650&family=Inter:wght@400;500;600;700&display=swap");

/* =========================
   Design Tokens
========================= */
:root{
  --bg0:#0b0d10;
  --bg1:#0e1217;
  --bg2:#121823;

  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.09);
  --line: rgba(255,255,255,.12);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);

  --accent:#c8a15a;
  --shadow: 0 18px 70px rgba(0,0,0,.55);

  --r:18px;
  --r2:22px;

  --container: 1100px;

  /* Layout constants */
  --header-h: 64px;
}

/* =========================
   Base
========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(200,161,90,.14), transparent 55%),
    radial-gradient(900px 620px at 70% 30%, rgba(255,255,255,.07), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-decoration-color:rgba(200,161,90,.55); }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.section{ padding:72px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.section__head h2{
  margin:0;
  font-family: Fraunces, serif;
  font-weight:650;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing:-.02em;
}
.muted{ color:var(--muted); margin:6px 0 0; }

.kicker{
  display:inline-block;
  padding:7px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(0,0,0,.22);
  color:var(--muted);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hr{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  margin:18px 0;
}

/* =========================
   Topstrip
========================= */
.topstrip{
  background: rgba(10,12,14,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topstrip__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}
.topstrip__left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  min-width:0;
}
.topstrip__right{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.topstrip__text{
  color: var(--muted);
  font-weight:650;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.topstrip__link{
  color: var(--muted);
  font-weight:650;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 56ch;
}
.dot{ color: rgba(255,255,255,.35); }

/* Pills/Badges/Tags */
.chip, .badge, .pill, .tag{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color:var(--muted);
  font-weight:650;
  font-size:12px;
}
.chip--line, .badge--muted{ background: transparent; }

/* =========================
   Header / Nav
========================= */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(10,12,14,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);

  /* iOS Notch */
  padding-top: env(safe-area-inset-top);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  min-height: var(--header-h);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand__mark{
  width:40px;height:40px;
  border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(200,161,90,.22), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.10);
  font-weight:800;
}
.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
  min-width:0;
}
.brand__text strong{
  font-weight:800;
  letter-spacing:-.01em;
}
.brand__text small{
  color:var(--muted);
  font-size:12px;
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
}
.nav a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
}
.nav a:hover{ color:var(--text); text-decoration:none; background: rgba(255,255,255,.06); }

.nav__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(200,161,90,.35);
  background: linear-gradient(180deg, rgba(200,161,90,.30), rgba(200,161,90,.16));
  color:var(--text);
  font-weight:750;
}

.nav-toggle{
  display:none;
  appearance:none;
  background:none;
  border:none;
  padding:10px;
  border-radius:12px;
}
.nav-toggle:hover{ background: rgba(255,255,255,.06); cursor:pointer; }
.nav-toggle span{
  display:block;
  width:26px;
  height:2px;
  background: rgba(255,255,255,.92);
  border-radius:2px;
}
.nav-toggle span + span{ margin-top:5px; }

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:750;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.btn--primary{
  background: linear-gradient(180deg, rgba(200,161,90,.30), rgba(200,161,90,.16));
  border-color: rgba(200,161,90,.35);
}
.btn--ghost{ background: rgba(0,0,0,.18); }
.btn--wide{ width:100%; }

/* =========================
   Hero
========================= */
.hero{
  position:relative;
  padding:76px 0 54px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(200,161,90,.18), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.40)),
    url("assets/hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.05) brightness(1.1);
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(800px 400px at 0% 0%, rgba(0,0,0,.10), rgba(0,0,0,.70));
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.hero__copy{ padding:6px 0; }
.hero__copy .lead{
  margin:14px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:56ch;
}
.hero__copy h1{
  margin:10px 0 0;
  font-family: Fraunces, serif;
  font-weight:650;
  letter-spacing:-.02em;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.panel{
  border-radius: var(--r2);
  background: rgba(10,12,14,.42);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow:hidden;
}
.panel__top{
  padding:16px 16px 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.panel__rows{
  padding:10px 16px 16px;
  display:grid;
  gap:10px;
}
.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-top:1px dashed rgba(255,255,255,.12);
}
.row:first-child{ border-top:none; }

/* Hero Meta */
.hero__meta{
  margin-top:16px;
  display:grid;
  grid-template-columns: 2.6fr 1fr 1.7fr;
  gap:14px;
  align-items:stretch;
}
.meta{
  border-radius: var(--r2);
  background: rgba(10,12,14,.45);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 55px rgba(0,0,0,.45);
  padding:14px 16px;
  min-width:0;
  overflow:hidden;
}
.meta__k{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color: rgba(255,255,255,.62);
}
.meta__v{
  font-size:  14px;
  font-weight:650;
  line-height:1.35;
  overflow-wrap:anywhere;
  min-width: 0;
}

/* =========================
   Öffnungszeiten (kompatibel mit deinem HTML)
========================= */

/* Sommer/Winter nebeneinander (Desktop), untereinander (Mobile) */
.meta--hours .hours{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 760px){
  .meta--hours .hours{ grid-template-columns: 1fr; }
}

.meta--hours .hours__col{ min-width:0; }

.meta--hours .hours__title{
  font-weight:750;
  margin: 2px 0 10px;
}

/* DEINE Zeilen: .hours-mini__row */
.meta--hours .hours-mini__row{
  display:grid;
  grid-template-columns: 1fr auto;  /* Tag | Zeit */
  gap: 6px 12px;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  min-width:0;
}
.meta--hours .hours-mini__row:first-of-type{ border-top:0; }

/* Label-Varianten abfangen */
.meta--hours .hours__label,
.meta--hours .hm-label{
  min-width:0;
  overflow-wrap:anywhere;
  color: rgba(255,255,255,.86);
  font-weight:650;
}

/* Zeit-Varianten abfangen */
.meta--hours .hours__time,
.meta--hours .hm-time{
  white-space:nowrap;
  font-variant-numeric: tabular-nums;
  font-weight:750;
}

/* Note-Varianten: IMMER in neue Zeile unter Tag+Zeit */
.meta--hours .hours__note,
.meta--hours .hm-note{
  grid-column: 1 / -1;      /* über beide Spalten */
  margin-top: 2px;
  font-size: .92em;
  color: rgba(255,255,255,.68);
  font-weight:600;
}

/* deine "Ghost"-Zeile (links leer lassen, aber Ausrichtung behalten) */
.meta--hours .hm-ghost{
  visibility:hidden;
}

/* Ruhetag etwas separieren */
.meta--hours .hours__closed{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-weight: 700;
  color: rgba(255,255,255,.80);
}

/* =========================
   Cards / Highlights
========================= */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}

.card{
  border-radius: var(--r2);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  padding:18px;
}
.card--soft{ background: rgba(255,255,255,.035); }

.card h3{
  margin:0 0 8px;
  font-family: Fraunces, serif;
  font-weight:650;
  font-size:26px;
}

.tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }

.food{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.food__img{
  width:100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background-size: cover;
  background-repeat:no-repeat;
  background-position:center;
  box-shadow: 0 16px 44px rgba(0,0,0,.40);
}
.food__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
}

/* =========================
   Gallery (dein HTML nutzt .gi Buttons)
========================= */
.gallery{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}

.gi{
  border:1px solid rgba(200,161,90,.22);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  border-radius: var(--r2);
  overflow:hidden;
  padding:0;
  cursor:pointer;
}
.gi img{
  width:100%;
  height: auto;
  object-fit: contains;
  display:block;
}
.gi:hover{ transform: translateY(-2px); transition: transform .15s ease; }

/* =========================
   About / Quotes / Grid
========================= */
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:18px;
}
.about__img{
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  min-height: 260px;
  background-size:cover;
  background-position:center;
}

.quote{
  border-radius: var(--r2);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:18px;
}
.signature{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
  color:rgba(255,255,255,.80);
  font-weight:700;
}
.signature__dot{
  width:10px;height:10px;border-radius:50%;
  background: rgba(200,161,90,.75);
  box-shadow: 0 0 0 6px rgba(200,161,90,.12);
}

/* =========================
   Map
========================= */
.map{
  border-radius: var(--r2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.map iframe{
  width:100%;
  height:380px;
  border:0;
  display:block;
}

/* =========================
   Footer
========================= */
.footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer__inner{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:space-between;
  color: rgba(255,255,255,.70);
  font-size:14px;
}

/* =========================
   Lightbox
========================= */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.78);
  z-index:200;
  padding:18px;
}
.lightbox.is-open{ display:grid; }
.lightbox__img{
  max-width:min(1024px, 96vw);
  max-height: 86vh;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 80px rgba(0,0,0,.65);
}
.lightbox__close{
  position:fixed;
  top:14px; right:14px;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,12,14,.55);
  color:var(--text);
  cursor:pointer;
  backdrop-filter: blur(10px);
}

/* =========================
   Floating Call Button (falls vorhanden)
========================= */
.fab{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:180;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:999px;
  border:1px solid rgba(200,161,90,.35);
  background: linear-gradient(180deg, rgba(200,161,90,.30), rgba(200,161,90,.16));
  color:var(--text);
  font-weight:800;
}

/* =========================
   Responsive
========================= */

/* Tablet & Mobile */
@media (max-width: 980px){

  /* Topstrip ausblenden => kein "abgeschnitten" mehr oben */
  .topstrip{ display:none; }

  .container{
    width: calc(100% - 24px);
  }

  /* Header kompakter */
  :root{ --header-h: 60px; }
  .brand__text small{ display:none; }
  .brand__mark{ width:36px; height:36px; border-radius:13px; }

  /* Burger: clean (ohne Capsule) */
.nav-toggle{
  display:none;
  appearance:none;
  -webkit-appearance:none;
  background: transparent !important;
  border: 0 !important;
  padding: 10px;
  border-radius: 12px;
  line-height: 0;
}

.nav-toggle:hover{ cursor:pointer; background: rgba(255,255,255,.06) !important; }

.nav-toggle span{
  display:block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 2px;
}
.nav-toggle span + span{ margin-top: 6px; }

  /* Mobile Nav Overlay */
  .nav{
    position: fixed;
    top: calc(env(safe-area-inset-top) + var(--header-h));
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    padding: 18px 18px 22px;
    background: rgba(10,12,14,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.10);

    transform: translateY(-120%);
    transition: transform .25s ease;
    z-index: 120;
  }
  .nav.is-open{ transform: translateY(0); }

  .nav a{
    width:100%;
    font-size:18px;
    padding:12px 10px;
    border-radius:14px;
  }

  .nav__cta{
    width:100%;
    text-align:center;
    padding:12px 14px;
    border-radius:14px;
  }

  /* Hero stacken */
  .hero{ padding:66px 0 46px; }
  .hero__inner{ grid-template-columns: 1fr; }
  .panel{ max-width: 560px; width:100%; justify-self:start; }

  .hero__meta{ grid-template-columns: 1fr; }

  .cards{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

/* Small phones */
@media (max-width: 520px){
  .container{ width: calc(100% - 26px); }
  .btn{ width:100%; }
  .hero__actions{ gap:10px; }

  .fab{
    bottom: 18px;
    right: 18px;
    padding: 14px 20px;
    font-size: 14px;
  }


