/* ==========================================================================
   Body Reset Studio — design tokens
   ========================================================================== */
:root {
  /* Boje preuzete izravno iz službenog logotipa (logo.pdf):
     zlatna #D3AB3F, tamna #231F20. Varijante gold-dark / gold-light postoje
     samo zbog kontrasta teksta (WCAG AA) — za plohe i linije koristi gold. */
  --color-ink: #231f20;
  --color-ink-soft: #3a3530;
  --color-gold: #d3ab3f;
  --color-gold-hover: #c39a2f;
  --color-gold-dark: #836a27;
  --color-gold-light: #d4b259;
  --color-cream: #f6efe2;
  --color-cream-2: #efe4cf;
  --color-white: #ffffff;
  --color-text: #2b2723;
  --color-text-muted: #746a5f;
  --color-border: #e4d9c4;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --wrap-width: 1180px;
  --radius: 2px;
  --shadow-soft: 0 20px 50px -25px rgba(34, 31, 28, 0.35);
  --header-h: 89px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Sekcije ne smiju završiti ispod fiksnog headera kad se skoči na #anchor */
section[id] { scroll-margin-top: var(--header-h); }

/* Zaključavanje pozadine kad je mobilni izbornik otvoren */
body.nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 500; }
p { line-height: 1.7; }

.wrap {
  width: 100%;
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin: 0 0 14px;
}
.eyebrow.center { text-align: center; }

.center { text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--color-gold);
  color: var(--color-ink);
}
/* gold-dark je pretaman za tamni tekst na gumbu — zato zaseban hover ton */
.btn-gold:hover { background: var(--color-gold-hover); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--color-white); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 14px 12px;
}
.btn-ghost:hover { color: var(--color-gold-dark); }

.btn-block { width: 100%; }

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-gold-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.text-link:hover { border-color: var(--color-gold-dark); }

/* ==========================================================================
   Logotip
   Službeni logo iz logo.pdf, kao SVG. Dvije varijante (tamna i svijetla) leže
   jedna preko druge; prikazuje se ona koja odgovara stanju headera.
   ========================================================================== */
.brand {
  display: grid;
  line-height: 0;
  width: 172px;
  flex-shrink: 0;
}
.brand-logo {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  transition: opacity 0.35s ease;
}
/* Preko tamnog heroa ide svijetla, u is-scrolled stanju tamna */
.brand-logo-dark { opacity: 0; }
.site-header.is-scrolled .brand-logo-light { opacity: 0; }
.site-header.is-scrolled .brand-logo-dark { opacity: 1; }

.site-footer .brand { width: 152px; margin: 0 auto; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  --header-fg: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--header-fg);
  background: rgba(255, 255, 255, 0);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, color 0.35s ease;
  padding: 22px 0;
}
.site-header.is-scrolled {
  --header-fg: var(--color-ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -20px rgba(34, 31, 28, 0.4);
  padding: 14px 0;
}
.main-nav a,
.btn-ghost,
.nav-toggle span { color: var(--header-fg); }
.nav-toggle span { background: var(--header-fg); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 34px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-nav a { position: relative; padding: 6px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-cta,
.nav-phone { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-call { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  /* Iznad otvorenog panela izbornika (z-index 99) — inače se X ne može kliknuti */
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span { background: var(--color-white); }

/* Zatamnjenje pozadine ispod otvorenog izbornika */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 11, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 98;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--header-fg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  background: var(--color-ink);
  color: var(--color-white);
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: 30vw;
  max-width: 340px;
  min-width: 190px;
  opacity: 0.16;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 90px;
}
.hero .eyebrow { color: var(--color-gold-light); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--color-white);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}
.hero-lead {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: 120px 0; background: var(--color-white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
}
/* Na desktopu puni 3:4 portret je previsok uz tekst (480 px slike naspram
   ~370 px teksta), pa se kadar skraćuje na 4:5. Na mobitelu ostaje cijeli. */
@media (min-width: 981px) {
  .about-photo { max-width: 320px; }
  .about-photo img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 30%;
  }
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}
.about-photo figcaption {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 22px;
  color: var(--color-ink);
}
.about-content p { color: var(--color-text-muted); margin-bottom: 16px; max-width: 560px; }
.about-content strong { color: var(--color-ink); font-weight: 500; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 100px 0 120px; background: var(--color-cream); }
.services h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 56px;
  color: var(--color-ink);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--color-white);
  padding: 44px 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--color-gold-dark);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-ink);
}
.service-card p { color: var(--color-text-muted); font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing { padding: 120px 0; background: var(--color-white); }
.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 60px;
  color: var(--color-ink);
}
.price-group {
  max-width: 760px;
  margin: 0 auto 52px;
}
.price-group h3 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--color-border);
}
.price-list li:last-child { border-bottom: none; }
/* Bez `white-space: nowrap` — dugi nazivi usluga su inače širili cijeli
   dokument na 378 px i izbacivali hamburger izvan ekrana. */
.price-name { font-size: 1.02rem; color: var(--color-text); min-width: 0; }
.price-dur { color: var(--color-text-muted); font-size: 0.88rem; white-space: nowrap; }
.price-dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-border);
  transform: translateY(-4px);
}
/* Dvije cijene po usluzi: važeća i sidrena, s datumom sidrenja.
   Sidrena se prikazuje uvijek, i kad je iznos jednak (NN 101/2026). */
.price-amounts {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 1px 12px;
  text-align: right;
}
.price-label {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.price-date { font-weight: 300; }
.price-amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-ink);
  white-space: nowrap;
}
.price-amount-anchor {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.price-note {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.pricing-loading,
.pricing-error {
  text-align: center;
  color: var(--color-text-muted);
  padding: 30px 0;
}
.pricing-error a { color: var(--color-gold-dark); }
.pricing-csv-link { text-align: center; margin-top: 6px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { padding: 120px 0; background: var(--color-cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--color-ink);
}
.contact-lead { color: var(--color-text-muted); margin-bottom: 34px; max-width: 440px; }

.info-list { margin-bottom: 28px; }
.info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 0.98rem;
}
.info-list svg { width: 20px; height: 20px; color: var(--color-gold-dark); flex-shrink: 0; }
.info-list a:hover { color: var(--color-gold-dark); }

.social-links { display: flex; gap: 24px; margin-bottom: 34px; }
.social-links a { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.social-links svg { width: 26px; height: 26px; color: var(--color-ink); }
.social-links a:hover svg { color: var(--color-gold-dark); }

.map-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 260px;
  background: var(--color-white);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Karta se učitava tek na klik — Google ne postavlja kolačiće bez privole */
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  cursor: pointer;
}
.map-consent svg { width: 30px; height: 30px; color: var(--color-gold-dark); }
.map-consent-text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 320px;
}
.map-consent-action {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  border-bottom: 1px solid var(--color-gold-dark);
}
.map-consent:hover .map-consent-action { color: var(--color-ink); border-bottom-color: var(--color-ink); }
.map-fallback-link {
  display: block;
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--color-gold-dark);
}

.form-privacy {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.form-privacy a { color: var(--color-gold-dark); border-bottom: 1px solid transparent; }
.form-privacy a:hover { border-bottom-color: var(--color-gold-dark); }
.form-status.is-error { color: #b3261e; }
.btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }
#glavni-sadrzaj:focus { outline: none; }

.contact-form-wrap {
  background: var(--color-white);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hidden-field { position: absolute; left: -9999px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.field .optional { text-transform: none; letter-spacing: 0; font-weight: 300; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.field textarea { resize: vertical; }
.form-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--color-gold-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 34px;
}
.footer-inner { text-align: center; }
.footer-brand { margin-bottom: 28px; }
.footer-owner {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal {
  max-width: 640px;
  margin: 0 auto 26px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal a { color: var(--color-gold-light); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin: 0 0 22px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.footer-links a { color: rgba(255, 255, 255, 0.7); }
.footer-links a:hover { color: var(--color-gold-light); }
.footer-copy { font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); margin: 0; }
.footer-credit { font-size: 0.76rem; color: rgba(255, 255, 255, 0.4); margin: 8px 0 0; }
.footer-credit a { color: var(--color-gold-light); }

/* ==========================================================================
   Legal pages (privacy / terms)
   ========================================================================== */
.legal { padding: 170px 0 110px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 8px;
  color: var(--color-ink);
}
.legal-updated { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 46px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 46px 0 14px;
  color: var(--color-ink);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p,
.legal-content li { color: var(--color-text-muted); margin-bottom: 14px; }
.legal-content ul,
.legal-content ol { padding-left: 22px; margin-bottom: 14px; }
.legal-content a { color: var(--color-gold-dark); border-bottom: 1px solid transparent; }
.legal-content a:hover { border-bottom-color: var(--color-gold-dark); }
.legal-content strong { color: var(--color-ink); font-weight: 500; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 10px 0 20px; font-size: 0.92rem; }
.legal-content th,
.legal-content td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--color-border); }

/* ==========================================================================
   Cjenik (CSV) list page
   ========================================================================== */
.cjenik-list-page { padding: 170px 0 110px; }
.cjenik-list-page .legal-content { max-width: 760px; }
.cjenik-file-list { margin: 40px 0 0; }
.cjenik-file-item { padding: 18px 0; border-bottom: 1px dashed var(--color-border); }
.cjenik-file-item a {
  font-weight: 500;
  color: var(--color-ink);
  word-break: break-all;
  border-bottom: 1px solid transparent;
}
.cjenik-file-item a:hover { color: var(--color-gold-dark); border-bottom-color: var(--color-gold-dark); }
.cjenik-meta { font-size: 0.82rem; color: var(--color-text-muted); margin: 6px 0 0; }
.cjenik-sidreno {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 6px 0 0;
  padding: 8px 12px;
  background: var(--color-cream);
  border-left: 2px solid var(--color-gold);
  border-radius: var(--radius);
}
.cjenik-sidreno code { font-size: 0.92em; }
.cjenik-sidreno strong { color: var(--color-ink); }
.badge-current {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-gold);
  color: var(--color-ink);
  border-radius: 2px;
  vertical-align: middle;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 860px) {
  .header-call { display: inline-flex; }
}

@media (max-width: 980px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 330px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 760px) {
  :root { --header-h: 78px; }

  .brand { width: 150px; }
  .site-footer .brand { width: 140px; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(82vw, 330px);
    background: #171411;
    border-left: 1px solid rgba(195, 160, 82, 0.35);
    box-shadow: -24px 0 60px -30px rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 96px 30px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a {
    color: var(--color-white);
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header-actions .btn-gold { display: none; }
  .main-nav a.nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 26px;
    padding: 16px 24px;
    border-bottom: none;
    color: var(--color-ink);
  }
  .main-nav a.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    border-bottom: none;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--color-gold-light);
  }
  .main-nav a.nav-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-watermark { opacity: 0.09; right: -14%; min-width: 150px; }

  .field-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 22px; }

  /* Naziv u svoj red, ispod njega važeća pa sidrena cijena — bez bočnog
     klizanja i na 320 px */
  .price-list li { display: block; }
  .price-dots { display: none; }
  .price-name { display: block; margin-bottom: 10px; }
  .price-amounts {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 12px;
    text-align: left;
  }
  .price-amount,
  .price-amount-anchor { text-align: right; }
  .price-label { white-space: normal; }

  .legal { padding-top: 120px; }
  .cjenik-list-page { padding-top: 120px; }

  /* Veći ciljevi za prst */
  .info-list li { padding: 14px 0; }
  .info-list a { padding: 5px 0; }
  .footer-links { gap: 4px 24px; }
  .footer-links a { padding: 10px 0; }
  .text-link { padding: 8px 0; }

  /* Prostor za fiksnu traku za poziv */
  .site-footer { padding-bottom: 96px; }
}

/* ==========================================================================
   Fiksna traka „Nazovi" — samo mobitel.
   Ako je ne želiš, obriši cijeli ovaj blok i <div class="call-bar"> u HTML-u.
   ========================================================================== */
.call-bar { display: none; }

@media (max-width: 760px) {
  .call-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 97;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .call-bar .btn {
    padding: 13px 10px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
  }
  .call-bar .btn-ghost {
    color: var(--color-ink);
    border: 1px solid var(--color-border);
  }
  body.nav-open .call-bar { display: none; }
}
