/* ---------- Base ---------- */
:root {
  --ink: #2B2622;
  --bg: #FAF6F1;
  --bg-alt: #F1EBE2;
  --border: #E7DFD3;
  --text-body: #3B362D;
  --text-secondary: #56503F;
  --text-muted: #8A8071;
  --text-nav: #6B6255;

  --accent: #B4552D;
  --accent-hover: #96431F;
  --accent-soft-bg: #F5E4D8;
  --accent-soft-border: #E8C4AC;

  --dark-card-bg: #34302A;
  --dark-card-border: #46413A;
  --dark-text-secondary: #C2B9A9;
  --dark-text-muted: #8F8674;
  --dark-text-body: #E3DDD1;
  --dark-label: #D8A88C;
  --dark-price: #E8C4AC;

  --b2b-card-bg: #3B3128;
  --b2b-card-border: #5A4A38;
  --b2b-meta: #C2A98C;

  --btn-outline-border: #5C5648;
  --footer-copy: #A79E8C;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

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

a {
  color: var(--accent);
}
a:hover { color: var(--accent-hover); }

::selection { background: var(--accent); color: var(--bg); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 800px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  z-index: 100;
  border-radius: 3px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 12px;
}
.eyebrow-dark { color: var(--dark-label); }

.section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: 640px;
  margin: 0 0 56px;
}
.heading-dark { color: var(--bg); }

/* ---------- Buttons ---------- */
.btn {
  text-decoration: none;
  display: inline-block;
  padding: 16px 28px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--bg); }
.btn-outline {
  color: var(--ink);
  border: 1px solid #D6CBBA;
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-block { display: block; text-align: center; width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-nav);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-desktop .btn-primary { padding: 11px 20px; font-size: 14px; white-space: nowrap; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  font-size: 20px;
  color: var(--ink);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 8px 32px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile[hidden] { display: none; }
.nav-links-mobile {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.nav-links-mobile a {
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #F1EBE2;
  display: block;
}
.nav-mobile .btn-primary { text-align: center; padding: 14px; font-size: 15px; margin-top: 12px; }

@media (max-width: 1180px) {
  .nav-desktop { display: none !important; }
  .nav-toggle { display: flex !important; }
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 32px;
}
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-dark { background: var(--ink); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 96px 32px 88px; max-width: 1200px; margin: 0 auto; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.hero-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 0 40px;
  line-height: 1.6;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

/* ---------- Za koga ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.audience-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
}
.audience-card h3 { font-size: 24px; margin: 0 0 8px; }
.audience-card .subtitle { font-size: 14px; color: var(--text-muted); margin: 0 0 28px; }
.audience-point { margin-bottom: 22px; }
.audience-point:last-child { margin-bottom: 0; }
.audience-point .label { font-weight: 600; font-size: 16px; margin: 0 0 4px; }
.audience-point .desc { font-size: 15px; color: var(--text-secondary); line-height: 1.55; }

/* ---------- Pristop ---------- */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.pillar { border-top: 2px solid var(--accent); padding-top: 22px; }
.pillar .num {
  font-family: 'Newsreader', serif;
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.pillar h3 { font-size: 22px; margin: 10px 0 12px; }
.pillar p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ---------- Programi ---------- */
.subheading-dark {
  font-size: 22px;
  margin: 40px 0 6px;
  color: var(--bg);
}
#programi h3:first-of-type { margin-top: 0; }
.founder-note { font-size: 14px; color: var(--dark-text-secondary); margin: 0 0 8px; max-width: 640px; }
.vat-note { font-size: 12px; color: var(--dark-text-muted); margin: 0 0 28px; }
.b2b-note { font-size: 14px; color: var(--dark-text-secondary); margin: 0 0 28px; max-width: 640px; }

.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.three-b2b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.program-card {
  background: var(--dark-card-bg);
  border: 1px solid var(--dark-card-border);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.program-card.b2b-card {
  background: var(--b2b-card-bg);
  border-color: var(--b2b-card-border);
}
.program-card h4 { font-size: 21px; margin: 0 0 4px; color: var(--bg); }
.program-card .meta { font-size: 13px; color: #A79E8C; margin: 0 0 16px; }
.program-card.b2b-card .meta { color: var(--b2b-meta); }
.program-card .regular-price {
  font-size: 14px;
  color: var(--dark-text-muted);
  text-decoration: line-through;
  margin: 0 0 2px;
}
.program-card .price {
  font-family: 'Newsreader', serif;
  font-size: 28px;
  color: var(--dark-price);
  margin: 0 0 6px;
}
.program-card .price.price-only { margin: 0 0 20px; }
.program-card .discount-note {
  font-size: 12px;
  color: var(--dark-label);
  margin: 0 0 20px;
  line-height: 1.5;
}
.program-card .b2b-price {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  color: var(--dark-price);
  margin: 0 0 20px;
}
.program-card .label {
  font-size: 13px;
  color: var(--dark-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.program-card .body-text { font-size: 14px; color: var(--dark-text-body); margin: 0 0 18px; line-height: 1.55; }
.program-card .outcome { flex-grow: 1; }
.program-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  font-size: 14px;
  color: var(--dark-text-body);
  line-height: 1.6;
}
.program-card .card-cta {
  text-align: center;
  border: 1px solid var(--btn-outline-border);
  color: var(--bg);
  padding: 12px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
}
.program-card .card-cta:hover { border-color: var(--dark-price); color: var(--dark-price); }
.program-card .card-cta.card-cta-solid {
  background: var(--accent);
  color: var(--bg);
  border: none;
}
.program-card .card-cta.card-cta-solid:hover { background: var(--accent-hover); color: var(--bg); }

/* ---------- O meni ---------- */
.o-meni-grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
.o-meni-photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.o-meni-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
#oMeniHeading { font-size: clamp(26px, 3vw, 34px); margin: 0 0 24px; }
#oMeniParagraphs p { font-size: 16px; color: var(--text-body); line-height: 1.7; margin: 0 0 18px; }
#oMeniParagraphs p:last-child { margin-bottom: 32px; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; }
.credentials span {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft-bg);
  border: 1px solid var(--accent-soft-border);
  padding: 7px 14px;
  border-radius: 3px;
}

/* ---------- Proces ---------- */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step .num {
  font-family: 'Newsreader', serif;
  font-size: 34px;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 500;
}
.step h3 { font-family: 'Work Sans', sans-serif; font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px;
}
.testimonial-card .quote {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-body);
  margin: 0 0 20px;
  line-height: 1.6;
}
.testimonial-card .role { font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--dark-card-border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: inherit;
}
.faq-question .q { font-size: 17px; font-weight: 500; color: var(--bg); }
.faq-question .glyph { font-size: 20px; color: var(--dark-label); flex-shrink: 0; }
.faq-answer {
  font-size: 15px;
  color: #D3CABB;
  margin: 0 0 24px;
  line-height: 1.65;
  max-width: 680px;
}
.faq-answer[hidden] { display: none; }

/* ---------- Footer ---------- */
.site-footer { padding: 96px 32px 48px; max-width: 1200px; margin: 0 auto; }
.footer-cta { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.footer-cta h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 0 0 18px; }
.footer-cta p { font-size: 17px; color: var(--text-secondary); margin: 0 0 32px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-name { margin: 0 0 6px; font-family: 'Newsreader', serif; font-size: 18px; color: var(--ink); }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-privacy { max-width: 320px; }
.footer-copyright { margin: 32px 0 0; font-size: 13px; color: var(--footer-copy); text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid, .two-col, .three-col, .three-b2b, .steps-row {
    grid-template-columns: 1fr !important;
  }
  .four-col { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 560px) {
  .four-col { grid-template-columns: 1fr !important; }
}
