/* =============================================
   ADVOKAT BOJKE — Editorial stylesheet
   Tipografija: Fraunces (naslovi) + Hanken Grotesk (tekst)
   ============================================= */

:root {
  /* Boje — topli papir, mastilo i prigušeno zlato */
  --ink:        #1b2433;
  --ink-soft:   #515a69;
  --ink-faint:  #8b919c;
  --paper:      #f5f1e8;
  --paper-2:    #efe8d9;
  --paper-card: #fbf9f3;
  --gold:       #9c7a3c;
  --gold-deep:  #836634;
  --gold-bright:#c2a259;
  --line:       rgba(27, 36, 51, 0.16);
  --line-soft:  rgba(27, 36, 51, 0.09);
  --white:      #ffffff;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--white); }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 2rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker::before {
  content: attr(data-num);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gold);
}
.kicker.on-dark { color: var(--gold-bright); }
.kicker.on-dark::before { color: var(--gold-bright); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }

.display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--gold-deep); }

.h-section {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---- Buttons & links ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--gold-bright); color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--gold);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 0.85rem; color: var(--gold-deep); }

/* =============================================
   NAV
   ============================================= */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.6rem 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-nav.scrolled {
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo b {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-logo span {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
}
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta {
  padding: 0.6rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--gold-deep); color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 6px; z-index: 101; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.nav-drawer a:hover { color: var(--gold-deep); font-style: italic; }
.nav-drawer-close { position: absolute; top: 1.6rem; right: 2rem; font-size: 2rem; line-height: 1; color: var(--ink-soft); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 12rem 0 5rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after {
  /* suptilan ukras — tanka vertikalna linija desno */
  content: '';
  position: absolute; top: 0; right: 18%; bottom: 0;
  width: 1px; background: var(--line-soft);
  display: none;
}
.hero-inner { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 4rem; align-items: end; }
.hero-locale {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-deep);
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 2rem;
}
.hero-locale::before { content: ''; width: 42px; height: 1px; background: var(--gold); }
.hero h1 { margin-bottom: 2rem; }
.hero-desc { max-width: 30rem; margin-bottom: 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

.hero-aside { padding-bottom: 0.5rem; }
/* Portret — fotografija se učitava kao background (ako je nema, ostaje topli panel,
   bez „slomljene slike"). Podesite background-position po potrebi za kadriranje lica. */
.portrait {
  position: relative;
  background-color: #e7dfcd;
  background-image: url('../assets/advokat.jpg');
  background-size: cover;
  background-position: 60% 28%;
  border: 1px solid var(--line);
  box-shadow: 0 34px 60px -34px rgba(27,36,51,0.5);
}
.portrait::after {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid rgba(255,255,255,0.30); pointer-events: none;
}
.portrait-cap {
  position: absolute; left: 0; bottom: 1.3rem;
  background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 0.5rem 1.1rem;
}
.hero-portrait { aspect-ratio: 3/4; }

/* =============================================
   CREDENTIALS STRIP
   ============================================= */
.creds { border-bottom: 1px solid var(--line); }
.creds-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem 2.5rem; padding: 1.6rem 0;
}
.cred {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-soft);
  display: flex; align-items: baseline; gap: 0.6rem;
}
.cred b { font-family: var(--serif); font-weight: 500; color: var(--gold-deep); font-size: 0.95rem; }

/* =============================================
   ABOUT
   ============================================= */
.section { padding: 6.5rem 0; }
.about { border-bottom: 1px solid var(--line); }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: start; }
.about-portrait { position: sticky; top: 7rem; aspect-ratio: 4/5; }
.about-body .kicker { margin-bottom: 1.6rem; }
.about-body h2 { margin-bottom: 1.8rem; max-width: 18ch; }
.about-body p { color: var(--ink-soft); margin-bottom: 1.3rem; max-width: 56ch; }
.about-quote {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.4;
  color: var(--ink); margin: 2.2rem 0; padding-left: 1.6rem; border-left: 2px solid var(--gold);
  max-width: 40ch;
}
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 2.4rem 0; border-top: 1px solid var(--line); }
.about-fact { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.about-fact:nth-child(odd) { padding-right: 1.5rem; }
.about-fact dt { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.35rem; }
.about-fact dd { font-family: var(--serif); font-size: 1.1rem; }

/* =============================================
   PRACTICE AREAS — editorial list
   ============================================= */
.areas { background: var(--ink); color: var(--paper); }
.areas .h-section { color: var(--paper); }
.areas-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 3.5rem; }
.areas-head .kicker { margin-bottom: 1.2rem; }
.areas-head p { color: rgba(245,241,232,0.6); font-size: 0.98rem; max-width: 38ch; justify-self: end; }
.areas-list { border-top: 1px solid rgba(245,241,232,0.16); }
.area-row {
  display: grid; grid-template-columns: 4rem 1fr auto; gap: 1.5rem; align-items: baseline;
  padding: 1.9rem 0.5rem; border-bottom: 1px solid rgba(245,241,232,0.16);
  transition: padding 0.35s var(--ease), background 0.35s var(--ease);
}
.area-row-num { font-family: var(--serif); font-size: 1rem; color: var(--gold-bright); }
.area-row h3 { font-size: 1.7rem; font-weight: 400; color: var(--paper); margin-bottom: 0.4rem; }
.area-row p { font-size: 0.92rem; color: rgba(245,241,232,0.55); max-width: 60ch; }
.area-row-mark { font-size: 1.4rem; color: rgba(245,241,232,0.3); transition: color 0.35s var(--ease), transform 0.35s var(--ease); justify-self: end; }
.area-row:hover { padding-left: 1.4rem; background: rgba(245,241,232,0.03); }
.area-row:hover .area-row-mark { color: var(--gold-bright); transform: translateX(5px); }
.area-row:hover h3 { color: var(--gold-bright); }

/* =============================================
   APPROACH (zašto)
   ============================================= */
.approach { border-bottom: 1px solid var(--line); }
.approach-head { max-width: 46ch; margin-bottom: 3.5rem; }
.approach-head .kicker { margin-bottom: 1.4rem; }
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.approach-item { padding: 2.2rem 2.5rem 2.2rem 0; border-bottom: 1px solid var(--line); }
.approach-item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 2.5rem; }
.approach-item:nth-child(even) { padding-left: 2.5rem; }
.approach-num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold-deep); display: block; margin-bottom: 0.9rem; }
.approach-item h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 0.6rem; }
.approach-item p { font-size: 0.92rem; color: var(--ink-soft); max-width: 42ch; }

/* =============================================
   CTA
   ============================================= */
.cta { background: var(--paper-2); }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap;
  padding: 3.5rem; background: var(--ink); color: var(--paper); position: relative; overflow: hidden;
}
.cta-inner::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); }
.cta-text { max-width: 46ch; }
.cta-text .kicker { margin-bottom: 1rem; }
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 400; color: var(--paper); margin-bottom: 0.7rem; }
.cta-text p { color: rgba(245,241,232,0.6); font-size: 0.95rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact { border-bottom: 1px solid var(--line); }
.contact-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; }
.contact-info .kicker { margin-bottom: 1.4rem; }
.contact-info h2 { margin-bottom: 1.4rem; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 2.4rem; max-width: 44ch; }
.contact-list { display: flex; flex-direction: column; }
.contact-line { padding: 1.1rem 0; border-top: 1px solid var(--line); }
.contact-line:last-of-type { border-bottom: 1px solid var(--line); }
.contact-line dt { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.3rem; }
.contact-line dd { font-size: 1.02rem; }
.contact-line dd a:hover { color: var(--gold-deep); }
.contact-hours { margin-top: 2rem; }
.contact-hours h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.8rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.45rem 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); }
.hours-row:last-child { border-bottom: none; }
.hours-row b { font-weight: 500; color: var(--ink); }

/* Form — underline style */
.contact-form { display: flex; flex-direction: column; gap: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.field { position: relative; }
.field label {
  display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 0.5rem 0; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { cursor: pointer; }
.form-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.form-note { font-size: 0.78rem; color: var(--ink-faint); max-width: 26ch; }
.form-feedback { font-size: 0.88rem; line-height: 1.5; }
.form-feedback:empty { display: none; }
.form-feedback.success { color: #3f7d4f; }
.form-feedback.error { color: #a23b34; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--ink); color: rgba(245,241,232,0.6); padding: 4.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,241,232,0.14); }
.footer-logo b { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--paper); display: block; }
.footer-logo span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bright); }
.footer-about { font-size: 0.88rem; line-height: 1.7; margin: 1.2rem 0 1.5rem; max-width: 30ch; }
.footer-social { display: flex; gap: 1.4rem; }
.footer-social a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,241,232,0.55); transition: color 0.3s var(--ease); }
.footer-social a:hover { color: var(--gold-bright); }
.footer-col h4 { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; color: rgba(245,241,232,0.6); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-col .muted { color: rgba(245,241,232,0.4); font-size: 0.82rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; }
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: rgba(245,241,232,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--paper); }

/* =============================================
   PAGE HERO (blog / faq)
   ============================================= */
.page-hero { padding: 11rem 0 4rem; border-bottom: 1px solid var(--line); }
.page-hero .kicker { margin-bottom: 1.3rem; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 400; }
.page-hero p { color: var(--ink-soft); margin-top: 1.2rem; max-width: 52ch; font-size: 1.05rem; }

/* =============================================
   BLOG — editorial article list
   ============================================= */
.blog { padding: 5rem 0 6.5rem; }
.blog-grid { display: grid; grid-template-columns: 1.6fr 0.7fr; gap: 4.5rem; }
.article-list { border-top: 1px solid var(--line); }
.article {
  display: grid; grid-template-columns: 9rem 1fr; gap: 2rem;
  padding: 2.4rem 0; border-bottom: 1px solid var(--line); align-items: start;
  transition: transform 0.35s var(--ease);
}
.article:hover { transform: translateX(6px); }
.article-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); padding-top: 0.5rem; }
.article h2 { font-size: 1.6rem; font-weight: 400; line-height: 1.2; margin-bottom: 0.7rem; transition: color 0.3s var(--ease); }
.article:hover h2 { color: var(--gold-deep); }
.article p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 62ch; }

.blog-aside { display: flex; flex-direction: column; gap: 2.5rem; position: sticky; top: 7rem; align-self: start; }
.aside-block h3 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); padding-bottom: 0.9rem; margin-bottom: 0.9rem; border-bottom: 1px solid var(--line); font-family: var(--sans); }
.aside-cats { display: flex; flex-direction: column; }
.aside-cats a { padding: 0.6rem 0; font-size: 0.95rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); transition: color 0.3s var(--ease); }
.aside-cats a:hover { color: var(--gold-deep); }
.aside-note { background: var(--ink); color: var(--paper); padding: 2rem; }
.aside-note h3 { color: var(--gold-bright); border-color: rgba(245,241,232,0.16); }
.aside-note p { font-size: 0.9rem; color: rgba(245,241,232,0.6); margin-bottom: 1.4rem; line-height: 1.6; }

/* =============================================
   FAQ
   ============================================= */
.faq { padding: 5rem 0 6.5rem; }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 4.5rem; }
.faq-side { position: sticky; top: 7rem; align-self: start; }
.faq-side .kicker { margin-bottom: 1.3rem; }
.faq-side h2 { font-size: 2rem; font-weight: 400; margin-bottom: 1rem; }
.faq-side p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 2rem; }
.faq-cats { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.faq-cat-btn {
  padding: 0.5rem 1rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-soft); border: 1px solid var(--line); border-radius: 100px;
  transition: 0.3s var(--ease);
}
.faq-cat-btn:hover { border-color: var(--gold); color: var(--ink); }
.faq-cat-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0; text-align: left; font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--gold-deep); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--gold-deep); transition: 0.35s var(--ease);
}
.faq-icon::before { width: 16px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 16px; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding: 0 0 1.7rem; font-size: 0.98rem; line-height: 1.75; color: var(--ink-soft); max-width: 66ch; }
.faq-item.open .faq-answer { max-height: 520px; }

.faq-cta { margin-top: 3rem; padding: 2.5rem; background: var(--paper-2); border-left: 3px solid var(--gold); }
.faq-cta h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 0.6rem; }
.faq-cta p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.5rem; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 980px) {
  body { font-size: 16px; }
  .hero-inner, .about-inner, .contact-inner, .blog-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-aside { display: none; }
  .about-portrait { position: static; aspect-ratio: 3/4; max-width: 340px; }
  .areas-head { grid-template-columns: 1fr; }
  .areas-head p { justify-self: start; }
  .faq-side, .blog-aside { position: static; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: flex; }
  .hero { padding: 9rem 0 4rem; }
  .creds-inner { gap: 0.8rem 1.5rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-item, .approach-item:nth-child(odd), .approach-item:nth-child(even) { padding: 1.8rem 0; border-right: none; }
  .about-facts { grid-template-columns: 1fr; }
  .about-fact:nth-child(odd) { padding-right: 0; }
  .area-row { grid-template-columns: 2.5rem 1fr; }
  .area-row-mark { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 2.2rem; }
  .article { grid-template-columns: 1fr; gap: 0.6rem; }
  .article-cat { padding-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =============================================
   DETALJI / DOTERIVANJE
   ============================================= */

/* Tanka zlatna linija na samom vrhu stranice */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 300;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 50%, var(--gold-deep));
}

/* Suptilna tekstura papira preko cele pozadine */
body {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* Inicijal (drop-cap) u prvom pasusu „O nama" */
.about-body p.dropcap::first-letter {
  font-family: var(--serif);
  font-size: 3.5em;
  line-height: 0.74;
  float: left;
  margin: 0.06em 0.12em 0 0;
  color: var(--gold-deep);
  font-weight: 500;
}

/* Veliki navodnik u citatu */
.about-quote { position: relative; }
.about-quote::before {
  content: '\201C';
  position: absolute; left: 0.9rem; top: -1.7rem;
  font-family: var(--serif); font-size: 4.5rem; line-height: 1;
  color: var(--gold); opacity: 0.22;
}

/* Vodeni žig — paragraf znak (§) u tamnoj sekciji oblasti */
.areas { position: relative; overflow: hidden; }
.areas .wrap { position: relative; z-index: 1; }
.areas::before {
  content: '\00A7';
  position: absolute; top: -5rem; right: 1.5rem;
  font-family: var(--serif); font-size: 28rem; line-height: 1;
  color: rgba(245, 241, 232, 0.035); pointer-events: none; z-index: 0;
}

/* Tanke linijske ikonice u kontakt podacima */
.contact-line dt { display: flex; align-items: center; gap: 0.55rem; }
.contact-line dt svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Suvi naslovi sekcija dobijaju malu zlatnu oznaku */
.about-body h2, .contact-info h2, .approach-head h2 { position: relative; }

@media (max-width: 720px) {
  .areas::before { font-size: 16rem; top: -2rem; }
  .about-quote { font-size: 1.3rem; }
}
