/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  /* Vonaco-inspired warm dark palette */
  --dark:      #100A01;
  --dark-mid:  #1E1915;
  --dark-warm: #2B1F14;
  --cream:     #F4EFE6;
  --cream-d:   #E8E0D2;
  --gold:      #C9A350;
  --gold-d:    #A6822E;
  --gold-lt:   #DEC07A;
  --bg:        #F4EFE6;
  --text:      #2A2520;
  --text-soft: #7A7168;
  --border:    #DDD6C8;
  --white:     #FFFFFF;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --max:  1180px;
  --nav:  70px;
  --tr:   0.22s ease;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.sec { padding: 6rem 0; }

/* ===== TYPE ===== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.4rem; }
p  { margin-bottom: 1rem; }

.lbl {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.lbl--lt { color: rgba(201,163,80,0.75); }
.lbl--dim { color: rgba(244,239,230,0.45); }

.ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ornament::before, .ornament::after {
  content: '';
  height: 1px;
  width: 36px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--tr);
  cursor: pointer;
}
.btn-gold  { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-d); }
.btn-outline-w { border: 1.5px solid rgba(255,255,255,0.55); color: rgba(255,255,255,0.9); }
.btn-outline-w:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }
.btn-outline-d { border: 1.5px solid var(--dark); color: var(--dark); }
.btn-outline-d:hover { background: var(--dark); color: var(--cream); }
.btn-full { width: 100%; text-align: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav);
  background: linear-gradient(to bottom, rgba(16,10,1,0.55) 0%, transparent 100%);
  border-bottom: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(16,10,1,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,163,80,0.12);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--tr);
}
.nav-links a:hover { color: var(--gold); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.8); transition: all var(--tr); }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  position: relative;
  margin-left: 1.5rem;
}
.lang-switcher::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}
.lang-current {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 2px;
  transition: color var(--tr);
}
.lang-current:hover { color: var(--gold); }
.lang-arrow { font-size: 0.6rem; transition: transform var(--tr); }
.lang-switcher:hover .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(16,10,1,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,163,80,0.18);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--tr), transform var(--tr);
  min-width: 56px;
}
.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-opt {
  width: 100%;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  transition: color var(--tr), background var(--tr);
}
.lang-opt:hover { color: var(--gold); background: rgba(201,163,80,0.08); }
.lang-opt--active { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16,10,1,0.40) 0%,
    rgba(16,10,1,0.18) 40%,
    rgba(16,10,1,0.60) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav) + 4rem) 1.5rem 3rem;
}
.hero-logo { height: 280px; width: auto; margin: 0 auto 0.75rem; }
.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.75rem;
}
.hero-divider span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,163,80,0.7);
}
.hero-divider::before, .hero-divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background: rgba(201,163,80,0.5);
}
.hero-body h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-body > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero video layer */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.hero.video-mode .hero-bg { opacity: 0; transition: opacity 0.5s ease; }
.hero.video-mode .hero-video-bg { opacity: 1; }
.hero.video-mode .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(16,10,1,0.72) 0%,
    rgba(16,10,1,0.50) 40%,
    rgba(16,10,1,0.88) 100%
  );
}

/* Hero background picker */
.hero-picker {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(16,10,1,0.72);
  border: 1px solid rgba(201,163,80,0.2);
  border-radius: 50px;
  padding: 0.3rem 0.45rem;
  backdrop-filter: blur(12px);
}
.hero-picker-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,163,80,0.5);
  padding: 0 0.5rem 0 0.35rem;
}
.hpb {
  padding: 0.38rem 0.9rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.18s;
}
.hpb:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.07); }
.hpb.active { background: var(--gold); color: var(--dark); }

/* Hero bottom strip — vonaco style */
.hero-strip {
  position: relative;
  z-index: 1;
  background: rgba(16,10,1,0.88);
  border-top: 1px solid rgba(201,163,80,0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-strip-item {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--tr);
  cursor: default;
}
.hero-strip-item:last-child { border-right: none; }
.hero-strip-item:hover { background: rgba(201,163,80,0.07); }
.strip-num {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.strip-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}
.strip-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

/* ===== DNEVNA PONUDA (dark section — vonaco inspired) ===== */
.daily-special {
  background: var(--dark-warm);
  padding: 5.5rem 0;
  position: relative;
}
.daily-special::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.daily-special::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.daily-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.daily-head h2 { color: var(--cream); margin-bottom: 0; }
.daily-note {
  font-size: 0.78rem;
  color: rgba(244,239,230,0.4);
  max-width: 260px;
  text-align: right;
  line-height: 1.6;
}
.daily-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.daily-card {
  background: rgba(16,10,1,0.5);
  padding: 1.75rem 1.5rem;
  transition: background var(--tr);
}
.daily-card:hover { background: rgba(201,163,80,0.07); }
.daily-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 1.25rem;
  filter: brightness(0.85) saturate(0.9);
  transition: filter var(--tr);
}
.daily-card:hover .daily-card-img { filter: brightness(1) saturate(1); }
.daily-card-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.daily-card-desc {
  font-size: 0.78rem;
  color: rgba(244,239,230,0.45);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.daily-card-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.daily-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.daily-footer p {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.38);
  margin: 0;
}
.daily-footer a { color: var(--gold); }
.daily-footer a:hover { color: var(--gold-lt); }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
  position: relative;
}
.about-imgs img:first-child {
  grid-row: span 2;
  height: 100%;
  object-fit: cover;
}
.about-imgs img:not(:first-child) {
  height: 100%;
  object-fit: cover;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-soft); line-height: 1.85; margin-bottom: 1.1rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label { font-size: 0.9rem; color: var(--text-soft); line-height: 1.5; }

/* ===== SERVICES ===== */
.services {
  background: #2e432f;
  position: relative;
  overflow: hidden;
}
.services-head { margin-bottom: 4.5rem; text-align: center; }
.services-head h2 { color: var(--cream); }

/* Video background elements — hidden by default */
.svc-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  pointer-events: none;
}
.svc-overlay {
  position: absolute;
  inset: 0;
  display: none;
  pointer-events: none;
}
.services .container { position: relative; z-index: 1; }

/* ---- Variant 2: Video + 90% solid overlay ---- */
.services.sv-2 .svc-video-bg { display: block; }
.services.sv-2 .svc-overlay { display: block; background: rgba(46,67,47,0.90); }

/* ---- Variant 3: Video + 75% overlay ---- */
.services.sv-3 .svc-video-bg { display: block; }
.services.sv-3 .svc-overlay { display: block; background: rgba(46,67,47,0.75); }

/* ---- Variant 4: Video + gradient overlay ---- */
.services.sv-4 .svc-video-bg { display: block; }
.services.sv-4 .svc-overlay {
  display: block;
  background: linear-gradient(135deg,
    rgba(16,10,1,0.95) 0%,
    rgba(46,67,47,0.72) 50%,
    rgba(16,10,1,0.95) 100%);
}

/* ---- Variant 5: Video + glass cards ---- */
.services.sv-5 .svc-video-bg { display: block; }
.services.sv-5 .svc-overlay { display: block; background: rgba(16,10,1,0.65); }
.services.sv-5 .service-card {
  background: rgba(46,67,47,0.35) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}
.services.sv-5 .service-card:hover {
  background: rgba(46,67,47,0.55) !important;
}
.services.sv-5 .services-grid { background: transparent; gap: 1.5rem; }

/* Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem;
  background: #2e432f;
  transition: background var(--tr);
  color: inherit;
}
.service-card:hover { background: #364f37; }
.service-card-logo {
  height: 120px;
  width: auto;
  margin-bottom: 2rem;
  border-radius: 3px;
  align-self: flex-start;
}
.service-card-num {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-card-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.service-card-desc {
  font-size: 0.85rem;
  color: rgba(244,239,230,0.45);
  line-height: 1.85;
  flex: 1;
  margin: 0;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
  transition: gap var(--tr);
}
.service-card:hover .service-card-link { gap: 0.85rem; }

/* ===== STYLE PICKER BAR ===== */
.style-picker {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: none;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16,10,1,0.94);
  border: 1px solid rgba(201,163,80,0.22);
  border-radius: 50px;
  padding: 0.4rem 0.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  white-space: nowrap;
}
.style-picker.visible { display: flex; }
.style-picker-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,163,80,0.55);
  padding: 0 0.6rem 0 0.4rem;
}
.spb {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.18s;
  background: none;
  border: none;
  font-family: var(--sans);
}
.spb:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
.spb.active { background: var(--gold); color: var(--dark); }
.cpb {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.18s;
  background: none;
  border: none;
  font-family: var(--sans);
}
.cpb:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
.cpb.active { background: var(--gold); color: var(--dark); }

.acc { border-top: 1px solid rgba(255,255,255,0.08); }
.acc:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }

.acc-header {
  width: 100%;
  display: grid;
  grid-template-columns: 4.5rem 1fr 2.5rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1.85rem 0;
  text-align: left;
  cursor: pointer;
  transition: opacity var(--tr);
}
.acc-header:hover .acc-name { color: var(--gold); }

.acc-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.acc-name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--cream);
  display: block;
  transition: color var(--tr);
}
.acc-sub {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.3);
  display: block;
  margin-top: 0.2rem;
}
.acc-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(201,163,80,0.5);
  transition: transform var(--tr), color var(--tr);
  justify-self: end;
  line-height: 1;
}
.acc.is-open .acc-icon { transform: rotate(45deg); color: var(--gold); }

.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-inner { padding: 0 0 3rem 6rem; }
.acc-inner > p { color: rgba(244,239,230,0.55); max-width: 600px; line-height: 1.85; margin-bottom: 1.75rem; }

/* District logos inside accordion */
.district-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1.75rem;
  border-radius: 4px;
}

/* Daily District images */
.img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.img-grid img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
  transition: filter var(--tr);
}
.img-grid img:hover { filter: brightness(1) saturate(1); }

/* Urban menu */
.menu-section { margin-top: 0.5rem; }
.menu-cat-head {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}
.menu-cat-head:first-child { margin-top: 0; }
.burger-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 0.5rem; }
.burger-item { display: flex; gap: 0.875rem; }
.burger-item img { width: 68px; height: 68px; object-fit: cover; flex-shrink: 0; }
.b-info { display: flex; flex-direction: column; gap: 0.15rem; }
.b-name { font-size: 0.88rem; font-weight: 500; color: var(--cream); }
.b-desc { font-size: 0.74rem; color: rgba(244,239,230,0.3); line-height: 1.5; }
.b-price { font-size: 0.82rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; margin-top: 0.15rem; }
.menu-list { }
.menu-row {
  display: flex;
  justify-content: space-between;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.87rem;
  color: rgba(244,239,230,0.5);
}
.menu-row:last-child { border-bottom: none; }
.m-price { font-weight: 700; color: var(--gold); }

/* Catering accordion */
.cat-acc-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0 2rem; }
.cat-acc-imgs img { width: 100%; height: 220px; object-fit: cover; filter: brightness(0.75); }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }

/* Info bar */
.contact-bar {
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  background: var(--cream);
}
.contact-bar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.cb-col { padding: 0 2.5rem; }
.cb-col--center { text-align: center; }
.cb-col--right { text-align: right; }
.cb-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.65rem;
}
.cb-main {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
a.cb-main:hover { color: var(--gold); }
.cb-sub { font-size: 0.82rem; color: var(--text-soft); margin: 0; line-height: 1.6; }
.cb-phone {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 0.35rem;
  transition: color var(--tr);
}
.cb-phone:hover { color: var(--gold-d); }
.cb-email { font-size: 0.88rem; color: var(--text-soft); transition: color var(--tr); }
.cb-email:hover { color: var(--gold); }
.cb-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(201,163,80,0.35);
  font-size: 0.6rem;
  padding: 0 0.5rem;
  position: relative;
}
.cb-divider::before, .cb-divider::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Contact bar variants */
.contact-bar.cv-2 {
  background: var(--dark-mid);
  border-top: 3px solid var(--gold);
  border-bottom-color: rgba(201,163,80,0.12);
}
.contact-bar.cv-2 .cb-label { color: rgba(201,163,80,0.55); }
.contact-bar.cv-2 .cb-main { color: var(--cream); }
.contact-bar.cv-2 .cb-phone { color: var(--gold-lt); }
.contact-bar.cv-2 .cb-phone:hover { color: var(--gold); }
.contact-bar.cv-2 .cb-email { color: rgba(244,239,230,0.45); }
.contact-bar.cv-2 .cb-email:hover { color: var(--gold-lt); }
.contact-bar.cv-2 .cb-sub { color: rgba(244,239,230,0.35); }
.contact-bar.cv-2 .cb-divider { color: rgba(201,163,80,0.3); }
.contact-bar.cv-2 .cb-divider::before,
.contact-bar.cv-2 .cb-divider::after { background: rgba(201,163,80,0.15); }


.contact-bar.cv-4 {
  background: #E8E2D6;
  padding: 3.5rem 0;
}
.contact-bar.cv-4 .contact-bar-grid {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}
.contact-bar.cv-4 .cb-divider { display: none; }
.contact-bar.cv-4 .cb-col {
  flex: 1;
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  text-align: left !important;
}

/* Full-width map */
.contact-map-full { line-height: 0; position: relative; z-index: 1; }
.contact-map-full iframe { display: block; width: 100%; }

/* Form below map */
.contact-form-wrap {
  padding: 0 0 6rem;
  position: relative;
  z-index: 2;
}
.contact-form-box { max-width: 900px; margin: -200px auto 0; padding: 4rem 3.5rem; background: var(--cream); }
.contact-form-box > .lbl { margin-bottom: 0.3rem; }
.contact-form-box > h2 { margin-bottom: 2rem; }

/* Image + delivery below map */
.contact-main { padding: 5.5rem 0 6rem; background: var(--cream); }
.contact-img-col img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

.delivery-box { background: var(--dark); padding: 1.75rem; }
.delivery-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,163,80,0.55);
  margin-bottom: 1.25rem;
}
.delivery-cards { display: flex; gap: 0.65rem; margin: 0.85rem 0 0.75rem; }
.d-card {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity var(--tr), transform var(--tr);
  flex-shrink: 0;
}
.d-card:hover { opacity: 0.82; transform: translateY(-2px); }
.pickup-note { font-size: 0.78rem; color: rgba(244,239,230,0.3); margin: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.45rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  -webkit-appearance: none;
  transition: border-color var(--tr);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; }
.radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.rl { display: flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: var(--text); cursor: pointer; text-transform: none; letter-spacing: 0; }
.input-check-row { display: flex; align-items: center; gap: 1rem; }
.input-check-row input[type="text"] { flex: 1; }
.cb-check { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-soft); cursor: pointer; text-transform: none; letter-spacing: 0; white-space: nowrap; flex-shrink: 0; }
.cb-check input[type="checkbox"] { width: 12px; height: 12px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; margin: 0; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-soft); margin-top: 0.75rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-mid);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(201,163,80,0.1);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.footer-col--logo { padding-top: 0; }
.footer-logo-img { width: 150px; height: auto; display: block; }

.footer-col-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,163,80,0.5);
  margin-bottom: 1.75rem;
}
.footer-contact-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
.fcr { display: flex; flex-direction: column; gap: 0.2rem; }
.fcr-key {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.fcr-val { font-size: 1.05rem; color: rgba(255,255,255,0.42); line-height: 1.5; }
a.fcr-link { transition: color var(--tr); }
a.fcr-link:hover { color: var(--gold); }

.footer-follow-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color var(--tr);
}
.footer-ig:hover { color: var(--gold-lt); }
.footer-ig-icon { width: 20px; height: 20px; flex-shrink: 0; }

.footer-bottom { padding: 1.75rem 0; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.16); margin: 0; }

/* ===== PAGE HERO (ketering, galerija) ===== */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  margin-top: var(--nav);
}
.ph-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ph-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,10,1,0.8) 0%, rgba(16,10,1,0.2) 100%); }
.ph-content { position: relative; z-index: 1; width: 100%; padding-bottom: 3.5rem; }
.ph-content h1 { color: var(--cream); }

/* ===== CATERING PAGE ===== */
.pkgs-sec { background: var(--cream); }
.pkgs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.pkg { background: var(--white); border: 1px solid var(--border); position: relative; transition: transform var(--tr), box-shadow var(--tr); border-radius: 2px; }
.pkg:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.pkg.featured { border-color: var(--gold); }
.pkg-badge { position: absolute; top: 0; right: 1.5rem; background: var(--gold); color: var(--dark); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.8rem; }
.pkg-img { width: 100%; height: 210px; object-fit: cover; }
.pkg-body { padding: 1.75rem; }
.pkg-name { font-family: var(--serif); font-size: 1.5rem; color: var(--dark); margin-bottom: 0.35rem; }
.pkg-cap { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.pkg-desc { font-size: 0.85rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 1.25rem; }
.pkg-features { margin-bottom: 1.5rem; }
.pkg-features li { font-size: 0.83rem; color: var(--text); padding: 0.45rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.55rem; }
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before { content: '—'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.pkg-price { font-family: var(--serif); font-size: 1.4rem; color: var(--dark); margin-bottom: 1.25rem; }
.pkg-price small { font-size: 0.75rem; color: var(--text-soft); font-family: var(--sans); }

.cat-desc-sec { background: var(--dark-warm); padding: 6rem 0; }
.cat-desc-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cat-desc-inner h2 { color: var(--cream); margin-bottom: 1.5rem; }
.cat-desc-inner p { color: rgba(244,239,230,0.5); line-height: 1.9; }

.cat-gal-sec { background: var(--cream-d); padding: 6rem 0; }
.cat-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.cat-gal img { width: 100%; height: 250px; object-fit: cover; background: var(--cream); transition: opacity var(--tr); }
.cat-gal img:hover { opacity: 0.85; }

/* ===== GALLERY PAGE ===== */
.gal-sec { background: var(--cream); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.gal-grid img { width: 100%; height: 290px; object-fit: cover; background: var(--cream); transition: opacity var(--tr); }
.gal-grid img:hover { opacity: 0.85; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pkgs-grid { grid-template-columns: 1fr 1fr; }
  .pkgs-grid .pkg:last-child { grid-column: span 2; max-width: 440px; margin: 0 auto; }
  .daily-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav); left: 0; right: 0;
    background: rgba(16,10,1,0.98);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(201,163,80,0.1);
  }
  .nav-links.is-open { display: flex; }
  .nav-burger { display: flex; }

  .hero-bg { background-attachment: scroll; }
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1rem 1.5rem; }
  .hero-strip-item:last-child { border-bottom: none; }

  .daily-grid { grid-template-columns: 1fr; gap: 0; }

  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-imgs { grid-template-rows: 200px 200px; }

  .acc-header { grid-template-columns: 3rem 1fr 2rem; gap: 1rem; }
  .acc-inner { padding-left: 0; }
  .img-grid { grid-template-columns: repeat(2, 1fr); }
  .burger-grid { grid-template-columns: 1fr; }
  .cat-acc-imgs { grid-template-columns: 1fr; }

  .contact-bar-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cb-col { padding: 0; text-align: left !important; }
  .cb-divider { display: none; }
  .contact-form-wrap { padding: 3rem 0 4rem; }
  .footer-nav { align-items: flex-start; }
  .footer-info { gap: 2rem; }
  .contact-img-col img { height: 240px; }
  .form-row { grid-template-columns: 1fr; }

  .pkgs-grid { grid-template-columns: 1fr; }
  .pkgs-grid .pkg:last-child { grid-column: auto; max-width: none; }
  .cat-gal { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-cols { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  :is(.sec, .about, .services, .daily-special) { padding: 4.5rem 0; }
  .contact-main { padding: 3.5rem 0 4.5rem; }
  .contact-bar { padding: 2rem 0; }
}

@media (max-width: 480px) {
  .img-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .cat-gal { grid-template-columns: 1fr; }
  .delivery-btns { flex-direction: column; align-items: flex-start; }
  .radio-group { flex-direction: column; gap: 0.65rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}
