/* =========================================================================
   Studio Banja — global stylesheet
   Dizajn tokeni i komponente po SPECIFIKACIJA.md (verzija 2 — svetla).
   Sav dizajn se kontroliše ovde; ne rasipati boje po stranicama.
   ========================================================================= */

:root {
  /* Boje */
  --bg:        #F8F4ED;
  --bg-alt:    #FFFDF9;
  --bg-warm:   #EFE7DB;
  --ink:       #24242A;
  --ink-soft:  rgba(36,36,42,0.72);
  --ink-muted: rgba(36,36,42,0.55);
  --gold:      #8C6A2F;
  --gold-soft: #C89B6A;
  --blush:     #D9A9A3;
  --cream:     #FDFBF7;
  --line:      rgba(36,36,42,0.1);

  /* Prostor / oblici */
  --maxw:      1320px;
  --maxw-narrow: 1180px;
  --pad-x:     clamp(18px, 4vw, 48px);
  --pad-y:     clamp(50px, 8vw, 120px);
  --arch:      50% 50% 2px 2px / 24% 24% 1% 1%;
  --arch-portrait: 50% 50% 2px 2px / 28% 28% 1% 1%;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--ink); }

::selection { background: #E4CDBF; color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3 { font-weight: 300; margin: 0; }

/* ---------- Layout ---------- */
.container      { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container--narrow { max-width: var(--maxw-narrow); }
.section        { padding-top: var(--pad-y); padding-bottom: var(--pad-y); }
.section--alt   { background: var(--bg-alt); }
.section--warm  { background: var(--bg-warm); }

.page-top { padding-top: clamp(110px, 12vw, 180px); padding-bottom: clamp(60px, 8vw, 120px); }

/* ---------- Tipografija ---------- */
.kicker {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 6.6vw, 86px); line-height: 1.02; }
.h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 5vw, 64px); line-height: 1.06; }
.serif { font-family: var(--serif); }
em, .italic { font-style: italic; }

.lead { font-size: 16.5px; font-weight: 300; line-height: 1.85; color: var(--ink-soft); max-width: 52ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.section-head { text-align: center; }
.section-head .h1, .section-head .h2 { margin-top: 18px; }
.section-head .lead { margin: 22px auto 0; max-width: 56ch; }

/* ---------- Dugmad ---------- */
.btn {
  display: inline-block; font-family: var(--sans);
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  padding: 17px 34px; border: 1px solid transparent; cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  text-align: center;
}
.btn--solid   { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--gold); color: var(--cream); }
.btn--outline { border-color: rgba(36,36,42,0.22); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--bg-warm); color: var(--ink); }
.btn--cream   { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: var(--blush); color: var(--ink); }
.btn--ghost   { border: 1px solid rgba(253,251,247,0.6); color: var(--cream); background: transparent; }
.btn--ghost:hover { background: rgba(253,251,247,0.14); color: var(--cream); }

.link-line {
  display: inline-block; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(140,106,47,0.5); padding-bottom: 4px;
}
.link-line:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Placeholder slot (dok ne stignu prave fotografije) ---------- */
.ph {
  position: relative; width: 100%; overflow: hidden; border-radius: 2px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.ph::after {
  content: attr(data-ph);
  padding: 12px 18px; max-width: 80%;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(36,36,42,0.42); line-height: 1.7;
}
.arch          { border-radius: var(--arch); }
.arch--portrait{ border-radius: var(--arch-portrait); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
}
.brand { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand img { height: 44px; width: auto; border-radius: 4px; }
.brand__word {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap;
}
.nav { margin-left: auto; display: flex; flex-wrap: nowrap; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.nav a {
  font-size: 12.5px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap; padding: 6px 0; color: var(--ink);
  border-bottom: 1px solid transparent; transition: opacity .25s ease, color .45s ease;
}
.nav a:hover { opacity: 0.6; }
.nav a[aria-current="page"] { border-bottom-color: var(--blush); }

.header-cta { flex: 0 0 auto; }

/* Header — stanje preko hero-a (transparentno) */
.site-header.over-hero { background: transparent; }
.site-header.over-hero .brand,
.site-header.over-hero .brand__word,
.site-header.over-hero .nav a { color: var(--cream); }
.site-header.over-hero .burger span { background: var(--cream); }
.site-header.over-hero .header-cta.btn--solid {
  background: transparent; color: var(--cream); border-color: rgba(253,251,247,0.6);
}
.site-header.over-hero .header-cta.btn--solid:hover { background: rgba(253,251,247,0.14); }

/* Header — skrolovano / ostale stranice */
.site-header.solid {
  background: rgba(248,244,237,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

/* Burger */
.burger { display: none; margin-left: auto; flex-direction: column; gap: 6px; background: none; border: 0; padding: 10px; cursor: pointer; }
.burger span { display: block; width: 26px; height: 1px; background: var(--ink); transition: background .45s ease; }

/* ---------- Mobilni meni (overlay) ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; background: var(--bg);
  padding: 20px clamp(18px,5vw,44px); display: none; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu__word { font-family: var(--serif); font-size: 20px; letter-spacing: 0.2em; text-transform: uppercase; }
.mobile-menu__close { background: none; border: 0; color: var(--ink); font-size: 32px; line-height: 1; cursor: pointer; padding: 4px 10px; }
.mobile-menu__links { margin-top: 48px; display: flex; flex-direction: column; }
.mobile-menu__links a {
  font-family: var(--serif); font-weight: 300; font-size: clamp(32px,10vw,48px);
  color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: auto; width: 100%; padding: 20px; font-size: 12px; }

/* ---------- Mobilna donja traka ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 10px; padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(248,244,237,0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(36,36,42,0.12); display: none; gap: 10px;
}
.mobile-bar .btn { padding: 15px 20px; font-size: 11px; }
.mobile-bar .btn--outline { flex: 0 0 auto; letter-spacing: 0.16em; }
.mobile-bar .btn--solid { flex: 1; letter-spacing: 0.18em; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 50%; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(24,18,18,0.42) 0%, rgba(24,18,18,0) 70%),
    linear-gradient(180deg, rgba(24,18,18,0.55) 0%, rgba(24,18,18,0.42) 45%, rgba(24,18,18,0.72) 100%);
}
.hero__content {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 90px clamp(20px,5vw,40px) 60px; color: var(--cream);
}
.hero__kicker { font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(253,251,247,0.9); text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.hero h1 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(46px,9.4vw,146px);
  line-height: 1.02; letter-spacing: 0.02em; margin: 22px 0 0; text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.35);
}
.hero__rule { width: 64px; height: 1px; background: rgba(253,251,247,0.65); margin: 26px 0; }
.hero__sub { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(20px,2.6vw,30px); line-height: 1.4; margin: 0; max-width: 26ch; color: rgba(253,251,247,0.96); text-shadow: 0 1px 16px rgba(0,0,0,0.45); }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.hero__btns .btn { padding: 18px 36px; }
.hero__scroll { position: absolute; left: 0; right: 0; bottom: 22px; text-align: center; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(253,251,247,0.6); }

/* ---------- Traka poverenja (stats) ---------- */
.stats { background: var(--bg-alt); border-bottom: 1px solid rgba(36,36,42,0.08); }
.stats__grid {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(28px,3.6vw,46px) var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(148px,1fr)); gap: clamp(20px,3vw,40px);
}
.stat { text-align: center; }
.stat__big { font-family: var(--serif); font-weight: 300; font-size: clamp(36px,4.6vw,56px); line-height: 1; color: var(--ink); }
.stat__label { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 10px; color: var(--gold); }

/* ---------- Dvokolonske sekcije (O nama / usluge) ---------- */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: clamp(34px,6vw,90px); align-items: center;
}
.split--tight { gap: clamp(32px,6vw,86px); }
.split__text .h2 { margin-top: 16px; }
.split__text p { margin-top: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip { border: 1px solid rgba(140,106,47,0.35); padding: 9px 16px; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

.price-row { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; margin-top: 30px; }
.price-from { font-family: var(--serif); font-size: 22px; color: var(--ink); }

.ar-5-6 { aspect-ratio: 5/6; }
.ar-4-5 { aspect-ratio: 4/5; }
.ar-4-3 { aspect-ratio: 4/3; }
.ar-3-4 { aspect-ratio: 3/4; }
.ar-3-2 { aspect-ratio: 3/2; }
.ar-1-1 { aspect-ratio: 1/1; }
.ar-21-9 { aspect-ratio: 21/9; }

/* ---------- Tim ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: clamp(20px,2.6vw,34px); margin-top: clamp(36px,5vw,64px); }
.team-card { text-align: center; }
.team-card__name { font-family: var(--serif); font-size: 27px; margin-top: 16px; }
.team-card__role { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-top: 6px; }
.team-card__rate { font-size: 13px; color: var(--gold); margin-top: 8px; }

/* Tim — stranica (kartice sa okvirom) */
.team-grid--page { grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: clamp(22px,3vw,40px); margin-top: clamp(40px,6vw,80px); }
.team-card--boxed { background: var(--bg-alt); border: 1px solid rgba(36,36,42,0.08); padding: clamp(20px,2.4vw,28px); }
.team-card--boxed .team-card__name { font-size: 29px; margin-top: 18px; }
.team-card__bio { font-size: 14.5px; font-weight: 300; line-height: 1.7; color: rgba(36,36,42,0.66); margin: 14px 0 0; }
.team-card--boxed .btn { display: block; margin-top: 22px; width: 100%; padding: 14px; font-size: 10.5px; letter-spacing: 0.18em; }
.team-card--hire { border: 1px dashed rgba(36,36,42,0.2); padding: clamp(24px,3vw,34px); display: flex; flex-direction: column; justify-content: center; gap: 14px; text-align: center; }
.team-card--hire .serif { font-weight: 300; font-size: 27px; line-height: 1.25; }
.team-card--hire small { font-size: 14.5px; font-weight: 300; line-height: 1.7; color: rgba(36,36,42,0.6); }

/* ---------- Recenzije ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: clamp(20px,2.6vw,34px); margin-top: clamp(36px,5vw,64px); }
.review { background: var(--bg-alt); border: 1px solid rgba(36,36,42,0.08); padding: clamp(26px,3vw,40px); display: flex; flex-direction: column; gap: 16px; }
.review__stars { color: var(--gold-soft); letter-spacing: 0.28em; font-size: 12px; }
.review__text { font-family: var(--serif); font-weight: 300; font-size: clamp(19px,2vw,24px); line-height: 1.5; margin: 0; }
.review__who { margin-top: auto; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(36,36,42,0.45); }

/* ---------- Završni CTA ---------- */
.cta-band { padding: clamp(70px,11vw,160px) var(--pad-x); text-align: center; background: var(--blush); }
.cta-band .h2 { color: var(--ink); }
.cta-band p { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(36,36,42,0.7); margin: 22px auto 0; max-width: 46ch; }
.cta-band .btn { margin-top: 34px; padding: 19px 46px; }

/* ---------- Usluge (pregled) ---------- */
.svc-list { margin-top: clamp(44px,6vw,86px); display: flex; flex-direction: column; gap: clamp(40px,6vw,80px); }
.svc-block { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(26px,4vw,60px); align-items: center; border-top: 1px solid var(--line); padding-top: clamp(28px,4vw,52px); }
.svc-block__num { font-size: 11px; letter-spacing: 0.24em; color: var(--gold); }
.svc-block .h2 { font-size: clamp(30px,4.2vw,52px); line-height: 1.08; margin-top: 12px; }
.svc-block p { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(36,36,42,0.7); margin: 16px 0 0; max-width: 46ch; }
.order-swap .svc-block:nth-child(even) .svc-block__text { order: 2; }
.order-swap .svc-block:nth-child(even) .svc-block__media { order: 1; }

/* ---------- Cenovnik ---------- */
.price-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 36px;
  position: sticky; top: 66px; z-index: 40; background: var(--bg); padding: 12px 0;
}
.price-tab {
  background: transparent; color: var(--ink-soft); border: 1px solid rgba(36,36,42,0.2);
  padding: 11px 18px; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; font-family: var(--sans); transition: all .25s ease;
}
.price-tab:hover { border-color: var(--ink); color: var(--ink); }
.price-tab.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.price-group { margin-top: clamp(40px,5vw,72px); }
.price-group__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid rgba(36,36,42,0.2); padding-bottom: 14px; }
.price-group__head .h2 { font-size: clamp(28px,3.6vw,46px); }
.price-group__count { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.price-item { display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; padding: 18px 0; border-bottom: 1px solid rgba(36,36,42,0.09); transition: background .2s ease; }
.price-item:hover { background: rgba(217,169,163,0.1); }
.price-item__name { font-size: 16.5px; font-weight: 300; line-height: 1.45; }
.price-item__price { font-family: var(--serif); font-size: 21px; white-space: nowrap; text-align: right; }
.price-item__dur { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(36,36,42,0.45); }
.price-item__tag { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; text-align: right; color: var(--gold); }

.price-cta {
  margin-top: clamp(48px,6vw,80px); background: var(--bg-alt); border: 1px solid var(--line);
  padding: clamp(28px,4vw,52px); display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.price-cta p { font-family: var(--serif); font-weight: 300; font-size: clamp(23px,2.8vw,34px); line-height: 1.3; margin: 0; max-width: 34ch; }

/* ---------- Galerija ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: clamp(40px, 5vw, 76px);
}
.gallery__item { margin: 0; overflow: hidden; border-radius: 2px; }
.gallery__item .ph,
.gallery__item img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  cursor: zoom-in;
  transition: transform .5s ease;
}
.gallery__item img:hover { transform: scale(1.04); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(24,20,20,0.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 2px; }
.lightbox__btn { position: absolute; background: none; border: 0; color: var(--cream); font-size: 40px; cursor: pointer; padding: 10px 20px; line-height: 1; }
.lightbox__close { top: 14px; right: 18px; }
.lightbox__prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 6px; top: 50%; transform: translateY(-50%); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(32px,5vw,70px); margin-top: clamp(40px,6vw,80px); }
.contact-addr { font-family: var(--serif); font-weight: 300; font-size: clamp(24px,3vw,36px); line-height: 1.3; margin: 14px 0 0; }
.contact-note { font-size: 15.5px; font-weight: 300; line-height: 1.8; color: rgba(36,36,42,0.65); margin: 14px 0 0; }
.contact-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; max-width: 340px; }
.contact-btns .btn { padding: 16px 20px; letter-spacing: 0.16em; }
.hours { margin-top: 14px; border-top: 1px solid rgba(36,36,42,0.14); }
.hours__row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(36,36,42,0.14); font-size: 15.5px; }
.hours__row span:first-child { font-weight: 300; color: var(--ink-soft); }
.hours__row span:last-child { font-family: var(--serif); font-size: 20px; }
.know { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.know__item { font-size: 15.5px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); display: flex; gap: 12px; }
.know__item span:first-child { color: var(--gold); }
.map-box { margin-top: clamp(40px,5vw,76px); }

/* ---------- Blog ---------- */
.blog-featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: clamp(30px,5vw,64px); align-items: center; margin-top: clamp(40px,6vw,76px); }
.blog-featured__body .blog-cat { color: var(--gold); }
.blog-featured__body h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(28px,4vw,46px); line-height: 1.08; margin: 14px 0 0; }
.blog-featured__body h2 a { color: inherit; }
.blog-featured__body h2 a:hover { color: var(--gold); }
.blog-featured__body p { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--ink-soft); margin: 18px 0 0; max-width: 52ch; }

.blog-cat { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.blog-meta { font-size: 13px; letter-spacing: 0.04em; color: var(--ink-muted); margin-top: 18px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: clamp(20px,2.6vw,34px); margin-top: clamp(34px,4vw,52px); }
.blog-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .3s ease, transform .3s ease; }
.blog-card:hover { box-shadow: 0 14px 32px rgba(36,36,42,0.1); transform: translateY(-3px); }
.blog-card__media .ph, .blog-card__media img { width: 100%; }
.blog-card__body { padding: clamp(20px,2.4vw,28px); display: flex; flex-direction: column; flex: 1; }
.blog-card__title { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.2; margin: 12px 0 0; }
.blog-card__title a { color: var(--ink); }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt { font-size: 14.5px; font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin: 12px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__meta { margin-top: auto; padding-top: 16px; font-size: 12px; letter-spacing: 0.04em; color: var(--ink-muted); }

.blog-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: clamp(30px,4vw,44px); }

/* Pojedinačan post */
.post-head { text-align: center; max-width: 760px; margin: 0 auto; }
.post-head h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(34px,5.4vw,68px); line-height: 1.05; margin: 16px 0 0; }
.post-meta { font-size: 13px; letter-spacing: 0.06em; color: var(--ink-muted); margin-top: 18px; }
.post-hero { margin: clamp(34px,5vw,60px) 0 0; }
.post-body { max-width: 68ch; margin: clamp(40px,5vw,64px) auto 0; font-size: 18px; font-weight: 300; line-height: 1.9; color: var(--ink-soft); }
.post-body h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(26px,3.4vw,38px); line-height: 1.15; color: var(--ink); margin: 48px 0 0; }
.post-body p { margin: 20px 0 0; }
.post-body a { border-bottom: 1px solid rgba(140,106,47,0.5); }
.post-body ul { list-style: none; padding: 0; margin: 20px 0 0; }
.post-body ul li { position: relative; padding-left: 24px; margin-top: 12px; }
.post-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.post-body blockquote { margin: 32px 0 0; padding-left: 22px; border-left: 2px solid var(--blush); font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.4; color: var(--ink); }
.post-cta { max-width: 68ch; margin: clamp(40px,5vw,60px) auto 0; background: var(--bg-warm); padding: clamp(28px,4vw,48px); text-align: center; }
.post-cta p { font-family: var(--serif); font-weight: 300; font-size: clamp(22px,3vw,30px); line-height: 1.3; margin: 0 auto; max-width: 30ch; }
.post-cta .btn { margin-top: 24px; }
.post-related { margin-top: clamp(56px,8vw,110px); }

/* ---------- FAQ (landing stranice) ---------- */
.faq { max-width: 820px; margin: clamp(30px,4vw,54px) auto 0; }
.faq__item { border-top: 1px solid var(--line); padding: clamp(20px,2.4vw,28px) 0; }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { font-family: var(--serif); font-weight: 400; font-size: clamp(20px,2.4vw,27px); line-height: 1.3; margin: 0; color: var(--ink); }
.faq__a { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--ink-soft); margin: 12px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #EFE7DB; }
.site-footer__grid { max-width: var(--maxw); margin: 0 auto; padding: clamp(46px,6vw,84px) var(--pad-x) 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: clamp(28px,4vw,56px); }
.footer-word { font-family: var(--serif); font-size: 26px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); }
.footer-cyr { font-family: var(--sans); font-size: 15px; letter-spacing: 0.22em; color: var(--blush); margin-top: 10px; }
.site-footer p { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(239,231,219,0.6); margin: 16px 0 0; max-width: 32ch; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col__title { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(239,231,219,0.45); }
.footer-col a, .footer-col span { font-size: 14.5px; font-weight: 300; color: rgba(239,231,219,0.8); }
.footer-col a:hover { color: var(--blush); }
.footer-col a.footer-tel { color: var(--blush); }
.footer-map { margin-top: 8px; width: 100%; max-width: 260px; aspect-ratio: 4 / 3; border-radius: 3px; overflow: hidden; border: 1px solid rgba(239,231,219,0.14); }
.footer-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.footer-legal { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x) 26px; font-size: 11px; letter-spacing: 0.14em; color: rgba(239,231,219,0.3); }

/* ---------- Reveal (fade-in na skrol) ---------- */
.reveal { will-change: opacity, transform; }

/* ---------- Responsive ---------- */
@media (max-width: 1119px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .price-tabs { top: 58px; }
}

/* Uski ekrani: dvokolonske sekcije u jednu kolonu (bez 300px minimuma) */
@media (max-width: 480px) {
  .split,
  .split--tight { grid-template-columns: 1fr; }
}

/* Vrlo uski telefoni (~320px): malo uže margine za više prostora sadržaju */
@media (max-width: 380px) {
  :root { --pad-x: 15px; }
  .price-item { grid-template-columns: 1fr auto; gap: 4px 12px; }
  .price-item__price { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { transition-duration: 0.01ms !important; }
}
