/* ============================================================
   GT Catering — dizajn (ugljena + zlatna na krem podlozi)
   ============================================================ */

:root {
  --bg:        #f7f3ec;
  --surface:   #ffffff;
  --sand:      #efe6d6;
  --ink:       #201913;
  --ink-2:     #5f544a;
  --muted:     #8a7d70;
  --gold:      #b0803a;   /* zlatna za tekst/linkove na svetlom */
  --gold-2:    #c8a45c;   /* svetlija zlatna za tamne podloge */
  --gold-soft: #e7d6b3;
  --dark:      #1c1712;
  --dark-2:    #14100c;
  --line:      #e4dccd;
  --line-dark: rgba(200,164,92,.22);
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 18px 40px -22px rgba(32,25,19,.45);
  --shadow-sm: 0 6px 18px -10px rgba(32,25,19,.35);
  --wrap:      1180px;
  --serif:     Georgia, 'Times New Roman', serif;
  --sans:      'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; color: var(--ink); margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- Dugmad ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .55em;
  padding: .72em 1.5em; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--btn-fg); }
.btn-primary {
  --btn-fg: #241a0c;
  background: linear-gradient(135deg, #d8b871, var(--gold));
}
.btn-primary:hover { background: linear-gradient(135deg, #e2c583, #bd8b40); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-lg { padding: .9em 1.9em; font-size: 1.02rem; }
.btn-sm { padding: .55em 1.1em; font-size: .875rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--dark-2); color: #cdbfa8; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 12px; }
.topbar-contact { display: flex; gap: 20px; }
.topbar-link { color: #cdbfa8; display: inline-flex; align-items: center; gap: 7px; }
.topbar-link:hover { color: var(--gold-2); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: #9d907d; font-weight: 700; letter-spacing: .05em; }
.topbar-social a:hover { color: var(--gold-2); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,236,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(0,0,0,.5); }
.site-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 18px; }
.brand img { height: 58px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-link { color: var(--ink); font-weight: 600; font-size: .95rem; position: relative; padding: 6px 0; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .22s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--gold); }
.nav-cta { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sekcije ---------- */
.section { padding: clamp(48px, 7vw, 90px) 0; }
.section-tight { padding: 34px 0; }
.section-dark { background: var(--dark); color: #e9e0d2; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-sand { background: var(--sand); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 40px; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.section-head h2 { margin: 0; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .76rem; font-weight: 700; color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow-gold { color: var(--gold-2); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-slides, .hero-veil { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease; transform: scale(1.05);
}
.hero-slide.is-active { opacity: 1; animation: heroZoom 8s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-veil { background: linear-gradient(105deg, rgba(18,14,10,.9) 0%, rgba(18,14,10,.6) 45%, rgba(18,14,10,.25) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 80px 22px; max-width: 720px; }
.hero-kicker {
  text-transform: uppercase; letter-spacing: .22em; font-size: .82rem; font-weight: 700;
  color: var(--gold-2); margin-bottom: 18px;
}
.hero-title { color: #fff; font-size: clamp(2.3rem, 5.6vw, 4.1rem); margin-bottom: 18px; }
.hero-lead { font-size: clamp(1.05rem, 1.8vw, 1.32rem); color: #e7ddcd; max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Tagline ---------- */
.tagline-band { background: var(--dark-2); color: var(--gold-2); text-align: center; padding: 22px 0; }
.tagline-band p { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2vw, 1.4rem); letter-spacing: .01em; }

/* ---------- Prednosti ---------- */
.prednosti-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.prednost { text-align: center; padding: 8px; }
.prednost-ikona {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, #fbf3e2, var(--gold-soft));
  color: var(--gold); border: 1px solid var(--gold-soft);
}
.prednost-ikona svg { width: 28px; height: 28px; }
.prednost h3 { font-size: 1.08rem; margin-bottom: 8px; }
.prednost p { font-size: .92rem; color: var(--ink-2); margin: 0; }

/* ---------- Usluge ---------- */
.usluge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.usluga-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); color: var(--ink);
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.section-dark .usluga-card { background: #241d16; color: #e9e0d2; }
.usluga-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -24px rgba(0,0,0,.6); color: var(--ink); }
.section-dark .usluga-card:hover { color: #fff; }
.usluga-card-media { position: relative; aspect-ratio: 3/2; background-size: cover; background-position: center; }
.usluga-ikona {
  position: absolute; left: 18px; bottom: 18px; width: 52px; height: 52px;
  display: grid; place-items: center; border-radius: 12px;
  background: rgba(20,16,12,.72); color: var(--gold-2); border: 1px solid var(--line-dark);
}
.usluga-ikona svg { width: 26px; height: 26px; }
.usluga-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.usluga-kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.usluga-card-body h3 { margin-bottom: 10px; }
.usluga-card-body p { font-size: .93rem; color: var(--ink-2); flex: 1; }
.section-dark .usluga-card-body p { color: #b9ac9b; }
.link-more { color: var(--gold); font-weight: 700; font-size: .9rem; margin-top: 12px; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-media { border-radius: var(--radius); min-height: 380px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.split-copy .lead { font-size: 1.12rem; color: var(--ink-2); }
.split-side { align-self: stretch; }
.split--reverse .split-media { order: 2; }

/* ---------- Stavke box ---------- */
.stavke-box { background: var(--sand); border-radius: var(--radius); padding: 28px 30px; height: 100%; }
.stavke-box h3 { margin-bottom: 16px; }
.stavke { list-style: none; margin: 0; padding: 0; }
.stavke li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.stavke li:last-child { border-bottom: 0; }
.stavka-ikona { flex: none; color: var(--gold); }
.stavka-ikona svg { width: 20px; height: 20px; }

/* ---------- Statistika ---------- */
.stat-row { display: flex; flex-wrap: wrap; gap: 30px 44px; margin: 26px 0; }
.stat-row--wide { justify-content: center; text-align: center; gap: 44px; }
.stat strong { display: block; font-family: var(--serif); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.stat span { font-size: .86rem; color: var(--ink-2); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Utisci ---------- */
.utisci-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.utisak { background: var(--surface); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); margin: 0; border-top: 3px solid var(--gold); }
.utisak blockquote { margin: 0 0 18px; font-size: 1.02rem; font-style: italic; color: var(--ink); font-family: var(--serif); }
.utisak figcaption strong { display: block; color: var(--gold); }
.utisak figcaption span { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 20px 4px; font-family: var(--serif); font-size: 1.12rem; font-weight: 700; color: var(--ink);
}
.faq-q svg { flex: none; color: var(--gold); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 4px 22px; }
.faq-a p { margin: 0; color: var(--ink-2); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.blog-card-media { aspect-ratio: 3/2; background-size: cover; background-position: center; display: block; }
.blog-card-body { padding: 20px 22px 24px; }
.blog-card-body time { font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.blog-card-body h3 { margin: 8px 0 10px; font-size: 1.16rem; }
.blog-card-body h3 a { color: var(--ink); }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { font-size: .92rem; color: var(--ink-2); margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--dark), #2a2016); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(40px, 6vw, 66px) 22px; }
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner p { color: #cfc2af; margin: 0; max-width: 560px; }

/* ---------- Page hero (unutrašnje strane) ---------- */
.page-hero { background: var(--sand); padding: clamp(50px, 8vw, 92px) 0 clamp(40px, 6vw, 64px); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { font-size: 1.15rem; color: var(--ink-2); max-width: 640px; }
.page-hero.center .lead { margin-left: auto; margin-right: auto; }
.page-hero--media { position: relative; background-size: cover; background-position: center; color: #fff; }
.page-hero--media .page-hero-veil { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(18,14,10,.9), rgba(18,14,10,.45)); }
.page-hero--media .container { position: relative; z-index: 2; }
.page-hero--media h1 { color: #fff; }
.page-hero--media .lead { color: #e7ddcd; }
.back-link { display: inline-block; color: var(--gold-2); font-weight: 600; margin-bottom: 14px; }
.post-date { display: block; color: var(--gold-2); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }

/* ---------- CMS sadržaj ---------- */
.cms-content p { color: var(--ink-2); }
.cms-content .lead { font-size: 1.16rem; color: var(--ink); font-family: var(--serif); }
.cms-content .btn { margin-top: 10px; }

/* ---------- Kontakt ---------- */
.kontakt-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.kontakt-list { list-style: none; margin: 0; padding: 0; }
.kontakt-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ki-ikona { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--sand); color: var(--gold); }
.ki-ikona svg { width: 22px; height: 22px; }
.ki-labela { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* ---------- Forma ---------- */
.contact-form { background: var(--surface); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .96rem; color: var(--ink); background: #fdfbf7; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,128,58,.15); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--muted); margin: 0; }
.form-alert { padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .93rem; }
.form-alert--ok { background: #e8f3e6; color: #2c6b2c; border: 1px solid #bcdcb6; }
.form-alert--err { background: #fbe9e6; color: #a23c2c; border: 1px solid #f0c4bb; }

/* ---------- Mapa ---------- */
.mapa-sekcija { position: relative; }
.mapa { display: block; width: 100%; height: 440px; border: 0; }
.mapa-sekcija::after {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2)); pointer-events: none;
}
.mapa-dugme { position: absolute; right: 22px; bottom: 22px; box-shadow: var(--shadow); }
@media (max-width: 640px) { .mapa { height: 320px; } .mapa-dugme { right: 14px; bottom: 14px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #b9ac9b; padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo { height: 90px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: #9d9080; max-width: 340px; }
.footer-social { display: flex; gap: 18px; margin-top: 14px; }
.footer-social a { color: var(--gold-2); font-weight: 600; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-links li, .footer-contact li { padding: 6px 0; }
.footer-links a, .footer-contact a { color: #b9ac9b; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; font-size: .82rem; color: #857a6c; flex-wrap: wrap; }
.footer-bottom a { color: var(--gold-2); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .prednosti-grid { grid-template-columns: repeat(2, 1fr); }
  .usluge-grid, .utisci-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split--reverse .split-media { order: 0; }
  .split-media { min-height: 300px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Bez backdrop-filter-a: on pravi „containing block", pa bi se fiksirani
     panel pozicionirao u odnosu na zaglavlje umesto na ekran i izlazio bi
     izvan vidljivog dela. Zato ovde puna pozadina. */
  .site-header { backdrop-filter: none; background: var(--bg); }

  .nav-toggle { display: flex; z-index: 60; position: relative; }
  /* Dugme prelazi u belo dok je panel otvoren, da se vidi na tamnoj podlozi. */
  .nav-toggle[aria-expanded="true"] span { background: #fff; }

  /* Klizni panel preko celog ekrana — brendiran, tamni, sa zlatnim akcentima. */
  .site-nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(360px, 88vw);
    height: 100dvh;                     /* dvh: bez skoka zbog trake u iOS-u */
    background: linear-gradient(160deg, #241c14 0%, var(--dark-2) 100%);
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 20px 26px calc(24px + env(safe-area-inset-bottom));
    gap: 0;
    transform: translateX(100%);
    transition: transform .34s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -24px 0 60px -24px rgba(0, 0, 0, .7);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    z-index: 55;
  }
  .site-nav.is-open { transform: translateX(0); }

  /* Zaglavlje panela: logo + X */
  .nav-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 18px; margin-bottom: 6px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-panel-head img { height: 52px; width: auto; }
  .nav-close {
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(200, 164, 92, .14); border: 1.5px solid rgba(200, 164, 92, .55);
    color: #f0dcb0; cursor: pointer; flex: none;
  }
  .nav-close:active { background: rgba(255, 255, 255, .12); }

  .site-nav ul { flex-direction: column; gap: 0; margin: 6px 0 0; }
  .site-nav li {
    opacity: 0; transform: translateX(14px);
    transition: opacity .3s ease, transform .3s ease;
    transition-delay: calc(var(--i, 0) * 45ms + 80ms);
  }
  .site-nav.is-open li { opacity: 1; transform: translateX(0); }

  .nav-link {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 15px 2px; font-size: 1.08rem; font-family: var(--serif); font-weight: 700;
    color: #e9e0d2; border-bottom: 1px solid rgba(255, 255, 255, .07);
    min-height: 52px;                   /* prst, ne miš */
  }
  .nav-link::after { display: none; }
  .nav-link .nav-arrow { color: var(--gold-2); opacity: .55; flex: none; transition: transform .2s ease; }
  .nav-link:active { color: var(--gold-2); }
  .nav-link:active .nav-arrow { transform: translateX(3px); }
  .nav-link.is-active { color: var(--gold-2); }
  .nav-link.is-active .nav-arrow { opacity: 1; }

  .nav-cta {
    display: flex; width: 100%; justify-content: center;
    margin-top: 22px; padding: .95em 1.5em; font-size: 1rem;
  }

  /* Kontakt na dnu panela */
  .nav-panel-foot {
    margin-top: auto; padding-top: 22px;
    border-top: 1px solid var(--line-dark);
    display: flex; flex-direction: column; gap: 8px;
    font-size: .95rem;
  }
  .nav-panel-foot a { color: #b9ac9b; }
  .nav-panel-foot a:first-child { color: var(--gold-2); font-weight: 700; font-size: 1.05rem; }
  .nav-panel-social { display: flex; gap: 16px; margin-top: 6px; }
  .nav-panel-social a { color: var(--gold-2); font-size: .88rem; }

  body.nav-open { overflow: hidden; }
  .nav-scrim {
    position: fixed; inset: 0; z-index: 45;
    background: rgba(12, 9, 7, .6); backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none; transition: opacity .34s ease;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }

  .topbar-contact { gap: 14px; }
  .topbar-hide-sm { display: none; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head.center { align-items: center; }
}

/* Na širokom ekranu panel-elementi ne postoje vizuelno. */
@media (min-width: 761px) {
  .nav-panel-head, .nav-panel-foot, .nav-close, .nav-arrow { display: none; }
}

@media (max-width: 540px) {
  .prednosti-grid, .usluge-grid, .utisci-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
}

/* pristupačnost: smanji animacije po želji korisnika */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
