:root {
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --olive: #26331f;
  --olive2: #3a4a2e;
  --gold: #b6923f;
  --gold-light: #e5c079;
  --ink: #201d17;
  --muted: #6d6a5f;
  --line: #e1d8c4;
  --radius: 20px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  padding-bottom: 68px; /* space for mobile sticky bar */
}
h1, h2, h3, .logo span { font-family: var(--font-serif); }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
  padding: 0 clamp(16px, 5vw, 60px);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo-img { height: 42px; width: 42px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 0.95; }
.logo-text span { font-size: 28px; color: var(--olive); font-weight: 700; }
.logo-text small { font-size: 9px; letter-spacing: 0.3em; color: var(--gold); margin-top: 2px; }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.main-nav a:hover { color: var(--gold); }
.header-call {
  text-decoration: none;
  background: var(--olive);
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.menu-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--olive); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 60px clamp(20px, 7vw, 100px);
  background: linear-gradient(120deg, #1a2116 0%, #2c3823 45%, #7a5f39 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.16), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(230, 190, 120, 0.18), transparent 40%);
}
.hero.has-image {
  background-size: cover;
  background-position: center;
}
.hero.has-image::before {
  background: linear-gradient(180deg, rgba(15, 18, 11, 0.55) 0%, rgba(15, 18, 11, 0.75) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.eyebrow { font-size: 12px; letter-spacing: 0.3em; font-weight: 700; color: var(--gold-light); margin: 0 0 14px; }
.eyebrow.dark { color: var(--gold); }
.hero-content h1 { font-size: clamp(48px, 8vw, 88px); line-height: 0.95; margin: 0 0 6px; }
.hero-content h2 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: clamp(14px, 2vw, 19px);
  margin: 0 0 22px;
}
.hero-text { font-size: clamp(16px, 2vw, 19px); line-height: 1.7; color: #ece7d9; max-width: 560px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--gold-light); color: #211b0c; }
.btn-outline { background: transparent; border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-dark { background: var(--olive); color: #fff; }

/* ---------- Section shell ---------- */
.section-pad { padding: 70px clamp(20px, 7vw, 100px); }
.section-heading { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.section-heading p:last-child { color: var(--muted); line-height: 1.6; margin-top: 8px; }
.section-heading.light p:last-of-type { color: #d8cca4; }

/* ---------- Malice / Lunches ---------- */
.lunches-section { background: var(--cream); }

.today-offer { max-width: 1100px; margin: 0 auto 46px; }
.today-offer-head { text-align: center; margin-bottom: 20px; }
.today-badge {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.today-badge.small { position: absolute; right: 16px; top: 16px; padding: 5px 10px; font-size: 10px; }
.today-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lunch-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(38, 51, 31, 0.06);
}
.lunch-photo { height: 150px; background: center/cover; }
.lunch-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(145deg, #e7dac1, #b89d72);
}
.lunch-body { padding: 18px 20px 20px; }
.lunch-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.lunch-top h3 { font-size: 23px; margin: 0; }
.lunch-price { font-weight: 800; color: var(--gold); font-family: var(--font-serif); font-size: 22px; white-space: nowrap; }
.lunch-body p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 8px 0 0; }
.lunch-tag {
  display: inline-block;
  margin-top: 10px;
  background: #e7f0e2;
  color: #3c5c30;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}

.week-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 1300px; margin: 0 auto; }
.day-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.day-card.today { border: 2px solid var(--olive); box-shadow: 0 14px 30px rgba(38, 51, 31, 0.1); }
.day-card h3 { margin: 0 0 14px; font-size: 21px; }
.day-card ul { list-style: none; margin: 0; padding: 0; }
.day-card li { padding: 10px 0; border-top: 1px solid #efe8d8; }
.day-card li:first-child { border-top: none; }
.day-item-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.day-item-info { display: flex; align-items: center; gap: 8px; min-width: 0; }
.day-item-thumb { width: 40px; height: 40px; border-radius: 8px; background-size: cover; background-position: center; flex: 0 0 auto; }
.day-item-price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.mini-tag { display: inline-block; margin-left: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; color: #3c5c30; }
.day-card li small { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; line-height: 1.5; }

.lunch-cta {
  max-width: 1300px;
  margin: 26px auto 0;
  background: var(--olive);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lunch-cta div { display: flex; flex-direction: column; }
.lunch-cta span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: #cfd6c6; }
.lunch-cta strong { font-weight: 700; font-size: 30px; font-family: var(--font-serif); }
.lunch-cta small { color: #cbd3c2; margin-top: 4px; }

/* ---------- A la carte ---------- */
.alacarte-section { background: var(--paper); }
.alacarte-nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 900px; margin: 0 auto 44px; }
.alacarte-nav a {
  text-decoration: none;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.alacarte-nav a:hover { background: var(--gold-light); border-color: var(--gold-light); }

.alacarte-list { max-width: 900px; margin: 0 auto; }
.alacarte-category { margin-bottom: 40px; scroll-margin-top: 90px; }
.alacarte-category:last-child { margin-bottom: 0; }
.alacarte-category h3 { font-size: 26px; color: var(--olive); border-bottom: 2px solid var(--gold-light); padding-bottom: 8px; margin: 0 0 6px; }
.alacarte-item { padding: 14px 0; border-top: 1px solid #efe8d8; }
.alacarte-item:first-of-type { border-top: none; }
.alacarte-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.alacarte-item-top h4 { margin: 0; font-size: 19px; font-family: var(--font-serif); font-weight: 700; }
.alacarte-price { font-weight: 800; color: var(--gold); font-family: var(--font-serif); font-size: 20px; white-space: nowrap; }
.alacarte-item p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 6px 0 0; }
.allergen-tag { display: inline-block; margin-top: 6px; font-size: 11px; color: #8a7550; letter-spacing: 0.02em; }

.allergen-legend { max-width: 900px; margin: 36px auto 0; background: var(--cream); border-radius: 16px; padding: 16px 22px; }
.allergen-legend summary { cursor: pointer; font-weight: 700; color: var(--olive); }
.legend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; margin-top: 14px; font-size: 13px; color: var(--muted); }
.legend-grid strong { color: var(--olive); }

.alacarte-footnote { max-width: 900px; margin: 22px auto 0; font-size: 12px; color: var(--muted); text-align: center; }
.alacarte-pdf-link { display: flex; width: fit-content; margin: 22px auto 0; }

/* ---------- O nas ---------- */
.about.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 80px clamp(20px, 7vw, 100px); }
.split-copy p { line-height: 1.85; color: var(--muted); font-size: 16px; }
.split-copy h2 { font-size: clamp(34px, 4vw, 48px); margin: 10px 0 20px; }
.text-link { color: var(--olive); font-weight: 700; text-transform: uppercase; font-size: 12px; text-decoration: none; display: inline-block; margin-top: 8px; }
.split-image { min-height: 380px; border-radius: var(--radius); background: center/cover; }
.placeholder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  background: linear-gradient(135deg, #6d795f, #26331f 55%, #b78f58);
}

/* ---------- Galerija ---------- */
.gallery { background: #1c2216; color: #fff; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; grid-auto-rows: 220px; gap: 10px; max-width: 1200px; margin: 0 auto; }
.gallery-grid .g { border-radius: 14px; background: center/cover; }
.gallery-grid .g1 { grid-row: 1 / 3; }
.gallery-grid .g4 { grid-column: 2 / 4; }
.gallery-grid .g6 { grid-column: 2 / 4; }
.gallery-grid .placeholder-photo span { padding: 0 16px; font-size: 13px; }
.gallery-grid .g1.placeholder-photo { background: linear-gradient(135deg, #8f744f, #26331f); }
.gallery-grid .g2.placeholder-photo { background: linear-gradient(135deg, #7d5840, #b98f6e); }
.gallery-grid .g3.placeholder-photo { background: linear-gradient(135deg, #34462d, #776344); }
.gallery-grid .g4.placeholder-photo { background: linear-gradient(135deg, #bca56f, #64462f); }
.gallery-grid .g5.placeholder-photo { background: linear-gradient(135deg, #8f744f, #26331f); }
.gallery-grid .g6.placeholder-photo { background: linear-gradient(135deg, #7d5840, #b98f6e); }

/* ---------- Kontakt ---------- */
.contact-section { background: var(--olive); color: #fff; }
.contact-section .section-heading { text-align: left; margin: 0 0 34px; max-width: 640px; }
.contact-section .section-heading p:last-child { color: #cdd5c4; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
}
.contact-item span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #cfd6c6; }
.contact-item strong { font-size: 16px; }
.map-embed { border-radius: 16px; overflow: hidden; min-height: 260px; }
.map-placeholder {
  height: 100%;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #d7ddcf;
}
.map-placeholder .text-link { color: var(--gold-light); }
.contact-call { margin-top: 30px; }

/* ---------- Footer ---------- */
footer { background: #14180f; color: #e6e4d9; padding: 56px clamp(20px, 7vw, 100px) 20px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-logo span { font-size: 30px; color: #fff; }
footer h4 { text-transform: uppercase; font-size: 12px; letter-spacing: 0.14em; color: var(--gold-light); margin: 0 0 10px; }
footer p { color: #bcbaaf; line-height: 1.8; margin: 0; }
footer a { text-decoration: none; color: #cfcdbf; }
footer a:hover { color: var(--gold-light); }
.copyright { text-align: center; border-top: 1px solid #2a3020; margin-top: 36px; padding-top: 18px; color: #8a8874; font-size: 12px; max-width: 1200px; margin-left: auto; margin-right: auto; }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffdf8;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .today-grid { grid-template-columns: repeat(2, 1fr); }
  .week-grid { grid-template-columns: repeat(3, 1fr); }
  .about.split { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; order: -1; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; grid-auto-rows: 200px; }
  .gallery-grid .g1 { grid-column: 1 / 3; grid-row: 1; }
  .gallery-grid .g4 { grid-column: 1 / 3; }
  .gallery-grid .g6 { grid-column: auto; }
}

@media (max-width: 760px) {
  body { padding-bottom: 78px; }
  .topbar { height: 64px; padding: 0 16px; gap: 12px; }
  .logo span { font-size: 23px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fffdf8;
    flex-direction: column;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid #f0ebdd; width: 100%; }
  .menu-toggle { display: block; }
  .desktop-call { display: none; }

  .hero { min-height: 560px; padding: 50px 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }

  .section-pad { padding: 54px 16px; }
  .today-grid { grid-template-columns: 1fr; }
  .week-grid { grid-template-columns: 1fr; }
  .lunch-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .lunch-cta .btn { width: 100%; }

  .alacarte-category h3 { font-size: 22px; }
  .alacarte-item-top h4 { font-size: 17px; }
  .legend-grid { grid-template-columns: 1fr; }

  .about.split { padding: 54px 16px; gap: 26px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-call { width: 100%; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-grid .g { min-height: 200px; }
  .gallery-grid .g1, .gallery-grid .g4, .gallery-grid .g6 { grid-column: auto; grid-row: auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 26px; }

  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 62px;
    text-decoration: none;
    color: var(--olive);
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-bar span { font-size: 18px; }
  .mobile-bar a:not(:last-child) { border-right: 1px solid var(--line); }
}
