    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #f7f5ef; --warm: #faf8f2; --ink: #2a2820; --brown: #5c4f3a;
      --gray: #7a7260; --light: #e6e2d6; --olive: #7a8c6a;
      --olive-light: #e8ede0; --olive-mid: #c4cfb4; --olive-dark: #5a6e4a;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 4rem; background: rgba(247,245,239,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
    nav.scrolled { border-color: var(--light); box-shadow: 0 2px 24px rgba(90,110,74,0.08); }
    .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600; color: var(--ink); text-decoration: none; }
    .nav-logo span { color: var(--olive); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
    .nav-links a { text-decoration: none; color: var(--brown); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
    .nav-links a:hover, .nav-links a.active { color: var(--olive); }
    .nav-cta { background: var(--olive) !important; color: white !important; padding: 0.6rem 1.4rem; border-radius: 50px; }
    .nav-cta:hover { background: var(--olive-dark) !important; }
    .nav-icons { display: flex; gap: 0.7rem; margin-left: 0.8rem; }
    .nav-icons a { width: 34px; height: 34px; border-radius: 50%; background: var(--olive-light); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--olive-dark); font-size: 0.85rem; transition: background 0.2s, transform 0.2s; }
    .nav-icons a:hover { background: var(--olive); color: white; transform: scale(1.1); }

    /* HERO — zaobljena slika, rahlo odmaknjena od robov */
    .hero-outer { padding: 1rem 1rem 0; margin-top: 74px; }
    .hero-box {
      position: relative; width: 100%; height: 87vh; min-height: 460px;
      overflow: hidden; border-radius: 18px;
    }
    .hero-box img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.36) saturate(0.72);
      transform: scale(1.04);
      animation: zoomOut 14s ease-out forwards;
    }
    @keyframes zoomOut { to { transform: scale(1); } }
    .hero-box-inner {
      position: absolute; inset: 0; border-radius: 18px;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 3.5rem 4.5rem;
      background: linear-gradient(to top, rgba(25,20,14,0.78) 0%, rgba(25,20,14,0) 52%);
    }
    .hero-back {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: rgba(255,255,255,0.45); font-size: 0.73rem; font-weight: 500;
      text-decoration: none; letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 1.6rem; width: fit-content;
      transition: color 0.2s, gap 0.2s;
    }
    .hero-back:hover { color: rgba(255,255,255,0.85); gap: 0.75rem; }
    .hero-cat {
      font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--olive-mid); margin-bottom: 0.8rem;
    }
    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 4.2vw, 3.4rem);
      font-weight: 300; line-height: 1.1; color: white;
      max-width: 760px; margin-bottom: 1.5rem;
      animation: fadeUp 0.75s ease both 0.1s;
    }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
    .hero-meta {
      display: flex; align-items: center; gap: 0.9rem;
      animation: fadeUp 0.75s ease both 0.25s;
    }
    .hero-meta-txt { font-size: 0.74rem; color: rgba(255,255,255,0.42); }
    .hero-sep { color: rgba(255,255,255,0.18); font-size: 0.7rem; }
    .hero-badge {
      font-size: 0.7rem; color: rgba(255,255,255,0.58);
      border: 1px solid rgba(255,255,255,0.16);
      padding: 0.2rem 0.7rem; border-radius: 50px;
    }

    /* LEAD */
    .lead-wrap { background: var(--warm); border-bottom: 1px solid var(--light); }
    .lead-inner { max-width: 680px; margin: 0 auto; padding: 3rem 2rem; }
    .lead-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.42rem; font-weight: 300; font-style: italic;
      color: var(--olive-dark); line-height: 1.65;
      border-left: 2px solid var(--olive-mid); padding-left: 1.4rem;
    }

    /* BODY */
    .article-body { max-width: 680px; margin: 0 auto; padding: 4rem 2rem 1rem; }
    .article-body p { color: var(--brown); font-size: 1rem; line-height: 2; margin-bottom: 1.5rem; }
    .article-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 600; color: var(--ink);
      margin: 3.5rem 0 1rem; padding-top: 3rem; border-top: 1px solid var(--light);
    }
    .article-source {
      margin-top: 3rem; padding: 1rem 1.4rem;
      background: var(--olive-light); border-radius: 10px;
      border: 1px solid var(--olive-mid); font-size: 0.84rem;
    }
    .article-source a { color: var(--olive-dark); text-decoration: none; font-weight: 500; }
    .article-source a:hover { text-decoration: underline; }

    /* AUTHOR */
    .author-wrap { max-width: 680px; margin: 0 auto; padding: 2.5rem 2rem 5rem; }
    .author-card { background: var(--warm); border: 1px solid var(--light); border-radius: 14px; padding: 1.5rem; display: flex; align-items: center; gap: 1.2rem; }
    .author-av { width: 48px; height: 48px; border-radius: 50%; background: var(--olive-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--olive-dark); font-weight: 600; border: 1.5px solid var(--olive-mid); }
    .author-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 0.1rem; }
    .author-role { font-size: 0.77rem; color: var(--gray); }
    .author-btn { margin-left: auto; background: var(--olive); color: white; padding: 0.62rem 1.3rem; border-radius: 50px; text-decoration: none; font-size: 0.79rem; font-weight: 500; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
    .author-btn:hover { background: var(--olive-dark); transform: translateY(-1px); }

    /* CTA */
    .related { padding: 4rem 4rem 2rem; background: var(--cream); }
    .related-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); font-weight: 500; margin-bottom: 0.8rem; }
    .related-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--ink); margin-bottom: 1.8rem; }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .related-card { background: var(--warm); border-radius: 16px; border: 1px solid var(--light); padding: 1.4rem 1.6rem; text-decoration: none; display: block; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
    .related-card:hover { transform: translateY(-3px); border-color: var(--olive-mid); box-shadow: 0 10px 30px rgba(90,110,74,0.1); }
    .related-card-cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); font-weight: 500; margin-bottom: 0.5rem; }
    .related-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
    @media (max-width: 900px) { .related { padding: 3rem 1.5rem 1rem; } .related-grid { grid-template-columns: 1fr; } }
    .cta-band { background: var(--olive-dark); padding: 5rem 4rem; text-align: center; }
    .cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: white; margin-bottom: 0.8rem; }
    .cta-band p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-size: 0.95rem; }
    .btn { padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 500; display: inline-block; transition: background 0.2s, transform 0.2s; }
    .btn-light { background: white; color: var(--olive-dark); }
    .btn-light:hover { background: var(--olive-light); transform: translateY(-2px); }
    .btn-ghost { border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); background: transparent; margin-left: 1rem; }
    .btn-ghost:hover { border-color: white; color: white; transform: translateY(-2px); }

    footer { background: var(--ink); padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: rgba(255,255,255,0.6); font-weight: 600; }
    .footer-logo span { color: var(--olive-mid); }
    footer p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--olive-mid); }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; } .nav-links, .nav-icons { display: none; }
      .hero-outer { padding: 0.6rem 0.6rem 0; }
      .hero-box { height: 65vh; border-radius: 12px; }
      .hero-box-inner { padding: 2rem 1.5rem; border-radius: 12px; }
      .hero-h1 { font-size: 1.75rem; }
      .lead-inner, .article-body, .author-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
      .cta-band { padding: 4rem 1.5rem; }
      .btn-ghost { margin: 0.8rem 0 0; display: block; }
      footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
    }

    /* ── HAMBURGER MENU ── */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 160; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; inset: 0; z-index: 150;
      background: var(--warm); flex-direction: column;
      justify-content: center; align-items: center; gap: 0;
      opacity: 0; transition: opacity 0.3s;
    }
    .mobile-menu.open { display: flex; opacity: 1; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; color: var(--ink);
      text-decoration: none; padding: 0.9rem 2rem;
      letter-spacing: 0.04em; width: 100%; text-align: center;
      border-bottom: 1px solid var(--light);
      transition: color 0.2s, background 0.2s;
    }
    .mobile-menu a:first-child { border-top: 1px solid var(--light); }
    .mobile-menu a:hover { color: var(--olive); background: var(--olive-light); }
    .mobile-menu a.mobile-cta {
      background: var(--olive); color: white;
      border-radius: 0; border: none; margin-top: 1.5rem;
      font-size: 1.1rem; font-weight: 400; letter-spacing: 0.08em;
    }
    .mobile-menu a.mobile-cta:hover { background: var(--olive-dark); }
    .mobile-menu-close {
      position: absolute; top: 1.2rem; right: 1.5rem;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--olive-light); border: 1px solid var(--olive-mid);
      color: var(--olive-dark); font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 10; transition: background 0.2s, color 0.2s;
    }
    .mobile-menu-close:hover { background: var(--olive); color: white; }
    .mobile-menu-icons {
      display: flex; gap: 1.2rem; margin-top: 2rem; padding: 1rem 0;
    }
    .mobile-menu-icons a {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--olive-light); display: flex;
      align-items: center; justify-content: center;
      border: none; border-bottom: none; padding: 0;
      color: var(--olive-dark); flex-shrink: 0;
      transition: background 0.2s;
    }
    .mobile-menu-icons a:hover { background: var(--olive); color: white; }
    .mobile-menu-icons a svg { width: 20px; height: 20px; }

    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-links { display: none !important; }
      .nav-icons { display: none !important; }
      body.menu-open { overflow: hidden; }
    }

/* ── PROGRESS BAR ── */
#progress-bar { position: absolute; bottom: -1px; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--olive), var(--olive-dark)); transition: width 0.1s linear; border-radius: 0 2px 2px 0; }

/* ── BACK TO TOP ── */
#back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; border-radius: 50%; background: var(--olive); color: white; border: none; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; z-index: 90; opacity: 0; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s, background 0.2s; box-shadow: 0 4px 20px rgba(90,110,74,0.3); pointer-events: none; }
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--olive-dark); transform: translateY(-2px); }
@media (max-width: 900px) { #back-to-top { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; } }

.article-ref {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background: var(--olive-light);
  border-left: 3px solid var(--olive);
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--brown);
}
.article-ref-icon { font-size: 1.1rem; flex-shrink: 0; }

.article-ref a { color: var(--olive-dark); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.article-ref a:hover { color: var(--olive); }
