/* =====================================================
   Gross'Stübchen — Stylesheet
   Brand: Subtle, warm, handcrafted. Wood, cream, red accent.
   ===================================================== */

:root {
  /* Brand palette */
  --c-bg:           #F5EDE0;
  --c-bg-soft:      #FAF7F2;
  --c-surface:      #FFFFFF;
  --c-ink:          #1A1410;
  --c-ink-soft:     #4A4036;
  --c-muted:        #8A7E6E;
  --c-line:         #E2D8C7;
  --c-wood:         #8B5A2B;
  --c-wood-dark:    #5A3A1A;
  --c-accent:       #C8281C;
  --c-accent-dark:  #9E1F16;
  --c-success:      #5C7A3A;
  --c-gold:         #C9A55C;

  /* Typography */
  --f-display:  'Great Vibes', 'Brush Script MT', cursive;
  --f-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body:     'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max-w:      1200px;
  --gutter:     clamp(16px, 4vw, 32px);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;

  /* Shadow */
  --sh-soft:    0 2px 8px rgba(26,20,16,.06);
  --sh-card:    0 8px 28px rgba(26,20,16,.10);
  --sh-hover:   0 14px 40px rgba(26,20,16,.16);

  /* Motion */
  --ease:       cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--c-wood-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-accent); }

button { font: inherit; cursor: pointer; border: 0; background: none; }

.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--c-ink);
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-wood), var(--c-wood-dark));
  display: grid; place-items: center;
  color: #fff; font-family: var(--f-display); font-size: 26px; line-height: 1;
  box-shadow: var(--sh-soft);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--f-display); font-size: 26px; color: var(--c-ink); }
.brand-text span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-top: 2px; }

.nav-links { display: flex; gap: 6px; align-items: center; list-style: none; }
.nav-links a {
  display: inline-block; padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--c-ink-soft); font-weight: 500; font-size: 15px;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--c-bg); color: var(--c-wood-dark);
}

.lang-switch {
  display: flex; gap: 4px; padding: 4px;
  background: var(--c-bg); border-radius: 999px; border: 1px solid var(--c-line);
}
.lang-switch button {
  padding: 6px 10px; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: var(--c-muted); border-radius: 999px; transition: all .2s var(--ease);
}
.lang-switch button.active { background: var(--c-ink); color: var(--c-bg-soft); }
.lang-switch button:hover:not(.active) { color: var(--c-ink); }

.nav-toggle { display: none; padding: 8px; }

@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-bg-soft);
    flex-direction: column; align-items: stretch;
    padding: 12px var(--gutter);
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: all .25s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: inline-flex; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
}
.btn-primary { background: var(--c-accent); color: #fff; box-shadow: var(--sh-soft); }
.btn-primary:hover { background: var(--c-accent-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-card); }
.btn-ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn-ghost:hover { background: var(--c-bg); color: var(--c-wood-dark); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 78vh; display: grid; place-items: center;
  overflow: hidden; isolation: isolate;
  background: var(--c-ink);
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.05);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0,0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(26,20,16,.45) 0%, rgba(26,20,16,.85) 100%),
    linear-gradient(180deg, rgba(26,20,16,.30) 0%, rgba(26,20,16,.65) 100%);
}
.hero-inner { text-align: center; color: #fff; padding: 80px var(--gutter); max-width: 900px; }
.hero-kicker {
  display: inline-block; padding: 6px 14px; margin-bottom: 18px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(64px, 11vw, 140px);
  line-height: 1; font-weight: 400; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  margin-bottom: 6px;
}
.hero-tagline {
  font-family: var(--f-heading); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px); color: rgba(255,255,255,.92);
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.85);
  max-width: 620px; margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-status {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 14px; color: rgba(255,255,255,.85);
}
.hero-status .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-success); box-shadow: 0 0 0 0 rgba(92,122,58,.6);
  animation: pulse 2s infinite;
}
.hero-status.closed .dot { background: var(--c-accent); box-shadow: 0 0 0 0 rgba(200,40,28,.6); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(92,122,58,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(92,122,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(92,122,58,0); }
}

/* ===== Section base ===== */
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-soft { background: var(--c-bg-soft); }
.section-dark { background: var(--c-ink); color: var(--c-bg-soft); }

.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 12px; font-weight: 600;
}
.section-dark .eyebrow { color: var(--c-gold); }
.section-title {
  font-family: var(--f-heading);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 14px;
}
.section-lead {
  font-size: 18px; color: var(--c-ink-soft);
  max-width: 720px;
}
.section-dark .section-lead { color: rgba(245,237,224,.75); }

.section-head { text-align: center; margin-bottom: 50px; }
.section-head .section-lead { margin-inline: auto; }

/* ===== Highlights ===== */
.highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.highlight-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all .3s var(--ease);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card); border-color: transparent; }
.highlight-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--c-bg), #fff);
  display: grid; place-items: center;
  font-size: 26px; margin-bottom: 16px;
}
.highlight-card h3 { font-family: var(--f-heading); font-size: 19px; margin-bottom: 8px; }
.highlight-card p { font-size: 14.5px; color: var(--c-ink-soft); line-height: 1.55; }

/* ===== Menu ===== */
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 40px;
  padding: 6px;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: 999px; max-width: max-content; margin-inline: auto;
}
.menu-tabs button {
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  color: var(--c-ink-soft); border-radius: 999px;
  transition: all .25s var(--ease);
}
.menu-tabs button.active {
  background: var(--c-ink); color: var(--c-bg-soft);
  box-shadow: var(--sh-soft);
}
.menu-tabs button:hover:not(.active) { color: var(--c-ink); background: var(--c-bg); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
  max-width: 1100px; margin-inline: auto;
}
.menu-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  transition: all .3s var(--ease);
  position: relative;
}
.menu-card:hover { border-color: var(--c-wood); box-shadow: var(--sh-card); }
.menu-card.highlight {
  background: linear-gradient(135deg, var(--c-ink) 0%, #2a201a 100%);
  color: var(--c-bg-soft);
  border-color: transparent;
}
.menu-card.highlight .menu-name { color: #fff; }
.menu-card.highlight .menu-desc { color: rgba(245,237,224,.7); }
.menu-card.highlight .menu-badge { background: var(--c-accent); color: #fff; }

.menu-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.menu-name { font-family: var(--f-heading); font-size: 19px; font-weight: 600; line-height: 1.2; }
.menu-price {
  font-family: var(--f-heading); font-size: 22px; font-weight: 700;
  color: var(--c-wood-dark); white-space: nowrap;
}
.menu-card.highlight .menu-price { color: var(--c-gold); }
.menu-size { font-size: 13px; color: var(--c-muted); margin-left: 4px; }
.menu-desc { font-size: 14px; color: var(--c-ink-soft); line-height: 1.5; margin-top: 4px; }
.menu-meta {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
  font-size: 11px; letter-spacing: .04em;
}
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 999px;
  background: var(--c-bg); color: var(--c-ink-soft);
  border: 1px solid var(--c-line);
}
.tag-accent { background: rgba(200,40,28,.08); color: var(--c-accent-dark); border-color: rgba(200,40,28,.2); }
.tag-wood { background: rgba(139,90,43,.08); color: var(--c-wood-dark); border-color: rgba(139,90,43,.2); }
.menu-badge {
  position: absolute; top: -10px; right: 18px;
  padding: 4px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--c-accent); color: #fff;
  border-radius: 999px; box-shadow: var(--sh-soft);
}
.menu-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--c-muted); font-style: italic; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-card);
  position: relative; aspect-ratio: 4/5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,20,16,.4));
}

.about-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.fact {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-md); padding: 18px;
}
.fact-k { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 4px; }
.fact-v { font-family: var(--f-heading); font-size: 22px; color: var(--c-wood-dark); font-weight: 700; }

/* ===== Catering ===== */
.catering {
  background:
    linear-gradient(135deg, rgba(26,20,16,.92) 0%, rgba(26,20,16,.75) 100%),
    var(--c-ink);
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center;
  color: var(--c-bg-soft);
}
@media (max-width: 860px) { .catering { grid-template-columns: 1fr; padding: 36px 28px; } }
.catering-media {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--sh-hover);
  aspect-ratio: 4/3;
  order: 2;
}
.catering-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .catering-media { order: 0; } }
.catering-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--c-accent); color: #fff;
  padding: 14px 24px; border-radius: var(--radius-md);
  margin: 22px 0;
}
.catering-price .v {
  font-family: var(--f-heading); font-size: 44px; font-weight: 700; line-height: 1;
}
.catering-price .u { font-size: 14px; opacity: .85; }
.catering-features { list-style: none; margin-top: 24px; display: grid; gap: 10px; }
.catering-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: rgba(245,237,224,.88);
}
.catering-features li::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-success); color: #fff;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  margin-top: 1px;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/5; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--sh-soft); position: relative;
  cursor: zoom-in; transition: all .3s var(--ease);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--sh-card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.span-2 { grid-column: span 2; aspect-ratio: 8/5; }
@media (max-width: 700px) { .gallery-item.span-2 { grid-column: span 1; aspect-ratio: 4/5; } }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-md); padding: 28px;
  position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: -8px; left: 18px;
  font-family: var(--f-display); font-size: 90px; line-height: 1;
  color: var(--c-wood); opacity: .25;
}
.review-stars { color: var(--c-gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.6; color: var(--c-ink-soft); margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 600; font-size: 14px; }
.review-source { font-size: 12px; color: var(--c-muted); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-md); padding: 32px;
}
.contact-block { padding: 18px 0; border-top: 1px solid var(--c-line); }
.contact-block:first-of-type { border-top: 0; padding-top: 0; }
.contact-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 8px; }
.contact-value { font-family: var(--f-heading); font-size: 20px; color: var(--c-ink); font-weight: 600; }
.contact-value a { color: inherit; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.hours-list { list-style: none; display: grid; gap: 8px; margin-top: 8px; }
.hours-list li {
  display: flex; justify-content: space-between;
  font-size: 15px;
  padding: 6px 0;
}
.hours-list .d { color: var(--c-ink-soft); }
.hours-list .t { color: var(--c-wood-dark); font-weight: 600; }
.hours-list .t.closed { color: var(--c-muted); font-weight: 400; font-style: italic; }

.map-frame {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/3; background: var(--c-bg);
  border: 1px solid var(--c-line);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.footer {
  background: var(--c-ink); color: var(--c-bg-soft);
  padding: 60px 0 30px; margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-text strong { color: var(--c-bg-soft); }
.footer-brand .brand-text span { color: rgba(245,237,224,.6); }
.footer-brand p { margin-top: 16px; color: rgba(245,237,224,.7); font-size: 14px; max-width: 360px; }

.footer h4 { font-family: var(--f-heading); font-size: 15px; margin-bottom: 14px; color: #fff; letter-spacing: .04em; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a { color: rgba(245,237,224,.7); font-size: 14px; }
.footer a:hover { color: var(--c-gold); }

.footer-bottom {
  border-top: 1px solid rgba(245,237,224,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(245,237,224,.5);
}

/* ===== Modal (Allergens) ===== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(26,20,16,.6); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
  padding: 20px;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--c-bg-soft); border-radius: var(--radius-md);
  max-width: 560px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  padding: 36px;
  box-shadow: var(--sh-hover);
  transform: translateY(20px); transition: transform .3s var(--ease);
}
.modal.open .modal-card { transform: translateY(0); }
.modal-card h2 { font-family: var(--f-heading); margin-bottom: 20px; font-size: 24px; }
.modal-list { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.modal-list li {
  padding: 12px 14px; background: var(--c-surface);
  border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  font-size: 14px;
}
.modal-list li b { color: var(--c-accent); margin-right: 8px; font-family: var(--f-heading); }
.modal-close { float: right; font-size: 28px; line-height: 1; color: var(--c-muted); padding: 0 8px; }
.modal-close:hover { color: var(--c-ink); }

/* ===== Utility ===== */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--c-wood), transparent);
  margin: 0 auto 24px;
}
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
